/* ============================================================
   BIG MEAL — Design System
   Premium, warm, editorial. Fraunces (display) + Inter (body).
   ============================================================ */

:root {
  --bg: #FAF6F0;
  --bg-alt: #F3ECE1;
  --surface: #FFFFFF;
  --ink: #221A14;
  --ink-soft: #6B5F53;
  --line: #E7DCCC;
  --accent: #C0452B;
  --accent-dark: #9E3820;
  --accent-soft: #F6E3DD;
  --gold: #C9A227;
  --dark: #1B1410;
  --dark-2: #251C16;
  --dark-line: rgba(250, 246, 240, 0.14);
  --cream-on-dark: #FAF6F0;
  --muted-on-dark: #B9AB9B;
  --green: #1E7B3C;
  --red: #B3261E;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(34, 26, 20, 0.06), 0 2px 8px rgba(34, 26, 20, 0.05);
  --shadow-md: 0 2px 6px rgba(34, 26, 20, 0.07), 0 12px 32px rgba(34, 26, 20, 0.10);
  --shadow-lg: 0 4px 12px rgba(34, 26, 20, 0.08), 0 24px 60px rgba(34, 26, 20, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark); color: #fff; padding: 0.6rem 1rem;
  z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hero :focus-visible, .section-dark :focus-visible, .site-footer :focus-visible,
.cta-band :focus-visible, .page-hero :focus-visible {
  outline-color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s, color 0.2s, border-color 0.2s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(192, 69, 43, 0.30); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(192, 69, 43, 0.36); }

.btn-dark { background: var(--dark); color: var(--cream-on-dark); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-light { background: var(--cream-on-dark); color: var(--dark); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--cream-on-dark); border-color: rgba(250, 246, 240, 0.4); }
.btn-outline-light:hover { border-color: var(--cream-on-dark); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.1rem; font-size: 1.02rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark); color: var(--muted-on-dark);
  font-size: 0.82rem; text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}
.topbar-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 560px) {
  .topbar-text { white-space: normal; overflow: visible; line-height: 1.45; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(34, 26, 20, 0.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; color: var(--accent); }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.01em;
}
.brand-name span { color: var(--accent); }
.brand-light { color: var(--cream-on-dark); }

.main-nav ul { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.93rem; font-weight: 500; text-decoration: none;
  color: var(--ink-soft); border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--ink); background: rgba(34, 26, 20, 0.05); }
.main-nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.open-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--bg-alt); color: var(--ink-soft);
}
.open-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.open-pill.open i { background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(30,123,60,.45);} 60% { box-shadow: 0 0 0 6px rgba(30,123,60,0);} }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 80% -10%, #33261d 0%, var(--dark) 55%);
  color: var(--cream-on-dark);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(420px 320px at 12% 110%, rgba(192, 69, 43, 0.22), transparent 70%),
    radial-gradient(500px 380px at 95% 20%, rgba(201, 162, 39, 0.10), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 9vw, 7rem);
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  max-width: 100%;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.hero h1 em { font-style: italic; color: #E8B98F; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted-on-dark);
  max-width: 56ch; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.hero-meta-item { font-size: 0.88rem; color: var(--muted-on-dark); }
.hero-meta-item strong {
  display: block; font-family: var(--font-display);
  font-size: 1.35rem; color: var(--cream-on-dark); font-weight: 600;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: var(--cream-on-dark); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem;
}
.section-dark .eyebrow { color: var(--gold); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.section-dark .section-sub { color: var(--muted-on-dark); }
.section-foot { margin-top: 2.4rem; text-align: center; }

/* ---------- Veg / Non-veg mark ---------- */
.food-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 3px;
  border: 1.6px solid var(--green); flex: none;
}
.food-mark i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.food-mark.nonveg { border-color: var(--red); }
.food-mark.nonveg i { background: var(--red); border-radius: 0; clip-path: polygon(50% 8%, 96% 92%, 4% 92%); }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; padding: 0.22rem 0.6rem; border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-bestseller { background: #FBEFD8; color: #8A6410; }
.badge-recommended { background: var(--accent-soft); color: var(--accent-dark); }
.badge-offer { background: var(--accent); color: #fff; }

/* ---------- Dish cards (featured) ---------- */
.dish-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.dish-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-media { aspect-ratio: 4 / 3; background: var(--bg-alt); position: relative; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dish-card:hover .dish-media img { transform: scale(1.05); }
.dish-media .dish-fallback {
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150' fill='none' stroke='%23C0452B' stroke-width='2' stroke-linecap='round' opacity='.35'%3E%3Cpath d='M84 38c-5 7 5 9 0 16M100 32c-5 8 5 10 0 18M116 38c-5 7 5 9 0 16'/%3E%3Cpath d='M58 78h84M64 78a36 18 0 0 0 72 0'/%3E%3Cpath d='M46 84c0 26 24 40 54 40s54-14 54-40' opacity='.5'/%3E%3C/svg%3E") center 46% / 56% no-repeat,
    radial-gradient(180px 130px at 85% 15%, rgba(192, 69, 43, 0.10), transparent 70%),
    linear-gradient(155deg, #F4EBDD, #EBDFCB);
}
.dish-media .badge { position: absolute; top: 12px; left: 12px; z-index: 1; }
.dish-body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.dish-top { display: flex; align-items: flex-start; gap: 0.55rem; }
.dish-name { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; line-height: 1.35; }
.dish-desc {
  color: var(--ink-soft); font-size: 0.875rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-foot { margin-top: auto; padding-top: 0.55rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.dish-price { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; }
.dish-price small { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--ink-soft); margin-right: 2px; }
.dish-portions { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  min-height: 168px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.cat-card::before {
  content: attr(data-initial);
  position: absolute; top: -18px; right: 2px;
  font-family: var(--font-display); font-size: 6.4rem; font-weight: 700; line-height: 1;
  color: rgba(192, 69, 43, 0.07);
  transition: color 0.3s, transform 0.45s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #DCCDB6; }
.cat-card:hover::before { color: rgba(192, 69, 43, 0.14); transform: translateY(-4px); }
.cat-card.has-img { color: #fff; border: 0; justify-content: flex-end; }
.cat-card .cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease); }
.cat-card.has-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 13, 8, .78) 18%, rgba(20, 13, 8, .05) 65%); }
.cat-card.has-img:hover .cat-img { transform: scale(1.05); }
.cat-card.has-img::before { display: none; }
.cat-info { position: relative; z-index: 1; }
.cat-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; margin-bottom: 0.2rem; }
.cat-count { font-size: 0.82rem; color: var(--ink-soft); }
.cat-card.has-img .cat-count { color: rgba(255, 255, 255, 0.8); }
.cat-card .cat-arrow {
  position: absolute; top: 1.2rem; left: 1.4rem; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.cat-card:hover .cat-arrow { background: var(--accent); color: #fff; transform: rotate(-45deg); }
.cat-arrow svg { width: 16px; height: 16px; }

/* ---------- Kitchen promises (typographic, no cards) ---------- */
.promises-head {
  display: grid; gap: 1.5rem 4rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}
.promises-title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.promises-title em { font-style: italic; color: var(--accent); }
.promises-intro { color: var(--ink-soft); font-size: 1rem; max-width: 52ch; }
.promise-list { margin: 0; }
.promise {
  display: grid; gap: 0.5rem 4rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: baseline;
  padding: clamp(1.3rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line);
}
.promise dt {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.15;
}
.promise dd { margin: 0; color: var(--ink-soft); font-size: 0.95rem; max-width: 52ch; }
.promise:nth-child(even) dt { padding-left: clamp(0rem, 4vw, 3.5rem); }

/* feature-icon kept for contact-page info cards */
.feature-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 23px; height: 23px; }

/* ---------- Offers ---------- */
.offers-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.offer-card {
  position: relative;
  background: linear-gradient(150deg, var(--dark-2), var(--dark));
  color: var(--cream-on-dark);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.offer-card::after {
  content: ""; position: absolute; right: -50px; top: -50px;
  width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 69, 43, 0.32), transparent 70%);
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.offer-card :is(h2, h3) { font-size: 1.32rem; font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.offer-card p { color: var(--muted-on-dark); font-size: 0.92rem; }
.offer-validity { font-size: 0.78rem; color: var(--gold); }
.offer-cta {
  margin-top: auto; padding-top: 0.5rem;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  color: var(--cream-on-dark); align-self: flex-start;
  border-bottom: 1.5px solid var(--accent);
  transition: color 0.2s, border-color 0.2s;
}
.offer-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Testimonials ---------- */
.testi-rail {
  display: flex; gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0.2rem 1.2rem;
  scrollbar-width: none;
}
.testi-rail::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(380px, 86vw);
  scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.testi-text { font-size: 0.95rem; line-height: 1.6; color: var(--ink); }
.testi-meta { margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.testi-name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.testi-source { font-size: 0.78rem; color: var(--ink-soft); }
.reviews-head-rating {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.reviews-head-rating .stars svg { width: 19px; height: 19px; }
.reviews-head-rating strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.reviews-head-rating span { color: var(--ink-soft); font-size: 0.9rem; }
.section-meta { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; }
.section-meta strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.testi-nav { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 0.3rem; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease);
}
.testi-btn:hover { border-color: var(--ink); transform: translateY(-2px); }
.testi-btn svg { width: 17px; height: 17px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; border: 0; padding: 0; background: var(--bg-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 13, 8, 0.45), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; left: 1rem; bottom: 0.85rem; z-index: 1;
  color: #fff; font-size: 0.85rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15, 10, 7, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1000px, 92vw); max-height: 84vh;
  border-radius: 10px; box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  background: none; border: 0; color: #fff;
  font-size: 2.2rem; line-height: 1; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* ---------- Menu page ---------- */
.page-hero {
  background: radial-gradient(110% 160% at 85% -20%, #33261d 0%, var(--dark) 60%);
  color: var(--cream-on-dark);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.7rem; }
.page-hero p { color: var(--muted-on-dark); max-width: 60ch; }
.breadcrumbs { font-size: 0.82rem; color: var(--muted-on-dark); margin-bottom: 1.1rem; }
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.menu-toolbar {
  position: sticky; top: 72px; z-index: 60;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}
.menu-toolbar-inner { display: flex; gap: 0.9rem; align-items: center; }
.menu-cats {
  display: flex; gap: 0.45rem; overflow-x: auto; flex: 1;
  scrollbar-width: none; padding: 2px;
}
.menu-cats::-webkit-scrollbar { display: none; }
.menu-cat-link {
  flex: none; padding: 0.45rem 0.95rem; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600; text-decoration: none;
  color: var(--ink-soft); background: var(--bg-alt);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}
.menu-cat-link:hover { color: var(--ink); background: #ECE2D2; }
.menu-cat-link.active { background: var(--dark); color: var(--cream-on-dark); }
.menu-filters { display: flex; gap: 0.45rem; align-items: center; flex: none; }
.filter-toggle {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  font-size: 0.84rem; font-weight: 600; color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-toggle[aria-pressed="true"] { border-color: var(--green); color: var(--green); background: #EDF6EF; }
.menu-search {
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--surface);
  font-size: 0.88rem; width: 170px;
  transition: border-color 0.2s, width 0.3s var(--ease);
}
.menu-search:focus { outline: none; border-color: var(--accent); width: 210px; }

.menu-section { padding: 2.6rem 0 0.6rem; scroll-margin-top: 150px; }
.menu-section-head { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.4rem; }
.menu-section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.menu-section-head .count { font-size: 0.85rem; color: var(--ink-soft); }
.menu-section-desc { color: var(--ink-soft); font-size: 0.92rem; max-width: 70ch; margin-bottom: 1.4rem; }

.menu-list { display: grid; gap: 0.7rem; grid-template-columns: repeat(auto-fill, minmax(min(430px, 100%), 1fr)); }
.menu-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-item:hover { border-color: #DCCDB6; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.menu-item-thumb {
  width: 76px; height: 76px; flex: none; border-radius: 12px;
  object-fit: cover; background: var(--bg-alt);
}
.menu-item-main { flex: 1; min-width: 0; }
.menu-item-top { display: flex; align-items: flex-start; gap: 0.55rem; }
.menu-item-name { font-weight: 600; font-size: 0.99rem; line-height: 1.35; }
.menu-item-badges { display: inline-flex; gap: 0.35rem; margin-left: 0.2rem; vertical-align: 2px; }
.menu-item-desc { color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.25rem; line-height: 1.5; }
.menu-item-variants { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.55rem; }
.variant-chip {
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 7px;
  background: var(--bg-alt); color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease);
}
.variant-chip small { color: var(--ink-soft); font-weight: 500; margin-right: 2px; }
a.variant-chip:hover { border-color: var(--green); background: #EDF6EF; transform: translateY(-1px); }
a.variant-chip::after { content: "→"; font-size: 0.72rem; color: var(--green); opacity: 0; margin-left: -2px; transition: opacity 0.2s, margin 0.25s var(--ease); }
a.variant-chip:hover::after { opacity: 1; margin-left: 2px; }

.order-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  color: var(--green); margin-top: 0.45rem;
  padding: 0.2rem 0; border-radius: 4px;
}
.order-link svg { width: 14px; height: 14px; }
.order-link:hover { text-decoration: underline; }
.menu-item-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.menu-item-price small { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--ink-soft); display: block; text-align: right; }
.menu-item.unavailable { opacity: 0.55; }
.menu-item.unavailable .menu-item-name::after {
  content: "Sold out"; margin-left: 0.5rem;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--red);
}
.menu-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; display: none; }
.menu-empty .btn { margin-top: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600; font-size: 0.99rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform 0.3s var(--ease); flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2.6rem; grid-template-columns: 1fr 1.1fr; align-items: start; }
.info-cards { display: grid; gap: 1rem; }
.info-card {
  display: flex; gap: 1.05rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.4rem 1.4rem;
}
.info-card .feature-icon { margin: 0; flex: none; }
.info-card :is(h2, h3) { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.25rem; line-height: 1.2; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.93rem; text-decoration: none; }
.info-card a:hover { color: var(--accent); }

.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.75rem 0.95rem; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--bg);
  font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 69, 43, 0.14);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.8rem; }

.alert { padding: 0.95rem 1.2rem; border-radius: 10px; font-size: 0.92rem; margin-bottom: 1.2rem; }
.alert-success { background: #EDF6EF; color: var(--green); border: 1px solid #C5E2CD; }
.alert-error { background: #FBEDEC; color: var(--red); border: 1px solid #F0CBC8; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-alt);
  aspect-ratio: 16 / 8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-empty {
  height: 100%; display: flex; flex-direction: column; gap: 0.6rem;
  align-items: center; justify-content: center; color: var(--ink-soft); font-size: 0.92rem;
}

.branch-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---------- Prose (CMS pages) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.55rem; margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1rem; color: #463C32; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.3rem; color: #463C32; }
.prose li { margin-bottom: 0.45rem; }
.prose a { color: var(--accent); }
.prose strong { color: var(--ink); }

/* ---------- About page extras ---------- */
.stats-band { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.stat {
  text-align: center; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1rem;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); color: #fff; }
.cta-band-inner {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}
.cta-band-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.3rem; }
.cta-band-sub { opacity: 0.92; font-size: 0.97rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--muted-on-dark); }
.footer-grid {
  display: grid; gap: 2.6rem;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1fr;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.4rem;
}
.footer-tag { font-size: 0.9rem; margin: 1rem 0 1.4rem; max-width: 34ch; }
.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--dark-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-on-dark);
  transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.social-links a:hover { color: var(--cream-on-dark); border-color: var(--cream-on-dark); transform: translateY(-3px); }
.social-links svg { width: 17px; height: 17px; }
.footer-col h2 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-on-dark); margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; list-style: none; margin: 0; padding: 0; }
.footer-col a { color: var(--muted-on-dark); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream-on-dark); }
.hours-list li, .contact-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; }
.contact-list li { justify-content: flex-start; }
.hours-list .today { color: var(--cream-on-dark); font-weight: 600; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--dark-line);
  padding: 1.4rem 0 1.6rem; font-size: 0.84rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a { color: var(--muted-on-dark); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream-on-dark); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: clamp(4rem, 12vw, 8rem) 0; }
.error-code { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 9rem); font-weight: 700; color: var(--accent); line-height: 1; }
.error-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.6rem 0 0.8rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(n+7) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-call span { display: none; }
  .header-call { padding: 0.7rem; border-radius: 50%; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: 0; top: 0; z-index: 110;
    background: var(--bg);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; text-align: center; gap: 0.4rem; }
  .main-nav a { font-size: 1.35rem; font-family: var(--font-display); padding: 0.55rem 1.2rem; }
  .nav-cta-mobile { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
  .nav-toggle { display: flex; position: relative; z-index: 120; }
  .open-pill { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
  .menu-toolbar { top: 64px; }
  .header-inner { height: 64px; }
  .menu-toolbar-inner { flex-wrap: wrap; gap: 0.6rem; }
  .menu-filters { width: 100%; }
  .menu-search { flex: 1; width: auto; }
  .menu-search:focus { width: auto; }
  .menu-cat-link, .filter-toggle { padding-top: 0.6rem; padding-bottom: 0.6rem; }
}

@media (max-width: 820px) {
  .promises-head, .promise { grid-template-columns: 1fr; gap: 0.6rem; }
  .promise:nth-child(even) dt { padding-left: 0; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-meta { gap: 1.1rem 1.4rem; }
  .hero-meta-item { font-size: 0.82rem; }
  .menu-item-thumb { width: 60px; height: 60px; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; }
}
