/* =========================================================================
   THE BOMBAY GRILL — "Saffron & Gold"
   Warm, spice-luxury landing page for an authentic Indian restaurant.
   Hand-authored design system. Brand serif (Playfair) retained + elevated.
   ========================================================================= */

/* ------------------------------- Tokens -------------------------------- */
:root {
  /* Warm aubergine/charcoal base */
  --ink-900: oklch(17% 0.022 35);
  --ink-850: oklch(20% 0.026 33);
  --ink-800: oklch(24% 0.03 32);
  --ink-700: oklch(31% 0.035 32);
  --line: oklch(45% 0.04 55 / 0.4);

  /* Cream / parchment text */
  --cream: oklch(95% 0.025 85);
  --cream-dim: oklch(82% 0.03 80 / 0.74);

  /* Spice accents */
  --saffron: oklch(76% 0.16 67);
  --saffron-soft: oklch(76% 0.16 67 / 0.15);
  --marigold: oklch(80% 0.15 80);
  --gold: oklch(84% 0.11 88);
  --gold-deep: oklch(68% 0.12 78);
  --spice: oklch(58% 0.19 33);     /* deep chili red */
  --spice-bright: oklch(64% 0.21 35);
  --cardamom: oklch(64% 0.1 150);   /* green secondary */

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.13rem);
  --text-lg: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --text-display: clamp(2.8rem, 1.3rem + 6.6vw, 7rem);
  --text-section: clamp(2.2rem, 1.3rem + 4vw, 4.4rem);

  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 22px 55px -24px oklch(0% 0 0 / 0.75);
  --shadow-gold: 0 0 0 1px oklch(84% 0.11 88 / 0.35), 0 18px 44px -16px oklch(68% 0.12 78 / 0.6);

  --dur-fast: 180ms;
  --dur: 360ms;
  --dur-slow: 820ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
}

/* ------------------------------- 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: var(--text-base);
  line-height: 1.7;
  color: var(--cream);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Warm grain + top glow atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(115% 80% at 50% -8%, oklch(76% 0.16 67 / 0.10) 0%, transparent 45%),
    radial-gradient(120% 95% at 50% 0%, transparent 60%, oklch(0% 0 0 / 0.5) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.eyebrow { font-size: var(--text-xs); letter-spacing: 0.34em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.02; }

/* Gold filigree divider (replaces their separator.png) */
.filigree { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--gold); }
.filigree::before, .filigree::after { content: ""; height: 1px; width: clamp(40px, 12vw, 90px); background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.filigree::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.filigree span { font-size: 0.9rem; }

.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 200; background: var(--spice); color: #fff; padding: 0.7rem 1.1rem; border-radius: 10px; font-weight: 600; transition: top var(--dur-fast) var(--ease); }
.skip-link:focus { top: 1rem; }

/* ------------------------------- Buttons ------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.02em;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: linear-gradient(135deg, var(--marigold), var(--gold-deep)); color: var(--ink-900); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); background: oklch(100% 0 0 / 0.03); }
.btn-ghost:hover { background: oklch(100% 0 0 / 0.08); transform: translateY(-2px); border-color: var(--gold); }
.btn-spice { background: linear-gradient(135deg, var(--spice-bright), var(--spice)); color: #fff; box-shadow: 0 16px 40px -16px var(--spice); }
.btn-spice:hover { transform: translateY(-2px); }

/* ------------------------------- Header -------------------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: oklch(17% 0.022 35 / 0.85); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.brand .mark { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--marigold), var(--gold-deep)); color: var(--ink-900); font-size: 1.2rem; font-weight: 800; box-shadow: 0 6px 18px -6px var(--gold-deep); }
.brand b { color: var(--saffron); }
.brand small { display: block; font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; margin-top: 2px; text-transform: uppercase; }
/* real brand logo seated on a cream plate so the colored mark stays legible on dark */
.brand--logo { gap: 0; }
.brand--logo img { height: 54px; width: auto; display: block; background: var(--cream); padding: 7px 14px; border-radius: 12px; box-shadow: 0 8px 20px -10px oklch(0% 0 0 / 0.6); }
@media (max-width: 940px) { .brand--logo img { height: 46px; padding: 6px 11px; } }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--cream-dim); position: relative; padding: 4px 0; transition: color var(--dur-fast) var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--saffron); transition: width var(--dur) var(--ease); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--cream); position: relative; transition: background var(--dur-fast) var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--cream); transition: transform var(--dur) var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------- Promo bar ----------------------------- */
/* lives inside .site-header so the fixed header + promo move as one block */
.promo-bar { background: linear-gradient(90deg, var(--spice), var(--gold-deep)); color: #fff; text-align: center; font-size: var(--text-sm); font-weight: 500; padding: 0.55rem 1rem; letter-spacing: 0.02em; line-height: 1.4; }
.promo-bar b { font-weight: 700; }

/* --------------------------------- Hero -------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; padding: 160px 0 clamp(3rem, 8vh, 7rem); }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s var(--ease) forwards; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(17% 0.022 35 / 0.55) 0%, transparent 28%, oklch(17% 0.022 35 / 0.45) 56%, var(--ink-900) 100%),
    linear-gradient(90deg, oklch(17% 0.022 35 / 0.86) 0%, transparent 62%);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-inner { display: grid; gap: 1.5rem; max-width: 52rem; }
.status-chip { display: inline-flex; align-items: center; gap: 0.55rem; align-self: start; padding: 0.5rem 1rem; border-radius: 100px; background: oklch(100% 0 0 / 0.06); border: 1px solid var(--line); font-size: var(--text-xs); letter-spacing: 0.05em; color: var(--cream); backdrop-filter: blur(6px); }
.status-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: oklch(72% 0.2 145); box-shadow: 0 0 0 0 oklch(72% 0.2 145 / 0.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(72% 0.2 145 / 0.6); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero h1 { font-size: var(--text-display); }
.hero h1 em { font-style: italic; color: var(--saffron); }
.hero-sub { font-size: var(--text-lg); color: var(--cream-dim); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.4rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.1rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; }
.hero-meta b { font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); }
.hero-meta span { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); }

/* ------------------------------ Story ---------------------------------- */
.story { text-align: center; }
.story .container { max-width: 64rem; }
.story h2 { font-size: var(--text-section); margin: 1rem 0 1.4rem; }
.story p { color: var(--cream-dim); font-size: var(--text-lg); line-height: 1.85; }
.story-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 3rem; }
.story-stats div { display: grid; gap: 0.2rem; }
.story-stats b { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--saffron); }
.story-stats span { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); }

/* ------------------------------- Section ------------------------------- */
section { position: relative; z-index: 2; }
.section { padding-block: var(--space-section); }
.section-head { display: grid; gap: 0.9rem; max-width: 46rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head h2 { font-size: var(--text-section); }
.section-head p { color: var(--cream-dim); font-size: var(--text-lg); }

/* -------------------------------- Menu --------------------------------- */
.menu-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.dish { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink-850); border: 1px solid var(--line); min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.dish:hover { transform: translateY(-6px); border-color: var(--gold); }
.dish img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform var(--dur-slow) var(--ease); }
.dish:hover img { transform: scale(1.07); }
.dish::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, oklch(17% 0.022 35 / 0.05) 30%, oklch(15% 0.02 35 / 0.95) 92%); }
.dish-body { padding: 1.5rem; display: grid; gap: 0.45rem; }
.dish-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.dish h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; }
.dish .price { font-family: var(--font-display); font-size: 1.35rem; color: var(--saffron); white-space: nowrap; }
.dish .price small { font-size: 0.7rem; color: var(--cream-dim); }
.dish p { font-size: var(--text-sm); color: var(--cream-dim); max-height: 0; opacity: 0; overflow: hidden; transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.dish:hover p, .dish:focus-within p { max-height: 6rem; opacity: 1; }
.dish .tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.62rem; border-radius: 100px; border: 1px solid var(--line); color: var(--cream-dim); }
.tag.veg { color: var(--cardamom); border-color: oklch(64% 0.1 150 / 0.5); }
.tag.spicy { color: var(--spice-bright); border-color: oklch(58% 0.19 33 / 0.55); }
.tag.signature { color: var(--gold); border-color: oklch(84% 0.11 88 / 0.45); }
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; } .col-3 { grid-column: span 3; }
.tall { min-height: 400px; }
.menu-foot { margin-top: 2.4rem; text-align: center; }

/* ----------------------------- Signature ------------------------------- */
.signature { background: var(--ink-850); border-block: 1px solid var(--line); }
.sig-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.sig-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-card); }
.sig-media img { width: 100%; height: 100%; object-fit: cover; }
.sig-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--ink-900); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; }
.sig-copy h2 { font-size: var(--text-section); margin: 0.8rem 0 1rem; }
.sig-copy p { color: var(--cream-dim); font-size: var(--text-lg); margin-bottom: 1.6rem; }
.sig-list { display: grid; gap: 0.9rem; margin-bottom: 1.8rem; }
.sig-list li { display: flex; gap: 0.8rem; align-items: center; list-style: none; }
.sig-list svg { width: 20px; height: 20px; color: var(--saffron); flex-shrink: 0; }

/* ------------------------------- Loyalty ------------------------------- */
.loyalty { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.loyalty-copy h2 { font-size: var(--text-section); margin: 0.6rem 0 1rem; }
.loyalty-copy h2 em { font-style: italic; color: var(--saffron); }
.loyalty-copy p { color: var(--cream-dim); font-size: var(--text-lg); margin-bottom: 1.8rem; }
.app-badges { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.app-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.2rem; border-radius: 12px; border: 1px solid var(--line); background: oklch(100% 0 0 / 0.04); transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.app-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.app-badge svg { width: 22px; height: 22px; }
.app-badge small { display: block; font-size: 0.62rem; color: var(--cream-dim); letter-spacing: 0.06em; }
.app-badge b { font-size: 0.95rem; }
.loyalty-card { background: linear-gradient(150deg, var(--ink-800), var(--ink-900)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); display: grid; gap: 1.2rem; box-shadow: var(--shadow-card); }
.loyalty-card .big { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem); color: var(--gold); line-height: 1; }
.loyalty-card .row { display: flex; gap: 0.8rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--line); }
.loyalty-card .row svg { width: 26px; height: 26px; color: var(--saffron); flex-shrink: 0; }

/* ----------------------------- Testimonials ---------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--ink-850), var(--ink-900)); display: grid; gap: 1rem; align-content: start; }
.review .stars { color: var(--marigold); letter-spacing: 0.15em; font-size: 0.95rem; }
.review p { color: var(--cream); font-size: var(--text-base); line-height: 1.7; }
.review cite { font-style: normal; display: flex; align-items: center; gap: 0.7rem; margin-top: 0.4rem; }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--saffron-soft); color: var(--saffron); font-family: var(--font-display); font-weight: 700; }
.review b { font-weight: 600; font-size: var(--text-sm); }
.review span { display: block; font-size: 0.72rem; color: var(--cream-dim); }

/* ------------------------------- Visit --------------------------------- */
.visit { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.4rem; align-items: stretch; }
.visit-card { background: var(--ink-850); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); display: grid; gap: 1.4rem; align-content: start; }
.visit-row { display: flex; gap: 1rem; align-items: start; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.visit-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.visit-row svg { width: 22px; height: 22px; color: var(--saffron); flex-shrink: 0; margin-top: 3px; }
.visit-row h4 { font-size: var(--text-sm); letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.2rem; }
.visit-row p { font-size: var(--text-base); color: var(--cream); }
.visit-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 360px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.35) contrast(1.05) brightness(0.82) sepia(0.15); }

/* --------------------------------- CTA --------------------------------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding-block: clamp(4rem, 9vw, 7rem); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, oklch(17% 0.022 35 / 0.84), oklch(15% 0.02 35 / 0.92)); }
.cta-band h2 { font-size: var(--text-section); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--cream-dim); font-size: var(--text-lg); max-width: 44ch; margin: 1rem auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------- Footer -------------------------------- */
.site-footer { background: var(--ink-850); border-top: 1px solid var(--line); padding-block: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-grid h5 { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-grid a { color: var(--cream-dim); font-size: var(--text-sm); transition: color var(--dur-fast) var(--ease); }
.footer-grid a:hover { color: var(--cream); }
.footer-about p { color: var(--cream-dim); font-size: var(--text-sm); max-width: 28rem; margin-top: 0.8rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.socials a:hover { background: var(--saffron-soft); border-color: var(--saffron); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.5rem; font-size: var(--text-xs); color: var(--cream-dim); }

/* --------------------------- Sticky order bar -------------------------- */
.order-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 0.8rem clamp(1rem, 4vw, 1.5rem); background: oklch(17% 0.022 35 / 0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(120%); transition: transform var(--dur) var(--ease); display: none; align-items: center; justify-content: space-between; gap: 1rem; }
.order-bar.show { transform: translateY(0); }
.order-bar b { font-family: var(--font-display); font-size: 1.2rem; }
.order-bar small { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--cream-dim); letter-spacing: 0.08em; }

/* ------------------------- Scroll reveal utility ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* ------------------------------ Responsive ----------------------------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  /* anchored to the bottom of the header (top:100%) so it clears the promo strip no matter how it wraps.
     visibility:hidden when closed so it can't paint over the promo bar (positioned child over static sibling). */
  .mobile-menu { position: absolute; top: 100%; left: 0; right: 0; z-index: 95; background: oklch(17% 0.022 35 / 0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); display: grid; gap: 0.3rem; padding: 1.2rem clamp(1.1rem, 4vw, 2.5rem) 1.8rem; transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility var(--dur) var(--ease); }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .mobile-menu .btn { display: inline-flex; justify-content: center; margin-top: 0.8rem; }
  .menu-grid > * { grid-column: 1 / -1 !important; }
  .sig-grid, .loyalty, .visit { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .order-bar { display: flex; }
}
.mobile-menu { display: none; }
@media (max-width: 940px) { .mobile-menu { display: grid; } }

/* --------------------------- Reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-media img { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
