/* 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: 72px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}
@media (max-width: 640px) {
  .brand-mark img { height: 58px; }
}
footer .footer-brand .brand-mark img { height: 104px; }
.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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) var(--pad) clamp(56px, 8vw, 88px);
  background: var(--bg);
}
.hero-media-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background: #090909 url("/img/hero-crepe-reel-c4g62clltsm-poster-v1.jpg") right center / min(58vw, 820px) 100% no-repeat;
}
.hero-sequence-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 820px);
  height: 100%;
  opacity: 0;
  transition: opacity .7s var(--ease);
  pointer-events: none;
}
.hero-sequence-media.is-active {
  opacity: 1;
}
.hero-sequence-media img,
.hero-sequence-video {
  width: min(58vw, 820px);
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.hero-sequence-slide img {
  object-position: var(--hero-media-position, center center);
}
.hero-media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #080808 0%, #080808 38%, rgba(8, 8, 8, .88) 52%, rgba(8, 8, 8, .22) 78%, rgba(8, 8, 8, .38) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .2), transparent 48%, rgba(8, 8, 8, .82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-main {
  min-height: clamp(430px, 48vw, 560px);
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 650px; }
.hero h1 { font-size: clamp(52px, 6.5vw, 88px); }
.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: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-motion-control {
  position: absolute;
  z-index: 2;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-motion-control:focus-visible {
  right: max(var(--pad), calc((100vw - var(--max)) / 2));
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(8, 8, 8, .92);
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 3px;
  font: 700 13px/1.2 Inter, sans-serif;
}
.instagram-link {
  width: fit-content;
  margin: 20px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}
.instagram-link:hover { color: var(--ink); }
.instagram-link:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; border-radius: 4px; }
.instagram-link svg,
.footer-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.instagram-link svg circle:last-child,
.footer-instagram svg circle:last-child { fill: currentColor; stroke: none; }
.hero .today-strip {
  margin-top: clamp(30px, 4vw, 48px);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(8, 8, 8, .74);
  backdrop-filter: blur(18px);
}

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

/* ───── Our story ───── */
.story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .07), transparent 30%),
    var(--bg);
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}
.story-visual {
  position: sticky;
  top: 104px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .72) 100%);
}
.story-visual picture,
.story-visual img {
  width: 100%;
  height: 100%;
}
.story-visual img {
  object-fit: cover;
  object-position: center 44%;
}
.story-stamp {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 3vw, 30px);
  bottom: clamp(20px, 3vw, 30px);
  display: flex;
  align-items: flex-end;
  gap: 13px;
  color: #fff;
}
.story-stamp strong {
  font-size: clamp(48px, 6vw, 72px);
  line-height: .8;
  letter-spacing: -.07em;
}
.story-stamp span {
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.story-intro { margin-bottom: clamp(30px, 5vw, 48px); }
.story-intro h2 { max-width: 9ch; }
.story-intro p {
  max-width: 55ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 2vw, 20px);
}
.story-chapters { border-top: 1px solid var(--line-strong); }
.story-chapter {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
  padding: clamp(24px, 4vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}
.story-number {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  padding-top: 5px;
}
.story-chapter h3 {
  margin-bottom: 9px;
  font-size: clamp(21px, 2.5vw, 27px);
}
.story-chapter p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}
.story-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.story-locations span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015));
  color: var(--ink-muted);
  font-size: 12px;
}
.story-locations strong {
  color: var(--ink);
  font-size: 15px;
}

/* ───── 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); }

/* ───── 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-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
}

.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; }
  .story-layout { grid-template-columns: 1fr; }
  .story-visual {
    position: relative;
    top: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .story-visual img { object-position: center 42%; }
  .story-intro h2 { max-width: 12ch; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .today-strip { grid-template-columns: 1fr; gap: 18px; }
  footer .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ───── Park-and-serve trailer animation ───── */
.truck-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  gap: 56px;
  align-items: center;
}
.truck-promo-content { min-width: 0; }
.truck-promo-copy { color: var(--ink-muted); font-size: 19px; margin-bottom: 24px; }
.truck-promo-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trailer-scene { width: 100%; height: auto; display: block; }
.trailer-scene .rig { transform-box: view-box; transform-origin: center; animation: trailer-arrive 10s var(--ease) infinite; }
.trailer-scene .wheel-detail { transform-box: fill-box; transform-origin: center; animation: trailer-wheel 10s cubic-bezier(.25,.65,.3,1) infinite; }
.trailer-scene .window-shutter { transform-box: fill-box; transform-origin: top; animation: window-open 10s var(--ease) infinite; }
.trailer-scene .awning { transform-box: fill-box; transform-origin: top; animation: awning-open 10s var(--ease) infinite; }
.trailer-scene .service-glow { animation: service-glow 10s ease-in-out infinite; }
.trailer-scene .truck-steam { fill: none; stroke: rgba(255,255,255,.65); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 28; animation: truck-steam 10s ease-out infinite; }
.trailer-scene .road-dash { animation: road-pass 10s ease-out infinite; }
@keyframes trailer-arrive { 0% { transform: translateX(145px); } 27%,88% { transform: translateX(0); } 94%,100% { transform: translateX(-8px); } }
@keyframes trailer-wheel { 0% { transform: rotate(0); } 28%,100% { transform: rotate(-720deg); } }
@keyframes window-open { 0%,30% { transform: scaleY(1); } 44%,92% { transform: scaleY(.08); } 100% { transform: scaleY(1); } }
@keyframes awning-open { 0%,34% { transform: scaleY(.08) skewX(0); opacity: .3; } 48%,92% { transform: scaleY(1) skewX(-6deg); opacity: 1; } 100% { transform: scaleY(.08); opacity: .3; } }
@keyframes service-glow { 0%,38%,100% { opacity: .05; } 52%,90% { opacity: .55; } }
@keyframes truck-steam { 0%,50% { opacity: 0; stroke-dashoffset: 28; transform: translateY(6px); } 60%,86% { opacity: .8; } 94%,100% { opacity: 0; stroke-dashoffset: -28; transform: translateY(-12px); } }
@keyframes road-pass { 0% { transform: translateX(80px); } 30%,100% { transform: translateX(-80px); } }

/* ───── Lead pages and forms ───── */
.subpage-hero { padding: clamp(72px, 10vw, 128px) var(--pad); background: radial-gradient(55% 70% at 88% 40%, rgba(255,255,255,.08), transparent 70%); }
.subpage-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(36px, 7vw, 90px); align-items: center; }
.subpage-hero h1 { font-size: clamp(44px, 6vw, 76px); }
.hero-ctas.left { justify-content: flex-start; }
.service-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-summary span { min-height: 92px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; display: flex; align-items: flex-end; font-size: 13px; font-weight: 700; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.01)); }
.principles-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02)); }
.principles-card small { color: var(--ink-muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.principles-card ul, .check-list { padding: 0; margin: 22px 0 0; list-style: none; }
.principles-card li, .check-list li { padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); position: relative; font-weight: 600; }
.principles-card li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); }
.form-page { background: var(--surface-muted); scroll-margin-top: 80px; }
.form-layout { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 72px); align-items: start; }
.form-aside { position: sticky; top: 118px; }
.form-aside h2 { font-size: clamp(32px, 4vw, 48px); }
.form-aside > p { color: var(--ink-muted); }
.process-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 22px; }
.process-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.process-list li > span { color: var(--ink-faint); font-size: 12px; font-weight: 800; letter-spacing: .08em; padding-top: 3px; }
.process-list strong { display: block; margin-bottom: 5px; }
.process-list p { color: var(--ink-muted); font-size: 14px; margin: 0; }
.contact-card { margin-top: 30px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: grid; gap: 6px; }
.contact-card small { color: var(--ink-muted); }
.contact-card a { color: var(--ink); font-weight: 700; }
.contact-card p { color: var(--ink-muted); font-size: 13px; margin: 8px 0 0; }
.form-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 5vw, 52px); box-shadow: var(--shadow-lg); }
.form-intro { margin-bottom: 36px; }
.form-intro h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 8px; }
.form-intro p { color: var(--ink-muted); margin: 0; }
.lead-form { display: grid; gap: 34px; }
.form-section { border: 0; margin: 0; padding: 0; }
.form-section legend { width: 100%; padding: 0 0 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 750; }
.form-section legend span { color: var(--ink-faint); margin-right: 12px; font-size: 11px; letter-spacing: .1em; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field > span { font-size: 13px; font-weight: 650; color: var(--ink-soft); }
.field-wide { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; border: 1px solid var(--line-strong); border-radius: 12px; background: #0a0a0a; color: var(--ink); font: inherit; font-size: 15px; padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: #6f6f6f; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.field select { color-scheme: dark; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--ink-soft); font-size: 14px; cursor: pointer; }
.consent input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: #fff; }
.form-actions { display: grid; gap: 12px; justify-items: start; border-top: 1px solid var(--line); padding-top: 28px; }
.form-actions p { margin: 0; max-width: 60ch; color: var(--ink-muted); font-size: 12px; }
.form-actions .form-help { color: var(--ink-soft); font-size: 14px; }
.form-help a { color: var(--ink); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-copy { max-width: 780px; }
.legal-copy h2 { margin-top: 36px; font-size: clamp(24px, 3vw, 32px); }
.legal-copy p { color: var(--ink-soft); }
.legal-copy a { color: var(--accent); font-weight: 700; }
.form-status { padding: 14px 16px; border: 1px solid #e97777; border-radius: 12px; background: rgba(185,38,38,.13); color: #ffd2d2; font-size: 14px; }
.form-success { text-align: center; padding: clamp(36px, 7vw, 86px) 0; }
.form-success .success-mark { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; margin: 0 auto 24px; font-size: 28px; }
.form-success p { color: var(--ink-muted); max-width: 52ch; margin: 0 auto 26px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .trailer-scene .rig { transform: none; }
  .trailer-scene .window-shutter { opacity: 0; }
  .trailer-scene .awning, .trailer-scene .service-glow { opacity: 1; transform: 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; }
}

@media (max-width: 860px) {
  .subpage-hero-grid, .form-layout { grid-template-columns: 1fr; }
  .truck-promo-grid { grid-template-columns: 1fr; gap: 24px; }
  .truck-promo-content, .truck-promo-actions { display: contents; }
  .truck-promo-heading { order: 1; }
  .truck-illustration { order: 2; }
  .truck-promo-request { order: 3; width: fit-content; }
  .truck-promo-copy { order: 4; margin: 2px 0 0; font-size: 17px; }
  .truck-promo-actions .btn-ghost { order: 5; width: fit-content; }
  .hero-copy { max-width: 720px; }
  .hero-media-background {
    background-position: center 46%;
    background-size: cover;
  }
  .hero-sequence-media,
  .hero-sequence-media img,
  .hero-sequence-video {
    width: 100%;
    object-position: center 46%;
  }
  .hero-media-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .92), rgba(8, 8, 8, .48)),
      linear-gradient(180deg, rgba(8, 8, 8, .4), rgba(8, 8, 8, .58) 52%, rgba(8, 8, 8, .96) 100%);
  }
  .form-aside { position: static; }
}

@media (max-width: 640px) {
  .hero { padding-top: 48px; }
  .hero-main { min-height: 560px; align-items: flex-end; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-sequence-video { object-position: center 38%; }
  .hero-media-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, .18), rgba(8, 8, 8, .52) 42%, #080808 84%),
      linear-gradient(90deg, rgba(8, 8, 8, .5), rgba(8, 8, 8, .2));
  }
}

@media (max-width: 560px) {
  .story-locations { grid-template-columns: 1fr; }
  .story-chapter { grid-template-columns: 34px minmax(0, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .service-summary { grid-template-columns: 1fr 1fr; }
  .service-summary span { min-height: 76px; padding: 14px; }
  .form-shell { padding: 24px 18px; }
}
