/* ==========================================================
   CHARBQ — Charcoal-Fired BBQ · Poway, CA
   Silent, white-space-first restaurant brand site.
   Vanilla CSS. No frameworks. No build step.
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  /* Surface — warm bone, never stark white */
  --bg:            #FBF9F4;
  --bg-elevated:   #F5F1E8;
  --hairline:      #E8E2D4;

  /* Ink */
  --ink:           #0A0A0A;
  --ink-soft:      #4A4A4A;
  /* Brief spec is #8A8A8A; darkened to clear WCAG AA (4.5:1) for small text. */
  --ink-muted:     #707070;

  /* Accent — gold, matched to the logo wordmark. Used SPARINGLY. */
  --gold:          #D4A24C;
  --gold-deep:     #B2832E;
  --gold-tint:     #FBF1D8;
  --gold-soft:     #E8C77A;

  --focus-ring:    #0A0A0A;

  /* Type */
  /* Satoshi variable (Fontshare) drives the whole site, 300–900 */
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  /* Montserrat — hero lockup only, matched to the logo wordmark */
  --font-display: 'Montserrat', 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Wordmark size — "CHARBQ" in Montserrat 800 measures 4.957em wide, so it
     fills ~85% of the hero's content box (100vw minus its 2x1.5rem padding)
     at every phone width without ever clipping. */
  --fs-mega:     clamp(3rem, calc((100vw - 3rem) * 0.193), 14rem);
  --fs-display:  clamp(2.5rem, 6vw, 5rem);
  --fs-h2:       clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h3:       clamp(1.25rem, 2vw, 1.5rem);
  --fs-body:     clamp(1rem, 1.15vw, 1.0625rem);
  --fs-small:    0.875rem;
  --fs-eyebrow:  0.75rem;

  /* Spacing — strict 8px grid */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --space-9: 12rem;

  /* Motion */
  --ease:     cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-base: 350ms;
  --dur-slow: 600ms;

  --nav-h: 72px;
  --bar-h: 64px;

  --wrap: 1200px;
}

/* ----------------------------------------------------------
   2. RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; line-height: 1.08; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

button, a, [role="button"] { touch-action: manipulation; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

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

/* ----------------------------------------------------------
   3. LAYOUT HELPERS
   ---------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .wrap { padding-inline: 2.5rem; }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 400;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* The thin gold section rule (1px, 60px) above eyebrow labels */
.rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-3);
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--space-2);
}

/* Per-page header block */
.page-head { margin-bottom: var(--space-6); }
.page-title {
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--space-2);
}
.page-lede {
  margin-top: var(--space-3);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 42ch;
}
.page-lede--wide { max-width: 65ch; }

/* Generic prose */
.prose { max-width: 65ch; }
.prose p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.prose p:last-child { margin-bottom: 0; }
.prose__muted { color: var(--ink-muted); }

/* ----------------------------------------------------------
   4. BUTTONS — three variants. Sharp corners. Never gold.
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  padding: 18px 36px;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 16.5px 34.5px;
}
.btn-block { width: 100%; }

.btn__arrow { transition: transform var(--dur-fast) var(--ease); }

.btn-primary:active,
.btn-outline:active { transform: scale(0.97); }

.btn[disabled],
.btn.is-disabled {
  background: var(--hairline);
  color: var(--ink-muted);
  border-color: var(--hairline);
  cursor: not-allowed;
  pointer-events: none;
}

/* Ghost — link-style with animated underline */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  padding: 14px 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary,
  .btn-outline {
    transition: background var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease),
                letter-spacing var(--dur-fast) var(--ease),
                transform 80ms var(--ease);
  }
  /* Premium hover — text shifts to gold, tracking opens a hair. Bg stays black. */
  .btn-primary:hover { color: var(--gold); letter-spacing: 0.09em; }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-primary:hover .btn__arrow { transform: translateX(4px); }
  .btn-ghost::after { transition: transform var(--dur-base) var(--ease); }
  .btn-ghost:hover::after,
  .btn-ghost:focus-visible::after { transform: scaleX(1); }
}

/* ----------------------------------------------------------
   5. NAV
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 249, 244, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  height: var(--nav-h);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-left: 0.875rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .nav__inner {
    padding-left: 1.25rem;
    padding-right: 2.5rem;
  }
}

.nav__logo-link { display: inline-flex; align-items: center; }
.nav__logo {
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav__links { display: none; }
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    gap: var(--space-4);
  }
}
.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.nav__link.is-active::after { transform: scaleX(1); background: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .nav__link::after { transition: transform var(--dur-base) var(--ease); }
  .nav__link:hover::after { transform: scaleX(1); }
}

.nav__actions { display: flex; align-items: center; gap: var(--space-2); }
.nav__cta {
  display: none;
  min-height: 44px;
  padding: 13px 24px;
  font-size: 12px;
}
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

/* Hamburger — three thin lines morphing to X */
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -12px;
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger-box {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}
.nav__burger-line {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__burger-line:nth-child(1) { top: 0; }
.nav__burger-line:nth-child(2) { top: 6.25px; }
.nav__burger-line:nth-child(3) { top: 12.5px; }

body.menu-open .nav__burger-line:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
body.menu-open .nav__burger-line:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger-line:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

/* ----------------------------------------------------------
   6. MOBILE MENU OVERLAY
   ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg);
  padding: calc(var(--nav-h) + var(--space-4)) 1.5rem calc(var(--space-4) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 400ms var(--ease), visibility 0s linear 400ms;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
  transition: transform 400ms var(--ease), visibility 0s linear 0s;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu__link {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu__cta { width: 100%; margin-top: var(--space-3); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: visibility 0s linear 0s; }
}

/* ----------------------------------------------------------
   7. PAGE ROUTER — fade transitions
   ---------------------------------------------------------- */
.page { display: none; }
.page.is-active { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .page.is-leaving {
    display: block;
    animation: page-out 250ms var(--ease) forwards;
  }
  .page.is-entering { animation: page-in var(--dur-base) var(--ease-out); }
}
@media (prefers-reduced-motion: reduce) {
  .page.is-entering { animation: page-fade 150ms linear; }
}
@keyframes page-out {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes page-fade {
  from { opacity: 0; } to { opacity: 1; }
}

/* Non-home pages: consistent top/bottom rhythm */
.page:not(#page-home) {
  padding-top: var(--space-6);
  padding-bottom: var(--space-7);
}
@media (min-width: 1024px) {
  .page:not(#page-home) {
    padding-top: var(--space-7);
    padding-bottom: var(--space-8);
  }
}

/* In-view reveal — home long-scroll sections only */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ----------------------------------------------------------
   8. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Warm bone hero. A real video sits on top of this once hero.mp4
     is added; until then the tonal watermark marks where it goes.
     Banner-style proportions (Chipotle-like) — not full viewport. */
  background: var(--bg);
  min-height: clamp(420px, 62vh, 640px);
  padding: var(--space-5) 1.5rem var(--space-5);
}
@supports (height: 100svh) {
  .hero { min-height: clamp(420px, 62svh, 640px); }
}
/* Clear the fixed mobile order bar so the CTA never sits beneath it */
@media (max-width: 767px) {
  .hero {
    min-height: clamp(380px, 56vh, 560px);
    padding-bottom: calc(var(--bar-h) + var(--space-4));
  }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}
.hero--no-video .hero__video { display: none; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.hero--no-video .hero__scrim { background: transparent; }

/* Ember/grain texture — lends footage and stills a film quality */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: multiply;
}

/* Giant tonal watermark — sits BEHIND the wordmark, where video will live */
.hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 28vw, 20rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(212, 162, 76, 0.07);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}
.hero--no-video .hero__watermark { display: flex; }

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Editorial hairline rules that frame the wordmark */
.hero__rule {
  position: relative;
  width: min(260px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent,
              rgba(212, 162, 76, 0.7) 28%, rgba(212, 162, 76, 0.7) 72%, transparent);
}
.hero__rule--top    { margin-bottom: var(--space-2); }
.hero__rule--bottom { margin-top: var(--space-4); }
/* Center diamond — reads as a deliberate gap in the top rule */
.hero__rule--top::after {
  content: "\25C6";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 9px;
  background: var(--bg);
  color: var(--gold-soft);
  font-size: 6px;
  line-height: 1;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-size: var(--fs-mega);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--gold);
  /* Subtle metallic depth — kept restrained */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  margin: 0;
}

/* When the wordmark PNG is present, hide the text fallback.
   When the img errors (file missing), it removes itself → text shows.
   Glow is layered drop-shadows — scales perfectly, never pixelates,
   tweakable here without ever touching the PNG. */
.hero__wordmark-img {
  display: block;
  width: 100%;
  max-width: min(320px, 52vw);
  height: auto;
  margin-inline: auto;
  /* Dark contrast halo sits closest to the silhouette; gold halos extend
     further outward for atmospheric glow. */
  filter:
    drop-shadow(0 6px 24px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(212, 162, 76, 0.55))
    drop-shadow(0 0 60px rgba(212, 162, 76, 0.35))
    drop-shadow(0 0 140px rgba(212, 162, 76, 0.22));
}
@media (max-width: 767px) {
  .hero__wordmark-img { max-width: 48vw; }
}
.hero__wordmark:has(.hero__wordmark-img) .hero__wordmark-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.hero__cta {
  margin-top: var(--space-3);
}

/* Hero entrance — paused keyframes that run once body.is-loaded is set.
   Keyframes animate only opacity / translate / scale, leaving `transform`
   free for the CTA's :active press. */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero__watermark {
    animation: hero-fade 1200ms var(--ease-out) both paused,
               watermark-breathe 6s ease-in-out 1200ms infinite paused;
  }
  html.js .hero__eyebrow,
  html.js .hero__rule {
    animation: hero-drop 400ms var(--ease-out) 300ms both paused;
  }
  html.js .hero__wordmark {
    animation: hero-rise 700ms var(--ease-out) 500ms both paused;
  }
  html.js .hero__cta {
    animation: hero-up 400ms var(--ease-out) 1000ms both paused;
  }
  body.is-loaded .hero__watermark,
  body.is-loaded .hero__eyebrow,
  body.is-loaded .hero__rule,
  body.is-loaded .hero__wordmark,
  body.is-loaded .hero__cta {
    animation-play-state: running;
  }
}

@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-drop {
  from { opacity: 0; translate: 0 -8px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes hero-rise {
  from { opacity: 0; scale: 0.96; }
  to   { opacity: 1; scale: 1; }
}
@keyframes hero-up {
  from { opacity: 0; translate: 0 16px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes watermark-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__watermark { animation: none; }
}

/* ----------------------------------------------------------
   9. SHOWCASE — "On the fire"
   ---------------------------------------------------------- */
.showcase { padding: var(--space-7) 0; }
@media (min-width: 1024px) { .showcase { padding: var(--space-8) 0; } }

.showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.showcase__all { flex-shrink: 0; }

.showcase__scroller {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
  /* 24px gutter so the first card aligns with the layout edge */
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .showcase__scroller { margin-inline: -2.5rem; padding-inline: 2.5rem; }
}
.showcase__scroller::-webkit-scrollbar { display: none; }

.food-card {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
}
@media (min-width: 560px) { .food-card { flex-basis: 46%; } }
@media (min-width: 1280px) {
  .showcase__scroller {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    gap: var(--space-3) var(--space-4);
  }
  .food-card { flex: initial; max-width: none; }
}

.food-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 4 / 5;
  background: var(--bg-elevated);
  padding: var(--space-3);
}
.food-card__img span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.food-card__body { padding-top: var(--space-2); }
.food-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.food-card__desc {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.food-card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: var(--space-2);
}
.food-card__price {
  font-size: 1rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.food-card__build {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 10px 0;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .food-card { transition: transform var(--dur-base) var(--ease); }
  .food-card__img { transition: filter var(--dur-base) var(--ease); }
  .food-card:hover { transform: translateY(-4px); }
  .food-card:hover .food-card__img { filter: brightness(0.96); }
}
.food-card:focus-within .food-card__price,
.food-card:hover .food-card__price { color: var(--gold); }
@media (prefers-reduced-motion: no-preference) {
  .food-card__price { transition: color var(--dur-fast) var(--ease); }
}

/* ----------------------------------------------------------
   10. VALUES STRIP
   ---------------------------------------------------------- */
.values {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 1024px) { .values { padding: var(--space-7) 0; } }

.values__grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.value__title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.value__text {
  margin-top: var(--space-1);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* ----------------------------------------------------------
   11. EDITORIAL STATEMENT
   ---------------------------------------------------------- */
.statement {
  padding: var(--space-8) 0;
}
@media (min-width: 1024px) { .statement { padding: var(--space-9) 0; } }
.statement__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.statement__line {
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.statement__sub {
  margin-top: var(--space-3);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.statement .btn-ghost { margin-top: var(--space-3); }

/* ----------------------------------------------------------
   12. BUILD YOUR PLATE — the landing-page scroll section
   ---------------------------------------------------------- */
.build { padding: var(--space-8) 0; }
@media (min-width: 1024px) { .build { padding: var(--space-9) 0; } }

/* Smoke divider — a single hairline transition out of the hero */
.hero + .build::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  margin: 0 auto var(--space-7);
  width: 80px;
}

.build__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.build__title {
  margin-top: var(--space-2);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.build__lede {
  margin-top: var(--space-3);
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 44ch;
}

/* Editorial numbered steps — hollow gold numerals, drawn-in left rule */
.build__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 560px;
  margin: var(--space-7) 0 var(--space-6);
  padding-left: clamp(1.75rem, 9vw, 3.25rem);
  text-align: left;
}
.build__steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: var(--gold);
  transform: scaleY(1);
  transform-origin: top;
}
.build__step {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.build__step-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 17vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-feature-settings: "tnum";
}
/* Fallback where text-stroke is unsupported — a solid gold numeral */
@supports not (-webkit-text-stroke: 1px #000) {
  .build__step-num { color: var(--gold); }
}
.build__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.build__step-label {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.build__step-text {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 30ch;
}
.build__cta { margin-top: var(--space-2); }

/* Connecting line draws downward as the section scrolls into view */
@media (prefers-reduced-motion: no-preference) {
  html.js .build__steps::before {
    transform: scaleY(0);
    transition: transform 1400ms var(--ease-out) 200ms;
  }
  html.js .build.is-visible .build__steps::before { transform: scaleY(1); }
}

/* ----------------------------------------------------------
   13. MENU PAGE
   ---------------------------------------------------------- */
.menu-cols {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .menu-cols { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
}
.menu-col { display: flex; flex-direction: column; }
.menu-block { margin-bottom: var(--space-6); }
.menu-block:last-child { margin-bottom: 0; }

.menu-head {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.menu-head::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-3);
}
.menu-note {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.menu-coming {
  margin-top: var(--space-3);
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

.menu-rows { margin-top: var(--space-3); }
.menu-row {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
}
.menu-row:first-child { border-top: 1px solid var(--hairline); }
.menu-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.menu-row__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.menu-row__price {
  font-size: 1.0625rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-row__price--pair {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.menu-row__desc {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

@media (prefers-reduced-motion: no-preference) {
  .menu-rows:not(.menu-rows--compact) .menu-row {
    transition: background var(--dur-fast) var(--ease);
  }
}
@media (hover: hover) {
  .menu-rows:not(.menu-rows--compact) .menu-row:hover {
    background: var(--bg-elevated);
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .menu-rows:not(.menu-rows--compact) .menu-row:hover .menu-row__price { color: var(--gold); }
}

.menu-build { align-self: flex-start; margin-top: var(--space-2); }

/* ----------------------------------------------------------
   14. OUR MEAT
   ---------------------------------------------------------- */
.halal-badge {
  display: inline-block;
  margin-top: var(--space-4);
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meat-grid {
  display: grid;
  gap: var(--space-5) var(--space-6);
}
@media (min-width: 768px) {
  .meat-grid { grid-template-columns: 1fr 1fr; }
}
.meat-card { border-top: 1px solid var(--hairline); padding-top: var(--space-3); }
.meat-card__num {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink-soft);
  font-feature-settings: "tnum";
}
.meat-card__title {
  margin-top: var(--space-2);
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.meat-card__body {
  margin-top: var(--space-2);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ----------------------------------------------------------
   15. LOCATIONS
   ---------------------------------------------------------- */
.find-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 1024px) {
  .find-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
}
.find-block { margin-bottom: var(--space-4); }
.find-block__label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-1);
}
.find-block__value {
  font-size: 1.125rem;
  font-weight: 500;
}
.find-block__value a:hover { color: var(--gold-deep); }

.find-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.find-map {
  border: 1px solid var(--hairline);
  aspect-ratio: 4 / 3;
}
@media (min-width: 1024px) { .find-map { aspect-ratio: 1 / 1; } }
.find-map__frame { width: 100%; height: 100%; border: 0; }

/* ----------------------------------------------------------
   16. BUILDER
   ---------------------------------------------------------- */
.step { margin-bottom: var(--space-5); }
.step__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}
.step__label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.step__counter {
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

.step-pair { display: grid; gap: var(--space-5); }
@media (min-width: 768px) {
  .step-pair { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}

/* Protein cards */
.protein-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
@media (min-width: 768px) { .protein-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }

.protein-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--hairline);
  background: var(--bg);
}
.protein-card.is-selected { border: 2px solid var(--ink); }

.protein-card__check {
  position: absolute;
  top: 8px; right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: var(--gold);
  opacity: 0;
}
.protein-card.is-selected .protein-card__check { opacity: 1; }
.protein-card__check svg { width: 12px; height: 12px; }

.protein-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  padding: var(--space-2);
  text-align: center;
}
.protein-card__media-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.protein-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2);
}
.protein-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.protein-card__price {
  font-size: 0.9375rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.protein-card__sub {
  font-size: var(--fs-eyebrow);
  color: var(--ink-muted);
}
@media (prefers-reduced-motion: no-preference) {
  .protein-card { transition: border-color var(--dur-fast) var(--ease); }
  .protein-card:active { transform: scale(0.98); }
}
@media (hover: hover) {
  .protein-card:not(.is-selected):hover { border-color: var(--ink); }
}

/* Veggie / side pills */
.pill-list { display: flex; flex-wrap: wrap; gap: var(--space-1); }
.pill-list li { display: flex; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid var(--hairline);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.pill.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pill.is-disabled { color: var(--ink-muted); cursor: not-allowed; }
@media (prefers-reduced-motion: no-preference) {
  .pill { transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
  .pill:active { transform: scale(0.98); }
}
@media (hover: hover) {
  .pill:not(.is-selected):not(.is-disabled):hover { border-color: var(--ink); }
}

/* Add plate row */
.builder__add {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.builder__hint { font-size: var(--fs-small); color: var(--ink-muted); }
@media (max-width: 559px) {
  .builder__add .btn { width: 100%; }
}

/* Add-on list */
.addon-list {
  display: grid;
  gap: var(--space-2);
}
@media (min-width: 560px) { .addon-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .addon-list { grid-template-columns: repeat(4, 1fr); } }

.addon-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-2);
  border: 1px solid var(--hairline);
}
.addon-item.is-active { border-color: var(--ink); }
.addon-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
}
.addon-name {
  font-size: 0.9375rem;
  font-weight: 600;
}
.addon-price {
  font-size: 0.9375rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Stepper */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline);
}
.stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
}
.stepper__btn svg { width: 12px; height: 12px; }
.stepper__btn[disabled] { color: var(--ink-muted); cursor: not-allowed; }
@media (hover: hover) {
  .stepper__btn:not([disabled]):hover { background: var(--bg-elevated); }
}
.stepper__qty {
  min-width: 32px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-6);
  padding-bottom: var(--space-4);
}
.footer__grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-4); }
}
.footer__logo-link { display: inline-flex; }
.footer__logo { max-height: 44px; width: auto; height: auto; }
.footer__line {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-soft);
}
.footer__nav { display: flex; flex-direction: column; gap: var(--space-1); }
.footer__nav a {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
  width: max-content;
}
.footer__nav a:hover { color: var(--ink); }
.footer__contact p {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}
.footer__contact a:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ----------------------------------------------------------
   18. CART PILL
   ---------------------------------------------------------- */
.cart-pill {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.cart-pill[hidden] { display: none; }
.cart-pill__icon { width: 18px; height: 18px; }
.cart-pill__total {
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.cart-pill:active { transform: scale(0.98); }
/* Lift above the mobile bar when it is present */
@media (max-width: 767px) {
  .cart-pill { bottom: calc(var(--bar-h) + 1rem + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: no-preference) {
  .cart-pill { transition: transform var(--dur-fast) var(--ease); }
  .cart-pill--pulse { animation: cart-pulse 420ms var(--ease-out); }
}
@keyframes cart-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ----------------------------------------------------------
   19. PERSISTENT MOBILE BOTTOM BAR
   ---------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: calc(var(--bar-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--gold);
  border-top: 1px solid rgba(212, 162, 76, 0.25);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-bar__arrow { transition: transform 300ms var(--ease); }
.mobile-bar:active { background: rgba(0, 0, 0, 0.96); }
.mobile-bar:active .mobile-bar__arrow { transform: translateX(12px); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
/* Hidden while the order modal is open */
body.modal-open .mobile-bar { display: none; }

/* Mobile gets bottom padding so content clears the fixed bar */
@media (max-width: 767px) {
  body { padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom)); }
}

/* ----------------------------------------------------------
   20. ORDER MODAL
   ---------------------------------------------------------- */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 768px) {
  .order-modal { align-items: center; }
}
.order-modal[hidden] { display: none; }

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
@media (prefers-reduced-motion: no-preference) {
  .order-modal__backdrop { animation: fade-in var(--dur-fast) var(--ease); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.order-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg);
  padding: var(--space-3) var(--space-3) calc(var(--space-3) + env(safe-area-inset-bottom));
}
@media (min-width: 768px) {
  .order-modal__dialog {
    max-height: 80vh;
    padding: var(--space-4);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .order-modal__dialog { animation: sheet-up 400ms var(--ease-out); }
}
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  .order-modal__dialog { animation: dialog-in var(--dur-base) var(--ease-out); }
}
@keyframes sheet-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.order-modal__handle {
  width: 36px;
  height: 4px;
  margin: 0 auto var(--space-3);
  background: var(--hairline);
}
@media (min-width: 768px) { .order-modal__handle { display: none; } }

.order-modal__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
}
.order-modal__close svg { width: 14px; height: 14px; }

.order-modal__title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.order-list { margin-bottom: var(--space-3); }
.order-list__empty {
  padding: var(--space-4) 0;
  color: var(--ink-muted);
  font-size: var(--fs-small);
}
.order-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--hairline);
}
.order-row__body { min-width: 0; }
.order-row__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}
.order-row__detail {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--ink-muted);
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-row__price {
  font-size: 0.9375rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.order-row__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink-muted);
}
.order-row__remove svg { width: 12px; height: 12px; }
.order-row__remove:hover { color: var(--ink); }

.order-modal__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-3) 0;
}
.order-modal__total-label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.order-modal__total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.order-modal__cta { margin-top: var(--space-1); }

/* ----------------------------------------------------------
   21. REDUCED MOTION — global safety net
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----------------------------------------------------------
   INTRO OVERLAY — first-visit cinematic reveal
   ---------------------------------------------------------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 500ms var(--ease);
}
.intro.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__skip {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  cursor: pointer;
}
.intro__skip.is-visible { opacity: 1; }
.intro__skip:hover { background: rgba(255, 255, 255, 0.15); }

/* Body is locked + invisible while intro plays */
body.intro-active { overflow: hidden; }
body.intro-active > *:not(.intro) {
  opacity: 0;
  transform: scale(1.015);
}
/* Site reveal — opacity + micro-settle, no jolt */
body.intro-done > *:not(.intro) {
  opacity: 1;
  transform: scale(1);
  transition: opacity 600ms var(--ease), transform 800ms var(--ease-out);
}

/* Respect reduced motion — skip the intro entirely */
@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  body.intro-active { overflow: auto; }
  body.intro-active > *:not(.intro) {
    opacity: 1;
    transform: none;
  }
}

/* ----------------------------------------------------------
   NAV — phone tap-to-call button (sits before Order Online CTA)
   ---------------------------------------------------------- */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__phone:hover { background: var(--bg-elevated); color: var(--gold-deep); }
.nav__phone-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav__phone-text { display: none; }
@media (min-width: 768px) {
  .nav__phone-text { display: inline; }
}
/* Hide phone button on the very smallest screens — the mobile menu has it */
@media (max-width: 480px) {
  .nav__phone { display: none; }
}

/* ----------------------------------------------------------
   MOBILE MENU — quick-contact block under the nav links
   ---------------------------------------------------------- */
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
}
.mobile-menu__contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.5rem 0;
}
.mobile-menu__contact-label {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.mobile-menu__contact-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
}

/* ----------------------------------------------------------
   HERO — tagline + action stack (call backup under CTA)
   ---------------------------------------------------------- */
.hero__tagline {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero--no-video .hero__tagline {
  color: var(--ink-soft);
  text-shadow: none;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: var(--space-3);
}
.hero__call {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}
.hero--no-video .hero__call {
  color: var(--ink-soft);
}
.hero__call:hover { color: var(--gold); }

/* ----------------------------------------------------------
   SOCIAL PROOF — Google reviews block on home page
   ---------------------------------------------------------- */
.proof {
  padding-block: var(--space-7);
  border-top: 1px solid var(--hairline);
}
.proof__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .proof__inner { padding-inline: 2.5rem; }
}
.proof .rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-2);
}
.proof .eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--space-2);
}
.proof__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-3);
}
.proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: 999px;
  margin-bottom: var(--space-5);
  font-size: var(--fs-small);
}
.proof__stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.proof__rating-num {
  font-weight: 800;
  color: var(--ink);
}
.proof__rating-count {
  color: var(--ink-muted);
}
.proof__quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  text-align: left;
}
@media (min-width: 768px) {
  .proof__quotes { grid-template-columns: repeat(3, 1fr); }
}
.proof__quote {
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.proof__quote-text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.proof__quote-attr {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: auto;
}
.proof__more {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   CATERING — page section + cards + CTA panel
   ---------------------------------------------------------- */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-block: var(--space-5);
}
@media (min-width: 768px) {
  .catering-grid { grid-template-columns: repeat(3, 1fr); }
}
.catering-card {
  padding: var(--space-4);
  background: var(--bg-elevated);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.catering-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}
.catering-card__title {
  font-size: var(--fs-h3);
  margin: 0;
}
.catering-card__body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.catering-cta {
  padding: var(--space-5) var(--space-4);
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  text-align: center;
  margin-top: var(--space-5);
}
.catering-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: #fff;
  margin-bottom: 0.625rem;
}
.catering-cta__lede {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-3);
  max-width: 36ch;
  margin-inline: auto;
}
.catering-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-2);
}
.catering-cta__buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.catering-cta__buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.catering-cta__note {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}
.catering-cta__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   LOCATIONS — alt-maps line (Apple Maps · Waze)
   ---------------------------------------------------------- */
.find-alt-maps {
  margin-top: 0.75rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.find-alt-maps a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease);
}
.find-alt-maps a:hover { color: var(--gold-deep); }

/* ----------------------------------------------------------
   ORDER MODAL — alt phone line + fineprint
   ---------------------------------------------------------- */
.order-modal__alt {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin-top: 0.75rem;
}
.order-modal__alt a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.order-modal__fineprint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 38ch;
  margin-inline: auto;
}

/* ----------------------------------------------------------
   FOOTER — email row, signup form, social icons
   ---------------------------------------------------------- */
.footer__social {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.875rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.footer__social-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  background: var(--gold-tint);
}
.footer__social-link svg { width: 16px; height: 16px; }

.footer__signup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__signup-title {
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.footer__signup-lede {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.footer__signup-form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.footer__signup-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: inherit;
  font-size: var(--fs-small);
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
}
.footer__signup-input:focus {
  outline: none;
  border-color: var(--ink);
}
.footer__signup-input::placeholder { color: var(--ink-muted); }
.footer__signup-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.125rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--dur-fast) var(--ease);
}
.footer__signup-btn:hover { background: var(--gold-deep); color: #fff; }
.footer__signup-msg {
  min-height: 1.25em;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.footer__signup-msg.is-error { color: #b34646; }

/* footer__grid — now hosts 4 children (brand / nav / contact / signup).
   Restructure breakpoints so nothing overflows the existing 3-col rule. */
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  }
}

/* Visually-hidden helper (used by signup label) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------
   MENU — preemptive thumbnail slot styles. When a JPG is dropped
   at menu/<dish-slug>.jpg and the <img class="menu-row__thumb">
   is added to a row, this lays it out cleanly. Until then,
   nothing changes.
   ---------------------------------------------------------- */
.menu-row:has(.menu-row__thumb) {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.875rem;
  align-items: start;
}
.menu-row__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-elevated);
}
@media (min-width: 768px) {
  .menu-row:has(.menu-row__thumb) {
    grid-template-columns: 80px 1fr;
  }
  .menu-row__thumb { width: 80px; height: 80px; }
}
