/* ==========================================================================
   EZ Truck Parking — Design System
   Warm charcoal base · warm off-white · muted deep-gold accent
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Color */
  --charcoal:        #16130F;  /* warm near-black base */
  --charcoal-800:    #1C1813;  /* raised surface */
  --charcoal-700:    #241F19;  /* card surface */
  --charcoal-600:    #322B22;  /* hairline / border */
  --offwhite:        #F4F0E8;  /* warm off-white — primary text */
  --offwhite-dim:    #C9C2B4;  /* secondary text */
  --offwhite-mute:   #948C7C;  /* muted / meta text */
  --gold:            #E4B45A;  /* muted deep gold — accent */
  --gold-bright:     #F0C674;  /* hover */
  --gold-deep:       #C1913F;  /* pressed / lines */
  --green:           #6FBF73;  /* "open now" status */
  --green-bg:        rgba(111,191,115,0.14);

  /* Type */
  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", "Impact", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Atmospheric lighting — warm sodium-vapor glow (low opacity; must not hurt AA) */
  --gold-glow: rgba(228,180,90,0.18);

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);
  --radius: 14px;
  --radius-sm: 9px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
.logo span { min-width: 0; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
::selection { background: var(--gold); color: var(--charcoal); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.tnum { font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* Reflective conspicuity / hazard stripe — used SPARINGLY (1–2 places) as a thin
   accent bar. Kept low-opacity so gold stays an accent, never a fill. */
.hazard-stripe {
  background-image: repeating-linear-gradient(135deg, var(--gold) 0 9px, transparent 9px 18px);
  opacity: 0.5;
}

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--gold);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
  flex: none;
}

/* ---- Type scale ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
h2.section-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  max-width: 20ch;
}
.lede { color: var(--offwhite-dim); font-size: clamp(1.05rem, 2.2vw, 1.2rem); max-width: 56ch; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--offwhite); border-color: var(--charcoal-600); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold-deep); }
.btn--outline-gold:hover { background: var(--gold); color: var(--charcoal); }
.btn--sm { min-height: 42px; padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---- Status badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.badge--open { background: var(--green-bg); color: var(--green); border: 1px solid rgba(111,191,115,0.35); }
.badge--soon { background: rgba(228,180,90,0.12); color: var(--gold); border: 1px solid rgba(228,180,90,0.35); }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.badge--open .dot { animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111,191,115,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(111,191,115,0); }
}

/* ==========================================================================
   Header
   ========================================================================== */
/* Floating "pill" header — capsule that floats over the page (UglyCash-style). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: clamp(0.6rem, 1.4vw, 1rem) var(--gutter) 0;
  background: transparent;
  transition: padding 0.25s var(--ease);
}
/* Homepage: float the pill OVER the hero image. */
body.home .site-header { position: fixed; left: 0; right: 0; }
/* Apple-style "liquid glass": clear + refractive, specular rim, corner sheen. */
.header-inner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 58px;
  padding: 0.5rem 0.6rem 0.5rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035)),
    rgba(26,22,17,0.30);
  backdrop-filter: blur(7px) saturate(185%) brightness(1.06);
  -webkit-backdrop-filter: blur(7px) saturate(185%) brightness(1.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  box-shadow:
    0 10px 34px -8px rgba(0,0,0,0.5),
    inset 0 1px 1px rgba(255,255,255,0.55),
    inset 0 -2px 6px -2px rgba(0,0,0,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* Specular sheen sweeping the top-left → bottom-right of the capsule */
.header-inner::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(125deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0) 26%,
    rgba(255,255,255,0) 74%,
    rgba(255,255,255,0.10) 100%);
}
.header-inner > * { position: relative; z-index: 1; }
.site-header.is-stuck .header-inner {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03)),
    rgba(20,17,13,0.52);
  border-color: rgba(255,255,255,0.18);
}
/* Header "Book a Spot" CTA → pill */
.header-inner .btn { border-radius: 999px; padding-inline: 1.4rem; }
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  color: var(--offwhite);
  line-height: 1;
}
.logo .ez {
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.15em 0.32em 0.08em;
  border-radius: 5px;
  margin-right: 0.15rem;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--offwhite-mute);
  text-transform: uppercase;
  margin-top: 0.28rem;
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-left: auto;
}
.nav a.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite-dim);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.18s var(--ease);
}
.nav a.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.22s var(--ease);
}
.nav a.nav-link:hover { color: var(--offwhite); }
.nav a.nav-link:hover::after { width: 100%; }
.nav a.nav-link[aria-current="page"] { color: var(--offwhite); }
.nav a.nav-link[aria-current="page"]::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
/* Secondary "Log in" link — subtle next to the gold Book CTA */
.header-login {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0.4rem 0.35rem;
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--offwhite-dim);
  transition: color 0.18s var(--ease);
}
.header-login:hover { color: var(--gold); }
.header-login[aria-current="page"] { color: var(--offwhite); }
/* Login + Book pair shown only inside the mobile drawer */
.nav-drawer-cta { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--offwhite); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   Hero — immersive full-bleed operations board
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding-block: clamp(5.5rem, 12vh, 8rem) clamp(3rem, 7vh, 5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(22,19,15,0.62) 0%, rgba(22,19,15,0.55) 40%, rgba(22,19,15,0.9) 88%, rgba(22,19,15,1) 100%),
    linear-gradient(90deg, rgba(22,19,15,0.95) 0%, rgba(22,19,15,0.7) 38%, rgba(22,19,15,0.32) 70%, rgba(22,19,15,0.55) 100%),
    radial-gradient(120% 90% at 20% 40%, transparent 40%, rgba(22,19,15,0.45) 100%);
}
/* Warm sodium-vapor glow — low-left, behind the type; reads as a lit yard at dusk.
   Sits under the scrim's dark left wash so hero text keeps AA contrast. */
.hero__glow {
  position: absolute; z-index: -1;
  left: -8%; bottom: -12%;
  width: min(70vw, 680px); aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, rgba(228,180,90,0.06) 42%, transparent 70%);
  pointer-events: none;
}
/* Slow scanline sweep (motion-gated below) */
.hero__scan {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(228,180,90,0.05) 48%, rgba(228,180,90,0.09) 50%, rgba(228,180,90,0.05) 52%, transparent 100%);
  height: 40%;
}
.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__copy { max-width: 40rem; }
.hero__stripe { display: inline-block; width: 34px; height: 12px; opacity: 0.55; flex: none; }
.hero__eyebrow::before { display: none; } /* stripe replaces the hairline here */
.hero h1 {
  font-size: clamp(3.3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--gold); }
.hero__line { display: inline-block; }
/* Bold uppercase punch subline under the headline (UglyCash-style). */
.hero__punch {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  letter-spacing: 0.14em;
  color: var(--offwhite-dim);
  margin: 0 0 1.5rem;
}
.hero .lede { margin-bottom: 1.6rem; max-width: 46ch; }
.hero__waypoint {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 0 1.75rem;
  font-size: 0.72rem; letter-spacing: 0.13em;
  color: var(--offwhite-dim);
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--charcoal-600);
  border-radius: 999px;
  background: rgba(22,19,15,0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.hero__ping { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px 1px rgba(111,191,115,0.8); flex: none; }
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.4rem;
  padding-top: 1.5rem; margin: 0; padding-left: 0;
  border-top: 1px solid var(--charcoal-600);
}
.trust-row li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--offwhite-dim);
  font-weight: 500;
}
.trust-row svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* ---- Docked quick-start booking panel (glass) ---- */
.quickstart {
  align-self: center;
  background: linear-gradient(180deg, rgba(36,31,25,0.72), rgba(22,19,15,0.82));
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(228,180,90,0.28);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.quickstart::before {
  content: ""; position: absolute; top: 0; left: 1.2rem; right: 1.2rem; height: 3px;
  border-radius: 999px;
  background-image: repeating-linear-gradient(135deg, var(--gold) 0 9px, transparent 9px 18px);
  opacity: 0.5;
}
.quickstart__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.quickstart__eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.quickstart__badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--offwhite-dim); }
.segmented {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
  padding: 0.34rem; margin-bottom: 1.15rem;
  background: rgba(22,19,15,0.6); border: 1px solid var(--charcoal-600); border-radius: 11px;
}
.seg {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  min-height: 52px; padding: 0.55rem 0.85rem;
  background: transparent; border: 1px solid transparent; border-radius: 8px;
  color: var(--offwhite-dim);
  font-family: var(--font-display); text-transform: uppercase;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.seg__name { font-size: 1.02rem; letter-spacing: 0.03em; line-height: 1; }
.seg__meta { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--offwhite-mute); }
.seg.is-active { background: var(--charcoal-700); border-color: var(--gold-deep); color: var(--offwhite); }
.seg.is-active .seg__meta { color: var(--gold); }
.seg:hover:not(.is-active) { color: var(--offwhite); }

.quickstart__label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--offwhite-mute); margin: 0 0 0.6rem; }
.rate-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.15rem; }
.rate-chip {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  min-height: 66px; padding: 0.55rem 0.35rem;
  background: rgba(22,19,15,0.55); border: 1.5px solid var(--charcoal-600); border-radius: var(--radius-sm);
  color: var(--offwhite);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.rate-chip__period { font-size: 0.62rem; letter-spacing: 0.14em; color: var(--offwhite-mute); }
.rate-chip__amt { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; }
.rate-chip__tag {
  position: absolute; top: -0.62rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal); padding: 0.12rem 0.45rem; border-radius: 999px; white-space: nowrap;
}
.rate-chip:hover:not(.is-active) { border-color: var(--gold-deep); }
.rate-chip.is-active { border-color: var(--gold); background: linear-gradient(180deg, rgba(228,180,90,0.16), rgba(22,19,15,0.55)); }
.rate-chip.is-active .rate-chip__amt { color: var(--gold); }
.rate-chip.is-active .rate-chip__period { color: var(--gold-bright); }

.quickstart__cta { margin-bottom: 0.75rem; }
.quickstart__fine { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--offwhite-mute); text-align: center; margin: 0; }
.quickstart__soon { font-size: 0.95rem; color: var(--offwhite-dim); margin: 0 0 1.15rem; line-height: 1.55; }
.quickstart__soon strong { color: var(--gold); }

/* ---- Hero load-in (subtle, plays once; only when motion is welcome) ---- */
@media (prefers-reduced-motion: no-preference) {
  .hero__stripe { transform: scaleX(0); transform-origin: left center; animation: stripe-draw 0.5s var(--ease) both; }
  .hero__line   { opacity: 0; transform: translateY(0.6em); animation: line-rise 0.55s var(--ease) both; }
  .hero__line:nth-of-type(1) { animation-delay: 0.12s; }
  .hero__line:nth-of-type(2) { animation-delay: 0.20s; }
  .hero h1 br + .hero__line { animation-delay: 0.30s; }
  .hero__fade   { opacity: 0; animation: soft-fade 0.5s var(--ease) 0.38s both; }
  .quickstart   { animation: soft-fade 0.6s var(--ease) 0.5s both; }
  .hero__scan   { animation: scan-sweep 7s linear 1.2s infinite; }
}
@keyframes stripe-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes line-rise { from { opacity: 0; transform: translateY(0.6em); } to { opacity: 1; transform: none; } }
@keyframes soft-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes scan-sweep { 0% { transform: translateY(-100%); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(340%); opacity: 0; } }

/* ==========================================================================
   Value strip (book direct)
   ========================================================================== */
.value-strip {
  background: var(--gold);
  color: var(--charcoal);
}
.value-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 2.5rem;
  padding-block: 1.15rem;
  text-align: center;
}
.value-strip .vs-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.value-strip svg { width: 20px; height: 20px; }
.value-strip .vs-sep { width: 6px; height: 6px; border-radius: 50%; background: rgba(22,19,15,0.4); }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.step {
  position: relative;
  padding: 2rem 1.6rem 1.75rem;
  background: linear-gradient(180deg, var(--charcoal-700), var(--charcoal-800));
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -26px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--gold-deep); }
.step__num {
  font-family: var(--mono);
  font-size: 0.82rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.34rem 0.6rem 0.32rem;
  border: 1px solid var(--gold-deep);
  border-radius: 5px;
  background: rgba(228,180,90,0.06);
}
.step__num::before {
  content: "STEP";
  font-size: 0.6rem; letter-spacing: 0.16em;
  color: var(--offwhite-mute);
}
.step__icon { margin: 1rem 0 1.1rem; }
.step__icon svg { width: 34px; height: 34px; color: var(--gold); }
.step h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.step p { margin: 0; color: var(--offwhite-dim); font-size: 0.98rem; }
.step:not(:last-child)::after {
  content: "";
  position: absolute; top: 50%; right: -0.9rem;
  width: 12px; height: 12px;
  border-top: 2px solid var(--gold-deep);
  border-right: 2px solid var(--gold-deep);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.6;
}

/* ==========================================================================
   Locations
   ========================================================================== */
.section--alt { background: var(--charcoal-800); }
.section-head { margin-bottom: 2.75rem; }
.section-head p.lede { margin-top: 1rem; }

.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.loc-card {
  display: flex; flex-direction: column;
  background: var(--charcoal-700);
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.loc-card:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.loc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.loc-card:hover .loc-card__media img { transform: scale(1.05); }
.loc-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,19,15,0) 40%, rgba(22,19,15,0.6) 100%);
}
.loc-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.loc-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.loc-card__body h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.loc-addr {
  display: flex; align-items: flex-start; gap: 0.5rem;
  color: var(--offwhite-dim); font-size: 0.95rem; margin-bottom: 1.1rem;
}
.loc-addr svg { width: 17px; height: 17px; color: var(--gold); margin-top: 3px; flex: none; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.35rem; }
.chip {
  font-size: 0.8rem; letter-spacing: 0.02em;
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--charcoal-600);
  border-radius: 999px;
  color: var(--offwhite-dim);
  background: var(--charcoal-800);
}
.loc-price {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.02em;
  color: var(--offwhite);
  margin-bottom: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--charcoal-600);
  margin-top: auto;
}
.loc-price .from { color: var(--offwhite-mute); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.loc-price strong { color: var(--gold); font-size: 1.55rem; font-weight: 700; }
.loc-price .soon-note { color: var(--offwhite-dim); font-size: 0.95rem; }
.loc-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem; justify-content: center;
  margin-top: 0.9rem; min-height: 44px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.85rem; color: var(--gold);
}
.loc-card__link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.loc-card__link:hover { color: var(--gold-bright); }
.loc-card__link:hover svg { transform: translateX(3px); }

/* ---- Yard Spec Plate (the signature) ---- */
.spec-plate { position: relative; }
.spec-plate__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 6px; z-index: 3;
}
.spec-plate .loc-card__media::after { display: none; } /* keep the plate photo clean */
.spec-plate__status {
  display: flex; align-items: center; gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--offwhite-dim);
}
.led { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.led--open {
  background: var(--green);
  box-shadow: 0 0 7px 1px rgba(111,191,115,0.8), 0 0 2px 0 rgba(111,191,115,1);
}
.led--soon {
  background: var(--gold);
  box-shadow: 0 0 6px 1px rgba(228,180,90,0.7);
  animation: led-pulse 2.6s var(--ease) infinite;
}
@keyframes led-pulse {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 3px 0 rgba(228,180,90,0.4); }
  50%      { opacity: 1;    box-shadow: 0 0 8px 2px rgba(228,180,90,0.8); }
}

.spec-block {
  margin: 0 0 1.35rem;
  font-size: 0.78rem;
  border-top: 1px solid var(--charcoal-600);
}
.spec-row {
  display: grid; grid-template-columns: 5.25rem 1fr; gap: 0.5rem;
  padding: 0.42rem 0;
  border-bottom: 1px dashed var(--charcoal-600);
}
.spec-row dt { color: var(--offwhite-mute); letter-spacing: 0.06em; }
.spec-row dd { margin: 0; color: var(--offwhite); letter-spacing: 0.01em; }
.spec-approx { color: var(--offwhite-mute); letter-spacing: 0.04em; }

.spec-plate__price {
  margin-top: auto; margin-bottom: 1.35rem;
  padding-top: 1.1rem; border-top: 1px solid var(--charcoal-600);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.spec-plate__price .from {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--offwhite-mute);
}
.price-big { font-family: var(--font-display); display: flex; align-items: baseline; gap: 0.4rem; line-height: 1; }
.price-big .tnum { font-size: 2.3rem; font-weight: 700; color: var(--gold); }
.price-big--soon { font-size: 1.55rem; font-weight: 600; color: var(--offwhite); text-transform: uppercase; letter-spacing: 0.01em; }
.price-unit { font-size: 0.82rem; letter-spacing: 0.1em; color: var(--offwhite-mute); }
.price-sub { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--offwhite-dim); margin-top: 0.15rem; }

/* ==========================================================================
   Yards — full-bleed aerial bands with floating glass spec plates
   ========================================================================== */
.yards { padding-block: var(--section-y); background: var(--charcoal-800); }
.yards__head { margin-bottom: clamp(2rem, 5vw, 3rem); }
.yards__head p.lede { margin-top: 1rem; }

.yard-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: min(78vh, 720px);
  isolation: isolate;
  overflow: hidden;
}
.yard-band + .yard-band { margin-top: clamp(1.5rem, 3vw, 2.75rem); }
.yard-band__media { position: absolute; inset: 0; z-index: -2; }
.yard-band__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.yard-band__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(22,19,15,0.95) 0%, rgba(22,19,15,0.78) 34%, rgba(22,19,15,0.28) 64%, rgba(22,19,15,0.55) 100%),
    linear-gradient(180deg, rgba(22,19,15,0.72) 0%, rgba(22,19,15,0.35) 45%, rgba(22,19,15,0.82) 100%);
}
.yard-band--flip .yard-band__scrim {
  background:
    linear-gradient(90deg, rgba(22,19,15,0.55) 0%, rgba(22,19,15,0.28) 36%, rgba(22,19,15,0.78) 66%, rgba(22,19,15,0.95) 100%),
    linear-gradient(180deg, rgba(22,19,15,0.72) 0%, rgba(22,19,15,0.35) 45%, rgba(22,19,15,0.82) 100%);
}
.yard-band__plate-wrap {
  display: flex; align-items: center;
  max-width: var(--maxw); width: 100%; margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
}
.yard-band--flip .yard-band__plate-wrap { justify-content: flex-end; }
.yard-band__note {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  margin: 0; padding: 0.5rem var(--gutter);
  font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--offwhite-mute); text-align: center;
  background: linear-gradient(180deg, transparent, rgba(22,19,15,0.7));
}

/* Floating frosted-glass spec plate */
.spec-plate-glass {
  position: relative;
  width: min(30rem, 100%);
  background: linear-gradient(180deg, rgba(36,31,25,0.66), rgba(22,19,15,0.78));
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(228,180,90,0.28);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.85rem;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.06);
}
.spec-plate-glass__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.spec-plate-glass h3 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 0.25rem; }
.spec-plate-glass .loc-addr { margin-bottom: 1.25rem; }
.spec-plate-glass .spec-plate__price { border-top-color: rgba(228,180,90,0.2); }
/* A single quiet coordinate line — the T1 "waypoint" charm, kept subtle */
.plate-coord { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--offwhite-mute); margin: 0 0 0.9rem; }
/* Clean key-fact chips (replaces the dense spec table) */
.fact-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0 0 0.5rem; }
.fact-chips li {
  font-size: 0.82rem; color: var(--offwhite-dim);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--charcoal-600); border-radius: 999px;
  background: rgba(22,19,15,0.4);
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.amenity {
  padding: 1.5rem 1.35rem;
  background: linear-gradient(180deg, var(--charcoal-700), var(--charcoal-800));
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px -26px rgba(0,0,0,0.85);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.amenity:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.amenity__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(228,180,90,0.1);
  border: 1px solid rgba(228,180,90,0.28);
  margin-bottom: 1rem;
}
.amenity__icon svg { width: 24px; height: 24px; color: var(--gold); }
.amenity h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.amenity p { margin: 0; font-size: 0.9rem; color: var(--offwhite-mute); line-height: 1.5; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card {
  text-align: center;
  padding: 1.9rem 1rem;
  background: var(--charcoal-700);
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius);
  position: relative;
}
.price-card--feature { border-color: var(--gold); background: linear-gradient(180deg, rgba(228,180,90,0.08), var(--charcoal-700)); }
.price-card__tag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 0.2rem 0.65rem; border-radius: 999px; white-space: nowrap;
}
.price-card .period { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; color: var(--offwhite-mute); }
.price-card .amount { font-family: var(--font-display); font-weight: 700; font-size: 2.7rem; line-height: 1.05; margin: 0.35rem 0 0.1rem; color: var(--offwhite); }
.price-card .amount { font-variant-numeric: tabular-nums; }
.price-card .amount .dollar { color: var(--gold); font-size: 1.5rem; vertical-align: top; }
.price-card .unit { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--offwhite-mute); }

/* Stenciled "no deposit" stamp — tasteful, slightly canted like a rubber stamp */
.stamp {
  display: inline-flex; margin-top: 1.75rem;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.92rem; font-weight: 600;
  color: var(--gold);
  border: 2px solid var(--gold-deep); border-radius: 6px;
  padding: 0.5rem 0.9rem;
  transform: rotate(-2.5deg);
  box-shadow: inset 0 0 0 1px rgba(228,180,90,0.15);
}
.pricing-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--offwhite-mute); text-align: center; }
.pricing-copy h2 { margin-bottom: 1rem; }
.pricing-copy ul { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 0.8rem; }
.pricing-copy li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--offwhite-dim); }
.pricing-copy li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.jax-price-note {
  margin-top: 1.25rem; padding: 0.85rem 1rem;
  background: rgba(228,180,90,0.08); border: 1px solid rgba(228,180,90,0.25);
  border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--offwhite-dim);
  display: flex; gap: 0.6rem; align-items: center;
}
.jax-price-note svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ==========================================================================
   Why EZ
   ========================================================================== */
.why { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(22,19,15,0.35), rgba(22,19,15,0) 60%); }
.why__quote {
  position: absolute; left: 1.25rem; bottom: 1.25rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--offwhite);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.why__quote .accent { color: var(--gold); }
.why__list { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1.4rem; }
.why__list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.why__list .ico {
  width: 42px; height: 42px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: rgba(228,180,90,0.1); border: 1px solid rgba(228,180,90,0.28);
}
.why__list .ico svg { width: 22px; height: 22px; color: var(--gold); }
.why__list h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.why__list p { margin: 0; font-size: 0.95rem; color: var(--offwhite-dim); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--charcoal-600); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 1.35rem 3rem 1.35rem 0;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--offwhite);
  position: relative;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: transform 0.25s var(--ease);
}
.faq-q .plus::before { width: 16px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s var(--ease);
}
.faq-a > div { padding: 0 2.5rem 1.5rem 0; color: var(--offwhite-dim); }
.faq-a p { margin: 0; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band {
  position: relative; isolation: isolate;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,19,15,0.86), rgba(22,19,15,0.92)); }
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: 1rem; }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: var(--offwhite-dim); max-width: 46ch; margin: 0 auto 2rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal-800); border-top: 1px solid var(--charcoal-600); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem 2rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--offwhite-mute); font-size: 0.92rem; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; color: var(--gold); margin: 0 0 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer-col a, .footer-col address {
  color: var(--offwhite-dim); font-size: 0.92rem; font-style: normal; line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-loc { margin-bottom: 1.25rem; }
.footer-loc .name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; color: var(--offwhite); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.footer-loc .name .tag { font-size: 0.62rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--charcoal-600);
  color: var(--offwhite-mute); font-size: 0.85rem;
}
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ==========================================================================
   Mobile sticky book bar
   ========================================================================== */
.mobile-book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(22,19,15,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--charcoal-600);
}
.mobile-book-bar .mb-price { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.03em; }
.mobile-book-bar .mb-price strong { color: var(--gold); font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.mobile-book-bar .mb-price small { display: block; font-family: var(--mono); color: var(--offwhite-mute); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Hero → stack copy over quick-start when it gets tight */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-block: clamp(4.5rem, 12vh, 6.5rem) clamp(2.5rem, 6vh, 4rem); }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__copy { max-width: 40rem; }
  .quickstart { max-width: 30rem; }
}

@media (max-width: 960px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrap, .why { grid-template-columns: 1fr; }
  .why__media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Yard bands → stack: photo banner on top, glass plate below on solid surface */
@media (max-width: 820px) {
  .yard-band { display: block; min-height: 0; }
  .yard-band__media { position: relative; height: clamp(200px, 42vw, 300px); }
  .yard-band__scrim,
  .yard-band--flip .yard-band__scrim {
    background: linear-gradient(180deg, rgba(22,19,15,0.15) 0%, rgba(22,19,15,0.35) 60%, rgba(22,19,15,0.95) 100%);
  }
  .yard-band__plate-wrap { padding: 0 var(--gutter) clamp(2rem, 6vw, 3rem); margin-top: -3.5rem; position: relative; z-index: 2; }
  .yard-band--flip .yard-band__plate-wrap { justify-content: flex-start; }
  .spec-plate-glass { width: 100%; }
  .yard-band__note { position: static; text-align: left; padding-inline: var(--gutter); background: none; }
}

@media (max-width: 780px) {
  .nav, .logo small { display: none; }
  /* Log in collapses into the drawer on mobile */
  .header-actions > .header-login { display: none; }
  /* Pages with a bottom book-bar already surface booking, so drop the header CTA there */
  body:has(.mobile-book-bar) .header-actions > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { gap: 0.9rem; }
  .header-actions { margin-left: auto; gap: 0.6rem; }
  .logo { font-size: 1.2rem; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--charcoal-800); border-bottom: 1px solid var(--charcoal-600);
    padding: 1.25rem var(--gutter) 1.75rem; gap: 0.4rem;
  }
  .nav.is-open a.nav-link { padding: 0.7rem 0; width: 100%; font-size: 1.1rem; border-bottom: 1px solid var(--charcoal-700); }
  .nav.is-open .nav-drawer-cta {
    display: flex; flex-direction: column; gap: 0.7rem;
    margin-top: 1rem; padding-top: 1.1rem;
    border-top: 1px solid var(--charcoal-600);
  }
  .nav.is-open .nav-drawer-cta .header-login {
    padding: 0.6rem 0; font-size: 1.1rem; min-height: 48px;
  }
  .nav.is-open .nav-drawer-cta .btn { min-height: 50px; width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .locations { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr 1fr; }
  .mobile-book-bar { display: flex; }
  body:has(.mobile-book-bar) { padding-bottom: 74px; }
  .value-strip .vs-sep { display: none; }
  .value-strip .wrap { gap: 0.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 auto; }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-bar { border-bottom: 1px solid var(--charcoal-600); background: var(--charcoal-800); }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  padding-block: 0.85rem; margin: 0; list-style: none;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.78rem; color: var(--offwhite-mute);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--offwhite-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--gold); }
.breadcrumb .sep { color: var(--charcoal-600); }
.breadcrumb .sep svg { width: 14px; height: 14px; display: block; }

/* ==========================================================================
   Location detail — hero
   ========================================================================== */
.detail-hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: min(64vh, 560px);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  overflow: hidden;
}
.detail-hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.detail-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,19,15,0.45) 0%, rgba(22,19,15,0.72) 55%, rgba(22,19,15,0.97) 100%),
    linear-gradient(90deg, rgba(22,19,15,0.9) 0%, rgba(22,19,15,0.5) 55%, rgba(22,19,15,0.2) 100%);
}
.detail-hero__inner { max-width: 48rem; }
.detail-hero .badge { margin-bottom: 1rem; }
.detail-hero h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); margin-bottom: 0.9rem; }
.detail-hero h1 .accent { color: var(--gold); }
.detail-hero .loc-addr { color: var(--offwhite-dim); font-size: 1.02rem; margin-bottom: 1.6rem; }
.detail-hero .loc-addr svg { color: var(--gold); }
.detail-hero .hero-ctas { margin-bottom: 0; }

/* ==========================================================================
   Quick facts row
   ========================================================================== */
.quick-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.qf {
  padding: 1.35rem 1.25rem;
  background: var(--charcoal-700); border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm);
}
.qf__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 9px; background: rgba(228,180,90,0.1); border: 1px solid rgba(228,180,90,0.28); margin-bottom: 0.9rem; }
.qf__icon svg { width: 21px; height: 21px; color: var(--gold); }
.qf__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--offwhite-mute); margin-bottom: 0.2rem; }
.qf__value { font-family: var(--font-display); font-size: 1.32rem; line-height: 1.1; color: var(--offwhite); text-transform: uppercase; }

/* ==========================================================================
   Location detail — two-column layout
   ========================================================================== */
.detail-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.detail-main > * + * { margin-top: clamp(2.5rem, 6vw, 4rem); }
.detail-block h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1.4rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--charcoal-600); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.9rem 0.75rem;
  font-size: 0.8rem; color: var(--offwhite-dim);
  background: linear-gradient(180deg, rgba(22,19,15,0) 0%, rgba(22,19,15,0.85) 100%);
}
.gallery .gallery--wide { grid-column: 1 / -1; aspect-ratio: 21 / 8; }
.photo-placeholder {
  display: grid; place-content: center; text-align: center; gap: 0.5rem;
  aspect-ratio: 4 / 3; border-radius: var(--radius-sm);
  background: repeating-linear-gradient(45deg, var(--charcoal-700), var(--charcoal-700) 12px, var(--charcoal-800) 12px, var(--charcoal-800) 24px);
  border: 1px dashed var(--gold-deep); color: var(--offwhite-mute);
  padding: 1.5rem;
}
.photo-placeholder svg { width: 30px; height: 30px; color: var(--gold-deep); margin-inline: auto; }
.photo-placeholder span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }

/* Amenity list (compact, for detail pages) */
.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.amenity-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--offwhite-dim); font-size: 0.98rem; }
.amenity-list svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }

/* Map / directions */
.map-block { position: relative; }
.map-frame {
  width: 100%; aspect-ratio: 16 / 8; border: 1px solid var(--charcoal-600);
  border-radius: var(--radius); overflow: hidden; background: var(--charcoal-700);
  filter: grayscale(0.25) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-actions { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* ==========================================================================
   Booking sidebar card
   ========================================================================== */
.book-card {
  position: sticky; top: 92px;
  background: var(--charcoal-700); border: 1px solid var(--charcoal-600);
  border-radius: var(--radius); padding: 1.6rem 1.5rem 1.75rem;
}
.book-card__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.book-card__head .from { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; color: var(--offwhite-mute); }
.book-card__price { font-family: var(--font-display); }
.book-card__price .amt { font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.book-card__price .per { color: var(--offwhite-mute); font-size: 0.9rem; }
.rate-lines { list-style: none; margin: 0 0 1.35rem; padding: 1.1rem 0; border-block: 1px solid var(--charcoal-600); display: grid; gap: 0.7rem; }
.rate-lines li { display: flex; justify-content: space-between; font-size: 0.98rem; color: var(--offwhite-dim); }
.rate-lines .tnum { color: var(--offwhite); font-family: var(--font-display); }
.book-card .reassure { margin: 1.15rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.book-card .reassure li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.86rem; color: var(--offwhite-mute); }
.book-card .reassure svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 3px; }
.book-card--soon .book-card__price .amt { color: var(--offwhite); font-size: 1.5rem; }
.book-card__soon-note { color: var(--offwhite-dim); font-size: 0.95rem; margin: 0 0 1.35rem; }

/* ==========================================================================
   Reserve page
   ========================================================================== */
.reserve-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.reserve-head { margin-bottom: 2.25rem; }
.reserve-head h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.reserve-head .lede { margin: 0; }

.form-card { background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.25rem); }
.fieldset { border: 0; padding: 0; margin: 0 0 1.9rem; }
.fieldset:last-of-type { margin-bottom: 0; }
.fieldset > legend, .field-label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: var(--gold); padding: 0; margin-bottom: 0.85rem; display: block;
}
.field { margin-bottom: 1.35rem; }
.field:last-child { margin-bottom: 0; }
.field > label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; color: var(--offwhite); }
.field .req { color: var(--gold); }
.field .hint { color: var(--offwhite-mute); font-size: 0.82rem; font-weight: 400; }
.input, .select, textarea.input {
  width: 100%; min-height: 52px;
  background: var(--charcoal-800); color: var(--offwhite);
  border: 1.5px solid var(--charcoal-600); border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem; font-family: var(--font-body); font-size: 1.02rem;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.input::placeholder { color: var(--offwhite-mute); }
.input:hover, .select:hover { border-color: var(--gold-deep); }
.input:focus-visible, .select:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E4B45A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center; background-size: 18px;
  padding-right: 2.75rem;
}
.field--error .input, .field--error .select { border-color: #E8836B; }
.field-error { display: none; margin-top: 0.45rem; font-size: 0.85rem; color: #F0A08D; }
.field-error svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 0.3rem; }
.field--error .field-error { display: block; }

/* Rate radio cards */
.rate-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.rate-opt { position: relative; }
.rate-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.rate-opt label {
  display: block; text-align: center; cursor: pointer;
  padding: 1.1rem 0.6rem; border-radius: var(--radius-sm);
  background: var(--charcoal-800); border: 1.5px solid var(--charcoal-600);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
  min-height: 100px; display: flex; flex-direction: column; justify-content: center; gap: 0.15rem;
}
.rate-opt .r-period { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; color: var(--offwhite-mute); }
.rate-opt .r-amt { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--offwhite); }
.rate-opt .r-unit { font-size: 0.75rem; color: var(--offwhite-mute); }
.rate-opt input:checked + label { border-color: var(--gold); background: linear-gradient(180deg, rgba(228,180,90,0.12), var(--charcoal-800)); }
.rate-opt input:checked + label .r-amt { color: var(--gold); }
.rate-opt input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Summary sidebar */
.summary-card { position: sticky; top: 92px; background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.summary-card h2 { font-size: 1.35rem; margin-bottom: 1.25rem; }
.summary-lot { display: flex; gap: 0.85rem; align-items: center; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--charcoal-600); }
.summary-lot__img { width: 66px; height: 66px; border-radius: var(--radius-sm); object-fit: cover; flex: none; border: 1px solid var(--charcoal-600); }
.summary-lot__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; line-height: 1.1; }
.summary-lot__addr { font-size: 0.82rem; color: var(--offwhite-mute); margin-top: 0.2rem; }
.summary-rows { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.75rem; }
.summary-rows li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; color: var(--offwhite-dim); }
.summary-rows li .v { color: var(--offwhite); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1.25rem; border-top: 1px solid var(--charcoal-600); margin-bottom: 1.4rem; }
.summary-total .t-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem; color: var(--offwhite); }
.summary-total .t-amt { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--gold); }
.summary-card .reassure { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.summary-card .reassure li { display: flex; gap: 0.55rem; font-size: 0.85rem; color: var(--offwhite-mute); }
.summary-card .reassure svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 3px; }

/* Success state */
.form-success { display: none; text-align: center; padding: clamp(2rem, 6vw, 3.5rem) 1.5rem; }
.form-success.is-shown { display: block; }
.form-success__check { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.5rem; background: var(--green-bg); border: 1px solid rgba(111,191,115,0.4); }
.form-success__check svg { width: 38px; height: 38px; color: var(--green); }
.form-success h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.9rem; }
.form-success p { color: var(--offwhite-dim); max-width: 46ch; margin: 0 auto 0.75rem; }
.form-success .recap { margin: 1.75rem auto 0; max-width: 30rem; text-align: left; background: var(--charcoal-800); border: 1px solid var(--charcoal-600); border-radius: var(--radius-sm); padding: 1.25rem 1.4rem; list-style: none; display: grid; gap: 0.6rem; }
.form-success .recap li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; color: var(--offwhite-dim); }
.form-success .recap li .v { color: var(--offwhite); text-align: right; }
.form-success .success-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

.form-error-summary {
  display: none; margin-bottom: 1.6rem; padding: 0.95rem 1.1rem;
  background: rgba(232,131,107,0.1); border: 1px solid rgba(232,131,107,0.4);
  border-radius: var(--radius-sm); color: #F0A08D; font-size: 0.92rem;
  gap: 0.6rem; align-items: flex-start;
}
.form-error-summary.is-shown { display: flex; }
.form-error-summary svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }

/* ==========================================================================
   Detail/reserve responsive
   ========================================================================== */
@media (max-width: 960px) {
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .detail-layout, .reserve-layout { grid-template-columns: 1fr; }
  .book-card, .summary-card { position: static; }
  .amenity-list { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .gallery .gallery--wide { aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .rate-options { grid-template-columns: 1fr; }
  .rate-opt label { min-height: 0; flex-direction: row; justify-content: space-between; align-items: baseline; text-align: left; }
}

/* ==========================================================================
   Legal pages (Privacy / Terms) — narrow prose column
   ========================================================================== */
.legal-hero { padding-block: clamp(2.5rem, 6vw, 4rem) 0; }
.legal-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 0.85rem; }
.legal-hero .effective {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: var(--offwhite-mute); margin: 0;
}
.legal-note {
  display: flex; gap: 0.7rem; align-items: flex-start;
  max-width: 72ch;
  margin: 1.6rem 0 0;
  padding: 0.95rem 1.15rem;
  background: rgba(228,180,90,0.08);
  border: 1px solid rgba(228,180,90,0.3);
  border-radius: var(--radius-sm);
  color: var(--offwhite-dim); font-size: 0.9rem; line-height: 1.55;
}
.legal-note svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 2px; }
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  margin-top: 2.75rem; margin-bottom: 0.2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--charcoal-600);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.75rem; text-transform: none; letter-spacing: 0.01em; }
.prose p, .prose li { color: var(--offwhite-dim); }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--gold-bright); }
.prose ul { padding-left: 1.15rem; margin-top: 0.6rem; display: grid; gap: 0.5rem; }
.prose li { padding-left: 0.25rem; }
.prose li::marker { color: var(--gold-deep); }
.prose strong { color: var(--offwhite); }
.prose .placeholder {
  font-family: var(--font-body); font-weight: 500;
  color: var(--gold); background: rgba(228,180,90,0.1);
  padding: 0.05em 0.4em; border-radius: 4px; font-size: 0.94em;
  border: 1px dashed rgba(228,180,90,0.4);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ==========================================================================
   Interior pages — Find Parking / Contact / Login (v3)
   ========================================================================== */
.page-head { padding-top: clamp(2.5rem, 7vw, 5rem); padding-bottom: 0; }
.page-head .lede { max-width: 46ch; }

/* Find Parking */
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2.75rem; }
.fp-card { background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.fp-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.fp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-card__badge { position: absolute; top: 1rem; left: 1rem; }
.fp-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.95rem; flex: 1; }
.fp-card__body h2 { font-size: clamp(1.5rem, 3vw, 1.95rem); line-height: 1.05; }
.fp-addr { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--offwhite-dim); font-family: var(--mono); font-size: 0.88rem; }
.fp-addr svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.fp-price { font-family: var(--mono); color: var(--offwhite-mute); font-size: 0.9rem; }
.fp-price strong { color: var(--gold); font-size: 1.4rem; font-variant-numeric: tabular-nums; }
.fp-actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.4rem; }
.fp-detail-link { color: var(--offwhite-dim); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; padding: 0.35rem; min-height: 44px; }
.fp-detail-link svg { width: 18px; height: 18px; }
.fp-detail-link:hover { color: var(--gold); }
.fp-note { margin-top: 2rem; color: var(--offwhite-mute); font-size: 0.85rem; font-style: italic; }
@media (max-width: 780px) { .fp-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.75rem; margin-top: 2.75rem; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-block h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-block a { color: var(--gold); }
.contact-block p { color: var(--offwhite-dim); margin: 0; }
.contact-block address { font-style: normal; color: var(--offwhite-dim); font-family: var(--mono); font-size: 0.88rem; line-height: 1.65; }
.contact-hours { font-family: var(--mono); color: var(--offwhite-dim); font-size: 0.88rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Login / auth */
.auth-wrap { max-width: 430px; margin-inline: auto; }
.auth-card { background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); }
.auth-note { display: flex; gap: 0.6rem; align-items: flex-start; background: var(--charcoal-800); border: 1px solid var(--charcoal-600); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--offwhite-dim); margin-bottom: 1.5rem; }
.auth-note svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.auth-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.auth-forgot { color: var(--offwhite-dim); font-size: 0.85rem; white-space: nowrap; }
.auth-forgot:hover { color: var(--gold); }
.auth-alt { text-align: center; margin-top: 1.35rem; color: var(--offwhite-mute); font-size: 0.92rem; }
.auth-alt a { color: var(--gold); }


/* ==========================================================================
   Hero v4 — centered, one screen, Gate Pass centerpiece
   ========================================================================== */
.hero--center {
  height: 100svh;
  min-height: 640px;
  padding-block: clamp(4.75rem, 9vh, 6.75rem) clamp(2.25rem, 5vh, 3.5rem);
}
.hero--center .hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.85rem, 2.2vh, 1.5rem);
  max-width: 860px;
  margin-inline: auto;
}
.hero--center .hero__punch { margin: 0; }
.hero--center h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero__cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 0.3rem; }

/* ---- The Gate Pass ---- */
.gatepass { perspective: 1300px; width: min(430px, 85vw); }
.gatepass__card {
  position: relative;
  aspect-ratio: 1.62 / 1;
  border-radius: 18px;
  padding: clamp(1.05rem, 2.6vw, 1.5rem);
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left;
  color: var(--offwhite);
  background:
    linear-gradient(135deg, rgba(240,198,116,0.18), rgba(228,180,90,0.03) 42%, rgba(36,31,25,0.92)),
    linear-gradient(180deg, var(--charcoal-700), var(--charcoal-800));
  border: 1px solid rgba(228,180,90,0.38);
  box-shadow: 0 34px 70px -26px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.14);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.18s var(--ease);
  animation: gatepass-float 6s ease-in-out infinite;
  will-change: transform;
}
.gatepass__sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.13) 45%, rgba(240,198,116,0.28) 50%, rgba(255,255,255,0.13) 55%, transparent 68%);
  transform: translateX(-65%);
  animation: gatepass-sheen 5s ease-in-out infinite;
  mix-blend-mode: screen;
}
.gatepass__top { display: flex; justify-content: space-between; align-items: center; }
.gatepass__brand {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.4rem;
}
.gatepass__brand .ez { background: var(--gold); color: var(--charcoal); padding: 0.1em 0.32em 0.05em; border-radius: 4px; }
.gatepass__status { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold); display: inline-flex; align-items: center; gap: 0.35rem; }
.gatepass__mid { display: flex; flex-direction: column; gap: 0.12rem; }
.gatepass__kicker { font-size: 0.58rem; letter-spacing: 0.3em; color: var(--offwhite-mute); }
.gatepass__lot { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.65rem, 4.4vw, 2.35rem); line-height: 1; letter-spacing: 0.01em; }
.gatepass__addr { font-size: 0.6rem; letter-spacing: 0.07em; color: var(--offwhite-dim); }
.gatepass__foot { display: flex; justify-content: space-between; align-items: flex-end; }
.gatepass__price { display: inline-flex; align-items: baseline; gap: 0.28rem; }
.gatepass__price small { font-size: 0.58rem; letter-spacing: 0.1em; color: var(--offwhite-mute); }
.gatepass__price strong { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--gold); line-height: 1; }
.gatepass__bars {
  width: 74px; height: 28px; border-radius: 2px; opacity: 0.6;
  background: repeating-linear-gradient(90deg, var(--offwhite) 0 2px, transparent 2px 4px, var(--offwhite) 4px 5px, transparent 5px 8px, var(--offwhite) 8px 11px, transparent 11px 13px);
}
@keyframes gatepass-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes gatepass-sheen { 0% { transform: translateX(-65%); } 62%, 100% { transform: translateX(65%); } }
@media (prefers-reduced-motion: reduce) {
  .gatepass__card { animation: none; }
  .gatepass__sheen { animation: none; opacity: 0.18; transform: translateX(0); }
}

/* ---- Booking strip (relocated quick-start) ---- */
.booking-strip__inner {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.booking-strip__way {
  margin-top: 1.3rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.13em; color: var(--offwhite-dim); text-transform: uppercase;
}
@media (max-width: 860px) {
  .booking-strip__inner { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Hero truck centerpiece (v5) + relocated Gate Pass section
   ========================================================================== */
.hero-truck { display: flex; justify-content: center; width: 100%; }
.hero-truck img {
  height: clamp(185px, 39vh, 415px);
  width: auto; max-width: 96vw; display: block;
  -webkit-mask-image: radial-gradient(135% 130% at 50% 47%, #000 50%, transparent 78%);
  mask-image: radial-gradient(135% 130% at 50% 47%, #000 50%, transparent 78%);
  animation: gatepass-float 7s ease-in-out infinite;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.6));
}
@media (prefers-reduced-motion: reduce) { .hero-truck img { animation: none; } }

.gatepass-section__inner {
  display: grid; grid-template-columns: 1fr minmax(320px, 440px);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.gatepass-section__card { display: flex; justify-content: center; }
.gatepass-section .gatepass { width: min(430px, 100%); }
@media (max-width: 860px) {
  .gatepass-section__inner { grid-template-columns: 1fr; }
  .gatepass-section__card { order: -1; }
}


/* Hero v5 — darken the backdrop so the truck's black edges melt into the scene */
.hero--center .hero__bg { opacity: 0.16; object-position: center 40%; }
.hero--center .hero__scrim {
  background:
    radial-gradient(72% 62% at 50% 52%, rgba(9,8,6,0.97) 0%, rgba(12,10,8,0.9) 42%, rgba(14,12,9,0.8) 100%),
    linear-gradient(180deg, rgba(14,12,9,0.85) 0%, rgba(14,12,9,0.9) 60%, rgba(16,14,11,1) 100%);
}
.hero--center .hero__glow { left: 50%; bottom: 8%; transform: translateX(-50%); width: min(90vw, 900px); opacity: 0.9; }
.hero-truck img {
  height: clamp(200px, 42vh, 440px);
  -webkit-mask-image: radial-gradient(118% 140% at 50% 48%, #000 60%, transparent 86%);
  mask-image: radial-gradient(118% 140% at 50% 48%, #000 60%, transparent 86%);
}


/* Hero v5 — final blend tune: neutral near-black center + stronger truck feather */
.hero--center .hero__scrim {
  background:
    radial-gradient(72% 64% at 50% 50%, rgba(6,6,7,0.99) 0%, rgba(10,9,8,0.95) 46%, rgba(14,12,9,0.82) 100%),
    linear-gradient(180deg, rgba(12,11,9,0.9) 0%, rgba(16,14,11,1) 100%);
}
.hero-truck img {
  -webkit-mask-image: radial-gradient(112% 150% at 50% 49%, #000 48%, transparent 80%);
  mask-image: radial-gradient(112% 150% at 50% 49%, #000 48%, transparent 80%);
}


/* Hero v5 — screen blend dissolves the truck's black background seamlessly */
.hero-truck img {
  -webkit-mask-image: none; mask-image: none;
  mix-blend-mode: screen;
  filter: none;
}
.hero--center .hero__glow { opacity: 0.65; bottom: 4%; width: min(80vw, 760px); }


/* Hero interactive 3D truck (model-viewer) */
.hero-3d {
  width: min(680px, 92vw);
  height: clamp(210px, 44vh, 470px);
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--gold);
  --progress-mask: transparent;
}
.hero-3d::part(default-progress-bar) { background: transparent; }


/* Hero 3D truck — bigger + gold sheen sweep (like the card) */
.hero-truck { position: relative; }
.hero-3d {
  width: min(820px, 96vw);
  height: clamp(250px, 52vh, 560px);
}
.truck-sheen {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg,
    transparent 34%,
    rgba(255,255,255,0.08) 46%,
    rgba(240,198,116,0.32) 50%,
    rgba(255,255,255,0.08) 54%,
    transparent 66%);
  transform: translateX(-62%);
  mix-blend-mode: screen;
  animation: gatepass-sheen 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .truck-sheen { animation: none; opacity: 0; } }


/* ==========================================================================
   Hero v6 — split (text left, 3D truck right) + logo + header buttons
   ========================================================================== */
.hero--split { height: 100svh; min-height: 640px; padding-block: clamp(4.5rem, 9vh, 6.5rem) clamp(2rem, 5vh, 3.5rem); }
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  text-align: left;
}
.hero--split .hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(0.9rem, 2vh, 1.5rem); }
.hero--split .hero__punch { margin: 0; }
.hero--split h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.015em; margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero--split .hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.4rem; }
.hero--split .hero-truck { width: 100%; }
.hero--split .hero-3d {
  width: 100%; height: clamp(300px, 62vh, 620px);
  background: transparent; --poster-color: transparent;
}
/* Warm gold glow behind the truck; lifts on hover as the truck "lights up" */
.hero--split .hero__glow {
  left: auto; right: -6%; bottom: 50%; transform: translateY(50%);
  width: min(62vw, 740px); opacity: 0.5;
  transition: opacity 0.45s var(--ease);
}
.hero--split:hover .hero__glow { opacity: 0.92; }
@media (max-width: 900px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; text-align: center; gap: clamp(0.4rem, 1.5vh, 1rem); }
  .hero--split .hero__copy { align-items: center; }
  .hero--split .hero-ctas { justify-content: center; }
  .hero--split .hero-3d { height: clamp(240px, 42vh, 430px); }
  .hero--split .hero__glow { right: auto; left: 50%; transform: translate(-50%, 50%); }
}

/* Logo mark — screen blend drops the black background so only the glow shows */
.logo { align-items: center; }
.logo__mark { width: 40px; height: 40px; object-fit: contain; mix-blend-mode: screen; flex: none; }
.footer-brand .logo__mark { width: 34px; height: 34px; }

/* Header: Login as a secondary (outline pill) button next to the gold Book a Spot */
.header-actions .header-login {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 0.48rem 1.15rem;
  min-height: 40px; align-items: center;
  color: var(--offwhite);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.header-actions .header-login:hover { border-color: var(--gold); color: var(--gold); background: rgba(228,180,90,0.10); }

/* Logo now has a real transparent bg — no blend needed */
.logo__mark { mix-blend-mode: normal; }

/* Logo: bigger + space; truck column wider so the whole truck stays big */
.logo { gap: 0.5rem; }
.logo__mark { width: 36px; height: 36px; }
.footer-brand .logo__mark { width: 32px; height: 32px; }
.hero--split .hero__inner { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.hero--split .hero-3d { height: clamp(320px, 66vh, 680px); }

/* Logo bigger + crisp */
.logo__mark { width: 50px; height: 50px; image-rendering: auto; }
.footer-brand .logo__mark { width: 40px; height: 40px; }

/* Truck +30% */
.hero--split .hero-3d { height: clamp(360px, 74vh, 760px); }
@media (max-width: 900px) { .hero--split .hero-3d { height: clamp(280px, 48vh, 500px); } }


/* ==========================================================================
   Wave B — Reserve flow v2 (booking-as-product)
   ========================================================================== */
.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;
}
.rsv-section { padding-top: clamp(2.25rem, 5vw, 3.5rem); }

/* ---- Step rail (mono progress indicator) ---- */
.step-rail {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0;
  list-style: none; padding: 0; margin: 0 0 1.9rem;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.step-tab {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--offwhite-mute);
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.step-tab + .step-tab::before {
  content: ""; width: clamp(16px, 4vw, 38px); height: 1px;
  background: var(--charcoal-600); margin-inline: clamp(0.6rem, 2vw, 1.1rem);
  flex: none;
}
.step-tab .st-num {
  display: grid; place-items: center;
  width: 26px; height: 26px; flex: none;
  border: 1px solid var(--charcoal-600); border-radius: 50%;
  font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--offwhite-mute);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.step-tab .st-check { display: none; width: 26px; height: 26px; flex: none;
  place-items: center; border-radius: 50%;
  background: rgba(228,180,90,0.14); border: 1px solid var(--gold-deep); color: var(--gold);
}
.step-tab .st-check svg { width: 13px; height: 13px; }
.step-tab.is-done .st-num { display: none; }
.step-tab.is-done .st-check { display: grid; }
.step-tab.is-done { color: var(--offwhite-dim); }
.step-tab.is-active { color: var(--offwhite); }
.step-tab.is-active .st-num { border-color: var(--gold); color: var(--gold); background: rgba(228,180,90,0.08); }
.step-tab .st-state { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---- Step legends inside the form card ---- */
.rsv-form .fieldset { margin-bottom: 2.1rem; padding-top: 1.9rem; border-top: 1px solid var(--charcoal-600); }
.rsv-form .fieldset:first-of-type { border-top: 0; padding-top: 0; }
.rsv-form .fieldset > legend.rsv-legend {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.12rem; color: var(--offwhite);
  margin-bottom: 1.1rem; padding: 0; float: left; width: 100%;
}
.rsv-legend + * { clear: both; }
.rsv-legend__num {
  display: grid; place-items: center;
  width: 28px; height: 28px; flex: none;
  border: 1px solid var(--gold-deep); border-radius: 50%;
  background: rgba(228,180,90,0.07);
  font-size: 0.72rem; color: var(--gold); letter-spacing: 0.02em;
}

/* ---- Yard segmented choice (step 1) ---- */
.yard-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.yardseg {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem;
  min-height: 74px; padding: 0.9rem 1rem;
  background: var(--charcoal-800); border: 1.5px solid var(--charcoal-600);
  border-radius: var(--radius-sm); color: var(--offwhite-dim);
  text-align: left;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.yardseg:hover:not(.is-active) { border-color: var(--gold-deep); color: var(--offwhite); }
.yardseg .ys-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.12rem; line-height: 1; }
.yardseg .ys-meta { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: var(--offwhite-mute); }
.yardseg .led { width: 8px; height: 8px; }
.yardseg.is-active { border-color: var(--gold); background: linear-gradient(180deg, rgba(228,180,90,0.12), var(--charcoal-800)); color: var(--offwhite); }
.yardseg.is-active .ys-meta { color: var(--offwhite-dim); }
.yard-seg__addr { margin: 0.85rem 0 0; font-size: 0.74rem; letter-spacing: 0.05em; color: var(--offwhite-mute); text-transform: uppercase; }

/* ---- "Best value" tag on the weekly rate card ---- */
.rate-opt label { position: relative; }
.rate-opt__tag {
  position: absolute; top: -0.62rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 0.14rem 0.5rem; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 480px) {
  .rate-options { row-gap: 1rem; }
  .rate-opt__tag { left: auto; right: 0.75rem; transform: none; }
}

/* Rate-card selection pop (motion-gated) */
@media (prefers-reduced-motion: no-preference) {
  .rate-opt label.pop { animation: rate-pop 0.28s var(--ease); }
  .yardseg.pop { animation: rate-pop 0.28s var(--ease); }
}
@keyframes rate-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

/* ---- Submit (total-in-button) + reassurance ---- */
.rsv-submit { min-height: 56px; font-size: 1.05rem; gap: 0.45rem; margin-top: 2rem; }
.rsv-submit__amt { font-weight: 600; opacity: 0.85; }
.rsv-note { margin: 1.1rem 0 0; font-size: 0.82rem; color: var(--offwhite-mute); text-align: center; }

/* ---- Summary: edit affordances + live flash ---- */
.summary-rows li { align-items: baseline; }
.sum-edit {
  flex: none; align-self: center;
  display: inline-flex; align-items: center;
  min-height: 44px; margin-block: -13px; padding: 0 0.4rem;
  background: none; border: 0;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.72rem; color: var(--gold-deep);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.18s var(--ease);
}
.sum-edit:hover { color: var(--gold-bright); }
.summary-total .t-amt { font-size: 2.15rem; }
.summary-total .t-unit { font-size: 0.9rem; color: var(--offwhite-mute); font-weight: 400; }
.summary-soon-note { font-size: 0.9rem; color: var(--offwhite-dim); margin: 0 0 0.25rem; }
@media (prefers-reduced-motion: no-preference) {
  .sum-flash { animation: sum-flash 0.55s var(--ease); }
}
@keyframes sum-flash {
  0% { color: var(--gold-bright); }
  100% { color: inherit; }
}

/* ---- Mobile sticky confirm bar ---- */
.rsv-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(22,19,15,0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--charcoal-600);
}
.rsv-bar__info { min-width: 0; }
.rsv-bar__info small { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--offwhite-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rsv-bar__info strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--gold); line-height: 1.15; }
.rsv-bar__info strong span { font-family: var(--font-body); font-size: 0.8rem; color: var(--offwhite-mute); font-weight: 400; }
.rsv-bar .btn { flex: none; min-height: 50px; }
@media (max-width: 960px) {
  .rsv-bar:not([hidden]) { display: flex; }
  body:has(.rsv-bar:not([hidden])) { padding-bottom: 84px; }
}

/* ---- Success: reference code ---- */
.success-ref {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0.75rem auto 0; padding: 0.5rem 0.9rem;
  border: 1px dashed var(--gold-deep); border-radius: var(--radius-sm);
  font-size: 0.9rem; letter-spacing: 0.08em; color: var(--gold);
  background: rgba(228,180,90,0.06);
}
.success-ref__label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--offwhite-mute); }

/* ---- Reserve responsive tweaks ---- */
@media (max-width: 520px) {
  .yard-seg { grid-template-columns: 1fr; }
  .step-tab + .step-tab::before { width: 12px; margin-inline: 0.45rem; }
}

/* CTA human/phone trust line */
.cta-band .cta-human { margin-top: 1.4rem; color: var(--offwhite-dim); font-size: 0.95rem; }
.cta-band .cta-human a { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ==========================================================================
   Home v7 — narrative restructure
   ========================================================================== */
/* Moving black & gold hazard divider */
.stripe-divider {
  height: 16px;
  background: repeating-linear-gradient(135deg,
    var(--gold) 0 24px, #121009 24px 48px);
  background-size: 68px 100%;
  border-block: 1px solid rgba(228,180,90,0.35);
  animation: stripe-roll 2.6s linear infinite;
  opacity: 0.92;
}
@keyframes stripe-roll { from { background-position-x: 0; } to { background-position-x: 68px; } }
@media (prefers-reduced-motion: reduce) { .stripe-divider { animation: none; } }

/* Easy & secure — 3 moves + gate pass */
.ezp__inner {
  display: grid; grid-template-columns: 1.05fr minmax(320px, 440px);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.ezp__steps { list-style: none; margin: 1.9rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.ezp__steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.ezp__num {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 30px; margin-top: 0.15rem;
  border: 1px solid var(--gold-deep); border-radius: 7px;
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em;
  background: rgba(228,180,90,0.07);
}
.ezp__steps h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.ezp__steps p { margin: 0; color: var(--offwhite-dim); font-size: 0.97rem; }
.ezp__card { display: flex; justify-content: center; }
.ezp .gatepass { width: min(430px, 100%); }
@media (max-width: 860px) {
  .ezp__inner { grid-template-columns: 1fr; }
  .ezp__card { order: -1; }
}

/* Book band — improved quickstart as the closing module */
.book-band .quickstart { max-width: 540px; margin: 2.2rem auto 0; text-align: left; }
.book-band .cta-human { margin-top: 1.6rem; }
.quickstart::before { display: none; } /* divider owns the stripes now */
.rate-chip { min-height: 74px; }
.rate-chip__unit { font-size: 0.6rem; letter-spacing: 0.08em; color: var(--offwhite-mute); }
.rate-chip.is-active .rate-chip__unit { color: var(--gold); }

/* Badges over photos: solid dark chip so they're legible on bright imagery */
.fp-card__badge {
  z-index: 2;
  background: rgba(14,12,9,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
.fp-card__badge.badge--open { color: #8fe294; border-color: rgba(143,226,148,0.65); }
.fp-card__badge.badge--soon { color: var(--gold-bright); border-color: rgba(240,198,116,0.7); }

/* ==========================================================================
   Lot pages v2 — truckbays anatomy (host / rates / policies / rules / arrival)
   ========================================================================== */
/* "Run by the owner" host block */
.yp-host {
  display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1.15rem; align-items: start;
  background: var(--charcoal-700);
  border: 1px solid var(--charcoal-600); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: clamp(1.35rem, 3.5vw, 1.9rem);
}
.yp-host__avatar {
  grid-row: 1 / 3; width: 64px; height: 64px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(228,180,90,0.1); border: 1px solid rgba(228,180,90,0.35);
}
.yp-host__avatar img { width: 42px; height: 42px; object-fit: contain; }
.yp-host__kicker {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin: 0.2rem 0 0.15rem;
}
.yp-host h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); margin: 0; }
.yp-host__copy { grid-column: 2; margin: 0.55rem 0 0; color: var(--offwhite-dim); font-size: 0.97rem; line-height: 1.6; }
.yp-host__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.15rem; }
.yp-host__actions .btn { flex: 1 1 220px; }
@media (max-width: 480px) {
  .yp-host { grid-template-columns: 1fr; }
  .yp-host__avatar { grid-row: auto; margin-bottom: 0.35rem; }
  .yp-host__copy { grid-column: 1; }
}

/* Amenity chips (bigger, readable spin on the shared .chip) */
.yp-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.yp-chips .chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.92rem; padding: 0.55rem 0.95rem;
}
.yp-chips .chip svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* Rates table */
.yp-rates {
  border: 1px solid var(--charcoal-600); border-radius: var(--radius);
  background: var(--charcoal-700); overflow: hidden;
}
.yp-rates table { width: 100%; border-collapse: collapse; }
.yp-rates tr + tr { border-top: 1px solid var(--charcoal-600); }
.yp-rates th, .yp-rates td { padding: 1.05rem 1.35rem; text-align: left; vertical-align: middle; }
.yp-rates th { font-weight: 500; }
.yp-rates .term {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 1.02rem; color: var(--offwhite);
}
.yp-rates .term .best {
  display: inline-block; margin-left: 0.5rem; vertical-align: 2px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal); background: var(--gold);
  border-radius: 4px; padding: 0.15rem 0.4rem;
}
.yp-rates .hint { display: block; font-size: 0.85rem; color: var(--offwhite-mute); margin-top: 0.15rem; font-weight: 400; }
.yp-rates td.amt { text-align: right; white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: var(--gold); font-variant-numeric: tabular-nums; }
.yp-rates td.amt .unit { font-family: var(--mono); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--offwhite-mute); margin-left: 0.25rem; }
.yp-rates__note {
  display: flex; gap: 0.6rem; align-items: flex-start;
  border-top: 1px solid var(--charcoal-600);
  padding: 0.95rem 1.35rem; margin: 0;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--offwhite-dim); background: rgba(228,180,90,0.05);
}
.yp-rates__note svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 1px; }
.yp-rates__soon { padding: 1.5rem 1.35rem; }
.yp-rates__soon p { margin: 0 0 1.15rem; color: var(--offwhite-dim); line-height: 1.6; }
.yp-rates__soon p strong { color: var(--gold); }

/* Policies — plain-English cards */
.yp-policies { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.yp-policy {
  background: var(--charcoal-700); border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm); padding: 1.25rem 1.35rem;
}
.yp-policy h3 { display: flex; align-items: center; gap: 0.55rem; font-size: 1.08rem; margin-bottom: 0.45rem; }
.yp-policy h3 svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.yp-policy p { margin: 0; font-size: 0.93rem; color: var(--offwhite-dim); line-height: 1.6; }
@media (max-width: 640px) { .yp-policies { grid-template-columns: 1fr; } }

/* Yard rules — numbered, driver English */
.yp-rules { list-style: none; counter-reset: yprule; margin: 0; padding: 0; display: grid; gap: 0; border: 1px solid var(--charcoal-600); border-radius: var(--radius); background: var(--charcoal-700); overflow: hidden; }
.yp-rules li {
  counter-increment: yprule;
  padding: 0.95rem 1.35rem 0.95rem 3.6rem; position: relative;
  color: var(--offwhite-dim); font-size: 0.97rem; line-height: 1.55;
}
.yp-rules li + li { border-top: 1px solid var(--charcoal-600); }
.yp-rules li::before {
  content: counter(yprule, decimal-leading-zero);
  position: absolute; left: 1.35rem; top: 1.12rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--gold);
}
.yp-rules li strong { color: var(--offwhite); }

/* Arrival directions */
.yp-arrive {
  background: var(--charcoal-700); border: 1px solid var(--charcoal-600);
  border-radius: var(--radius); padding: clamp(1.35rem, 3.5vw, 1.75rem);
}
.yp-arrive__route {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.65rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 0.9rem;
}
.yp-arrive__route svg { width: 15px; height: 15px; color: var(--offwhite-mute); flex: none; }
.yp-arrive p { margin: 0 0 0.85rem; color: var(--offwhite-dim); line-height: 1.65; }
.yp-arrive p:last-of-type { margin-bottom: 0; }
.yp-arrive .yp-arrive__tip {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--charcoal-600);
  font-size: 0.9rem; color: var(--offwhite-mute);
}
.yp-arrive .yp-arrive__tip svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 2px; }
.yp-arrive .yp-arrive__tip a { color: var(--gold); }

/* My Account lists */
.acct-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 640px; }
.acct-item { background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.acct-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.2rem 0; font-size: 0.95rem; color: var(--offwhite-dim); }
.acct-row .v { color: var(--offwhite); font-family: var(--mono); font-size: 0.88rem; text-align: right; }
.acct-empty { color: var(--offwhite-mute); }

/* Driver reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.review { margin: 0; background: var(--charcoal-700); border: 1px solid var(--charcoal-600); border-radius: var(--radius); padding: 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.review blockquote { margin: 0; font-size: 1.05rem; color: var(--offwhite); line-height: 1.5; }
.review blockquote::before { content: none; }
.review figcaption { color: var(--offwhite-dim); font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.15rem; }
.review figcaption .mono { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--offwhite-mute); text-transform: uppercase; }
@media (max-width: 820px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Per-vehicle rates + payment handoff (Wave C)
   ========================================================================== */
/* "What are you parking?" radio cards (reserve step 02) */
.veh-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.veh-opt { position: relative; }
.veh-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.veh-opt label {
  display: flex; flex-direction: column; gap: 0.12rem;
  min-height: 44px; padding: 0.85rem 1rem;
  background: var(--charcoal-800); border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.veh-opt .v-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; color: var(--offwhite); }
.veh-opt .v-sub { font-size: 0.76rem; color: var(--offwhite-mute); }
.veh-opt .v-from { margin-top: 0.35rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--gold); font-variant-numeric: tabular-nums; }
.veh-opt input:checked + label { border-color: var(--gold); background: linear-gradient(180deg, rgba(228,180,90,0.12), var(--charcoal-800)); }
.veh-opt input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.veh-opt label.pop { animation: rate-pop 0.28s var(--ease); }

/* Payment-cancelled notice (reserve, ?cancelled=1) */
.rsv-notice {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--charcoal-700); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); padding: 0.9rem 0.6rem 0.9rem 1rem;
  margin: 0 0 1.6rem; color: var(--offwhite); font-size: 0.95rem; line-height: 1.5;
}
.rsv-notice[hidden] { display: none; }
.rsv-notice > svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.rsv-notice__close {
  margin-left: auto; flex: none; display: grid; place-items: center;
  min-width: 44px; min-height: 44px; margin-block: -10px;
  background: none; border: 0; border-radius: var(--radius-sm);
  color: var(--offwhite-mute); cursor: pointer;
}
.rsv-notice__close:hover { color: var(--offwhite); }
.rsv-notice__close:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.rsv-notice__close svg { width: 16px; height: 16px; }

/* Full per-vehicle rates table (winter-haven.html) */
.yp-rates--multi thead th {
  font-family: var(--mono); font-weight: 500; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--offwhite-mute);
  text-align: right; padding: 0.9rem 1rem 0.55rem;
  border-bottom: 1px solid var(--charcoal-600);
}
.yp-rates--multi thead th:first-child { text-align: left; padding-left: 1.35rem; }
.yp-rates--multi thead th .best {
  display: block; margin-top: 0.2rem;
  font-size: 0.58rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase;
}
.yp-rates--multi tbody th { padding: 0.9rem 0.75rem 0.9rem 1.35rem; }
.yp-rates--multi tbody th .term { font-size: 1rem; }
.yp-rates--multi tbody th .hint { font-size: 0.78rem; }
.yp-rates--multi td.amt {
  padding: 0.9rem 1rem;
  font-family: var(--mono); font-weight: 600; font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 480px) {
  .yp-rates--multi thead th { padding: 0.75rem 0.6rem 0.5rem; }
  .yp-rates--multi thead th:first-child { padding-left: 0.9rem; }
  .yp-rates--multi tbody th { padding: 0.8rem 0.4rem 0.8rem 0.9rem; }
  .yp-rates--multi tbody th .hint { display: none; }
  .yp-rates--multi td.amt { padding: 0.8rem 0.6rem; font-size: 0.95rem; }
}

/* Sticky lot-page bar: always above content, never printed */
.mobile-book-bar { min-height: 44px; }
@media print {
  .mobile-book-bar, .rsv-bar, .rsv-notice { display: none !important; }
}

/* Paid return trip: recap has no rows — collapse the empty list box */
.recap:empty { display: none; }

/* ==========================================================================
   Humbleops-inspired UI pass — hero pitch + hairline, old-way cards, compare table
   ========================================================================== */

/* --- A2. Hero mini-pitch (right-rail pitch, translated to the copy column) --- */
.hero__pitch {
  margin-top: 0.5rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--charcoal-600);
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.hero__pitch p { margin: 0; }
.hero__pitch .pitch-q { font-weight: 700; color: var(--offwhite); }
.hero__pitch .pitch-a { font-weight: 700; color: var(--gold); }
.hero__pitch .pitch-body {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--offwhite-dim);
}
/* Hero is a fixed 100svh stage — on stacked mobile layouts the pitch would push
   the truck out of frame, so it's a desktop refinement only. */
@media (max-width: 900px) { .hero__pitch { display: none; } }

/* --- A3. Editorial hairline between hero copy and the truck column (desktop) --- */
@media (min-width: 1024px) {
  .hero--split .hero__copy {
    position: relative;
    align-self: stretch;
    justify-content: center;
    padding-right: clamp(1rem, 1.6vw, 1.6rem);
  }
  .hero--split .hero__copy::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--charcoal-600) 18%, var(--charcoal-600) 82%, transparent);
    pointer-events: none;
  }
}

/* --- B. "The old way / With EZ" pain→solution cards --- */
.oldway {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.9rem;
}
.oldway__card {
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--charcoal-800);
}
.oldway__old,
.oldway__ez { padding: 0.8rem 1.1rem 0.85rem; }
.oldway__label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--offwhite-mute);
  margin-bottom: 0.3rem;
}
.oldway__old p,
.oldway__ez p { margin: 0; font-size: 0.93rem; line-height: 1.5; }
.oldway__old p { color: var(--offwhite-dim); }
.oldway__ez {
  border-top: 1px solid var(--charcoal-600);
  border-left: 3px solid var(--gold);
  background: rgba(228,180,90,0.06);
}
.oldway__ez .oldway__label { color: var(--gold); }
.oldway__ez p { color: var(--offwhite); font-weight: 500; }

/* --- C. "Your three options tonight" comparison table (about) --- */
.cmp-scroll {
  margin-top: 2.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--charcoal-600);
  border-radius: var(--radius-sm);
  background: var(--charcoal-800);
}
.cmp {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.93rem;
  line-height: 1.45;
}
.cmp th,
.cmp td {
  padding: 0.85rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--charcoal-600);
}
.cmp thead th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offwhite-dim);
  background: var(--charcoal-700);
  white-space: nowrap;
}
.cmp thead th.cmp__ez { color: var(--gold); }
.cmp .cmp__ez { background: rgba(228,180,90,0.07); }
.cmp tbody th {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--offwhite-mute);
  white-space: nowrap;
}
.cmp td { color: var(--offwhite-dim); }
.cmp td.cmp__ez { color: var(--offwhite); font-weight: 500; }
.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td { border-bottom: 0; }

/* Hero must fit the first scroll on EVERY viewport.
   Cap the min-height floor at the viewport, and compact on short screens. */
.hero--split { min-height: min(640px, 100svh); }
@media (max-height: 700px) {
  .hero--split { padding-block: clamp(3.8rem, 9vh, 5rem) 1.25rem; }
  .hero--split h1 { font-size: clamp(2.1rem, 4.5vw, 4.1rem); }
  .hero--split .hero__pitch { display: none; }
  .hero--split .hero-3d { height: clamp(210px, 48vh, 420px); }
  .hero--split .hero__inner { gap: clamp(0.8rem, 2vw, 1.5rem); }
}


/* ==========================================================================
   Design refinement v8 — flat editorial cards · Phosphor duotone icons ·
   "tonight" timeline · persona strip · scene band · edge-case row
   ========================================================================== */

/* ---- 1) One card language, sitewide ----
   Flatter + editorial: charcoal-800 surface, 1px hairline, 10px radius,
   no gradients, at most a whisper of shadow. Glass quickstart + gatepass
   are signature elements and stay untouched. */
.fp-card, .amenity, .step, .review, .acct-item, .auth-card, .form-card,
.oldway__card, .qf, .book-card, .summary-card,
.yp-host, .yp-rates, .yp-policy, .yp-arrive, .yp-rules {
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-600);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.yp-host { border-left: 3px solid var(--gold); } /* keep its gold spine */

/* Hover: hairline warms to gold + tiny lift (lift is motion-gated) */
.fp-card:hover, .amenity:hover, .step:hover, .review:hover, .acct-item:hover,
.oldway__card:hover, .qf:hover, .yp-policy:hover {
  border-color: rgba(228,180,90,0.45);
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .fp-card, .amenity, .step, .review, .acct-item, .oldway__card, .qf, .yp-policy {
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .fp-card:hover, .amenity:hover, .step:hover, .review:hover, .acct-item:hover,
  .oldway__card:hover, .qf:hover, .yp-policy:hover {
    transform: translateY(-2px);
  }
}

/* More generous breathing room */
.amenity { padding: 1.75rem 1.5rem 1.65rem; }
.review { padding: 1.75rem 1.6rem; }
.fp-card__body { padding: 1.75rem 1.6rem 1.9rem; }
.qf { padding: 1.5rem 1.35rem; }
.oldway__old, .oldway__ez { padding: 0.95rem 1.25rem 1rem; }
.acct-item { padding: 1.15rem 1.35rem; }

/* Flatten the icon tiles to match (hairline instead of tinted box) */
.amenity__icon, .qf__icon, .why__list .ico {
  background: rgba(228,180,90,0.06);
  border: 1px solid var(--charcoal-600);
  border-radius: 9px;
}

/* ---- 2) Phosphor duotone icons ----
   Inlined with fill="currentColor"; the opacity-.2 layer gives depth.
   Zero-specificity fallback size so existing container rules always win. */
:where(svg.pico) { width: 20px; height: 20px; }
.oldway__label { display: flex; align-items: center; gap: 0.45rem; }
.oldway__ico { display: inline-flex; flex: none; }
.oldway__ico svg { width: 15px; height: 15px; }
.contact-block h3 { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.cb-ico {
  flex: none; width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--charcoal-600); border-radius: 9px;
  background: rgba(228,180,90,0.06);
  color: var(--gold);
}
.cb-ico svg { width: 18px; height: 18px; }

/* ---- 3) "What tonight looks like" timeline ---- */
.tonight {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  max-width: 640px;
}
.tl {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  column-gap: 2.4rem;
  padding-bottom: 2.2rem;
}
.tl:last-child { padding-bottom: 0; }
/* gold connector rail + node */
.tl::before {
  content: "";
  position: absolute;
  left: calc(84px + 1.2rem);
  top: 14px; bottom: -8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-deep), rgba(193,145,63,0.25));
}
.tl:last-child::before { display: none; }
.tl::after {
  content: "";
  position: absolute;
  left: calc(84px + 1.2rem);
  top: 8px;
  width: 9px; height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(228,180,90,0.14);
}
.tl__time {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.3rem; line-height: 1;
}
.tl__clock {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--offwhite);
  letter-spacing: -0.01em;
}
.tl__ampm {
  font-size: 0.66rem; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
}
.tl__body h3 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.tl__ico { display: inline-grid; place-items: center; flex: none; color: var(--gold); }
.tl__ico svg { width: 21px; height: 21px; }
.tl__body p { margin: 0; color: var(--offwhite-dim); font-size: 0.97rem; max-width: 46ch; }
@media (max-width: 480px) {
  .tl { grid-template-columns: 56px 1fr; column-gap: 1.9rem; }
  .tl::before, .tl::after { left: calc(56px + 0.95rem); }
  .tl__clock { font-size: 1.45rem; }
  .tl__body h3 { font-size: 1.12rem; }
}

/* ---- 4a) Persona strip (quiet, one truth) ---- */
.personas__inner {
  padding-block: 1.6rem;
  border-block: 1px solid var(--charcoal-600);
}
.personas__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.personas__row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.chip--persona { font-size: 0.9rem; padding: 0.45rem 0.95rem; color: var(--offwhite); }
.personas__note { margin: 0.85rem 0 0; font-size: 0.88rem; color: var(--offwhite-mute); }

/* ---- 4b) Scene band (client-supplied flat illustration of the yard) ---- */
.scene-band {
  border-block: 1px solid var(--charcoal-600);
  background: var(--charcoal-800);
  line-height: 0;
}
.scene-band img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center 62%;
}

/* ---- 5) "The weird stuff" edge-case row ---- */
.edge-row {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.edge {
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-600);
  border-radius: 10px;
  padding: 1.4rem 1.35rem 1.55rem;
}
.edge:hover { border-color: rgba(228,180,90,0.45); }
@media (prefers-reduced-motion: no-preference) {
  .edge { transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
  .edge:hover { transform: translateY(-2px); }
}
.edge__label {
  margin: 0 0 0.95rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--charcoal-600);
  font-size: 0.64rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.edge__ico { display: inline-grid; color: var(--gold); margin-bottom: 0.85rem; }
.edge__ico svg { width: 26px; height: 26px; }
.edge__q { font-size: 1.08rem; margin: 0 0 0.45rem; letter-spacing: 0.02em; }
.edge__a { margin: 0; font-size: 0.92rem; color: var(--offwhite-dim); line-height: 1.55; }
@media (max-width: 900px) {
  .edge-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--charcoal-600) transparent;
  }
  .edge { flex: 0 0 min(78%, 300px); scroll-snap-align: start; }
}

/* ---- v8 fixes ----
   Grid 1fr tracks bottom out at content min-width; the lot-page gallery's
   intrinsic image width forced the whole column past 390px viewports.
   minmax(0,1fr) lets every track compress to the viewport. */
@media (max-width: 960px) {
  .detail-layout, .reserve-layout { grid-template-columns: minmax(0, 1fr); }
}
.gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 480px) {
  .gallery { grid-template-columns: minmax(0, 1fr); }
}

/* Sub-390 header: interior pages keep Book CTA + hamburger — tighten so
   nothing clips at 360px. */
@media (max-width: 385px) {
  .header-inner { padding-left: 0.85rem; gap: 0.5rem; }
  .header-actions { gap: 0.4rem; }
  .header-actions .btn--sm { padding-inline: 0.75rem; font-size: 0.8rem; }
  .logo { font-size: 1.05rem; gap: 0.35rem; }
  .logo__mark { width: 38px; height: 38px; }
}

/* Hero content anchors directly UNDER the header (not floating mid-screen),
   whole composition fits the first scroll; truck sized to make room. */
.hero--split { align-items: flex-start; padding-top: clamp(6.25rem, 13vh, 7.5rem); }
.hero--split .hero__inner { align-items: start; }
.hero--split .hero-3d { height: clamp(320px, 62vh, 620px); }
.hero--split .hero__glow { bottom: 42%; }
@media (max-height: 700px) {
  .hero--split { padding-top: 6rem; }
  .hero--split .hero-3d { height: clamp(200px, 44vh, 380px); }
}
@media (max-width: 900px) {
  .hero--split { padding-top: 6rem; }
  .hero--split .hero-3d { height: clamp(230px, 38vh, 420px); }
}

/* MOBILE FIX: a later 2-col rule was overriding the stack — re-assert it last. */
@media (max-width: 900px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; text-align: center; gap: clamp(0.5rem, 1.5vh, 1rem); }
  .hero--split .hero__copy { align-items: center; }
  .hero--split .hero-ctas { justify-content: center; }
  .hero--split .hero__copy::after { display: none; }
}

/* Very short phones: truck gives way so the hero still fits one screen */
@media (max-width: 900px) and (max-height: 620px) {
  .hero--split .hero-3d { height: clamp(120px, 24vh, 180px); }
  .hero--split { padding-bottom: 1rem; }
  .hero--split h1 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
}

/* HERO TYPOGRAPHY FIX — final override.
   Headline must fit ONE sentence per line inside its ~36%-wide column at every
   viewport (6vw was too big below ~1350px and caused one-word-per-line wraps). */
.hero--split .hero__copy h1.hero__title {
  font-size: clamp(2.3rem, 4.9vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
}
/* Truck balances vertically in the remaining space instead of floating high */
.hero--split .hero__inner { align-items: stretch; }
.hero--split .hero__copy { align-self: start; }
.hero--split .hero-truck { align-self: center; }
@media (max-width: 900px) {
  .hero--split .hero__copy h1.hero__title { font-size: clamp(2.1rem, 8.4vw, 2.9rem); }
  .hero--split .hero-truck { align-self: auto; }
}
@media (max-height: 700px) and (min-width: 901px) {
  .hero--split .hero__copy h1.hero__title { font-size: clamp(2rem, 4.2vw, 3.6rem); }
}

/* Final headline fit: never let a sentence wrap inside the copy column */
.hero--split .hero__copy h1.hero__title { font-size: clamp(2.3rem, 4.5vw, 4.1rem); }

/* Equal hero columns (more room for the headline; truck cedes a little)
   + font cap tuned to the real 1180px-capped container */
@media (min-width: 901px) {
  .hero--split .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero--split .hero__copy h1.hero__title { font-size: clamp(2.3rem, 4.6vw, 4.3rem); }
}

/* ================= HUMBLEOPS STRUCTURAL PASS (persona tabs · folder-tab edge cards · include rows · footer statement) ================= */

/* ---- Persona tabs ---- */
.ptabs .personas__eyebrow { margin-bottom: 1.1rem; }
.ptabs__bar {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 1.6rem;
}
.ptabs__tab {
  appearance: none; background: none; border: 0; cursor: pointer;
  font: 600 0.82rem/1 var(--font-body, 'Inter', sans-serif);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-dim, rgba(244,239,230,0.55));
  padding: 0.7rem 0.1rem 0.85rem;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.ptabs__tab:hover { color: var(--ink, #F4EFE6); }
.ptabs__tab[aria-selected="true"] { color: var(--ink, #F4EFE6); border-bottom-color: var(--gold, #E4B45A); }
.ptabs__panel {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: clamp(1.4rem, 3.5vw, 2.75rem);
}
.ptabs__copy h3 { font-family: var(--font-display, 'Oswald', sans-serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.08; margin: 0 0 0.7rem; text-transform: uppercase; letter-spacing: 0.01em; }
.ptabs__copy > p { color: var(--ink-dim, rgba(244,239,230,0.7)); max-width: 46ch; margin: 0 0 1.3rem; }
.ptabs__sub { border-left: 2px solid rgba(228,180,90,0.5); padding-left: 0.95rem; margin: 0 0 1rem; }
.ptabs__sub strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.ptabs__sub p { margin: 0; font-size: 0.9rem; color: var(--ink-dim, rgba(244,239,230,0.62)); max-width: 44ch; }
.ptabs__media { position: relative; margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.ptabs__media img { display: block; width: 100%; height: 100%; min-height: 260px; max-height: 360px; object-fit: cover; }
.ptabs__chip {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  background: rgba(22,19,15,0.82); backdrop-filter: blur(6px);
  color: var(--gold, #E4B45A); font-size: 0.68rem; letter-spacing: 0.14em;
  padding: 0.42rem 0.7rem; border-radius: 999px; border: 1px solid rgba(228,180,90,0.35);
}
.ptabs .personas__note { margin-top: 1.4rem; }

/* ---- Edge cases: sticky-left scrollytelling + folder-tab cards ---- */
.edge2__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.75rem, 5vw, 4.5rem); align-items: start; }
.edge2__left { position: sticky; top: 7rem; }
.edge2__left .section-title { margin-bottom: 0.9rem; }
.edge2__note { color: var(--ink-dim, rgba(244,239,230,0.65)); max-width: 40ch; margin: 0 0 1.5rem; }
.edge2__cards { display: flex; flex-direction: column; gap: 2.4rem; margin: 0; padding: 0; }
.edge2__cards.edge-row { grid-template-columns: none; }
.edge2 .edge { position: relative; margin-top: 1.9rem; border-top-left-radius: 0; }
.edge2 .edge__label {
  position: absolute; top: -1.95rem; left: 0; margin: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09); border-bottom: 0;
  color: var(--ink, #F4EFE6);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1.5rem 0.5rem;
  border-radius: 10px 10px 0 0;
  clip-path: polygon(0 100%, 10px 0, calc(100% - 10px) 0, 100% 100%);
}
.edge2 .edge__voice { border-left: 2px solid rgba(255,255,255,0.14); padding-left: 1rem; }
.edge2 .edge__voice + .edge__voice { margin-top: 1.2rem; }
.edge2 .edge__voice--ez { border-left-color: var(--gold, #E4B45A); }
.edge2 .edge__vk { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim, rgba(244,239,230,0.5)); margin: 0 0 0.35rem; }
.edge2 .edge__voice--ez .edge__vk { color: var(--gold, #E4B45A); }
.edge2 .edge__q { margin: 0 0 0.35rem; }
.edge2 .edge__vp { margin: 0; font-size: 0.9rem; color: var(--ink-dim, rgba(244,239,230,0.6)); }
.edge2 .edge__a { margin: 0; }

/* ---- "Every EZ yard includes" feature rows ---- */
.section-head--center { text-align: center; }
.section-head--center .section-title { margin-inline: auto; }
.inc {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem); align-items: center;
  padding: clamp(2.25rem, 6vh, 4rem) 0;
}
.inc + .inc { border-top: 1px solid rgba(255,255,255,0.06); }
.inc--flip .inc__media { order: 2; }
.inc--flip .inc__copy { order: 1; }
.inc__media { position: relative; margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.inc__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transform: scale(1); transition: transform 6s ease; }
.inc:hover .inc__media img { transform: scale(1.05); }
.inc__copy h3 { font-family: var(--font-display, 'Oswald', sans-serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.08; text-transform: uppercase; margin: 0.3rem 0 1rem; }
.inc__sub { border-left: 2px solid rgba(228,180,90,0.5); padding-left: 0.95rem; margin-bottom: 1.2rem; }
.inc__sub strong { display: block; margin-bottom: 0.25rem; }
.inc__sub p { margin: 0; color: var(--ink-dim, rgba(244,239,230,0.65)); max-width: 48ch; }
.inc__list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.inc__list li {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim, rgba(244,239,230,0.7));
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.inc__chip {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  background: rgba(22,19,15,0.82); backdrop-filter: blur(6px);
  color: var(--gold, #E4B45A); font-size: 0.7rem; letter-spacing: 0.14em;
  padding: 0.45rem 0.75rem; border-radius: 999px; border: 1px solid rgba(228,180,90,0.35);
}
.inc__rec {
  position: absolute; top: 0.9rem; right: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(22,19,15,0.82); backdrop-filter: blur(6px);
  color: var(--ink, #F4EFE6); font-size: 0.64rem; letter-spacing: 0.16em;
  padding: 0.4rem 0.7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14);
}
.inc__dot { width: 7px; height: 7px; border-radius: 50%; background: #E25B4A; animation: incBlink 1.4s steps(1) infinite; }
@keyframes incBlink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.15; } }
.inc__scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228,180,90,0.85), transparent);
  animation: incScan 5.5s ease-in-out infinite; opacity: 0.75;
}
@keyframes incScan { 0% { top: 4%; } 50% { top: 94%; } 100% { top: 4%; } }
@media (prefers-reduced-motion: reduce) {
  .inc__scanline, .inc__dot { animation: none; }
  .inc:hover .inc__media img { transform: none; }
}

/* ---- Footer closing statement ---- */
.footer-statement { padding: clamp(3.5rem, 10vh, 6.5rem) 0 clamp(2rem, 5vh, 3.5rem); }
.footer-statement__mark { display: block; width: 56px; height: auto; margin-bottom: 1.4rem; }
.footer-statement__line {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0;
}
.footer-statement__line .dim { color: rgba(244,239,230,0.38); }
.footer-statement__line .accent { color: var(--gold, #E4B45A); }

/* ---- Responsive: stack everything under 900px ---- */
@media (max-width: 900px) {
  .ptabs__panel { grid-template-columns: 1fr; }
  .ptabs__media img { min-height: 200px; max-height: 260px; }
  .edge2__grid { grid-template-columns: 1fr; }
  .edge2__left { position: static; }
  .inc, .inc--flip { grid-template-columns: 1fr; gap: 1.25rem; }
  .inc--flip .inc__media { order: 0; }
  .inc--flip .inc__copy { order: 1; }
}
/* hidden must beat display:grid on tab panels */
.ptabs__panel[hidden] { display: none; }

/* ================= CLEAN PASS v2 (hero bottom space · breathing room) ================= */
/* Hero: center content in the viewport-height hero instead of top-anchoring —
   kills the dead band above the stripe divider while still clearing the header */
.hero--split { align-items: center; padding-top: clamp(4.75rem, 9vh, 6rem); padding-bottom: clamp(1.5rem, 3vh, 2.5rem); }
.hero--split .hero-3d { height: clamp(320px, 68vh, 660px); }
@media (max-width: 900px) {
  .hero--split { padding-top: 5.25rem; }
}
/* More air between sections, humbleops rhythm */
:root { --section-y: clamp(4.5rem, 9vw, 8.75rem); }
.section-head { margin-bottom: 3.25rem; }
.section-head--center { margin-bottom: 2.25rem; }
/* mobile: keep the stacked truck compact so the hero still fits one scroll */
@media (max-width: 900px) {
  .hero--split .hero-3d { height: clamp(200px, 30vh, 300px); }
}

/* ---- Rates band: light humbleops-style break with the pill render ---- */
.rates-band {
  background: linear-gradient(180deg, #D6D2C6, #E4E0D4 18%, #E9E5DA 82%, #DAD6CA);
  color: #16130F;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  text-align: center;
}
.rates-band__kicker {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #8A7B5C; margin: 0 0 0.9rem;
}
.rates-band__title {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: #16130F; margin: 0 auto 1rem; max-width: 22ch;
}
.rates-band__title .accent { color: #B98A2F; }
.rates-band__img {
  display: block; width: min(760px, 92%); height: auto; margin: 0 auto;
  mix-blend-mode: multiply;
}
.rates-band__note { margin: 0.75rem auto 0; color: #5C544A; font-size: 0.95rem; max-width: 52ch; }
.rates-band__note strong { color: #16130F; }
/* feather the pill render into the band so no rectangle edge shows */
.rates-band__img {
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 52%, transparent 96%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 52%, transparent 96%);
}
/* rates band v2: pure-white humbleops treatment to match the new render */
.rates-band { background: linear-gradient(180deg, #EFEFED, #FAFAF9 15%, #FCFCFB 85%, #EDEDEB); }
.rates-band__kicker { color: #8a8578; }
.rates-band__note { color: #55524b; }

/* ================= CLEAN PASS v3 (why2 · quieter stripe) ================= */
/* Why EZ: unboxed two-voice rows, split layout */
.why2__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(1.75rem, 5vw, 4.5rem); align-items: start; }
.why2__left { position: sticky; top: 7rem; }
.why2__left .lede { max-width: 42ch; }
.why2__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2.5rem; }
.why2__list > li { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2.5rem; }
.why2__list > li:first-child { border-top: 0; padding-top: 0.5rem; }
.why2__list .edge__voice { border-left: 2px solid rgba(255,255,255,0.14); padding-left: 1rem; }
.why2__list .edge__voice + .edge__voice { margin-top: 1.1rem; }
.why2__list .edge__voice--ez { border-left-color: var(--gold, #E4B45A); }
.why2__list .edge__vk { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim, rgba(244,239,230,0.5)); margin: 0 0 0.35rem; }
.why2__list .edge__voice--ez .edge__vk { color: var(--gold, #E4B45A); }
.why2__list .edge__vp { margin: 0; color: var(--ink-dim, rgba(244,239,230,0.6)); }
.why2__list .edge__voice--ez p:last-child { margin: 0; }
@media (max-width: 900px) {
  .why2__grid { grid-template-columns: 1fr; }
  .why2__left { position: static; }
}
/* Caution stripe: much quieter */
.stripe-divider { height: 6px; opacity: 0.55; border-block: 0; animation-duration: 5s; }

/* ---- Reviews v2: unboxed editorial testimonials ---- */
.review {
  background: none; border: 0; border-radius: 0; box-shadow: none;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.75rem 0 0; gap: 0.9rem;
}
.review:hover { transform: none; box-shadow: none; border-color: rgba(255,255,255,0.09); background: none; }
.review__stars { margin: 0; color: var(--gold, #E4B45A); font-size: 0.85rem; letter-spacing: 0.28em; }
.review blockquote {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.3;
  letter-spacing: 0.01em; color: var(--offwhite, #F4EFE6);
}
.review figcaption { flex-direction: row; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__coin {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(228,180,90,0.12); border: 1px solid rgba(228,180,90,0.4);
  color: var(--gold, #E4B45A);
  font: 600 0.72rem/1 var(--font-mono, 'IBM Plex Mono', monospace);
  letter-spacing: 0.06em;
}
.review__who { display: flex; flex-direction: column; gap: 0.2rem; }
.reviews__grid { gap: clamp(1.5rem, 3.5vw, 3rem); }
/* rates band v3: warm concrete tone to match the parking-bay render */
.rates-band { background: linear-gradient(180deg, #C4BEB4, #CDC7BD 15%, #CFC9BF 85%, #C2BCB2); }
.rates-band__kicker { color: #7d7466; }
.rates-band__title { color: #1A1712; }
.rates-band__note { color: #4e483f; }
.rates-band__img {
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 55%, transparent 97%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 55%, transparent 97%);
}
/* bays render already matches the band tone — no blend needed */
.rates-band__img { mix-blend-mode: normal; }

/* ================= BOOKING WIZARD (truckbays-style one-question-per-screen) ================= */
.step-rail { display: none !important; }
.wiz-chrome { display: flex; align-items: center; gap: 1.1rem; margin: 0 0 1.75rem; max-width: 720px; }
.wiz-back {
  appearance: none; background: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  color: var(--offwhite, #F4EFE6); font: 600 0.78rem/1 var(--font-body, 'Inter', sans-serif);
  padding: 0.55rem 0.95rem; transition: border-color 150ms ease, background 150ms ease;
}
.wiz-back:hover { border-color: var(--gold, #E4B45A); background: rgba(228,180,90,0.08); }
.wiz-back svg { width: 14px; height: 14px; }
.wiz-progress { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--offwhite-dim, rgba(244,239,230,0.6)); white-space: nowrap; }
.wiz-bar { flex: 1; height: 2px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.wiz-bar__fill { display: block; height: 100%; width: 0; background: var(--gold, #E4B45A); transition: width 300ms ease; }

.wpanel { display: none; }
.wpanel.is-current { display: block; animation: wpanelIn 260ms ease; }
@keyframes wpanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wpanel.is-current { animation: none; } }
.wq {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.08;
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 1.25rem;
}
.wq-hint { color: var(--offwhite-dim, rgba(244,239,230,0.6)); margin: -0.75rem 0 1.5rem; max-width: 46ch; }
.wnav { margin-top: 2rem; }
.wnav .wnext { min-width: 11rem; }
.veh-options--wiz .veh-opt label, .rate-options--wiz .rate-opt label { padding-block: 1.2rem; }

.chip-tonight {
  appearance: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(228,180,90,0.1); border: 1px solid rgba(228,180,90,0.45); border-radius: 999px;
  color: var(--gold, #E4B45A); font: 600 0.85rem/1 var(--font-body, 'Inter', sans-serif);
  padding: 0.75rem 1.2rem; margin-bottom: 1.4rem;
  transition: background 150ms ease, border-color 150ms ease;
}
.chip-tonight:hover, .chip-tonight.is-on { background: rgba(228,180,90,0.2); border-color: var(--gold, #E4B45A); }
.chip-tonight svg { width: 15px; height: 15px; }

/* Summary hidden until review; single centered column before that */
.reserve-layout:not([data-wcurrent="review"]) .summary-card { display: none; }
.reserve-layout:not([data-wcurrent="review"]) { grid-template-columns: minmax(0, 720px); justify-content: start; }
/* Mobile sticky bar only on review */
body:not([data-wstep="review"]) .rsv-bar { display: none !important; }
.wiz-back[hidden] { display: none; }
.wq:focus { outline: none; }

/* ---- Wizard auth gate ---- */
.linklike {
  appearance: none; background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--gold, #E4B45A); font: inherit; text-decoration: underline;
  text-underline-offset: 2px;
}
.linklike:hover { color: var(--offwhite, #F4EFE6); }
.authed-chip {
  display: inline-block; margin: -0.5rem 0 1.25rem;
  background: rgba(228,180,90,0.08); border: 1px solid rgba(228,180,90,0.3);
  border-radius: 999px; padding: 0.5rem 0.9rem;
}

/* ================= FAQ v2 · ABOUT v2 (append-only pass) ================= */
/* FAQ grouped accordion */
.faq2-groups { max-width: 820px; margin-inline: auto; }
.faq2-group + .faq2-group { margin-top: 3.25rem; }
.faq2-kick {
  display: flex; align-items: center; gap: 0.65rem;
  font: 500 0.7rem/1 var(--font-mono, 'IBM Plex Mono', monospace);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold, #E4B45A); margin: 0 0 0.9rem;
}
.faq2-kick::before { content: ""; width: 1.5rem; height: 1px; background: var(--gold, #E4B45A); flex: none; }

/* About: oversized statement headline */
.about2-statement { font-size: clamp(2.1rem, 5.2vw, 3.8rem); max-width: 20ch; }

/* About: owner block (copy + real-photo collage) */
.about2-owner {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 4.25rem); align-items: center;
}
.about2-owner__copy p { max-width: 52ch; }
.about2-quote {
  border-left: 2px solid var(--gold, #E4B45A);
  padding-left: 1rem; margin: 1.5rem 0 0;
  color: var(--offwhite, #F4EFE6);
}
.about2-quote strong { color: var(--gold, #E4B45A); font-weight: 600; }
.about2-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.about2-photos figure { margin: 0; }
.about2-photos figure:first-child { grid-column: 1 / -1; }
.about2-photos img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4 / 3; border-radius: 4px;
}
.about2-photos figure:first-child img { aspect-ratio: 16 / 8; }
.about2-photos figcaption {
  font: 400 0.62rem/1.4 var(--font-mono, 'IBM Plex Mono', monospace);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim, rgba(244,239,230,0.5)); margin-top: 0.45rem;
}

/* About: numbers strip */
.about2-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  list-style: none; margin: 0; padding-inline: 0;
}
.about2-stat { text-align: left; }
.about2-stat__n {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1;
  font-weight: 600; letter-spacing: 0.01em;
  color: var(--offwhite, #F4EFE6); display: block;
}
.about2-stat__n .accent, .about2-stat__n sup { color: var(--gold, #E4B45A); }
.about2-stat__l {
  display: block; margin-top: 0.6rem;
  font: 500 0.66rem/1.45 var(--font-mono, 'IBM Plex Mono', monospace);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim, rgba(244,239,230,0.55));
}
@media (max-width: 900px) {
  .about2-owner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .about2-stats { grid-template-columns: repeat(2, 1fr); }
}

/* rate option can be hidden per-lot (JAX has no monthly) */
.rate-opt[hidden] { display: none !important; }
