/* ============================================================
   NAAN CURRY GRILL — Warm Elegant Spice Design System
   Palette: deep warm charcoal · saffron gold · curry red · cream
   Type:    Cormorant Garamond (display) + Inter (UI/body)
   ============================================================ */

:root {
  /* --- Color tokens --- */
  --ink:        #16100B;   /* deepest warm charcoal (page base) */
  --ink-2:      #1F160F;
  --charcoal:   #2A1E15;
  --charcoal-3: #362619;

  --cream:      #F7F0E2;   /* primary light surface */
  --cream-2:    #FCF7EC;
  --paper:      #FBF5E9;

  --gold:       #D9A441;   /* saffron gold — primary accent */
  --gold-bright:#F0C368;
  --gold-deep:  #B4842C;   /* decorative only — fails AA on cream */
  --gold-ink:   #8C6419;   /* gold for TEXT on cream — 4.69:1, passes AA */

  --curry:      #A62F22;   /* deep chili red */
  --curry-deep: #7E2019;
  --terracotta: #C4562F;

  /* Brand logo colours (sampled from the wordmark) */
  --logo-red:    #EB2732;
  --logo-orange: #F4952D;
  --logo-green:  #217C3E;

  --text:       #2A1E14;   /* body text on light */
  --text-soft:  #5C4A39;
  --muted:      #7A6752;
  --on-dark:    #F3E9D6;   /* text on dark surfaces */
  --on-dark-soft:#C9B99E;

  --line:       rgba(217,164,65,0.28);
  --line-dark:  rgba(243,233,214,0.14);

  /* --- Spacing scale (8pt) --- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 48px; --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;

  /* --- Radius & shadow --- */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px;
  --shadow-sm: 0 2px 10px rgba(22,16,11,0.10);
  --shadow-md: 0 14px 40px rgba(22,16,11,0.16);
  --shadow-lg: 0 30px 80px rgba(22,16,11,0.30);

  /* --- Layout --- */
  --container: 1200px;
  --nav-h: 76px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---- Focus states: visible, on-brand, keyboard-only ---- */
:focus { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
/* On cream surfaces the saffron needs a darker ring to stay visible */
.cream-section :focus-visible,
.paper-section :focus-visible,
.menu-cat :focus-visible,
.menu-nav :focus-visible {
  outline-color: var(--gold-ink);
}
.btn:focus-visible, .platform:focus-visible { outline-offset: 4px; }
/* Skip link — first tab stop */
.skip-link {
  position: absolute; top: -100px; left: var(--sp-3); z-index: 2000;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: 0.005em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.on-dark { color: var(--gold-bright); }

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: var(--sp-3) 0 var(--sp-4);
  color: var(--text);
}
.section-title .accent { color: var(--curry); font-style: italic; }
.on-dark-block .section-title { color: var(--on-dark); }

.lead { font-size: 1.12rem; color: var(--text-soft); max-width: 60ch; }
.on-dark-block .lead { color: var(--on-dark-soft); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
.section { padding: clamp(64px, 10vw, 128px) 0; position: relative; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

.dark-section { background: var(--ink); color: var(--on-dark); }
.dark-section.on-dark-block { }
.cream-section { background: var(--cream); }
.paper-section { background: var(--paper); }

/* Decorative spice divider */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 0 auto;
}
.divider span { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider svg { width: 20px; height: 20px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  border-radius: 999px;
  min-height: 48px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(180,132,44,0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(180,132,44,0.5); }

.btn-ghost {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

.btn-dark {
  background: var(--curry);
  color: var(--cream-2);
  box-shadow: 0 10px 28px rgba(126,32,25,0.32);
}
.btn-dark:hover { background: var(--curry-deep); transform: translateY(-3px); }

.btn-lg { padding: 18px 38px; font-size: 15px; }

.icon-16 { width: 18px; height: 18px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.nav.scrolled {
  background: rgba(22,16,11,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.28);
  height: 64px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); min-height: 44px; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em; color: var(--cream); }
.brand-text small { font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

/* Brand logo — the wordmark has no dark parts, so it sits directly on the dark
   nav/footer. A soft drop-shadow lifts it off the bar instead of a plaque. */
.brand-logo {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transition: height .4s var(--ease), transform .35s var(--ease);
}
.nav.scrolled .brand-logo { height: 40px; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.footer .brand-logo { height: 48px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--on-dark);
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-weight: 600; font-size: 14px; }
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(22,16,11,0.98);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--cream); font-family: var(--font-display); font-size: 2rem; font-weight: 500; padding: 10px 0; }
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .btn { margin-top: 20px; }
.mobile-menu .m-phone { margin-top: 8px; color: var(--gold-bright); font-weight: 600; letter-spacing: 0.04em; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,16,11,0.55) 0%, rgba(22,16,11,0.25) 35%, rgba(22,16,11,0.75) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(126,32,25,0.35), transparent 60%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: var(--nav-h); }
.hero-inner { max-width: 820px; }
.hero .eyebrow { color: var(--gold-bright); }
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 600;
  line-height: 0.98;
  margin: var(--sp-3) 0 var(--sp-4);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub { color: var(--on-dark); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 54ch; margin-bottom: var(--sp-5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: var(--on-dark-soft); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--on-dark-soft); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll .mouse::before { content: ""; width: 3px; height: 7px; border-radius: 2px; background: var(--gold-bright); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px);} 40% {opacity:1;} 80%{opacity:0; transform: translateY(8px);} 100%{opacity:0;} }

/* Marquee strip */
.marquee { background: linear-gradient(90deg, #6E1319, #B81F28 50%, #6E1319); color: var(--cream-2); overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(240,195,104,0.25); border-bottom: 1px solid rgba(240,195,104,0.25); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 48s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; display: inline-flex; align-items: center; gap: 48px; }
.marquee span::after { content: "✦"; color: var(--gold-bright); font-size: 0.8rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Story / About (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }

.story-media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--charcoal), var(--curry-deep));
  aspect-ratio: 4/5;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.wide { aspect-ratio: 3/2; }
.media-badge {
  position: absolute; z-index: 3;
  background: var(--cream-2); color: var(--text);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.media-badge.br { right: -18px; bottom: 28px; }
.media-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--curry); line-height: 1; }
.media-badge .lbl { font-size: 12px; line-height: 1.3; color: var(--text-soft); max-width: 90px; }

.story-body p + p { margin-top: var(--sp-3); }
.signature-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--sp-5); }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text-soft);
  font-size: 13px; font-weight: 500; background: rgba(217,164,65,0.06);
}
.chip svg { width: 15px; height: 15px; color: var(--gold-deep); }

/* ============================================================
   Feature strip (values)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.feature { text-align: center; padding: var(--sp-4) var(--sp-3); }
.feature-ic {
  width: 62px; height: 62px; margin: 0 auto var(--sp-3);
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-dark); color: var(--gold-bright);
  background: radial-gradient(circle at 30% 30%, rgba(240,195,104,0.14), transparent);
}
.feature-ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.5rem; color: var(--on-dark); margin-bottom: 6px; }
.feature p { color: var(--on-dark-soft); font-size: 0.95rem; }

/* ============================================================
   Signature dishes showcase
   ============================================================ */
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.dish-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--charcoal), var(--curry-deep));
  box-shadow: var(--shadow-md);
  color: #fff;
  display: flex; align-items: flex-end;
}
.dish-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.dish-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18,12,8,0.4) 60%, rgba(18,12,8,0.92) 100%);
  transition: opacity .4s var(--ease);
}
.dish-card:hover img { transform: scale(1.07); }
.dish-info { position: relative; z-index: 2; padding: var(--sp-4); width: 100%; }
.dish-info .tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }
.dish-info h3 { font-size: 1.9rem; margin: 8px 0 6px; }
.dish-info p { font-size: 0.92rem; color: var(--on-dark-soft); opacity: 0; max-height: 0; transition: opacity .4s var(--ease), max-height .4s var(--ease); }
.dish-card:hover .dish-info p { opacity: 1; max-height: 80px; }
.dish-info .price { position: absolute; top: -14px; right: var(--sp-4); background: var(--gold); color: var(--ink); font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }

/* ============================================================
   Order online band
   ============================================================ */
.order-band {
  color: var(--cream-2); position: relative; overflow: hidden;
  background:
    radial-gradient(115% 130% at 88% 2%, rgba(244,149,45,0.72), rgba(244,149,45,0) 55%),
    linear-gradient(140deg, #7A1815 0%, #B4291F 26%, #D83A24 54%, #EC6A24 82%, #F4952D 100%);
}
.order-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 8% 100%, rgba(240,195,104,0.16), transparent 42%);
}
.order-inner { position: relative; text-align: center; }
.order-inner .section-title { color: #fff; }
.order-platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: var(--sp-5); }
.platform {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  transition: background .3s var(--ease), transform .3s var(--ease);
  min-height: 48px;
}
.platform:hover { background: #fff; color: var(--curry-deep); transform: translateY(-3px); }
.platform.solid { background: var(--gold); color: var(--ink); border-color: transparent; }
.platform.solid:hover { background: var(--gold-bright); color: var(--ink); }

/* ============================================================
   Catering / Event center
   ============================================================ */
.cater-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  min-height: 460px; display: flex; align-items: flex-end;
  color: #fff; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
}
.cater-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cater-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,12,8,0.15) 20%, rgba(18,12,8,0.9) 100%); }
.cater-body { position: relative; z-index: 2; padding: clamp(28px, 4vw, 48px); max-width: 560px; }
.cater-body h3 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.cater-body p { color: var(--on-dark-soft); margin-bottom: var(--sp-4); }
.cater-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

/* ============================================================
   Specials
   ============================================================ */
.specials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: var(--sp-5); }
.special-item {
  padding: 16px 18px; border-radius: var(--r-md);
  background: rgba(247,240,226,0.04); border: 1px solid var(--line-dark);
  color: var(--on-dark); font-weight: 500; font-size: 0.98rem;
  display: flex; align-items: center; gap: 12px;
}
.special-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); flex: none; }

/* ============================================================
   Location / hours
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-ic { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--curry); }
.info-ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.info-row p { color: var(--text); font-size: 1.05rem; }
.info-row a { color: var(--curry); font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem; }
.hours-table td:last-child { text-align: right; color: var(--text-soft); font-variant-numeric: tabular-nums; }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(1.05); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark-soft); padding: var(--sp-8) 0 var(--sp-4); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-5); }
.footer .brand { margin-bottom: var(--sp-3); }
.footer p { font-size: 0.95rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: var(--sp-3); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.95rem; transition: color .25s var(--ease); }
.footer-links a:hover { color: var(--gold-bright); }
.socials { display: flex; gap: 12px; margin-top: var(--sp-3); }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--on-dark); transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: var(--sp-7); padding-top: var(--sp-4); border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

/* ============================================================
   Floating mobile call/order bar
   ============================================================ */
.mobile-bar { display: none; }

/* ============================================================
   Reveal animation base states (JS adds .is-in)
   ============================================================ */
/* Baseline reveal — deliberately subtle (16px, slow). The signature moves
   below do the real work; this is only a whisper for supporting copy. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 70px;
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
  color: #fff; text-align: center; overflow: hidden;
}
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 50% -10%, rgba(166,47,34,0.5), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; }
.page-hero h1 em { color: var(--gold-bright); font-style: italic; }
.page-hero p { color: var(--on-dark-soft); max-width: 56ch; margin: var(--sp-3) auto 0; }
.page-hero .btn { margin-top: var(--sp-5); }

.menu-nav {
  position: sticky; top: 64px; z-index: 500;
  background: rgba(247,240,226,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.menu-nav-track { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.menu-nav-track::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none; padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--text-soft);
  border: 1px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
}
.menu-nav a:hover { color: var(--curry); border-color: var(--line); }
.menu-nav a.active { background: var(--curry); color: #fff; }

.menu-cat { padding: clamp(48px, 7vw, 84px) 0; scroll-margin-top: 120px; }
.menu-cat:nth-child(even) { background: var(--paper); }
.menu-cat-head { text-align: center; margin-bottom: var(--sp-6); }
.menu-cat-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--text); }
.menu-cat-head h2 .accent { color: var(--curry); font-style: italic; }
.menu-cat-head .note { color: var(--muted); font-size: 0.95rem; margin-top: 10px; font-style: italic; }

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 56px; max-width: 1000px; margin: 0 auto; }
.mi { display: flex; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.mi-main { flex: 1; min-width: 0; }
.mi-top { display: flex; align-items: baseline; gap: 8px; }
.mi-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--text); }
.mi-leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 16px; }
.mi-price { font-weight: 700; color: var(--curry); font-size: 1.05rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mi-desc { font-size: 0.9rem; color: var(--text-soft); margin-top: 3px; }
.mi-tags { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.mi-tag { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.mi-tag.veg { background: rgba(76,132,58,0.14); color: #3d6b2e; }
.mi-tag.spicy { background: rgba(166,47,34,0.12); color: var(--curry); }
/* Darker than --gold-ink: the gold-tinted chip lightens the effective background */
.mi-tag.pop { background: rgba(217,164,65,0.18); color: #7E5A14; }

.price-note { text-align:center; color: var(--muted); font-size: 0.9rem; margin: 0 auto var(--sp-4); max-width: 60ch; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .split, .loc-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .cater-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; gap: 0 0; }
  .media-badge.br { right: 12px; }
  .map-frame { min-height: 340px; }
  .map-frame iframe { min-height: 340px; }

  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: rgba(22,16,11,0.96); backdrop-filter: blur(12px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px; border-top: 1px solid var(--line-dark);
  }
  .mobile-bar a { flex: 1; min-height: 50px; }
  body { padding-bottom: 72px; }
}

/* Swipe affordance for the dish rail */
.swipe-hint {
  display: none; align-items: center; gap: 8px; margin-top: var(--sp-3);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.swipe-hint svg { width: 22px; height: 12px; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-logo { height: 38px; }
  .nav.scrolled .brand-logo { height: 36px; }
  /* Hero type is set for a phone, not scaled down from desktop */
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); line-height: 1.02; }
  .hero-sub { font-size: 1rem; }
  .ed-drop::first-letter { font-size: 3.4em; }
  .ed-stat .num { font-size: 2.8rem; }
  .dish-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; }
  .media-badge.br { position: static; margin: -30px 12px 0; display: inline-flex; }
  .dish-info p { opacity: 1; max-height: 80px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ============================================================
   EDITORIAL SYSTEM
   Numbered sections · hairline rules · asymmetry · full-bleed
   ============================================================ */

/* --- Section masthead: 01 ——————————— LABEL --- */
.ed-meta {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.ed-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--gold-ink); font-variant-numeric: tabular-nums; flex: none;
}
.ed-line { flex: 1; height: 1px; background: var(--line); transform-origin: left center; }
.ed-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); flex: none;
}
.on-dark-block .ed-num { color: var(--gold-bright); }
.on-dark-block .ed-line { background: var(--line-dark); }
.on-dark-block .ed-label { color: var(--on-dark-soft); }

.ed-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.02; font-weight: 600;
  color: var(--text); max-width: 20ch;
  margin-bottom: var(--sp-4);
}
.ed-title .accent { color: var(--curry); font-style: italic; }
.on-dark-block .ed-title { color: var(--on-dark); }

/* --- Editorial drop cap --- */
.ed-drop::first-letter {
  font-family: var(--font-display);
  float: left; font-size: 4.2em; line-height: 0.78;
  padding: 0.06em 0.12em 0 0;
  color: var(--curry); font-weight: 600;
}

/* --- STORY: asymmetric, image bleeds off the right edge --- */
.story-ed { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.ed-figure { position: relative; margin: 0; }
.ed-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-figcap {
  margin-top: var(--sp-3); font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.ed-figcap::before { content: ""; width: 24px; height: 1px; background: var(--gold-ink); flex: none; }

/* Editorial stat — replaces the badge */
.ed-stat { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: var(--sp-3); }
.ed-stat .num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--curry); line-height: 1; font-variant-numeric: tabular-nums; }
.ed-stat .lbl { font-size: 0.92rem; color: var(--text-soft); max-width: 22ch; }

/* Facts list (replaces pill chips) */
.ed-facts { margin-top: var(--sp-5); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ed-facts li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--text-soft); letter-spacing: 0.02em; }

@media (min-width: 1100px) {
  #story .container {
    max-width: none; padding-right: 0;
    padding-left: max(var(--sp-4), calc((100vw - var(--container)) / 2 + var(--sp-4)));
  }
  .story-ed { grid-template-columns: minmax(0, 440px) 1fr; }
  .story-ed .ed-figure { aspect-ratio: 4/3; }
}

/* --- PRINCIPLES: numbered editorial list, no icon bubbles --- */
.ed-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.ed-principle { border-top: 1px solid var(--line-dark); padding-top: var(--sp-4); }
.ed-principle .n { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; color: var(--gold-bright); }
.ed-principle h3 { font-size: 1.55rem; margin: 12px 0 8px; color: var(--on-dark); }
.ed-principle p { font-size: 0.92rem; color: var(--on-dark-soft); }

/* --- DISHES: staggered editorial grid, captions beneath --- */
.ed-dishes { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.ed-dish { display: flex; flex-direction: column; }
.ed-dish-fig { position: relative; overflow: hidden; margin: 0; aspect-ratio: 3/4; background: var(--charcoal); }
.ed-dish-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.ed-dish:hover .ed-dish-fig img { transform: scale(1.05); }
.ed-dish-meta { padding-top: var(--sp-3); }
.ed-dish-top { display: flex; align-items: baseline; gap: 10px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.ed-dish-top .n { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--gold-ink); flex: none; }
.ed-dish-top h3 { font-size: 1.45rem; flex: 1; color: var(--text); }
.ed-dish-top .price { font-size: 0.95rem; font-weight: 600; color: var(--curry); font-variant-numeric: tabular-nums; flex: none; }
.ed-dish-meta p { font-size: 0.88rem; color: var(--text-soft); margin-top: 10px; }
/* magazine offset rhythm */
@media (min-width: 900px) {
  .ed-dish:nth-child(even) { margin-top: clamp(28px, 4vw, 64px); }
}

/* --- CATERING: full-bleed image with an overlapping panel --- */
.ed-bleed { position: relative; }
.ed-bleed-img { position: relative; height: clamp(360px, 52vw, 620px); overflow: hidden; }
.ed-bleed-img img { width: 100%; height: 100%; object-fit: cover; }
.ed-bleed-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,12,8,0.72), rgba(18,12,8,0.15) 60%, transparent); }
.ed-panel {
  position: relative; z-index: 2;
  background: var(--cream-2);
  padding: clamp(28px, 3.5vw, 52px);
  max-width: 520px;
  margin-top: clamp(-140px, -10vw, -80px);
  margin-left: var(--sp-4);
  box-shadow: var(--shadow-lg);
}
.ed-panel h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; color: var(--text); }
.ed-panel p { color: var(--text-soft); margin-bottom: var(--sp-4); font-size: 0.98rem; }
@media (min-width: 900px) {
  .ed-panel { margin-left: max(var(--sp-4), calc((100vw - var(--container)) / 2 + var(--sp-4))); }
}

/* Secondary editorial item (Event Center) */
.ed-aside { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-top: clamp(48px, 7vw, 96px); }
.ed-aside .ed-figure { aspect-ratio: 16/10; overflow: hidden; }

/* ============================================================
   Micro-interactions
   ============================================================ */

/* Scroll progress — a thin "spice" line that fills as you read */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-bright), var(--terracotta) 55%, var(--curry));
  z-index: 1100; pointer-events: none; will-change: transform;
}

/* Cursor ember — a soft saffron glow that trails the pointer (desktop only) */
.cursor-ember {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; margin: -13px 0 0 -13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,195,104,0.9), rgba(196,86,47,0.35) 55%, transparent 72%);
  pointer-events: none; z-index: 1090; opacity: 0;
  mix-blend-mode: screen; filter: blur(1px);
  transition: opacity .3s ease, width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s ease;
}
.cursor-ember.is-visible { opacity: 1; }
.cursor-ember.is-active { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: radial-gradient(circle, rgba(240,195,104,0.55), rgba(196,86,47,0.25) 55%, transparent 72%); }
@media (hover: none), (pointer: coarse) { .cursor-ember { display: none !important; } }

/* Press ripple — grows from the exact tap/click point */
.btn, .platform { position: relative; overflow: hidden; }
.ripple {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255,255,255,0.55); pointer-events: none; opacity: .7;
}
.btn-primary .ripple, .platform.solid .ripple, .btn-ghost .ripple { background: rgba(22,16,11,0.28); }
@keyframes rippleOut { to { transform: translate(-50%,-50%) scale(20); opacity: 0; } }

/* Magnetic buttons — swap the CSS transform-lift for JS magnetism */
.btn.magnetic { transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease); }

/* Heading word-rise reveal */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.split-word > .split-inner { display: inline-block; will-change: transform; }

/* Dish card 3D tilt */
.dish-card { will-change: transform; }
.dish-card.tilt { transition: box-shadow .4s var(--ease); }
.dish-card.tilt img { transition: none; }

/* ============================================================
   ORDERING OPTIONS MODAL — "Order Online" chooser
   ============================================================ */
.order-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 16px; }
.order-modal[hidden] { display: none; }
.order-modal-backdrop {
  position: absolute; inset: 0; background: rgba(18,12,8,0.62);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .25s var(--ease);
}
.order-modal.is-open .order-modal-backdrop { opacity: 1; }
.order-modal-panel {
  position: relative; z-index: 1; width: min(440px, 100%);
  background: var(--cream-2); border-radius: var(--r-lg);
  padding: clamp(26px, 5vw, 40px); box-shadow: var(--shadow-lg); text-align: center;
  max-height: calc(100dvh - 32px); overflow-y: auto;
  transform: translateY(14px) scale(0.98); opacity: 0;
  transition: transform .32s var(--ease), opacity .32s var(--ease);
}
.order-modal.is-open .order-modal-panel { transform: none; opacity: 1; }
.order-modal-close {
  position: absolute; top: 12px; right: 14px; width: 44px; height: 44px;
  border-radius: 50%; font-size: 26px; line-height: 1; color: var(--muted);
  display: grid; place-items: center;
}
.order-modal-close:hover { background: rgba(0,0,0,0.06); color: var(--text); }
.order-modal-title { font-size: clamp(1.9rem, 5vw, 2.5rem); margin: 8px 0 22px; color: var(--text); }
.order-modal-title .accent { color: var(--curry); font-style: italic; }
.order-opts { display: grid; gap: 10px; text-align: left; }
.order-opt {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px; min-height: 64px;
  border-radius: var(--r-md); border: 1px solid var(--line); background: #fff;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.order-opt:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.order-opt.primary {
  background: linear-gradient(135deg, var(--curry), var(--curry-deep));
  border-color: transparent; color: var(--cream-2); box-shadow: 0 8px 22px rgba(126,32,25,0.28);
}
.order-opt.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(126,32,25,0.36); }
.order-opt-main { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.order-opt-label { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.1; }
.order-opt-sub { font-size: 0.82rem; color: var(--muted); }
.order-opt.primary .order-opt-sub { color: rgba(252,247,236,0.82); }
.order-opt-arrow { flex: none; opacity: 0.55; }
.order-opt-arrow svg { width: 20px; height: 20px; display: block; }

@media (prefers-reduced-motion: reduce) {
  .order-modal-backdrop, .order-modal-panel { transition: opacity .001ms; transform: none; }
}

/* ============================================================
   ORDER PAGE — direct pickup ordering
   ============================================================ */
.order-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 56px);
  max-width: var(--container); margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--sp-4) clamp(64px, 8vw, 110px);
  align-items: start;
}
/* Grid items default to min-width:auto, which refuses to shrink below the
   content's min-width. The category nav is a no-wrap row of 13 chips (~1500px),
   so without this the column blows the page wide open on phones. */
.order-menu { min-width: 0; }
.order-cart { min-width: 0; }
.order-loading { color: var(--muted); padding: var(--sp-6) 0; }

/* "Online ordering being set up" notice */
.order-notice-wrap { max-width: var(--container); margin: 0 auto; padding: clamp(20px,3vw,32px) var(--sp-4) 0; }
.order-notice {
  display: flex; align-items: flex-start; gap: 14px;
  background: linear-gradient(135deg, rgba(240,195,104,0.18), rgba(217,164,65,0.12));
  border: 1px solid var(--gold); border-left: 4px solid var(--curry);
  border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.order-notice-ic { width: 26px; height: 26px; flex: none; color: var(--curry); margin-top: 2px; }
.order-notice p { margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--text); }
.order-notice strong { display: block; font-size: 1.08rem; color: var(--curry); margin-bottom: 2px; }
.order-notice a { color: var(--curry); font-weight: 700; white-space: nowrap; }
.order-notice a:hover { text-decoration: underline; }

/* Sticky category nav — solid background (no backdrop-blur: it sits directly
   under the already-blurred nav, and stacking two blur layers flickers on scroll) */
.order-cat-nav {
  position: sticky; top: 63px; z-index: 400;
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  background: var(--cream); padding: 12px 0; margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}
.order-cat-nav::-webkit-scrollbar { display: none; }
.order-cat-nav a {
  flex: none; padding: 9px 16px; border-radius: 999px; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  border: 1px solid transparent; min-height: 44px; display: inline-flex; align-items: center;
  transition: all .25s var(--ease);
}
.order-cat-nav a:hover { color: var(--curry); border-color: var(--line); }

.order-cat { padding: var(--sp-5) 0 var(--sp-4); scroll-margin-top: 120px; }
.order-cat-note { font-size: 0.9rem; color: var(--muted); font-style: italic; margin: -6px 0 var(--sp-3); }
.order-items { display: grid; gap: 2px; }

/* One orderable row */
.oi {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 14px 0; border-bottom: 1px dashed var(--line);
}
.oi-main { flex: 1; min-width: 0; }
.oi-top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.oi-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--text); }
.oi-price { font-weight: 600; color: var(--curry); font-variant-numeric: tabular-nums; margin-left: auto; }
.oi-choice {
  margin-top: 8px; font-family: var(--font-body); font-size: 0.85rem;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream-2); color: var(--text); min-height: 40px; max-width: 190px;
}
.oi-choice.needs-choice { border-color: var(--curry); box-shadow: 0 0 0 3px rgba(166,47,34,0.15); }

/* Stepper — shows "Add" until the item is in the cart, then −/qty/+ */
.oi-stepper { display: flex; align-items: center; gap: 4px; flex: none; }
.oi-add {
  min-height: 44px; padding: 0 22px; border-radius: 999px;
  background: var(--curry); color: var(--cream-2);
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(126,32,25,0.28);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.oi-add:hover { background: var(--curry-deep); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(126,32,25,0.36); }
.oi-add:active { transform: scale(0.95); }
.step-group { display: none; align-items: center; gap: 4px; }
.oi-stepper.has-qty .oi-add { display: none; }
.oi-stepper.has-qty .step-group { display: flex; }
.step {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--cream-2);
  color: var(--curry); font-size: 20px; line-height: 1; font-weight: 600;
  display: grid; place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.step:hover { background: var(--curry); color: #fff; border-color: var(--curry); }
.step:active { transform: scale(0.92); }
.step-qty { min-width: 26px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text); }

/* Cart */
.order-cart { position: sticky; top: 88px; }
.cart-inner {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-4);
  box-shadow: var(--shadow-md);
}
.cart-lines { display: grid; gap: 10px; max-height: 34vh; overflow-y: auto; }
.cart-empty { color: var(--muted); font-size: 0.92rem; }
.cart-line { display: grid; grid-template-columns: auto 1fr auto auto; gap: 8px; align-items: baseline; font-size: 0.92rem; }
.cl-qty { color: var(--gold-ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.cl-name { color: var(--text); min-width: 0; }
.cl-name em { color: var(--muted); font-size: 0.85em; }
.cl-sub { font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.cl-rm { color: var(--muted); font-size: 18px; line-height: 1; padding: 4px 6px; border-radius: 4px; }
.cl-rm:hover { color: var(--curry); background: rgba(166,47,34,0.08); }

.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text);
}
#cartTotalValue { color: var(--curry); font-variant-numeric: tabular-nums; }
.tax-flag {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; font-style: normal;
  color: var(--gold-ink); vertical-align: middle; margin-left: 6px;
}
.cart-note { font-size: 0.78rem; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.cart-note strong { color: var(--text-soft); }

.cart-form { margin-top: var(--sp-4); display: grid; gap: var(--sp-3); }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); }
.field .req { color: var(--curry); }
.field .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; /* 16px stops iOS auto-zoom */
  padding: 12px 14px; min-height: 48px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--text); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 80px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-ink); box-shadow: 0 0 0 3px rgba(140,100,25,0.15);
}
.field input[aria-invalid="true"] { border-color: var(--curry); }
.field .hint { font-size: 0.76rem; color: var(--muted); }
.wait-note {
  display: flex; gap: 9px; align-items: flex-start;
  margin-top: 10px; padding: 11px 13px; border-radius: var(--r-sm);
  background: rgba(217,164,65,0.12); border: 1px solid var(--line);
  font-size: 0.82rem; color: var(--text-soft); line-height: 1.5;
}
.wait-note svg { width: 17px; height: 17px; flex: none; color: var(--gold-ink); margin-top: 1px; }
.wait-note strong { color: var(--text); }
.err { font-size: 0.8rem; color: var(--curry); font-weight: 500; }
.form-err { margin-top: 8px; padding: 10px 12px; background: rgba(166,47,34,0.08); border-radius: var(--r-sm); }
.cart-submit { width: 100%; margin-top: 4px; }
.cart-submit:disabled { opacity: 0.6; cursor: wait; }
.cart-legal { font-size: 0.74rem; color: var(--muted); text-align: center; }

/* Honeypot — visually gone, still fillable by bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Success */
.order-success { padding: clamp(60px, 12vw, 140px) var(--sp-4); display: grid; place-items: center; }
.success-card {
  max-width: 560px; text-align: center;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
}
.success-mark {
  width: 68px; height: 68px; margin: 0 auto var(--sp-4);
  border-radius: 50%; display: grid; place-items: center;
  background: var(--logo-green); color: #fff;
}
.success-mark svg { width: 32px; height: 32px; }
.success-card h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.success-card p { color: var(--text-soft); margin-bottom: 10px; }
.success-sub { font-size: 0.95rem; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: var(--sp-5); }

/* Mobile cart bar */
.cart-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 900; align-items: center; gap: 12px;
  background: var(--curry); color: var(--cream-2);
  padding: 14px 18px; border-radius: 999px; min-height: 56px;
  box-shadow: 0 12px 34px rgba(126,32,25,0.45);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
}
.cart-bar-count {
  background: var(--gold); color: var(--ink);
  min-width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.cart-bar-total { margin-left: auto; font-variant-numeric: tabular-nums; }
.cart-bar-total em { font-style: normal; font-size: 11px; opacity: 0.75; letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-cart { position: static; }
  .cart-lines { max-height: none; }
  .cart-bar { display: flex; }
  body.ordering { padding-bottom: 96px; }
}

/* ============================================================
   BESPOKE MOBILE — designed for thumb, not compressed from desktop
   Declared last so it wins the cascade over the editorial base rules.
   ============================================================ */
@media (max-width: 860px) {
  /* Editorial rhythm tightens up */
  .ed-title { font-size: clamp(2rem, 8vw, 2.6rem); max-width: 16ch; }
  .ed-principles { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .ed-facts { grid-template-columns: 1fr; }
  .ed-aside { grid-template-columns: 1fr; }
  .ed-panel { margin-left: var(--sp-4); margin-right: var(--sp-4); margin-top: -60px; max-width: none; }

  /* Dishes become a thumb-native swipe rail, edge-to-edge */
  .ed-dishes {
    display: flex; gap: var(--sp-3);
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 calc(-1 * var(--sp-4));
    padding: 4px var(--sp-4) var(--sp-3);
  }
  .ed-dishes::-webkit-scrollbar { display: none; }
  .ed-dish { flex: 0 0 76%; scroll-snap-align: start; margin-top: 0 !important; }
  .ed-dish-fig { aspect-ratio: 4/5; }
  .swipe-hint { display: flex; }

  /* Menu page → collapsible accordions instead of a 100-item scroll */
  .menu-cat { padding: 0; border-bottom: 1px solid var(--line); scroll-margin-top: 108px; }
  .menu-cat:nth-child(even) { background: transparent; }
  .menu-cat-head {
    display: grid; grid-template-columns: 1fr auto; align-items: center;
    text-align: left; margin: 0; padding: 20px 0; cursor: pointer; gap: 8px;
  }
  .menu-cat-head .eyebrow { display: none; }
  .menu-cat-head h2 { font-size: 1.55rem; grid-column: 1; }
  .menu-cat-head .note { grid-column: 1; display: none; margin-top: 6px; }
  .menu-cat.open .menu-cat-head .note { display: block; }
  .acc-ic {
    grid-column: 2; grid-row: 1 / span 2; width: 24px; height: 24px;
    color: var(--gold-ink); transition: transform .4s var(--ease); flex: none;
  }
  .menu-cat.open .acc-ic { transform: rotate(45deg); }
  .menu-items-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
  .menu-cat.open .menu-items-wrap { grid-template-rows: 1fr; }
  .menu-items-wrap > .menu-items { overflow: hidden; min-height: 0; }
  .menu-cat.open .menu-items-wrap > .menu-items { padding-bottom: 16px; }

  /* Footer links need real tap height on a phone (44px min), not 25px */
  .footer-links { gap: 0; }
  .footer-links a[href] { padding: 11px 0; min-height: 44px; display: flex; align-items: center; }
  .footer-links span { padding: 6px 0; display: block; }
  .footer-grid { gap: var(--sp-6); }

  /* The phone number is a primary tap target, not just an inline link */
  .info-row a[href^="tel"] { min-height: 44px; display: inline-flex; align-items: center; }

  /* Category chips are the menu's main navigation — full 44px tap height */
  .menu-nav a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Clear the floating Call/Order bar (76px + safe area), not just 72px */
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); line-height: 1.02; }
  .ed-drop::first-letter { font-size: 3.4em; }
  .ed-stat .num { font-size: 2.8rem; }
  .ed-dish { flex: 0 0 82%; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cursor-ember { display: none !important; }
  .scroll-progress { display: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  /* Decorative brand marquee is aria-hidden — keep it gently scrolling */
  .marquee-track { animation: marquee 48s linear infinite !important; }
  .hero-scroll .mouse::before { animation: none; }
}
