/* Creative Crepes — Growth tier production styles
   Built by HTP3 (Taulp LLC DBA HTP3) — htp-3.com
   Visual system: Apple-clean, warm food-forward accent layered over HTP3 neutrals */

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

:root {
  /* True black & white — matches the food-truck wrap: pure black + clean white */
  --bg: #000000;             /* pure black, matches truck wrap */
  --surface: #121212;        /* card surface — slight lift from bg */
  --surface-muted: #0a0a0a;  /* alternating section bg — just off black */
  --surface-raised: #1c1c1c; /* form fields, raised UI */
  --ink: #ffffff;            /* primary text — pure white */
  --ink-soft: #d6d6d6;       /* body text */
  --ink-muted: #9a9a9a;      /* secondary text */
  --ink-faint: #767676;      /* tertiary text, faint labels */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);

  /* HTP3 brand accents (retained on HTP3 chrome — footer, badge) */
  --htp-blue: #1a56db;
  --htp-cyan: #00c4d4;

  /* Monochrome "accent" — white is the pop color on pure black */
  --accent: #ffffff;         /* primary emphasis / CTA fill */
  --accent-deep: #cfcfcf;    /* hover state */
  --accent-soft: rgba(255, 255, 255, 0.12);  /* badges and subtle highlights */

  /* Shapes & motion */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --max: 1120px;
  --pad: clamp(20px, 5vw, 48px);
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 100px -36px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ───── Nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 12, 10, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand-mark img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand-mark img { height: 52px; }
}
/* Footer brand uses the larger white logo */
footer .footer-brand .brand-mark img { height: 88px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s var(--ease);
}
.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 48px;
}
.btn-primary {
  background: var(--accent);
  color: #000000;
  box-shadow: 0 8px 24px -10px rgba(255, 255, 255, 0.28);
  font-weight: 700;
}
.btn-primary:hover { background: var(--accent-deep); color: #000; transform: translateY(-1px); }
.btn-secondary {
  background: var(--ink);
  color: var(--bg);
}
.btn-secondary:hover { background: var(--accent); color: #000; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }

/* ───── Layout ───── */
section { padding: clamp(64px, 9vw, 108px) var(--pad); }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: -0.045em;
}
h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: -0.04em;
}
h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.02em;
}
p.lead {
  color: var(--ink-muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  margin: 0;
}
.section-head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 2vw, 20px);
}

/* ───── Hero ───── */
.hero {
  padding: clamp(80px, 12vw, 140px) var(--pad) clamp(64px, 10vw, 100px);
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 70%),
    radial-gradient(50% 40% at 90% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 65%),
    var(--bg);
}
.hero-inner { max-width: 920px; margin: 0 auto; }
.hero h1 .accent-word {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-ctas {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Image-hero variant — used on home page with food photography overlay */
.hero-image-wrap {
  position: relative;
  max-width: 1120px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap picture, .hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .hero-image-wrap { aspect-ratio: 4/3; border-radius: var(--radius); }
}

/* Photo-card — used on menu page section heads and home page menu teaser */
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-muted);
}
.photo-card picture, .photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.photo-card .photo-overlay h3 {
  color: #fff;
  font-size: 26px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Section image — full-bleed inside a section, captioned */
.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.section-image picture, .section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Truck illustration — illustration aesthetic, no shadow needed */
.truck-illustration {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.truck-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* ───── Today strip ───── */
.today-strip {
  margin-top: clamp(48px, 6vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  text-align: left;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.today-cell { display: flex; flex-direction: column; gap: 4px; }
.today-cell .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.today-cell .label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.today-cell .primary { font-size: 18px; font-weight: 650; color: var(--ink); letter-spacing: -0.015em; }
.today-cell .secondary { font-size: 14px; color: var(--ink-muted); }

/* ───── Cards / grids ───── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .card-icon svg { width: 22px; height: 22px; }
.card p { color: var(--ink-muted); font-size: 15px; margin: 0; }
.card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

/* ───── Menu section (used on home teaser AND /menu page) ───── */
.menu-section { padding-top: clamp(48px, 7vw, 72px); padding-bottom: clamp(48px, 7vw, 72px); }
.menu-section:first-of-type { padding-top: clamp(32px, 5vw, 48px); }
.menu-anchor-nav {
  position: sticky;
  top: 65px;
  z-index: 20;
  background: rgba(13, 12, 10, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad);
  margin: 0 calc(-1 * var(--pad));
}
.menu-anchor-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-anchor-nav-inner::-webkit-scrollbar { display: none; }
.menu-anchor-nav a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s var(--ease);
}
.menu-anchor-nav a:hover, .menu-anchor-nav a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-size: 17px;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.menu-item-name .badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}
.menu-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-muted);
}

/* ───── Forms ───── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field label .req { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 48px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}
.form-helper { font-size: 13px; color: var(--ink-faint); margin-top: -4px; }
.form-submit { margin-top: 8px; }

/* ───── Trust / Stats ───── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  text-align: center;
  padding: 18px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat span { font-size: 13px; color: var(--ink-muted); }

/* ───── Instagram strip ───── */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ig-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #161616 0%, #262626 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.ig-tile svg { width: 32px; height: 32px; opacity: 0.6; }
.ig-tile:nth-child(2) { background: linear-gradient(135deg, #101010 0%, #2e2e2e 100%); }
.ig-tile:nth-child(3) { background: linear-gradient(135deg, #1c1c1c 0%, #333333 100%); }
.ig-tile:nth-child(4) { background: linear-gradient(135deg, #222222 0%, #3d3d3d 100%); }
.ig-tile:nth-child(5) { background: linear-gradient(135deg, #0d0d0d 0%, #242424 100%); }
.ig-tile:nth-child(6) { background: linear-gradient(135deg, #181818 0%, #2a2a2a 100%); }
.ig-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-muted);
}
.ig-note a { color: var(--accent); font-weight: 600; }

/* ───── Map ───── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ───── Footer ───── */
footer {
  background: #050505;
  color: #d6d6d6;
  padding: 64px var(--pad) 28px;
  margin-top: 0;
  border-top: 1px solid var(--line);
}
footer .footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
footer p, footer a, footer li { font-size: 14px; color: #a3a3a3; line-height: 1.7; }
footer a:hover { color: #fff; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer .footer-brand p { margin: 14px 0 0; max-width: 320px; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6a6a6a;
}
.footer-bottom a { color: #a3a3a3; }

/* HTP3 Systems attribution */
.htp3-attribution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a3a3a3;
  font-size: 12px;
  text-decoration: none;
}
.htp3-attribution:hover,
.htp3-attribution:focus-visible {
  color: #fff;
}
.htp3-attribution:focus-visible {
  outline: 2px solid var(--htp-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}
.htp3-attribution img {
  display: block;
  width: 104px;
  height: auto;
}

/* ───── Mobile ───── */
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .today-strip { grid-template-columns: 1fr; gap: 18px; }
  footer .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ───── Crepe-making animation motif ─────
   One 10s loop: pour → spiral-spread with the rozell → drizzle → fold → repeat */
.crepe-motif { padding: clamp(48px, 7vw, 84px) var(--pad); background: var(--surface-muted); }
.crepe-motif-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.crepe-stage {
  position: relative;
  width: 220px;
  height: 220px;
  flex: none;
}
/* the cast-iron griddle (black top) */
.crepe-stage .griddle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #232323 0%, #0e0e0e 62%, #050505 100%);
  border: 3px solid #2c2c2c;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.9), inset 0 2px 10px rgba(255,255,255,0.05);
}
/* batter poured in the center */
.crepe-stage .batter {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 8px;
  height: 22px;
  margin-left: -4px;
  border-radius: 5px;
  background: linear-gradient(#f4f4f4, #d8d8d8);
  opacity: 0;
  transform-origin: top center;
  animation: crepe-pour 10s linear infinite;
  z-index: 4;
}
@keyframes crepe-pour {
  0%   { opacity: 0; transform: translateY(-8px) scaleY(0.4); }
  2%   { opacity: 1; transform: translateY(0) scaleY(1); }
  8%   { opacity: 1; transform: translateY(88px) scaleY(1.25); }
  10%  { opacity: 0; transform: translateY(94px) scaleY(0.5); }
  100% { opacity: 0; transform: translateY(94px) scaleY(0.5); }
}
/* the crepe — two halves so the top can physically fold onto the bottom */
.crepe-stage .crepe-wrap {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 156px;
  height: 156px;
  transform-origin: 50% 50%;
  perspective: 560px;
  animation: crepe-grow 10s ease-in-out infinite;
}
.crepe-stage .crepe-half {
  position: absolute;
  left: 0;
  width: 156px;
  height: 78px;
  overflow: hidden;
}
.crepe-stage .crepe-top {
  top: 0;
  transform-origin: 50% 100%;
  backface-visibility: visible;
  animation: crepe-fold 10s ease-in-out infinite;
  z-index: 2;
}
.crepe-stage .crepe-bottom { top: 78px; z-index: 1; }
.crepe-stage .crepe-svg { position: absolute; left: 0; width: 156px; height: 156px; display: block; }
.crepe-stage .crepe-top .crepe-svg { top: 0; }
.crepe-stage .crepe-bottom .crepe-svg { top: -78px; }
.crepe-stage .nutella {
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: crepe-drizzle 10s ease-in-out infinite;
}
/* the drizzle nozzle tip that traces the zig-zag */
.crepe-stage .nutella-tip {
  position: absolute;
  left: 0; top: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #242424;
  opacity: 0;
  z-index: 3;
  offset-path: path("M30 66 L50 92 L70 66 L90 92 L110 66 L126 86");
  animation: crepe-tip 10s ease-in-out infinite;
}
@keyframes crepe-grow {
  0%   { transform: scale(0.05); opacity: 0; }
  6%   { opacity: 1; }
  10%  { transform: scale(0.14); }
  42%  { transform: scale(1); }
  92%  { transform: scale(1); opacity: 1; }
  96%  { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(0.05); opacity: 0; }
}
@keyframes crepe-fold {
  0%, 68% { transform: rotateX(0deg); filter: brightness(1); }
  79%     { transform: rotateX(-168deg); filter: brightness(0.8); }
  96%     { transform: rotateX(-168deg); filter: brightness(0.8); }
  100%    { transform: rotateX(0deg); filter: brightness(1); }
}
/* the wooden T-spreader (rozell): spirals out from the center as the batter spreads */
.crepe-stage .spreader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 2px;
  transform-origin: center center;
  animation: crepe-spread 10s ease-in-out infinite;
  z-index: 5;
}
.crepe-stage .spreader .arm {
  position: absolute;
  left: -3px;
  top: -86px;
  width: 6px;
  height: 78px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6f6f6f 0%, #b9b9b9 45%, #d8d8d8 55%, #7a7a7a 100%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.crepe-stage .spreader .bar {
  position: absolute;
  left: -26px;
  top: -92px;
  width: 52px;
  height: 12px;
  border-radius: 5px;
  background: linear-gradient(180deg, #d6d6d6 0%, #a9a9a9 50%, #6f6f6f 100%);
  box-shadow: 0 2px 5px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
@keyframes crepe-spread {
  0%   { opacity: 0; transform: rotate(-20deg) scale(0.12); }
  9%   { opacity: 0; transform: rotate(10deg) scale(0.12); }
  12%  { opacity: 1; transform: rotate(80deg) scale(0.18); }
  42%  { opacity: 1; transform: rotate(1040deg) scale(1); }
  47%  { opacity: 0; transform: rotate(1080deg) scale(1); }
  100% { opacity: 0; transform: rotate(1080deg) scale(1); }
}
@keyframes crepe-drizzle {
  0%, 50% { stroke-dashoffset: 520; }
  63%     { stroke-dashoffset: 0; }
  100%    { stroke-dashoffset: 0; }
}
@keyframes crepe-tip {
  0%, 50%   { opacity: 0; offset-distance: 0%; }
  51%       { opacity: 1; offset-distance: 0%; }
  63%       { opacity: 1; offset-distance: 100%; }
  65%       { opacity: 0; offset-distance: 100%; }
  100%      { opacity: 0; offset-distance: 100%; }
}
.crepe-motif-caption {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.01em;
  max-width: 32ch;
}
@media (prefers-reduced-motion: reduce) {
  .crepe-stage .crepe-wrap { animation: none; transform: scale(1); opacity: 1; }
  .crepe-stage .crepe-top { animation: none; transform: rotateX(0deg); }
  .crepe-stage .spreader,
  .crepe-stage .batter,
  .crepe-stage .nutella-tip { animation: none; opacity: 0; }
  .crepe-stage .nutella { animation: none; stroke-dashoffset: 0; }
}

/* ───── Truck caricature (booking CTA) ───── */
.truck-caricature { width: 100%; max-width: 460px; height: auto; margin: 0 auto; display: block; }
.truck-caricature .wheel-spin { transform-origin: center; transform-box: fill-box; animation: truck-roll 2.4s linear infinite; }
@keyframes truck-roll { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .truck-caricature .wheel-spin { animation: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 18px var(--pad);
    gap: 16px;
    align-items: flex-start;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta { width: 100%; justify-content: center; }
  h1 { font-size: clamp(36px, 9vw, 52px); }
  h2 { font-size: clamp(28px, 7vw, 38px); }
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  footer .footer-inner { grid-template-columns: 1fr; }
}
