/* =====================================================================
   HIGH RPM MOTORS — "Golden Hour Boulevard"
   Display: Saira Condensed · Body/UI: Hanken Grotesk · Specs: JetBrains Mono
   Signature: CSS-painted ember sun in the document, chrome-clip headlines,
   tachometer scroll arc, gold LA skyline seam, instrument-cluster cards.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0A0A0B;        /* page base */
  --black: #000;         /* hero / footer media bands */
  --card: #141416;       /* raised surfaces */
  --sunset: #D33E08;     /* the ONLY paint: CTA, active state, hover price */
  --ember: #F0801A;      /* radial sun-glow gradient ONLY */
  --gold: #C48A3C;       /* hairlines, tach arcs, spec baselines, skyline */
  --chrome: #BEC0C3;     /* text-clip + 1px borders, never a fill */
  --text: #F4F2EE;
  --muted: #8A8A8E;

  --chrome-grad: linear-gradient(176deg, #ECECEE 0%, #BEC0C3 36%, #FFFFFF 52%, #9A9CA0 70%, #D7D8DA 100%);
  --hairline: rgba(190, 192, 195, 0.16);
  --hairline-strong: rgba(190, 192, 195, 0.32);

  --wrap: 1280px;
  --gutter: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 14px;

  --font-display: "Saira Condensed", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.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; }

.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translate(-50%, -200%);
  z-index: 200; background: var(--sunset); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 500; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sample-tag {
  display: inline-block; font-family: var(--font-mono); font-weight: 500;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--hairline);
  padding: 1px 6px; border-radius: 999px; margin-left: 6px;
  vertical-align: middle; white-space: nowrap;
}

/* ---------- Chrome-clip type (wordmark + H1/H2 only) ---------- */
.chrome-type {
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .chrome-type { color: var(--chrome); background: none; -webkit-text-fill-color: currentColor; }
}

/* ---------- Painted ember sun (lives in the document, not the video) ---------- */
.sky {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 116%, rgba(240,128,26,0.18) 0%, rgba(211,62,8,0.10) 24%, transparent 56%),
    var(--ink);
}
/* low, dialed-down glow that re-appears at every section seam */
.value, .inventory, .how, .fee, .reviews, .sell, .contact { position: relative; }
.value::before, .inventory::before, .how::before, .fee::before,
.reviews::before, .sell::before, .contact::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 340px;
  pointer-events: none; z-index: 0;
  background: radial-gradient(60% 220px at 50% 0%, rgba(240,128,26,0.07) 0%, rgba(211,62,8,0.04) 38%, transparent 72%);
}
@media (prefers-reduced-motion: reduce) { .sky { background: radial-gradient(120% 90% at 50% 116%, rgba(240,128,26,0.12) 0%, transparent 52%), var(--ink); } }

/* ---------- Tachometer scroll-progress arc (fixed, ties back to logo) ---------- */
.tach {
  position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px;
  z-index: 60; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.tach.is-visible { opacity: 1; }
.tach__track { fill: none; stroke: var(--hairline); stroke-width: 6; stroke-linecap: round; }
.tach__fill {
  fill: none; stroke: var(--gold); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
.tach__fill.is-redline { stroke: var(--sunset); }
@media (max-width: 640px) { .tach { width: 46px; height: 46px; right: 14px; bottom: 80px; } }

/* =====================================================================
   HEADER — floating glass nav pill
   ===================================================================== */
.site-header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 var(--gutter);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.site-header.is-hidden { transform: translateY(-140%); opacity: 0; }

.nav-pill {
  width: 100%; max-width: 1180px;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  background: rgba(10,10,11,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.8);
}
.is-scrolled .nav-pill { background: rgba(10,10,11,0.72); }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
}
.brand__accent { -webkit-text-fill-color: var(--sunset); color: var(--sunset); }

.nav { display: flex; gap: 26px; margin: 0 auto; }
.nav a {
  font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--gold); transition: right .28s var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--text); }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone {
  display: inline-flex; align-items: center; gap: 7px; color: var(--text);
  font-size: 13px; letter-spacing: 0.02em; transition: color .2s var(--ease);
}
.phone svg { color: var(--gold); }
.phone:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; isolation: isolate; z-index: 1;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.btn--sm { padding: 9px 16px; font-size: 11px; }
.btn--block { display: flex; width: 100%; }

/* primary = the single sunset paint, slide-fill on hover */
.btn--primary { background: var(--sunset); color: #fff; border-color: var(--sunset); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: #B7350A;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.btn--primary:hover::before, .btn--primary:focus-visible::before { transform: scaleX(1); }

/* ghost / outline = chrome hairline, sunset slide-fill on hover */
.btn--ghost, .btn--outline {
  background: transparent; color: var(--text);
  border-color: var(--hairline-strong);
}
.btn--ghost::before, .btn--outline::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--sunset);
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.btn--ghost:hover, .btn--outline:hover,
.btn--ghost:focus-visible, .btn--outline:focus-visible { color: #fff; border-color: var(--sunset); }
.btn--ghost:hover::before, .btn--outline:hover::before,
.btn--ghost:focus-visible::before, .btn--outline:focus-visible::before { transform: scaleX(1); }
.btn--light { border-color: var(--hairline-strong); }

/* mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px;
  align-items: center; justify-content: center; background: transparent;
  border: 1px solid var(--hairline-strong); border-radius: 50%; cursor: pointer;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--text); transition: transform .25s var(--ease), opacity .25s var(--ease); }

/* persistent mobile click-to-call dock */
.call-dock {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border-radius: 14px; font-size: 15px; letter-spacing: 0.02em;
  color: #fff; background: var(--sunset);
  box-shadow: 0 14px 36px -10px rgba(211,62,8,0.6);
}
.call-dock svg { color: #fff; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  background: var(--black); overflow: hidden;
  padding: 0 var(--gutter) clamp(56px, 10vh, 120px);
}
.hero__poster, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__poster img { width: 100%; height: 100%; object-fit: cover; }
.hero__video {
  opacity: 0; transition: opacity .7s ease-out; z-index: 1;
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
}
.js .hero__video.is-ready { opacity: 1; }
.no-js .hero__video { display: none; }

/* film grain */
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* bottom-up dark grade so headline contrast stays >= 4.5:1 */
.hero__overlay {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.90) 0%, rgba(10,10,11,0.62) 32%, rgba(10,10,11,0.12) 60%, transparent 78%),
    linear-gradient(to top, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.62) 30%, rgba(10,10,11,0.18) 58%, rgba(10,10,11,0.45) 100%),
    radial-gradient(140% 70% at 50% 120%, rgba(240,128,26,0.22) 0%, transparent 50%);
}

.hero__content { position: relative; z-index: 4; width: 100%; max-width: var(--wrap); margin: 0 auto; }
.eyebrow {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 13vw, 9.5rem); line-height: 0.86;
  letter-spacing: 0.005em; text-transform: uppercase;
  /* frame-break: bleed past the content's left edge to catch the painted light */
  margin-left: clamp(-6px, -2vw, -28px);
  margin-bottom: 22px;
  /* keep chrome-clip words legible over the cinematic hero image */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.9)) drop-shadow(0 1px 3px rgba(0,0,0,0.7));
}
.hero__title .word { display: inline-block; }
.hero__title .accent-word { -webkit-text-fill-color: var(--sunset); color: var(--sunset); background: none; }
/* hero H1 stays solid near-white for legibility over video; chrome-clip is kept for the wordmark + section headings on solid dark */
.hero__title .word:not(.accent-word) { -webkit-text-fill-color: var(--text); color: var(--text); background: none; }

.hero__sub {
  max-width: 56ch; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6;
  color: var(--text); opacity: 0.9; margin-bottom: 24px;
}

/* hero readout: gold tach-arc + mono est/lic */
.hero__readout {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 30px;
}
.readout__arc { width: 88px; height: 14px; overflow: visible; }
.readout__arc path {
  fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
}
.js .hero__readout.is-in .readout__arc path { animation: draw 0.7s var(--ease) 0.3s forwards; }
.no-js .readout__arc path, .hero__readout:not(.is-in) .readout__arc path { stroke-dashoffset: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.readout__sep { width: 1px; height: 14px; background: var(--hairline-strong); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(56px, 10vh, 120px); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; color: var(--muted);
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }
@media (max-width: 860px) { .hero__scroll { display: none; } }

/* =====================================================================
   BROKER VALUE STRIP
   ===================================================================== */
.value { padding: clamp(88px, 12vh, 150px) 0 clamp(56px, 8vh, 90px); }
.value__line {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: 0.92;
  letter-spacing: 0.01em; text-transform: uppercase; max-width: 18ch;
}
.value__underline { position: relative; display: inline-block; }
.value__underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 3px;
  background: var(--sunset); /* the single sunset paint in this viewport */
}
.value__sub {
  margin-top: 26px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================================
   SKYLINE SEAM
   ===================================================================== */
.skyline-seam {
  position: relative; height: 120px; overflow: hidden;
  background: linear-gradient(to bottom, transparent, rgba(240,128,26,0.05));
}
.skyline-seam__svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.skyline-seam__layer, .skyline-seam__palm { will-change: transform; }

/* =====================================================================
   SECTION HEADS
   ===================================================================== */
.inventory, .how, .fee, .reviews, .sell, .contact { padding: clamp(88px, 12vh, 150px) 0; }
.section-head { margin-bottom: 48px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.section-head h2, .fee h2, .reviews h2, .contact h2, .sell h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); line-height: 0.94;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.frame-break { margin-left: clamp(-4px, -1.2vw, -16px); }
.section-sub { margin-top: 14px; max-width: 60ch; color: var(--muted); }
.link-arrow {
  font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; transition: color .2s var(--ease);
}
.link-arrow:hover { color: var(--text); }

/* =====================================================================
   INVENTORY — filters + bento + instrument-cluster cards
   ===================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; position: relative; z-index: 1; }
.chip {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  color: var(--muted); background: transparent; border: 1px solid var(--hairline-strong);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--chrome); }
.chip.is-active { color: #fff; background: var(--sunset); border-color: var(--sunset); }

.filters__empty { color: var(--muted); margin-bottom: 24px; position: relative; z-index: 1; }
.filters__empty a { color: var(--gold); text-decoration: underline; }

/* Coming-soon panel (inventory placeholder) */
.coming-soon {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 16px;
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: clamp(48px, 8vw, 96px) 28px;
}
.coming-soon__tag {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.coming-soon__head {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 0.96;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--text);
}
.coming-soon__sub { max-width: 54ch; color: var(--muted); }
.coming-soon .btn { margin-top: 6px; }

.bento {
  position: relative; z-index: 1;
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}
@media (max-width: 1024px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

.car {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.car.is-hidden { display: none; }
.car:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }

/* 2x2 feature tile (extreme crop, own faint ember vignette) */
.car--feature { grid-column: span 2; grid-row: span 2; }
.bento.is-filtered .car--feature { grid-column: auto; grid-row: auto; }
@media (max-width: 1024px) { .car--feature { grid-column: span 2; grid-row: auto; } }
@media (max-width: 560px) { .car--feature { grid-column: 1; } }

.car__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.car:hover .car__media img { transform: scale(1.04); }
.car--feature .car__media { aspect-ratio: auto; flex: 1; min-height: 240px; }
.car__media--crop img { object-position: 50% 62%; }
.car--feature .car__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 80% 110%, rgba(240,128,26,0.28) 0%, transparent 55%);
  mix-blend-mode: screen;
}
/* dossier corner spec slug */
.car__slug {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  font-size: 10px; letter-spacing: 0.1em; color: var(--text);
  background: rgba(0,0,0,0.55); border: 1px solid var(--hairline);
  padding: 3px 8px; border-radius: 6px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

.car__body { display: flex; flex-direction: column; gap: 12px; padding: 18px 18px 20px; flex: 0 0 auto; }
.car__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-trust {
  font-family: var(--font-mono); font-weight: 500; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--chrome);
  border: 1px solid var(--hairline-strong); border-radius: 999px; padding: 3px 9px;
}
.car__name {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; color: var(--text);
}
.car--feature .car__name { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* mono spec block on a gold baseline rule */
.car__specs { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid rgba(196,138,60,0.4); }
.car__specs div { display: flex; flex-direction: column; gap: 2px; }
.car__specs dt { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.car__specs dd { font-size: 15px; color: var(--text); }

.car__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.car__price { font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--text); transition: color .2s var(--ease); }
.car:hover .car__price { color: var(--sunset); }

/* =====================================================================
   HOW IT WORKS — giant outlined chrome numerals over cropped step images
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 40px; } }
.step { position: relative; padding-top: 56px; }
.step__num {
  position: absolute; top: -18px; left: -6px; z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 9vw, 8rem);
  line-height: 1; letter-spacing: -0.02em;
  /* outlined chrome numerals */
  -webkit-text-fill-color: transparent; color: transparent;
  -webkit-text-stroke: 1px rgba(190,192,195,0.5);
  background: none;
}
.step__media {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--hairline); margin-bottom: 20px;
}
.step__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%;
  filter: brightness(0.62) saturate(1.05) sepia(0.12);
}
.step__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 90% at 70% 110%, rgba(240,128,26,0.22) 0%, transparent 55%);
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.01em; color: var(--text); margin-bottom: 8px; }
.step p { color: var(--muted); max-width: 40ch; }

/* =====================================================================
   FEE TRANSPARENCY
   ===================================================================== */
.fee__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .fee__inner { grid-template-columns: 1fr; gap: 36px; } }
.fee__copy h2 { margin: 8px 0 18px; }
.fee__copy p { color: var(--muted); max-width: 52ch; margin-bottom: 22px; }
.fee__list { display: flex; flex-direction: column; gap: 12px; }
.fee__list li {
  position: relative; padding-left: 26px; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text);
}
.fee__list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em; width: 14px; height: 1px; background: var(--gold);
}
.fee__card {
  background: var(--card); border: 1px solid var(--hairline-strong); border-radius: 18px;
  padding: 32px; display: flex; flex-direction: column; gap: 12px;
}
.fee__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fee__amount { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--text); line-height: 1; }
.fee__note { color: var(--muted); font-size: 14px; margin-bottom: 8px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews__rating { display: flex; align-items: center; gap: 12px; margin-top: 14px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 16px; line-height: 1; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .reviews__grid { grid-template-columns: 1fr; } }
.quote {
  display: flex; flex-direction: column; gap: 14px; padding: 26px;
  background: rgba(20,20,22,0.5); border: 1px solid var(--hairline); border-radius: var(--r);
}
.quote blockquote { font-size: 17px; line-height: 1.55; color: var(--text); }
.quote figcaption { font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.quote figcaption span { color: var(--muted); font-size: 11px; letter-spacing: 0.06em; }

/* =====================================================================
   SELL / FINANCING SPLIT
   ===================================================================== */
.sell__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.sell__copy { max-width: 44ch; }
.sell__copy h2 { margin-bottom: 14px; }
.sell__copy p { color: var(--muted); }
.sell__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .contact__inner { grid-template-columns: 1fr; gap: 36px; } }
.contact__copy h2 { margin: 8px 0 16px; }
.contact__copy p { color: var(--muted); max-width: 46ch; margin-bottom: 24px; }
.phone--big { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--text); }
.phone--big svg { color: var(--gold); }
.contact__text { margin-top: 16px; }
.contact__text a { color: var(--gold); text-decoration: underline; }

.contact__form {
  background: var(--card); border: 1px solid var(--hairline-strong); border-radius: 18px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: var(--ink); border: 1px solid var(--hairline-strong); border-radius: 10px;
  padding: 13px 14px; transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sunset); }
.field textarea { resize: vertical; }
.form__status { font-size: 13px; min-height: 1em; color: var(--gold); }
.form__fine { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

/* =====================================================================
   FOOTER — crowned by gold LA skyline + palm band
   ===================================================================== */
.site-footer { position: relative; background: var(--black); padding-bottom: 30px; }
.footer__crown { height: 120px; overflow: hidden; opacity: 0.62; }
.footer__crown svg { width: 100%; height: 100%; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px;
  padding-top: 44px; padding-bottom: 30px; align-items: start;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; gap: 26px; } }
.footer__tag { color: var(--muted); font-size: 14px; max-width: 38ch; margin-top: 14px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--text); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact .phone { font-size: 18px; }
.footer__meta { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); border-top: 1px solid rgba(196,138,60,0.4); padding-top: 10px; }
.footer__legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; font-size: 11px; letter-spacing: 0.04em; color: var(--muted);
}

/* =====================================================================
   MOTION — scroll reveals + orchestrated hero load
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .54s var(--ease), transform .54s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* hero word-by-word reveal */
.js .hero__title .word { opacity: 0; transform: translateY(28px); }
.js .hero.is-lit .hero__title .word { animation: wordRise .6s var(--ease) forwards; }
.js .hero.is-lit .hero__title .word:nth-child(1) { animation-delay: .12s; }
.js .hero.is-lit .hero__title .word:nth-child(2) { animation-delay: .19s; }
.js .hero.is-lit .hero__title .word:nth-child(3) { animation-delay: .26s; }
@keyframes wordRise { to { opacity: 1; transform: none; } }
.no-js .hero__title .word { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE — header / nav
   ===================================================================== */
@media (max-width: 980px) {
  .nav, .header__cta .phone, .header__cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-pill { justify-content: space-between; padding: 8px 8px 8px 16px; }
  .brand__name { font-size: 17px; }

  .nav.is-open {
    display: flex; flex-direction: column; gap: 4px; position: fixed;
    top: 84px; left: var(--gutter); right: var(--gutter); margin: 0; padding: 14px;
    background: rgba(10,10,11,0.94);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid var(--hairline-strong); border-radius: 18px; z-index: 110;
  }
  .nav.is-open a { font-size: 15px; padding: 12px; text-align: left; color: var(--text); }
  .call-dock { display: flex; }
  body { padding-bottom: 76px; }
  .tach { bottom: 84px; }
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 560px) {
  body { font-size: 16px; }
}

/* focus visibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =====================================================================
   REDUCED MOTION — collapse all motion, video -> poster, static glow
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none !important; }
  .reveal, .car, .car__media img, .btn::before, .btn--primary::before,
  .nav a::after, .hero__title .word { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__title .word { opacity: 1 !important; transform: none !important; }
  .readout__arc path { stroke-dashoffset: 0 !important; animation: none !important; }
  .tach { display: none; }
  .car:hover { transform: none; }
  .car:hover .car__media img { transform: none; }
}
