/* =========================================================================
   Marco's Tacos — bespoke premium build (Phase 6 rework)
   Mobile-first. Tokens come from design.json palette + a derived spacing scale.
   No CSS-art placeholders, no carousel, no overlay widgets.
   ========================================================================= */

:root {
  /* palette — from design.json */
  --bg:       #FBF3E2;
  --surface:  #F2E2BD;
  --ink:      #2A1407;
  --accent:   #B8321C;
  --accent-deep: #8a230f; /* AA-on-cream variant for text-on-surface */
  --muted:    #C98A1B;

  /* derived */
  --ink-soft: rgba(42, 20, 7, 0.7);
  --ink-dim:  rgba(42, 20, 7, 0.4);
  --bg-alt:   #F7E9C8;

  /* spacing scale — 4px base, geometric */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* radius — flat hand-painted aesthetic; almost no rounding */
  --r-0: 0;
  --r-1: 2px;
  --r-2: 6px;

  /* typography */
  --display: 'Alfa Slab One', 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* container */
  --maxw: 1180px;
  --gutter: var(--s-5);

  /* motion */
  --ease: cubic-bezier(.2, .7, .25, 1);
  --t-fast: 140ms;
  --t-med: 240ms;

  /* shadow — used sparingly; flat aesthetic */
  --shadow-stamp: 6px 6px 0 var(--ink);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* sticky-nav offset */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--ink); }

p { margin: 0 0 var(--s-4); }

h1, h2, h3, h4 {
  margin: 0 0 var(--s-4);
  font-weight: 400;
  line-height: 1.05;
}

ul { margin: 0; padding: 0; }

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-1);
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus { top: var(--s-2); color: var(--bg); }

/* ---------- visually hidden ---------- */
.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;
}

/* =========================================================================
   HEADER / NAV — sticky anchor-jump, mobile-first
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s-3) var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-3);
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand-mark { height: 28px; width: auto; }
.brand:hover .brand-mark text:first-of-type { fill: var(--accent); }

.primary-nav {
  display: none; /* mobile: hidden, the call button + hero CTAs cover navigation */
}
.primary-nav ul { list-style: none; display: flex; gap: var(--s-5); }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s-2);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.primary-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  min-height: 44px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  border-radius: var(--r-1);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.call-btn:hover {
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.call-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.call-btn__icon { display: inline-flex; }
.call-btn__label { display: none; }

/* =========================================================================
   HERO
   ========================================================================= */
/* ─── Hero — beautiful layered composition, fully centered, no photo, no truck ─── */
.hero {
  padding: 96px var(--gutter) var(--s-9);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(680px, 92vh, 960px);
  /* Stacked: warm horizon gradient + paper-grain noise (multiplied) */
  background:
    linear-gradient(180deg,
      #FDF6E5 0%,
      #F4E4C0 35%,
      #E8C58F 65%,
      #D9A269 92%,
      #C58550 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.08  0 0 0 0 0.03  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  background-size: cover, 280px 280px;
  background-blend-mode: normal, multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* All decorative background layers sit behind the copy via z-index */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* 1. Animated radial sun-glow (top-left, behind everything) */
.hero-bg__sun {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 25% 32%,
    rgba(255, 198, 110, 0.55) 0%,
    rgba(255, 178, 92, 0.20) 38%,
    transparent 65%);
  opacity: 0.85;
}
@keyframes sun-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1.0;  transform: scale(1.06); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg__sun { animation: sun-pulse 6s ease-in-out infinite; transform-origin: 25% 32%; }
}

/* 2. Concentric Bauhaus sun, top-right corner, slow rotation */
.hero-bg__rays {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 460px;
  height: 460px;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .hero-bg__rays { width: 280px; height: 280px; top: -60px; right: -60px; }
}
@keyframes rays-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-bg__rays { animation: rays-spin 90s linear infinite; transform-origin: center; }
}

/* 3. Papel picado banner across the very top */
.hero-bg__papel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  display: block;
  filter: drop-shadow(0 3px 0 rgba(42, 20, 7, 0.12));
  transform-origin: top center;
}
@keyframes papel-sway {
  0%, 100% { transform: rotate(-0.4deg); }
  50%      { transform: rotate(0.4deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg__papel { animation: papel-sway 7s ease-in-out infinite; }
}

/* 4. Big watermark Spanish phrase, behind everything */
.hero-bg__watermark {
  position: absolute;
  left: 50%;
  bottom: clamp(40px, 12vh, 130px);
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 180px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* 5. Decorative chili silhouette, bottom-left */
.hero-bg__chili {
  position: absolute;
  bottom: -12px;
  left: 32px;
  width: 80px;
  height: auto;
  transform: rotate(-12deg);
  opacity: 0.7;
}
@media (max-width: 720px) { .hero-bg__chili { width: 56px; left: 12px; } }
@keyframes chili-tilt {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-9deg)  translateY(-4px); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg__chili { animation: chili-tilt 4.5s ease-in-out infinite; }
}

/* 6. Decorative lime wedge, bottom-right */
.hero-bg__lime {
  position: absolute;
  bottom: 28px;
  right: 36px;
  width: 100px;
  height: auto;
  transform: rotate(18deg);
  opacity: 0.6;
}
@media (max-width: 720px) { .hero-bg__lime { width: 64px; right: 14px; bottom: 18px; } }
@keyframes lime-tilt {
  0%, 100% { transform: rotate(18deg) translateY(0); }
  50%      { transform: rotate(15deg) translateY(-6px); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg__lime { animation: lime-tilt 5s ease-in-out infinite 1s; }
}

/* The copy stage — single centered column */
.hero-stage {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy {
  text-align: center;
  width: 100%;
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin: 0 0 var(--s-4);
  padding: 6px var(--s-4);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-ribbon__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #6FCF97;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.55);
  animation: ribbon-pulse 2.4s var(--ease) infinite;
}
@keyframes ribbon-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ribbon__dot { animation: none; }
}

.eyebrow {
  margin: 0 0 var(--s-4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .dot { display: inline-block; margin: 0 var(--s-2); color: var(--accent); }
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.hero-wordmark {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: var(--s-5) auto var(--s-5);
  display: block;
  filter: drop-shadow(0 4px 0 rgba(42, 20, 7, 0.18));
}
.hero-wordmark text { paint-order: stroke fill; stroke: rgba(251, 243, 226, 0.9); stroke-width: 5; }

/* Per-letter cascade entry — each letter has --i set inline (0..11) */
.hero-wordmark .wm-letter {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
@keyframes wm-letter-in {
  from { opacity: 0; transform: translateY(14px) rotate(-3deg); }
  to   { opacity: 1; transform: none; }
}
.hero-wordmark .wm-rule {
  opacity: 1;
}
@keyframes wm-rule-in {
  from { opacity: 0; transform: scaleX(0.6); }
  to   { opacity: 1; transform: none; }
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto var(--s-4);
  text-shadow: none;
  max-width: 760px;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto var(--s-6);
  line-height: 1.55;
  text-shadow: none;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin: 0 auto var(--s-6);
}

.hero-trust {
  margin: 0 auto;
  font-size: 14px;
  color: var(--ink-soft);
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  align-items: center;
  text-shadow: none;
}
.hero-trust strong { font-weight: 700; color: var(--ink); }
.stars { color: var(--muted); letter-spacing: 2px; font-size: 16px; text-shadow: none; }

.hero-ribbon {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Choreographed entry — desktop only, respects reduced-motion ─── */
@media (min-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-ribbon       { opacity: 0; transform: translateY(-8px); animation: hero-fade-down 600ms var(--ease) 100ms forwards; }
  .hero-copy .eyebrow{ opacity: 0; animation: hero-fade-in 500ms var(--ease) 250ms forwards; }
  .hero-wordmark .wm-letter { opacity: 0; animation: wm-letter-in 520ms var(--ease) calc(400ms + var(--i, 0) * 45ms) forwards; }
  .hero-wordmark .wm-rule { opacity: 0; transform-origin: center; animation: wm-rule-in 600ms var(--ease) 850ms forwards; }
  .hero-headline     { opacity: 0; transform: translateY(8px); animation: hero-fade-up 700ms var(--ease) 950ms forwards; }
  .hero-sub          { opacity: 0; transform: translateY(8px); animation: hero-fade-up 700ms var(--ease) 1100ms forwards; }
  .hero-ctas         { opacity: 0; transform: translateY(8px); animation: hero-fade-up 700ms var(--ease) 1250ms forwards; }
  .hero-trust        { opacity: 0; animation: hero-fade-in 600ms var(--ease) 1450ms forwards; }
  /* Decorative bg elements fade in late so they feel like the room reveals around the type */
  .hero-bg__rays     { opacity: 0; animation: hero-fade-in 1200ms var(--ease) 600ms forwards; }
  .hero-bg__papel    { opacity: 0; transform: translateY(-30px); animation: papel-drop 800ms var(--ease) 0ms forwards, papel-sway 7s ease-in-out 800ms infinite; }
  .hero-bg__watermark{ opacity: 0; animation: watermark-in 1500ms var(--ease) 800ms forwards; }
  .hero-bg__chili    { opacity: 0; animation: chili-fade 800ms var(--ease) 1500ms forwards; }
  .hero-bg__lime     { opacity: 0; animation: lime-fade  800ms var(--ease) 1700ms forwards; }
}
@keyframes hero-fade-in   { to { opacity: 1; } }
@keyframes hero-fade-up   { to { opacity: 1; transform: none; } }
@keyframes hero-fade-down { to { opacity: 1; transform: none; } }
@keyframes papel-drop     { to { opacity: 1; transform: none; } }
@keyframes watermark-in   { to { opacity: 0.06; } }
@keyframes chili-fade     { to { opacity: 0.7; } }
@keyframes lime-fade      { to { opacity: 0.6; } }

/* ─── Hero truck — bottom anchor of the hero composition ─── */
.hero-truck {
  width: 100%;
  max-width: 1100px;
  margin: var(--s-7) auto 0;
  position: relative;
  z-index: 1;
}
.hero-truck svg { width: 100%; height: auto; display: block; }

@keyframes led-pulse-anim {
  0%, 100% { stroke-opacity: 0.55; }
  50%      { stroke-opacity: 1; }
}
@keyframes window-glow-anim {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}
@keyframes steam-wisp-anim {
  0%   { opacity: 0; transform: translateY(8px); }
  30%  { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-22px); }
}
@keyframes cactus-bob-anim {
  0%, 100% { transform: translate(1050px, 140px) rotate(-2deg); }
  50%      { transform: translate(1050px, 140px) rotate(2deg); }
}
@keyframes led-underglow-anim {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.95; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-truck .led-pulse     { animation: led-pulse-anim     2.4s ease-in-out infinite; }
  .hero-truck .window-glow   { animation: window-glow-anim   3.2s ease-in-out infinite; }
  .hero-truck .steam-wisp    { animation: steam-wisp-anim    2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 100%; }
  .hero-truck .cactus-bob    { animation: cactus-bob-anim    3s   ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .hero-truck .led-underglow { animation: led-underglow-anim 2.4s ease-in-out infinite; }
}

/* Truck rolls in from below, after the trust line settles */
@media (min-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-truck { opacity: 0; transform: translateY(40px); animation: hero-fade-up 900ms var(--ease) 1700ms forwards; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: var(--s-3) var(--s-5);
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: var(--r-1);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  box-shadow: 4px 4px 0 var(--ink);
  white-space: nowrap;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { color: #fff; background: #9c2716; }
.btn--ghost {
  background: var(--bg);
  color: var(--ink);
}
.btn--ghost:hover { color: var(--ink); background: var(--surface); }
.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--white:hover { color: var(--ink); background: var(--bg); }
.btn--big {
  min-height: 56px;
  padding: var(--s-4) var(--s-6);
  font-size: 18px;
}
.btn--inline { box-shadow: 3px 3px 0 var(--ink); }
.btn--inline:hover { box-shadow: 5px 5px 0 var(--ink); }

/* =========================================================================
   POSTER — Hatch Show Print steal
   ========================================================================= */
.poster {
  padding: var(--s-7) var(--gutter);
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.poster-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  padding: var(--s-7) var(--s-5);
  background: var(--surface);
  border: 6px solid var(--ink);
  box-shadow:
    0 0 0 3px var(--bg) inset,
    0 0 0 6px var(--ink) inset,
    8px 8px 0 var(--ink);
  text-align: center;
}

.poster-ornament {
  margin: 0;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
}

.poster-stamp {
  margin: var(--s-4) 0;
  font-family: var(--display);
  font-size: clamp(48px, 14vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--accent-deep);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.poster-stamp span:nth-child(2) {
  color: var(--ink);
  font-size: 0.6em;
  letter-spacing: 0.05em;
}
.poster-stamp span:nth-child(3) {
  color: var(--accent-deep);
  /* register-shift micro detail (hand-set imperfection) */
  transform: translateX(-4px);
}

.poster-rule {
  display: block;
  width: 80px;
  height: 5px;
  background: var(--ink);
  margin: var(--s-4) auto;
}

/* =========================================================================
   ABOUT — 40/60 asymmetric
   ========================================================================= */
.about {
  padding: var(--s-8) var(--gutter);
  background: var(--bg);
}

.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

.about-art {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: var(--surface);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 0;
  position: relative;
}
.about-art {
  transition: box-shadow var(--t-med) var(--ease);
}
.about-art:hover {
  box-shadow: 10px 10px 0 var(--ink);
}
.about-art img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}
.about-art:hover img {
  transform: scale(1.025);
}
.about-credit {
  margin: 0;
  padding: 6px var(--s-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
  border-top: 2px solid var(--ink);
  text-align: right;
}

.about-copy {
  max-width: 620px;
}

.section-headline {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 0.96;
  color: var(--ink);
  margin: 0 0 var(--s-5);
}

.lede {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-4);
}

/* =========================================================================
   PHRASE BREAK — Iron & Resin steal (flat-saturated band)
   ========================================================================= */
.phrase-break {
  padding: var(--s-8) var(--gutter);
  text-align: center;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.phrase-break--accent { background: var(--accent); }
.phrase-break--ochre { background: var(--muted); }

.phrase-stamp {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 8vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  color: #fff;
  text-transform: uppercase;
}
.phrase-break--ochre .phrase-stamp { color: var(--ink); }

/* =========================================================================
   MENU
   ========================================================================= */
.menu {
  padding: var(--s-8) var(--gutter);
  background: var(--bg-alt);
  border-bottom: 2px solid var(--ink);
}

.menu-head {
  max-width: 720px;
  margin: 0 auto var(--s-7);
  text-align: center;
}

.menu-grid {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

.menu-card {
  padding: var(--s-4) var(--s-5);
  background: var(--bg);
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--accent);
  border-radius: var(--r-1);
  box-shadow: var(--shadow-stamp);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 9px 0 var(--ink);
}
.menu-card__name {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 var(--s-1);
  line-height: 1.2;
}
.menu-card__desc {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* =========================================================================
   FIND US — split 50/50 (hours + location merged)
   ========================================================================= */
.find-us {
  padding: var(--s-8) var(--gutter);
  background: var(--bg);
}

.find-us-head {
  max-width: 720px;
  margin: 0 auto var(--s-7);
  text-align: center;
}

.find-us-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}

.sub-heading {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: var(--s-3);
  color: var(--ink);
}

.hours-list {
  margin: 0 0 var(--s-5);
  border-top: 2px solid var(--ink);
}
.hours-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--ink-dim);
}
.hours-row dt {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.hours-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.hours-row--open {
  background: rgba(184, 50, 28, 0.08);
  border-radius: var(--r-1);
  padding-left: var(--s-3);
  margin-left: calc(-1 * var(--s-3));
}
.hours-row--open dt,
.hours-row--open dd {
  color: var(--accent);
  font-weight: 700;
}

.address {
  margin: 0 0 var(--s-4);
  font-style: normal;
}
.address-street { font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: var(--s-1); }
.address-city { color: var(--ink-soft); margin: 0; }

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: var(--s-4);
  border: 3px solid var(--ink);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-fallback svg { width: 100%; height: 100%; }

/* =========================================================================
   GALLERY — one full-bleed feature illustration
   ========================================================================= */
.gallery {
  padding: var(--s-8) 0;
  background: var(--bg);
}

.gallery-head {
  max-width: 720px;
  margin: 0 auto var(--s-6);
  padding: 0 var(--gutter);
  text-align: center;
}

.gallery-feature {
  margin: 0;
  width: 100%;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.gallery-feature img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease);
}
.gallery-feature:hover img {
  transform: scale(1.04);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 4px 0 0;
  background: var(--ink);
  padding: 4px 0;
}
@media (min-width: 760px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; padding: 4px; }
}
.gallery-tile {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease);
}
.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-credit {
  max-width: 720px;
  margin: var(--s-5) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* =========================================================================
   CONTACT — Heatonist steal: flat-saturated brick-red, no overlay
   ========================================================================= */
.contact {
  padding: var(--s-8) var(--gutter);
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-top: 4px solid rgba(255, 255, 255, 0.25);
}
.contact-foot a {
  color: #fff;
  text-decoration: underline;
}
.contact-social a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-headline {
  font-family: var(--display);
  font-size: clamp(34px, 6.5vw, 64px);
  line-height: 0.98;
  color: #fff;
  margin: 0 0 var(--s-4);
}

.contact-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto var(--s-6);
  line-height: 1.45;
}

.contact-foot {
  margin: var(--s-5) 0 0;
  font-size: 14px;
  color: #ffffff;
}

/* =========================================================================
   FOOTER — minimal three-col
   ========================================================================= */
.site-footer {
  padding: var(--s-7) var(--gutter);
  background: var(--ink);
  color: var(--bg);
}

.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.footer-col p { margin: 0 0 var(--s-2); }
.footer-brand {
  font-family: var(--display);
  font-size: 22px;
  color: var(--bg);
  margin-bottom: var(--s-2) !important;
}
.footer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-addr a, .site-footer a {
  color: var(--bg);
  text-decoration: underline;
  text-decoration-color: var(--muted);
}
.footer-addr a:hover, .site-footer a:hover { color: var(--muted); }
.footer-addr { font-style: normal; }

.rights {
  margin-top: var(--s-4) !important;
  font-size: 12px;
  color: rgba(251, 243, 226, 0.55);
}

/* =========================================================================
   BREAKPOINTS — mobile-first, min-width queries
   ========================================================================= */

/* small tablets / large phones */
@media (min-width: 560px) {
  .call-btn__label { display: inline; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* tablets */
@media (min-width: 760px) {
  :root { --gutter: var(--s-6); }

  .nav-inner { padding: var(--s-3) var(--gutter); }
  .primary-nav { display: block; justify-self: center; }

  .hero { padding: var(--s-9) var(--gutter) var(--s-9); }

  .poster { padding: var(--s-8) var(--gutter); }
  .poster-frame { padding: var(--s-9) var(--s-7); }

  .about-grid {
    grid-template-columns: 40fr 60fr;
    gap: var(--s-7);
    align-items: center;
  }
  .about-art { max-width: none; margin: 0; }

  .find-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--s-7); }
}

/* desktop */
@media (min-width: 1024px) {
  .hero { padding: var(--s-10) var(--gutter) var(--s-10); }
  .menu { padding: var(--s-10) var(--gutter); }
  .find-us { padding: var(--s-10) var(--gutter); }
  .about { padding: var(--s-10) var(--gutter); }
  .gallery { padding: var(--s-10) 0; }
  .contact { padding: var(--s-10) var(--gutter); }

  .phrase-break { padding: var(--s-9) var(--gutter); }
}

/* =========================================================================
   HOURS FOOT
   ========================================================================= */
.hours-foot {
  margin: var(--s-4) 0 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hours-foot a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* =========================================================================
   TESTIMONIALS — real Google reviews, 3-up on desktop, stacked on mobile
   ========================================================================= */
.testimonials {
  padding: var(--s-8) var(--gutter);
  background: var(--bg-alt);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.testimonials-head {
  max-width: 760px;
  margin: 0 auto var(--s-7);
  text-align: center;
}
.testimonials-badge {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
.testimonials-stat {
  font-size: 20px;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
}
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--bg);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: var(--s-5) var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.testimonial-stars {
  margin: 0;
  color: var(--muted);
  letter-spacing: 4px;
  font-size: 18px;
  line-height: 1;
}

.testimonial-quote {
  margin: 0;
  border-left: 4px solid var(--accent);
  padding-left: var(--s-4);
}
.testimonial-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
}

.testimonial-author {
  margin: auto 0 0;
  padding-top: var(--s-3);
  border-top: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.testimonials-credit {
  max-width: 760px;
  margin: var(--s-7) auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.testimonials-credit a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  letter-spacing: 0.04em;
}
.testimonials-credit a:hover { color: var(--ink); }

/* =========================================================================
   SOCIAL ROW (footer)
   ========================================================================= */
.footer-label--social { margin-top: var(--s-4) !important; }

.social-row {
  list-style: none;
  margin: 0 0 var(--s-4);
  padding: 0;
  display: flex;
  gap: var(--s-2);
}
.social-row li { margin: 0; padding: 0; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg) !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--r-1);
  text-decoration: none;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.social-link svg { flex-shrink: 0; }

/* Contact band — social line */
.contact-social {
  margin: var(--s-3) 0 0;
  font-size: 14px;
  color: #ffffff;
}
.contact-social a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.contact-social a:hover { color: var(--surface); }

/* =========================================================================
   MOTION — pure-CSS scroll-driven animations (zero JS)
   Desktop-only: animations are gated behind min-width:760px so mobile keeps
   its 98 Lighthouse score and 2.1s LCP. Mobile users scroll quickly and
   benefit more from snappy paints than scroll choreography.
   Browsers without animation-timeline support: content renders instantly.
   ========================================================================= */

@media (min-width: 760px) and (prefers-reduced-motion: no-preference) {

  /* --- Ken Burns on hero photo (subtle, 22s, GPU-friendly) --- */
  @keyframes ken-burns {
    0%   { transform: scale(1.0)  translate(0, 0); }
    50%  { transform: scale(1.05) translate(-1%, 0.8%); }
    100% { transform: scale(1.0)  translate(0, 0); }
  }
  .hero-photo img {
    animation: ken-burns 22s var(--ease) infinite alternate;
  }

  /* --- Scroll-driven animations (Chrome/Edge 115+, Safari TP) --- */
  @supports (animation-timeline: view()) {

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes scale-in {
      from { opacity: 0; transform: scale(0.96); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* Section reveal: each major section fades up as it enters the viewport */
    .about,
    .menu,
    .find-us,
    .gallery,
    .testimonials {
      animation: fade-up 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }

    .poster {
      animation: scale-in 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 70%;
    }

    .phrase-break {
      animation: fade-up 1ms linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 50%;
    }

    .gallery-tile {
      animation: scale-in 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 70%;
    }
    .gallery-tile:nth-child(2) { animation-range: entry 5% entry 75%; }

    .testimonial {
      animation: fade-up 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 70%;
    }
    .testimonial:nth-child(2) { animation-range: entry 5% entry 75%; }
    .testimonial:nth-child(3) { animation-range: entry 10% entry 80%; }

    .about-art {
      animation: scale-in 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 65%;
    }
  }
}

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

/* =========================================================================
   TRUCK SCENE — animated SVG illustration
   ========================================================================= */

/* (Old .truck-scene wrapper styles removed — truck SVG now lives inside .hero-art.
    Animation rules below still match the SVG's internal classes verbatim.) */

/* -- Truck animations: gated to desktop + reduced-motion respect -- */
@keyframes grill-pulse   { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes head-bob      { 0%, 100% { transform: translateY(0px); } 45% { transform: translateY(-5px); } 70% { transform: translateY(-2px); } }
@keyframes spatula-flip  { 0% { transform: rotate(0deg); } 18% { transform: rotate(-30deg); } 40% { transform: rotate(-30deg); } 62% { transform: rotate(10deg); } 80% { transform: rotate(10deg); } 100% { transform: rotate(0deg); } }
@keyframes tortilla-rock { 0%, 100% { transform: rotate(0deg); } 30% { transform: rotate(-2.5deg); } 70% { transform: rotate(2deg); } }
@keyframes meat-sizzle   { 0%, 100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.07) translateY(-1.5px); } }
@keyframes steam-rise    { 0% { transform: translateY(0) scaleX(1); opacity: 0.75; } 55% { transform: translateY(-28px) scaleX(1.35); opacity: 0.4; } 100% { transform: translateY(-60px) scaleX(0.9); opacity: 0; } }
@keyframes smoke-drift   { 0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.28; } 100% { transform: translateY(-40px) translateX(-10px) scale(2.2); opacity: 0; } }
@keyframes taco-appear   { 0%, 18% { opacity: 0; transform: translateY(-7px); } 38%, 82% { opacity: 1; transform: translateY(0); } 96%, 100% { opacity: 0; } }
@keyframes hand-reach    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.steam { transform-box: fill-box; transform-origin: bottom center; }
.smoke { transform-box: fill-box; }

@media (min-width: 760px) and (prefers-reduced-motion: no-preference) {
  .interior-glow { animation: grill-pulse 1.9s ease-in-out infinite; }
  .grill-pulse    { animation: grill-pulse 1.3s ease-in-out infinite; }
  .head-bob       { animation: head-bob 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }
  .spatula-arm    { animation: spatula-flip 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 0%; }
  .tortilla-rock  { animation: tortilla-rock 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .meat-sizzle    { animation: meat-sizzle 0.45s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .steam-a { animation: steam-rise 2.4s ease-out infinite; }
  .steam-b { animation: steam-rise 2.4s ease-out infinite 0.55s; }
  .steam-c { animation: steam-rise 2.4s ease-out infinite 1.1s; }
  .steam-d { animation: steam-rise 2.4s ease-out infinite 1.65s; }
  .smoke-1 { animation: smoke-drift 2.8s ease-out infinite; }
  .smoke-2 { animation: smoke-drift 2.8s ease-out infinite 0.7s; }
  .smoke-3 { animation: smoke-drift 2.8s ease-out infinite 1.4s; }
  .taco-fill      { animation: taco-appear 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .taco-meat      { animation-delay: 0s; }
  .taco-green     { animation-delay: 0.45s; }
  .customer-hand  { animation: hand-reach 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: right center; }
}

/* =========================================================================
   MARQUEE TICKER
   ========================================================================= */
.marquee-band {
  background: var(--accent);
  overflow: hidden;
  padding: var(--s-3) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--display);
  font-size: clamp(13px, 1.8vw, 17px);
  color: var(--surface);
  letter-spacing: 0.2em;
  padding-right: var(--s-6);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-inner { animation: marquee-scroll 22s linear infinite; }
}

/* Print: hide the animation entirely */

/* =========================================================================
   PRINT — keep menu, hours, address legible from a phone print
   (also see print.css for the linked print stylesheet)
   ========================================================================= */
@media print {
  :root { --bg: #fff; --surface: #fff; --ink: #000; --accent: #000; --muted: #000; }
  body { background: #fff; color: #000; font-size: 12pt; line-height: 1.4; }

  .site-header,
  .hero-ctas,
  .hero-trust,
  .hero-wordmark,
  .hero-photo,
  .hero-overlay,
  .hero-ribbon,
  .poster,
  .phrase-break,
  .gallery,
  .testimonials,
  .contact,
  .skip-link,
  .call-btn,
  .btn { display: none !important; }

  main, section { page-break-inside: avoid; padding: 12pt 0 !important; }

  .hero, .about, .menu, .find-us, .site-footer {
    background: #fff !important;
    color: #000 !important;
    padding: 12pt 0 !important;
    border: none !important;
  }

  .hero-headline, .section-headline, .contact-headline {
    font-family: serif !important;
    color: #000 !important;
    font-size: 18pt !important;
  }

  .menu-grid { display: block !important; }
  .menu-card {
    border: none !important;
    border-bottom: 1px solid #999 !important;
    padding: 6pt 0 !important;
    background: transparent !important;
  }
  .menu-card__name { font-size: 12pt !important; }
  .menu-card__desc { font-size: 10pt !important; color: #333 !important; }

  .hours-row { padding: 4pt 0 !important; }
  .hours-list { border-top: 1px solid #000 !important; }

  .map-frame, .about-art, .about-credit, .hero-bg { display: none !important; }
  .hero { min-height: 0 !important; padding: 12pt 0 !important; }
  .hero-headline { text-shadow: none !important; }
  .hero-sub { text-shadow: none !important; }

  .find-us-grid, .about-grid { display: block !important; }

  a[href^="tel:"], a[href^="https://maps"] {
    color: #000 !important;
    text-decoration: underline !important;
  }
  a[href^="tel:"]::after { content: ""; }

  .site-footer { background: #fff !important; color: #000 !important; }
  .footer-addr a, .site-footer a { color: #000 !important; }
}
