
:root{
  --brown:#5D432E;
  --brown-2:#3F2A1E;
  --cream:#FAF9F5;
  --ink:#1E1B16;
  --muted:#6A655D;
  --gold:#E0B25A;
  --gold-2:#C7922E;
  --card:#FFFFFF;
  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 34px);
  --h1: clamp(2.4rem, 5vw, 4.2rem);
  --h2: clamp(2rem, 3.5vw, 3.2rem);
  --h3: clamp(1.2rem, 2vw, 1.7rem);
  --p:  clamp(1rem, 1.15vw, 1.06rem);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
p{ font-size:var(--p); color:var(--muted); margin:0 0 16px; }
h1,h2,h3{
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  color:var(--ink);
  margin:0 0 12px;
  letter-spacing:.2px;
}
small, .kicker{
  font-family:"Inter", system-ui, sans-serif;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold-2);
  font-weight:600;
  font-size:.78rem;
}

.container{
  width:min(var(--max), calc(100% - 2*var(--gutter)));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:var(--ink);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
}
.brand .logo{
  font-family:"Playfair Display", serif;
  font-weight:700;
  color:var(--gold);
  font-size:1.45rem;
  letter-spacing:.3px;
}
.orderonline-btn{background:#c54928;}
.nav ul{
  display:flex;
  gap:20px;
  list-style:none;
  padding:0;
  margin:0;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.nav a.link{
  color:rgba(255,255,255,.92);
  font-weight:500;
  font-size:.98rem;
  padding:10px 10px;
  border-radius:12px;
}
.nav a.link:hover, .nav a.link[aria-current="page"]{
  background:rgba(255,255,255,.10);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.icon-btn{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.icon-btn:hover{ background:rgba(255,255,255,.12); }
.hamburger{
  display:none;
  width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.hamburger span{
  width:18px;height:2px;background:#fff;display:block;margin:4px auto;border-radius:2px;
}
.logo{width:100px;}
@media (max-width: 980px){
  .hamburger{ display:inline-block; }
  .nav ul{
    position:fixed;
    inset:74px var(--gutter) auto var(--gutter);
    background:rgba(93,67,46,.96);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:12px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav ul.open{ display:flex; }
  .nav a.link{ width:100%; }
}

/* HERO */
.hero{
  position:relative;
  min-height: 70vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(63,42,30,.86), rgba(63,42,30,.35) 55%, rgba(63,42,30,.10)),
    url("../img/hero-bg.jpg") center/cover no-repeat;
}
.hero .inner{
  padding: clamp(46px, 7vw, 92px) 0;
}
.hero h1{
  font-size: var(--h1);
  color: var(--gold);
  text-shadow: 0 14px 50px rgba(0,0,0,.35);
}
.hero .sub{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.90);
  font-weight:500;
  margin:14px 0 22px;
}
.hero .sub .dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(224,178,90,.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 20px;
  border-radius: 0;
  border: 2px solid rgba(255,255,255,.72);
  background: transparent;
  color:#fff;
  font-weight:600;
  min-width:180px;
}
.btn:hover{ background:rgba(255,255,255,.10); }
.btn.primary{
  border-color: transparent;
  background: var(--gold);
  color: var(--ink);
}
.btn.primary:hover{ filter:brightness(.98); }
.hero .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* SECTION LAYOUTS */
.section{ padding: clamp(52px, 7vw, 90px) 0; }
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 4vw, 44px);
  align-items:center;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.card{
  background:var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
}

/* Weekly menu */
.menu-list{
  margin-top: 18px;
}
.menu-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.menu-row:last-child{ border-bottom:none; }
.menu-row b{
  color:var(--ink);
}
.menu-row span{ color:var(--muted); }

.figure{
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.figure img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Sweets grid */
.center{ text-align:center; }
.sweets{
  background: #F4F2ED;
}
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
@media (max-width: 1050px){ .grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .grid{ grid-template-columns: 1fr; } }

.product{
  overflow:hidden;
  border-radius: var(--radius);
  background:#fff;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.06);
}
.product .img{
  aspect-ratio: 4 / 3;
  background:#eee;
}
.product .img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product .label{
  padding: 18px 18px 22px;
  font-family:"Playfair Display", serif;
  font-size:1.28rem;
  text-align:center;
}

/* Dine-in + Dine-in menu split buttons */
.soft{
  background: var(--cream);
}
.lead{
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 56ch;
}
.block-cta{
  margin-top: 20px;
}
.block-cta .btn{
  border-color: rgba(0,0,0,.28);
  color: var(--ink);
  background: transparent;
}
.block-cta .btn:hover{ background: rgba(0,0,0,.05); }

/* Catering hero */
.hero-mini{
  position:relative;
  border-radius: 0;
  overflow:hidden;
  background:
    linear-gradient(rgba(63,42,30,.78), rgba(63,42,30,.62)),
    url("../img/thali-background.jpg") center/cover no-repeat;
  padding: clamp(52px, 7vw, 88px) 0;
}
.hero-mini h2{ color:#fff; font-size: var(--h2); }
.hero-mini .kicker{ color: rgba(224,178,90,.95); }
.pill-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px auto 26px;
  width:min(860px, 100%);
}
@media (max-width: 900px){ .pill-grid{ grid-template-columns: 1fr; } }
.pill{
  padding: 18px 16px;
  text-align:center;
  color:#fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  border-radius: 12px;
  font-family:"Playfair Display", serif;
  font-size: 1.25rem;
}
.pill:hover{ background: rgba(255,255,255,.14); }
.quote-btn{
  display:inline-flex;
  margin-top: 10px;
  padding: 14px 26px;
  border: 2px solid rgba(255,255,255,.70);
  background: transparent;
  color:#fff;
  font-weight:700;
}
.quote-btn:hover{ background: rgba(255,255,255,.12); }

/* Contact */
.contact{
  background: #F3F1EB;
}
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items:stretch;
}
@media (max-width: 980px){ .contact-grid{ grid-template-columns: 1fr; } }
.info-cards{ display:grid; gap:18px; margin-top:18px; }
.info{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.badge{
  width:46px;height:46px;border-radius:999px;
  background: rgba(224,178,90,.18);
  display:grid; place-items:center;
  color: var(--brown-2);
}
.info b{ display:block; margin-bottom:4px; }
.info div{ color:var(--muted); }

.form-card{
  background:#F7F5EF;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.form-card h3{ margin-bottom: 16px; }
form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px){ form .row{ grid-template-columns: 1fr; } }
input, textarea{
  width:100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
  font: inherit; margin-bottom:10px;
}
textarea{ min-height: 140px; resize: vertical; }
.send{
  width:100%;
  margin-top: 14px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 14px 18px;
  font-weight: 800;
  border-radius: 10px;
}
.send:hover{ filter:brightness(.98); }

/* Footer */
footer{
  background: #000;
  color: rgba(255,255,255,.86);
  padding: 28px 0; 
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
footer .brand .logo{ font-size:1.25rem; }
footer .muted{ color: rgba(255,255,255,.70); font-size:.95rem; }
.social{
  display:flex; gap:10px;
}
.social a{
  width:44px; height:44px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.social a:hover{ background: rgba(255,255,255,.12); }

/* Utilities */
.visually-hidden{
  position:absolute !important;
  height:1px; width:1px;
  overflow:hidden; clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}
.breadcrumb {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(63, 42, 30, .86), rgba(63, 42, 30, .35) 55%, rgba(63, 42, 30, .10)), url(../img/hero-bg.jpg) center / cover no-repeat;
}
.breadcrumb h1 {
    font-size: var(--h1);
    color: var(--gold);
    text-shadow: 0 14px 50px rgba(0, 0, 0, .35);
}
.breadcrumb .sub {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .90);
    font-weight: 500;
    margin: 14px 0 22px;
}
.breadcrumb .sub .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(224, 178, 90, .18);
}
#menu{background:#F4F2ED;}
.dark {
    background: #F4F2ED;
}
@media (max-width: 680px) {
.fixed-btn {
    background: #c54928;
    position: fixed;
    z-index: 1000;
    padding: 10px;
    display: block;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 20px;
    color: #fff;
	font-weight:bold;
}
footer{padding-bottom: 100px;}
}