/* Black Label Rentals — demo site
   Dark, black-tie, road-ready. Bodoni Moda display / Archivo UI.
   Gold is the 10% accent. No neon, no glow, no gradient text. */

/* ---------- tokens ---------- */
:root {
  --bg: oklch(0.13 0.004 262);
  --bg-raised: oklch(0.162 0.005 262);
  --bg-card: oklch(0.188 0.006 262);
  --bg-inset: oklch(0.105 0.004 262);
  --line: oklch(0.34 0.008 262);
  --line-soft: oklch(0.235 0.006 262);
  --ink: oklch(0.955 0.004 262);
  --ink-dim: oklch(0.82 0.006 262);
  --ink-faint: oklch(0.66 0.006 262);
  --gold: oklch(0.855 0.068 92);
  --gold-deep: oklch(0.72 0.075 88);
  --gold-ink: oklch(0.165 0.012 262);
  --ok: oklch(0.76 0.12 152);
  --err: oklch(0.7 0.16 28);

  --font-display: "Bodoni Moda", "Bodoni MT", Didot, serif;
  --font-ui: Archivo, "Helvetica Neue", Arial, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.333rem;
  --text-xl: 1.777rem;
  --text-2xl: 2.369rem;

  --radius: 3px;
  --radius-lg: 6px;
  --pagew: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--gold-ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap { max-width: var(--pagew); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: 0.005em; }
.display {
  font-family: var(--font-display);
  font-weight: 600;
  /* Bodoni Moda is a variable font with an optical-size axis. Left on auto,
     an 86px headline gets the "display" cut whose hairlines are thinnest,
     which is unreadable over a photo. Pinning a text-size cut keeps the
     strokes solid at every size. Measured on the live hero 2026-09-22. */
  font-optical-sizing: none;
  font-variation-settings: "opsz" 18;
  letter-spacing: 0.004em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
}

/* the "label" motif: bordered tag echoing the brand name */
.label-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 5px 12px 4px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out), transform 160ms var(--ease-out);
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: oklch(0.9 0.055 94); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-quiet { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 4px; padding: 8px 4px; min-height: 0; }
.btn-quiet:hover { color: var(--ink); }
.btn[disabled] { cursor: not-allowed; }
.btn-gold[disabled] { background: var(--bg-card); color: var(--ink-faint); border: 1px solid var(--line-soft); }
.btn-ghost[disabled] { opacity: 0.45; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  min-height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: var(--s3); text-decoration: none; }
.nav-brand img.mark { height: 30px; width: auto; }
.nav-brand img.word { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--s6); list-style: none; }
.nav-links a:not(.btn) {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links .btn { padding: 10px 20px; min-height: 42px; }
.nav-burger { display: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-burger {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
  }
  .nav-burger svg { width: 22px; height: 22px; stroke: var(--ink); }
  .nav-drawer {
    display: grid;
    gap: var(--s4);
    padding: var(--s4) 0 var(--s6);
  }
  .nav-drawer a {
    text-decoration: none;
    font-size: var(--text-lg);
    font-family: var(--font-display);
    color: var(--ink);
  }
  .nav-drawer .btn { font-family: var(--font-ui); font-size: var(--text-sm); justify-self: start; }
  .nav-drawer[hidden] { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 72%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Two layers: a vertical ramp that reaches full dark at the bottom, and a
     scrim behind the text column so the headline sits on dark whatever the
     photo does behind it. The old ramp fell to 12% right where the headline
     crossed the stadium glass. */
  background:
    linear-gradient(to right, oklch(0.11 0.004 262 / 0.72) 0%, oklch(0.11 0.004 262 / 0.55) 42%, oklch(0.11 0.004 262 / 0.10) 70%, oklch(0.11 0.004 262 / 0) 100%),
    linear-gradient(to top, oklch(0.11 0.004 262 / 0.97) 0%, oklch(0.11 0.004 262 / 0.78) 30%, oklch(0.11 0.004 262 / 0.42) 62%, oklch(0.11 0.004 262 / 0.5) 100%);
}
.hero-content {
  width: 100%;
  padding-block: var(--s8) var(--s8);
  display: grid;
  gap: var(--s5);
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 5.4rem);
  line-height: 1.02;
  text-shadow: 0 2px 24px oklch(0.11 0.004 262 / 0.7), 0 1px 2px oklch(0.11 0.004 262 / 0.6);
}
.hero .sub {
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.5;
  max-width: 44ch;
  text-shadow: 0 1px 12px oklch(0.11 0.004 262 / 0.7);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }

/* spec strip under hero */
.spec-strip { border-block: 1px solid var(--line-soft); background: var(--bg-raised); }
.spec-strip ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.spec-strip li {
  padding: var(--s4) var(--s4);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.spec-strip li + li { border-left: 1px solid var(--line-soft); }
.spec-strip strong { display: block; color: var(--ink); font-size: var(--text-base); letter-spacing: 0; }
@media (max-width: 640px) {
  .spec-strip ul { grid-template-columns: repeat(2, 1fr); }
  .spec-strip li:nth-child(odd) { border-left: 0; }
  .spec-strip li:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { display: grid; gap: var(--s4); margin-bottom: clamp(32px, 5vw, 56px); max-width: 640px; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-head p { color: var(--ink-dim); max-width: 56ch; }

/* the van split */
.van-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.van-photo { display: grid; gap: var(--s3); }
.van-photo .main { border-radius: var(--radius-lg); overflow: hidden; }
.van-photo .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.van-photo .thumbs img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; }

.spec-plate {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-plate header {
  padding: var(--s5) var(--s5) var(--s4);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s3);
}
.spec-plate header h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
.spec-plate header .cfg { font-size: var(--text-xs); color: var(--ink-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.spec-plate dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.spec-plate .cell {
  padding: var(--s4) var(--s5);
  border-top: 1px solid var(--line-soft);
}
.spec-plate .cell:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.spec-plate .cell:first-child, .spec-plate .cell:nth-child(2) { border-top: 0; }
.spec-plate dt { font-size: var(--text-xs); color: var(--ink-faint); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.spec-plate dd { font-weight: 600; }
.spec-plate footer { padding: var(--s5); border-top: 1px solid var(--line-soft); display: grid; gap: var(--s3); }

/* odometer */
.odo {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
}
.odo-digits {
  display: inline-flex;
  gap: 3px;
  padding: 6px 8px;
  background: var(--bg-inset);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.odo-digits span {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1;
  padding: 6px 5px;
  background: oklch(0.1 0.006 80);
  border-radius: 2px;
  min-width: 1.15em;
  text-align: center;
}
.odo-digits span.sep { background: none; min-width: auto; padding-inline: 1px; color: var(--ink-faint); }
.odo small { color: var(--ink-faint); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; }

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}
.step { display: grid; gap: var(--s3); align-content: start; padding-top: var(--s5); border-top: 1px solid var(--line-soft); }
.step .num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  line-height: 1;
}
.step h3 { font-size: var(--text-lg); }
.step p { color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.65; max-width: 38ch; }

/* rolls strip */
.rolls { overflow-x: auto; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.rolls-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 30vw, 360px);
  gap: var(--s4);
  padding-bottom: var(--s3);
}
.roll { scroll-snap-align: start; display: grid; gap: var(--s3); }
.roll img { border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; }
.roll figcaption { font-size: var(--text-sm); color: var(--ink-dim); display: flex; gap: var(--s2); align-items: baseline; }
.roll figcaption b { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq { max-width: 760px; }
.faq details { border-top: 1px solid var(--line-soft); }
.faq details:last-child { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s2);
  font-weight: 600;
  font-size: var(--text-base);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  line-height: 1;
  transition: transform 200ms var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 var(--s2) var(--s5); color: var(--ink-dim); max-width: 62ch; }

/* CTA band */
.cta-band {
  background: var(--bg-raised);
  border-block: 1px solid color-mix(in oklab, var(--gold) 45%, transparent);
}
.cta-band .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  padding-block: clamp(40px, 6vw, 72px);
}
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--gold); }
.cta-band p { color: var(--ink-dim); }
.cta-band .btn { background: var(--gold); color: var(--gold-ink); }
.cta-band .btn:hover { background: oklch(0.9 0.055 94); }
.cta-band a.tel { color: var(--ink); font-weight: 700; text-decoration: none; white-space: nowrap; }
.cta-band a.tel:hover { color: var(--gold); }

/* footer */
.footer { border-top: 1px solid var(--line-soft); padding-block: var(--s7) var(--s6); }
.footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s6);
  align-items: start;
}
.footer img.word { height: 34px; width: auto; opacity: 0.9; }
.footer h4 { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--s3); font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: var(--s2); }
.footer a { color: var(--ink-dim); text-decoration: none; font-size: var(--text-sm); }
.footer a:hover { color: var(--gold); }
.footer p { color: var(--ink-dim); font-size: var(--text-sm); max-width: 40ch; }
.footer .fine {
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s6);
  justify-content: space-between;
  color: var(--ink-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .footer .cols { grid-template-columns: 1fr; }
}

/* ---------- van page ---------- */
.page-head { padding-block: clamp(40px, 6vw, 72px) 0; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-head .meta { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); color: var(--ink-dim); font-size: var(--text-sm); margin-top: var(--s4); }
.page-head .meta span { display: inline-flex; align-items: center; gap: var(--s2); }
.page-head .meta svg { width: 15px; height: 15px; stroke: var(--gold); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: var(--s3);
  margin-top: var(--s6);
}
.gallery a { border-radius: var(--radius); overflow: hidden; display: block; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
.gallery a:hover img { transform: scale(1.03); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* The hero-plus-grid layout above needs five or six photos to close up. With
   fewer, it leaves a hole where the missing pictures would be, which reads as
   a broken page rather than a short gallery. Vans we have fewer photos of get
   an even grid instead, so a page with two good pictures looks deliberate.
   Chris is still sending photos, so this is a live case, not a hypothetical. */
.gallery.g2,
.gallery.g4 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
.gallery.g3 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; }
.gallery.g2 a:nth-child(1),
.gallery.g3 a:nth-child(1),
.gallery.g4 a:nth-child(1) { grid-column: auto; grid-row: auto; }

@media (max-width: 800px) {
  .gallery,
  .gallery.g2,
  .gallery.g3,
  .gallery.g4 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

.van-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: var(--s7) var(--s9);
}
.van-main { display: grid; gap: var(--s7); }
.van-main h2 { font-size: var(--text-xl); margin-bottom: var(--s4); }
.van-main .prose p { color: var(--ink-dim); max-width: 62ch; }
.van-main .prose p + p { margin-top: var(--s4); }

.amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s5); }
.amenities li { display: flex; gap: var(--s3); align-items: baseline; color: var(--ink-dim); font-size: var(--text-sm); padding: var(--s2) 0; }
.amenities li::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 1px; flex-shrink: 0; transform: translateY(-1px); }
@media (max-width: 560px) { .amenities { grid-template-columns: 1fr; } }

.rules { list-style: none; display: grid; }
.rules li { display: flex; justify-content: space-between; gap: var(--s4); padding: var(--s4) 0; border-top: 1px solid var(--line-soft); font-size: var(--text-sm); }
.rules li span:first-child { color: var(--ink); font-weight: 600; }
.rules li span:last-child { color: var(--ink-dim); text-align: right; max-width: 34ch; }

/* rate rail */
.rate-rail { position: sticky; top: 96px; display: grid; gap: var(--s4); }
.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  display: grid;
  gap: var(--s4);
}
.rate-card .price { display: flex; align-items: baseline; gap: var(--s2); }
.rate-card .price b { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.rate-card .price span { color: var(--ink-dim); }
.rate-card ul { list-style: none; display: grid; gap: var(--s2); }
.rate-card ul li { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--ink-dim); }
.rate-card ul li b { color: var(--ink); font-weight: 600; }
.rate-note { font-size: var(--text-xs); color: var(--ink-faint); text-align: center; }

@media (max-width: 900px) {
  .van-split, .van-layout { grid-template-columns: 1fr; }
  .rate-rail { position: static; }
}

/* ---------- booking page ---------- */
.book-shell {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-block: var(--s6) var(--s9);
}
@media (max-width: 900px) {
  .book-shell { grid-template-columns: 1fr; }
}

.book-steps { display: grid; gap: var(--s4); }

.bstep {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  overflow: hidden;
}
.bstep-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5);
  text-align: left;
  transition: background-color 140ms var(--ease-out);
}
.bstep:not(.active) .bstep-head:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); }
.bstep:not(.active) .bstep-head::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink-faint);
  line-height: 1;
}
.bstep:not(.active) .bstep-head:hover::after { color: var(--gold); }
.bstep.active .bstep-head { cursor: default; }
.bstep-head .n {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink-dim);
  flex-shrink: 0;
  transition: all 200ms var(--ease-out);
}
.bstep.active .n { border-color: var(--gold); color: var(--gold); }
.bstep.done .n { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }
.bstep-head .t { display: grid; gap: 1px; min-width: 0; }
.bstep-head .t b { font-size: var(--text-base); }
.bstep-head .t small { color: var(--ink-faint); font-size: var(--text-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bstep-head .edit { margin-left: auto; font-size: var(--text-sm); color: var(--gold); text-decoration: underline; text-underline-offset: 3px; flex-shrink: 0; }
.bstep-body { padding: 0 var(--s5) var(--s6); display: grid; gap: var(--s5); }
.bstep:not(.active) .bstep-body { display: none; }
.bstep.locked { opacity: 0.55; }
.bstep.locked .bstep-head { cursor: default; }

/* calendar */
.cal-wrap { display: grid; gap: var(--s4); }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
@media (max-width: 640px) { .cal-months { grid-template-columns: 1fr; } }
.cal { display: grid; gap: var(--s3); }
.cal h4 { text-align: center; font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-grid .dow { text-align: center; font-size: var(--text-xs); color: var(--ink-faint); padding: var(--s2) 0; letter-spacing: 0.06em; }
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  border-radius: var(--radius);
  transition: background-color 120ms var(--ease-out), color 120ms var(--ease-out);
  position: relative;
}
.cal-day:not([disabled]):hover { background: var(--bg-card); }
.cal-day[disabled] { color: oklch(0.42 0.012 80); cursor: not-allowed; }
.cal-day.blocked { color: oklch(0.42 0.012 80); cursor: not-allowed; }
.cal-day.blocked::after {
  content: "";
  position: absolute;
  width: 55%; height: 1px;
  background: oklch(0.42 0.012 80);
  transform: rotate(-24deg);
}
.cal-day.in-range { background: color-mix(in oklab, var(--gold) 16%, transparent); border-radius: 0; }
.cal-day.range-start, .cal-day.range-end { background: var(--gold); color: var(--gold-ink); font-weight: 700; }
.cal-day.range-start { border-radius: var(--radius) 0 0 var(--radius); }
.cal-day.range-end { border-radius: 0 var(--radius) var(--radius) 0; }
.cal-day.range-start.range-end { border-radius: var(--radius); }
.cal-legend { display: flex; gap: var(--s5); font-size: var(--text-xs); color: var(--ink-faint); }
.cal-legend span { display: inline-flex; align-items: center; gap: var(--s2); }
.cal-legend i { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s3) var(--s4);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-inset);
  font-size: var(--text-sm);
}
.cal-toolbar .msg { color: var(--ink-dim); }
.cal-toolbar .msg b { color: var(--gold); font-weight: 600; }
.cal-toolbar .clear { color: var(--ink-faint); text-decoration: underline; text-underline-offset: 3px; font-size: var(--text-xs); }
.cal-toolbar .clear:hover { color: var(--ink); }
.cal-toolbar .clear[hidden] { display: none; }

@keyframes stepflash {
  0%, 100% { border-color: var(--line-soft); }
  25%, 75% { border-color: var(--err); }
}
.bstep.flash { animation: stepflash 900ms ease-in-out 2; }
.cal-toolbar.flash { animation: stepflash 900ms ease-in-out 2; }
.need-note { font-size: var(--text-sm); color: var(--err); display: none; }
.need-note.show { display: block; }

/* forms */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 560px) { .frow { grid-template-columns: 1fr; } }
.field { display: grid; gap: var(--s2); align-content: start; }
/* Inputs are the same height whether or not a hint sits under them: the
   grid row stretches, the input must not. */
.field input, .field select { align-self: start; }
.field label { font-size: var(--text-sm); font-weight: 600; }
.field input, .field select {
  background: var(--bg-inset);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: var(--text-base);
  transition: border-color 140ms var(--ease-out);
  width: 100%;
  min-height: 48px;
}
.field input:focus, .field select:focus { border-color: var(--gold); outline: none; }
.field input::placeholder { color: var(--ink-faint); }
.field .hint { font-size: var(--text-xs); color: var(--ink-faint); }
.field.invalid input { border-color: var(--err); }
.field .fielderr { font-size: var(--text-xs); color: var(--err); display: none; }
.field.invalid .fielderr { display: block; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23bfae8f' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* radio tiles */
.tiles { display: grid; gap: var(--s3); }
.tile {
  display: flex;
  align-items: center;
  gap: var(--s4);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: var(--s4);
  cursor: pointer;
  transition: border-color 140ms var(--ease-out), background-color 140ms var(--ease-out);
}
.tile:hover { border-color: var(--line); }
.tile input { accent-color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }
.tile .t { display: grid; gap: 1px; }
.tile .t b { font-size: var(--text-sm); font-weight: 600; }
.tile .t small { color: var(--ink-faint); font-size: var(--text-xs); }
.tile .fee { margin-left: auto; font-weight: 600; font-size: var(--text-sm); color: var(--ink-dim); white-space: nowrap; }
.tile:has(input:checked) { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 7%, transparent); }
.tile-van .thumb { width: 96px; height: 72px; object-fit: cover; border-radius: calc(var(--radius) - 2px); flex-shrink: 0; background: var(--ink-faint); }
@media (max-width: 480px) {
  /* Four things across 390px is one too many: the price steps down under
     the name instead of squeezing "15 passengers" onto two lines. */
  .tile-van { display: grid; grid-template-columns: auto 72px minmax(0, 1fr); gap: var(--s3) var(--s4); }
  .tile-van .thumb { width: 72px; height: 54px; grid-row: 1 / 3; }
  .tile-van input { grid-row: 1 / 3; }
  .tile-van .t { grid-column: 3; }
  .tile-van .fee { grid-column: 3; margin-left: 0; color: var(--gold); }
}

/* license uploader */
.lic-drop {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  display: grid;
  justify-items: center;
  gap: var(--s3);
  text-align: center;
  cursor: pointer;
  transition: border-color 140ms var(--ease-out), background-color 140ms var(--ease-out);
}
.lic-drop:hover, .lic-drop.drag { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 5%, var(--bg-raised)); }
.lic-drop svg { width: 34px; height: 34px; stroke: var(--gold); }
.lic-drop b { font-size: var(--text-sm); }
.lic-drop small { color: var(--ink-faint); font-size: var(--text-xs); max-width: 34ch; }
.lic-preview { display: none; grid-template-columns: 132px 1fr; gap: var(--s4); align-items: center; }
.lic-preview.show { display: grid; }
.lic-preview img { border-radius: var(--radius); border: 1px solid var(--line-soft); aspect-ratio: 8 / 5; object-fit: cover; width: 132px; }
.verify-list { list-style: none; display: grid; gap: var(--s2); }
.verify-list li { display: flex; align-items: center; gap: var(--s3); font-size: var(--text-sm); color: var(--ink-faint); transition: color 200ms var(--ease-out); }
.verify-list li .dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.verify-list li.on { color: var(--ink); }
.verify-list li.on .dot { background: var(--ok); border-color: var(--ok); }
.verify-list li.on .dot::after { content: ""; width: 8px; height: 5px; border-left: 1.5px solid var(--bg); border-bottom: 1.5px solid var(--bg); transform: rotate(-45deg) translate(0.5px, -0.5px); }
.badge-ok {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--ok);
  font-weight: 600;
  font-size: var(--text-sm);
}
.badge-ok svg { width: 16px; height: 16px; stroke: var(--ok); }

/* card inputs */
.card-shell { display: grid; gap: var(--s4); }
.card-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s4); }
@media (max-width: 560px) { .card-row { grid-template-columns: 1fr 1fr; } .card-row .field:first-child { grid-column: 1 / -1; } }
.card-num { position: relative; }
.card-num .brand {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* agreement */
.agree-box {
  background: var(--bg-inset);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: var(--s4);
  max-height: 180px;
  overflow-y: auto;
  font-size: var(--text-xs);
  color: var(--ink-dim);
  line-height: 1.7;
}
.agree-box h4 { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--s2); color: var(--ink); }
.agree-box p + h4 { margin-top: var(--s3); }
.check { display: flex; gap: var(--s3); align-items: flex-start; cursor: pointer; font-size: var(--text-sm); color: var(--ink-dim); }
.check input { accent-color: var(--gold); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

/* summary rail */
.sum-rail { position: sticky; top: 96px; display: grid; gap: var(--s4); }
@media (max-width: 900px) { .sum-rail { position: static; order: -1; } }
.sum-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sum-card .van {
  display: flex;
  gap: var(--s4);
  padding: var(--s4);
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.sum-card .van img { width: 86px; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.sum-card .van b { display: block; font-size: var(--text-sm); }
.sum-card .van small { color: var(--ink-faint); font-size: var(--text-xs); }
.sum-lines { padding: var(--s4) var(--s5); display: grid; gap: var(--s3); }
.sum-lines .row { display: flex; justify-content: space-between; gap: var(--s4); font-size: var(--text-sm); color: var(--ink-dim); }
.sum-lines .row b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.sum-lines .row.total { border-top: 1px solid var(--line-soft); padding-top: var(--s3); font-size: var(--text-base); color: var(--ink); }
.sum-lines .row.total b { font-size: var(--text-lg); }
.sum-lines .muted { font-size: var(--text-xs); color: var(--ink-faint); }
.hold-note {
  display: flex;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: var(--bg-inset);
  border-top: 1px solid var(--line-soft);
  font-size: var(--text-xs);
  color: var(--ink-dim);
  line-height: 1.6;
}
.hold-note svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

.demo-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.demo-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* confirmation */
.confirm-wrap { display: none; max-width: 620px; margin-inline: auto; text-align: center; padding-block: var(--s8); }
.confirm-wrap.show { display: grid; gap: var(--s5); justify-items: center; }
.confirm-mark {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
}
.confirm-mark svg { width: 34px; height: 34px; stroke: var(--gold); }
.confirm-wrap h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.confirm-wrap .ref { font-size: var(--text-sm); letter-spacing: 0.2em; color: var(--gold); font-weight: 600; }
.confirm-card {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: left;
  display: grid;
}
.confirm-card .row { display: flex; justify-content: space-between; gap: var(--s4); padding: var(--s4) var(--s5); border-top: 1px solid var(--line-soft); font-size: var(--text-sm); }
.confirm-card .row:first-child { border-top: 0; }
.confirm-card .row span:first-child { color: var(--ink-faint); }
.confirm-card .row span:last-child { font-weight: 600; text-align: right; }
.next-steps { text-align: left; width: 100%; display: grid; gap: var(--s3); color: var(--ink-dim); font-size: var(--text-sm); }
.next-steps li { margin-left: 1.2em; padding-left: var(--s2); }

/* ---------- trip page ---------- */
.trip-shell {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-block: var(--s6) var(--s9);
}
@media (max-width: 900px) { .trip-shell { grid-template-columns: 1fr; } }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-pill.ok { color: var(--ok); border: 1px solid color-mix(in oklab, var(--ok) 45%, transparent); }
.status-pill.err { color: var(--err); border: 1px solid color-mix(in oklab, var(--err) 45%, transparent); }

.trip-cards { display: grid; gap: var(--s4); }
.tcard {
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tcard > header {
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.tcard > header h2 { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.tcard .rows { display: grid; }
.tcard .rows .row { display: flex; justify-content: space-between; gap: var(--s4); padding: var(--s4) var(--s5); border-top: 1px solid var(--line-soft); font-size: var(--text-sm); }
.tcard .rows .row:first-child { border-top: 0; }
.tcard .rows .row span:first-child { color: var(--ink-faint); }
.tcard .rows .row span:last-child { font-weight: 600; text-align: right; }

/* timeline */
.timeline { list-style: none; padding: var(--s5); display: grid; }
.timeline li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s4);
  position: relative;
  padding-bottom: var(--s5);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--line-soft);
}
.timeline li:last-child::before { display: none; }
.timeline .dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--bg-raised);
  z-index: 1;
}
.timeline li.done .dot { background: var(--ok); border-color: var(--ok); }
.timeline li.done .dot::after { content: ""; width: 9px; height: 5px; border-left: 1.5px solid var(--bg); border-bottom: 1.5px solid var(--bg); transform: rotate(-45deg) translate(0.5px, -1px); }
.timeline li.now .dot { border-color: var(--gold); }
.timeline li.now .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.timeline b { font-size: var(--text-sm); display: block; }
.timeline li.now b { color: var(--gold); }
.timeline small { color: var(--ink-faint); font-size: var(--text-xs); }

.countdown { display: flex; align-items: baseline; gap: var(--s3); padding: var(--s5); }
.countdown b { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; line-height: 1; }
.countdown span { color: var(--ink-dim); font-size: var(--text-sm); }

/* action rows */
.actions { display: grid; }
.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  border-top: 1px solid var(--line-soft);
  text-align: left;
  width: 100%;
  text-decoration: none;
  font-size: var(--text-sm);
  transition: background-color 140ms var(--ease-out);
}
.action-row:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); }
.action-row .t b { display: block; font-weight: 600; }
.action-row .t small { color: var(--ink-faint); font-size: var(--text-xs); }
.action-row .chev { color: var(--gold); font-family: var(--font-display); font-size: var(--text-lg); }
.action-row.danger .t b { color: var(--err); }

.cancel-panel { padding: var(--s4) var(--s5) var(--s5); border-top: 1px solid var(--line-soft); display: none; gap: var(--s4); }
.cancel-panel.show { display: grid; }
.cancel-panel p { font-size: var(--text-sm); color: var(--ink-dim); }
.cancel-panel .btns { display: flex; gap: var(--s3); flex-wrap: wrap; }
.btn-danger { border: 1px solid color-mix(in oklab, var(--err) 55%, transparent); color: var(--err); }
.btn-danger:hover { border-color: var(--err); }

.trip-banner {
  border: 1px solid color-mix(in oklab, var(--err) 45%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  display: grid;
  gap: var(--s3);
  background: color-mix(in oklab, var(--err) 6%, var(--bg-raised));
}
.trip-banner b { color: var(--err); }
.trip-banner p { font-size: var(--text-sm); color: var(--ink-dim); }
.trip-banner[hidden] { display: none; }

.agree-full { padding: 0 var(--s5) var(--s5); }
.agree-full .agree-box { max-height: 240px; }

/* reveals */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { left: 12px; }

/* ---------- fleet grid (added for the 7-van build) ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s5);
  margin-top: var(--s6);
}
/* Seven vans. Three across strands the seventh alone on its own row, which
   reads as a mistake; four across gives 4 + 3 and a finished-looking grid.
   The mini grid on a van page shows three others and stays at three. */
@media (min-width: 1200px) {
  .fleet-grid:not(.fleet-grid-mini) { grid-template-columns: repeat(4, 1fr); }
}
.fleet-grid-mini { margin-top: var(--s5); }
.van-card {
  display: grid;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.van-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.van-card .vc-photo { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-inset); }
.van-card .vc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.van-card .vc-body {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s4);
  padding: var(--s4) var(--s5) 0;
}
.van-card .vc-name b { font-size: var(--text-lg); font-family: var(--font-display); }
.van-card .vc-name span { display: block; color: var(--ink-dim); font-size: var(--text-sm); margin-top: 2px; }
.van-card .vc-rate { white-space: nowrap; }
.van-card .vc-rate b { color: var(--gold); font-size: var(--text-lg); }
.van-card .vc-rate span { color: var(--ink-faint); font-size: var(--text-sm); }
.van-card .vc-foot {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  padding: var(--s3) var(--s5) var(--s4);
  color: var(--ink-faint); font-size: var(--text-xs);
}
.van-card .vc-go { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.cal-nav-row { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-bottom: var(--s2); }
.cal-nav-row .clear {
  background: none; border: 1px solid var(--line-soft); border-radius: var(--radius);
  color: var(--ink-dim); font: inherit; font-size: var(--text-sm); padding: var(--s1) var(--s3); cursor: pointer;
}
.cal-nav-row .clear:not([disabled]):hover { border-color: var(--gold-deep); color: var(--ink); }
.cal-nav-row .clear[disabled] { opacity: 0.4; cursor: not-allowed; }
