/* ==========================================================================
   Expert Auto Exchange LLC — site.css
   Brand: gold / black / graphite. Dealership: dark chrome, light retail sections.
   Type:  Archivo (display + body) · IBM Plex Mono (labels, numbers, specs)
   ========================================================================== */

:root {
  /* --- surface --- */
  --black:     #08080A;
  --panel:     #0E0E11;
  --panel-2:   #141418;
  --panel-3:   #1B1B21;
  --line:      rgba(255,255,255,0.085);
  --line-2:    rgba(255,255,255,0.16);

  /* --- ink --- */
  --white:     #F4F4F5;
  --grey:      #A2A2AB;
  --grey-2:    #71717C;

  /* --- gold --- */
  --gold:      #D6A03A;   /* fills, buttons, marks */
  --gold-lit:  #E9BC5E;   /* gold as small text on black (AA) */
  --gold-deep: #8C6516;
  --gold-soft: rgba(214,160,58,0.10);
  --on-gold:   #14100A;   /* text ON gold - dark, per the dealership look */

  /* --- danger (errors stay red; they are not brand) --- */
  --danger:    #F5333A;

  /* --- light retail sections (inventory grid, vehicle cards) --- */
  --lt-bg:     #FFFFFF;
  --lt-bg-2:   #F4F4F6;
  --lt-ink:    #101014;
  --lt-ink-2:  #55555F;
  --lt-line:   rgba(16,16,20,0.12);

  /* --- type --- */
  --f-disp: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --f-body: "Archivo", -apple-system, "Segoe UI", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* --- metrics --- */
  --nav-h: 68px;
  --maxw:  1200px;
  --gut:   clamp(20px, 5vw, 44px);
  --r:     14px;
  --r-lg:  22px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04), 0 24px 60px rgba(0,0,0,0.65);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-variation-settings: "wdth" 100;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.004em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--on-gold); }

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

.wrap { width: min(var(--maxw), 100% - (var(--gut) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - (var(--gut) * 2)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--on-gold); padding: 12px 20px;
  font: 600 14px/1 var(--f-mono); text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   Type primitives
   -------------------------------------------------------------------------- */

.disp {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 112, "wght" 800;
  letter-spacing: -0.028em;
  line-height: 0.96;
  text-wrap: balance;
  text-transform: uppercase;
}

/* Headlines carry hand-set <br> line breaks, so the scale is tuned to keep
   those lines intact rather than re-wrapping into orphans at mid widths. */
.h1 { font-size: clamp(38px, 6.4vw, 80px); }
.h2 { font-size: clamp(27px, 3.9vw, 48px); }
.h3 { font-size: clamp(21px, 2.4vw, 28px); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lit);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gold);
  flex: none;
}
.eyebrow.plain::before { display: none; }
.eyebrow.muted { color: var(--grey-2); }
.eyebrow.muted::before { background: var(--grey-2); }

.lede {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: var(--grey);
  max-width: 40ch;
  text-wrap: pretty;
}
.prose p { color: var(--grey); margin-top: 18px; max-width: 68ch; }
.prose p.first { color: var(--white); font-size: 19px; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--gold-lit); text-decoration: none; border-bottom: 1px solid rgba(245,51,58,0.4); }
.prose a:hover { border-bottom-color: var(--gold-lit); }
.prose h3 { font-family: var(--f-disp); font-weight: 700; font-variation-settings: "wdth" 108, "wght" 700;
            text-transform: uppercase; letter-spacing: -0.015em; font-size: 21px; margin-top: 40px; }
.prose ul { margin: 18px 0 0; padding: 0; list-style: none; max-width: 68ch; }
.prose ul li { position: relative; padding-left: 26px; color: var(--grey); margin-top: 11px; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 0.72em;
  width: 9px; height: 2px; background: var(--gold);
}

/* Hazard rule — the brand's signature divider */
.hazard {
  height: 5px;
  background: repeating-linear-gradient(
    115deg,
    var(--gold) 0 13px,
    transparent 13px 26px
  );
  background-color: var(--panel-2);
}
.hazard.thin { height: 3px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn .arw { transition: transform .2s cubic-bezier(.3,.7,.35,1.3); }
.btn:hover .arw { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 6px 22px rgba(214,160,58,.28); }
.btn-gold:hover { background: #E4B14C; box-shadow: 0 9px 30px rgba(214,160,58,.36); }
.btn-gold:active { transform: translateY(1px); }

.btn-ghost { border-color: var(--line-2); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lit); }

.btn-quiet { color: var(--grey); padding-inline: 0; }
.btn-quiet:hover { color: var(--gold-lit); }

.btn:disabled { opacity: .5; cursor: default; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav-h); z-index: 200;
  display: flex; align-items: center;
  background: rgba(8,8,10,0.72);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,8,10,0.92); }
.nav .wrap { display: flex; align-items: center; gap: 14px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand .mk { width: 32px; height: 32px; flex: none; }
.brand .wm {
  font-family: var(--f-disp); font-weight: 800;
  font-variation-settings: "wdth" 108, "wght" 800;
  text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 15px; line-height: 1.05;
}
.brand .wm span { display: block; font-family: var(--f-mono); font-weight: 400;
  font-size: 8.5px; letter-spacing: 0.26em; color: var(--grey-2); margin-top: 3px; }
@media (max-width: 400px) { .brand .wm { font-size: 13px; } }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-links > * { position: relative; }
.nav-links a.top {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--grey); text-decoration: none;
  padding: 10px 13px; border-radius: var(--r);
  transition: color .16s, background .16s;
}
.nav-links a.top:hover, .nav-links .has-sub:hover > a.top { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.top.active { color: var(--white); }
.nav-links a.top.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--gold);
}
.nav-links .caret { width: 8px; height: 8px; opacity: .6; }

/* NOTE: this bare .sub is the NAV DROPDOWN panel — absolute, hidden until hover.
   Do not reuse "sub" as a class anywhere else; the hero subtitle did and was
   invisible and out of flow until it was renamed to .hero-sub. */
.sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 246px;
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: 7px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a {
  display: block; padding: 10px 12px; border-radius: 3px;
  font-size: 14px; color: var(--grey); text-decoration: none;
  transition: background .14s, color .14s;
}
.sub a .k { font-family: var(--f-mono); font-size: 10px; color: var(--grey-2); letter-spacing: .12em; display: block; }
.sub a:hover { background: rgba(214,160,58,0.12); color: var(--white); }
.sub a:hover .k { color: var(--gold-lit); }

.nav-cta { flex: none; margin-left: 8px; padding: 12px 18px; }
.burger {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line-2); border-radius: var(--r);
  align-items: center; justify-content: center; cursor: pointer; color: var(--white);
}
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; transition: transform .2s, background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor; transition: transform .2s;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: inline-flex; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 190;
  background: var(--black);
  padding: 26px var(--gut) 60px;
  overflow-y: auto;
  display: none;
}
body.menu-open { overflow: hidden; }
body.menu-open .drawer { display: block; }
.drawer .grp { border-top: 1px solid var(--line); padding: 18px 0; }
.drawer .grp:first-child { border-top: 0; }
.drawer .grp > .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-lit); }
.drawer a.big {
  display: flex; align-items: baseline; gap: 12px; text-decoration: none;
  font-family: var(--f-disp); font-weight: 800; font-variation-settings: "wdth" 108, "wght" 800;
  text-transform: uppercase; font-size: 27px; letter-spacing: -0.02em; margin-top: 12px;
}
.drawer a.big .n { font-family: var(--f-mono); font-size: 11px; font-weight: 400; color: var(--grey-2); }
.drawer a.sm { display: block; margin-top: 12px; color: var(--grey); text-decoration: none; font-size: 16px; }
.drawer a.sm:hover, .drawer a.big:hover { color: var(--gold-lit); }
.drawer .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

main { padding-top: var(--nav-h); }
.section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }
.section.tight { padding-block: clamp(48px, 6vw, 78px); }
.section.panel { background: var(--panel); border-block: 1px solid var(--line); }
.section.panel-2 { background: var(--panel-2); border-block: 1px solid var(--line); }

.section-head { max-width: 46ch; }
.section-head .h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; color: var(--grey); font-size: 18px; max-width: 54ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }

.head-split { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
@media (max-width: 720px) { .head-split { grid-template-columns: 1fr; align-items: start; } }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.phero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 88% -20%, rgba(214,160,58,0.16), transparent 62%),
    var(--black);
}
.phero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: .5;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.phero .wrap { position: relative; z-index: 1; }
.phero .h1 { margin-top: 18px; font-size: clamp(32px, 5.4vw, 62px); }
.phero .lede { margin-top: 22px; max-width: 52ch; }

.crumb { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--grey-2); display: flex; gap: 9px; flex-wrap: wrap; }
.crumb a { text-decoration: none; color: var(--grey-2); }
.crumb a:hover { color: var(--gold-lit); }
.crumb .sep { opacity: .5; }

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 90% at 78% 6%, rgba(214,160,58,0.20), transparent 60%),
    radial-gradient(50% 60% at 8% 90%, rgba(255,255,255,0.045), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
  opacity: .6;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .h1 { margin-top: 22px; }
.hero .h1 em { font-style: normal; color: var(--gold-lit); }
.hero .h1 .ol {
  -webkit-text-stroke: 1.4px var(--grey-2);
  color: transparent;
}
.hero .lede { margin-top: 26px; font-size: clamp(17px, 2.1vw, 22px); max-width: 46ch; }
.hero-cta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero-meta .k { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--grey-2); }
.hero-meta .v { margin-top: 6px; font-size: 15.5px; color: var(--white); }
@media (max-width: 640px) { .hero-meta { grid-template-columns: 1fr; gap: 16px; } }

/* Ticker */
.ticker {
  margin-top: clamp(48px, 7vw, 82px);
  border-block: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  position: relative;
}
.ticker .row { display: flex; width: max-content; animation: slide 38s linear infinite; }
.ticker .row > span {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey); padding: 15px 0; white-space: nowrap;
}
.ticker .row > span i { font-style: normal; color: var(--gold); padding: 0 26px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .row { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Service index (numbered catalogue rows)
   -------------------------------------------------------------------------- */

.svc-index { margin-top: 48px; border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 74px 1fr minmax(0, 40ch) 40px;
  gap: 24px; align-items: center;
  padding: 26px 8px; border-bottom: 1px solid var(--line);
  text-decoration: none; position: relative;
  transition: background .2s, padding .2s;
}
.svc-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform .28s cubic-bezier(.3,.7,.35,1);
}
.svc-row:hover { background: linear-gradient(90deg, rgba(214,160,58,0.07), transparent 70%); padding-left: 18px; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row .n { font-family: var(--f-mono); font-size: 13px; color: var(--grey-2); letter-spacing: .1em; }
.svc-row:hover .n { color: var(--gold-lit); }
.svc-row .t {
  font-family: var(--f-disp); font-weight: 800; font-variation-settings: "wdth" 108, "wght" 800;
  text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(22px, 3vw, 34px); line-height: 1;
}
.svc-row .d { color: var(--grey); font-size: 15.5px; line-height: 1.55; }
.svc-row .go { color: var(--grey-2); justify-self: end; transition: transform .22s, color .22s; }
.svc-row:hover .go { color: var(--gold-lit); transform: translateX(5px); }
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 52px 1fr 24px; row-gap: 10px; }
  .svc-row .d { grid-column: 2 / 4; }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px 32px;
  position: relative;
  transition: border-color .22s, transform .22s, background .22s;
}
.card.link { text-decoration: none; display: block; }
.card.link:hover { border-color: rgba(214,160,58,0.55); transform: translateY(-2px); background: var(--panel-3); }
.card .ic { width: 34px; height: 34px; color: var(--gold-lit); }
.card h3 {
  font-family: var(--f-disp); font-weight: 700; font-variation-settings: "wdth" 106, "wght" 700;
  text-transform: uppercase; letter-spacing: -0.015em; font-size: 19px; margin-top: 20px;
}
.card p { color: var(--grey); font-size: 15.5px; line-height: 1.58; margin-top: 10px; }
.card .n {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--f-mono); font-size: 11.5px; color: var(--grey-2); letter-spacing: .12em;
}
.card .more { margin-top: 18px; display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-lit); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stats div { padding: 28px 24px; border-right: 1px solid var(--line); background: var(--panel-2); }
.stats div:last-child { border-right: 0; }
.stats .v { font-family: var(--f-disp); font-weight: 800; font-variation-settings: "wdth" 112, "wght" 800;
  font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -0.03em; }
.stats .v em { font-style: normal; color: var(--gold-lit); }
.stats .k { margin-top: 10px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--grey-2); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; } .stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); } .stats div:last-child { border-bottom: 0; } }

/* steps */
.steps { counter-reset: s; display: grid; gap: 0; margin-top: 44px; }
.step {
  display: grid; grid-template-columns: 88px 1fr; gap: 24px;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .num {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; color: var(--gold-lit);
  padding-top: 5px;
}
.step h3 { font-family: var(--f-disp); font-weight: 700; font-variation-settings: "wdth" 106, "wght" 700;
  text-transform: uppercase; font-size: 20px; letter-spacing: -0.015em; }
.step p { color: var(--grey); margin-top: 9px; max-width: 62ch; }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 8px; } }

/* spec list (work-order aesthetic) */
.spec { margin-top: 26px; border-top: 1px solid var(--line); }
.spec .r { display: flex; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); }
.spec .k { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-2); flex: none; width: 168px; }
.spec .v { color: var(--white); font-size: 16px; }
.spec .v a { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.spec .v a:hover { color: var(--gold-lit); border-color: var(--gold-lit); }
@media (max-width: 560px) { .spec .r { flex-direction: column; gap: 3px; } .spec .k { width: auto; } }

/* checklist */
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; margin-top: 26px; }
.checks div { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--grey); font-size: 15.5px; }
.checks svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
@media (max-width: 620px) { .checks { grid-template-columns: 1fr; } }

/* callout */
.callout {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: var(--panel-2); border-radius: var(--r);
  padding: 24px 26px; margin-top: 32px;
}
.callout .lbl { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lit); }
.callout p { margin-top: 10px; color: var(--grey); max-width: 66ch; }
.callout p strong { color: var(--white); }

/* pull quote */
.pull {
  margin-top: 40px; padding: 34px 0 34px 30px;
  border-left: 3px solid var(--gold);
}
.pull q, .pull blockquote {
  display: block; quotes: none;
  font-family: var(--f-disp); font-weight: 700; font-variation-settings: "wdth" 104, "wght" 700;
  font-size: clamp(21px, 2.9vw, 32px); line-height: 1.2; letter-spacing: -0.02em; text-transform: none;
}
.pull cite { display: block; margin-top: 16px; font-style: normal;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-2); }

/* big band */
.band { background: var(--gold); color: var(--on-gold); }
.band .wrap { padding: clamp(52px, 7vw, 86px) 0; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.band .h2 { text-transform: uppercase; }
.band p { margin-top: 18px; font-size: 17.5px; line-height: 1.6; opacity: .93; max-width: 52ch; }
.band .side { justify-self: end; text-align: right; }
.band .side .big { font-family: var(--f-disp); font-weight: 800; font-variation-settings: "wdth" 120, "wght" 800;
  font-size: clamp(72px, 13vw, 168px); line-height: .82; letter-spacing: -0.06em; }
.band .side .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; opacity: .85; margin-top: 12px; }
.band .btn-ghost { border-color: rgba(255,255,255,0.45); color: var(--on-gold); margin-top: 26px; }
.band .btn-ghost:hover { background: var(--on-gold); color: var(--gold-deep); border-color: var(--on-gold); }
@media (max-width: 820px) { .band .wrap { grid-template-columns: 1fr; } .band .side { justify-self: start; text-align: left; } }

/* portrait */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.portrait {
  position: relative; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel-2); overflow: hidden;
}
.portrait img {
  /* height:auto is load-bearing — a width/height attribute pair on the <img>
     otherwise makes both dimensions definite and aspect-ratio is ignored. */
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transition: filter .5s ease;
}
.portrait:hover img { filter: grayscale(.55) contrast(1.05) brightness(.97); }
.portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(214,160,58,0.14), transparent 45%, rgba(8,8,10,0.85));
  mix-blend-mode: normal;
}
.portrait .cap {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey);
}
.portrait .cap b { display: block; color: var(--white); font-family: var(--f-disp); font-weight: 800;
  font-variation-settings: "wdth" 108, "wght" 800; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 4px; }

/* inline figure — a photo dropped into a run of prose */
.figure {
  margin: 40px 0 8px; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: var(--panel-2); max-width: 420px;
}
.figure img {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 12%;
  filter: grayscale(1) contrast(1.06) brightness(.9); transition: filter .5s ease;
}
.figure:hover img { filter: grayscale(.45) contrast(1.03) brightness(.97); }
.figure figcaption {
  padding: 13px 16px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--grey-2); line-height: 1.7;
}
@media (min-width: 900px) {
  .figure.right { float: right; margin: 8px 0 26px 40px; max-width: 320px; }
}

/* --------------------------------------------------------------------------
   Product showcase — the customer portal, shown rather than described
   -------------------------------------------------------------------------- */

.showcase { position: relative; overflow: hidden; }
.showcase::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(64% 60% at 78% 22%, rgba(214,160,58,0.16), transparent 66%);
}
.showcase .wrap { position: relative; z-index: 1; }
.sc-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
@media (max-width: 940px) { .sc-grid { grid-template-columns: 1fr; } }

.sc-list { margin-top: 30px; display: grid; gap: 18px; }
.sc-list .it { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; }
.sc-list .it svg { width: 20px; height: 20px; color: var(--gold-lit); margin-top: 3px; }
.sc-list .it h4 { font-size: 16px; font-weight: 620; letter-spacing: -0.018em; }
.sc-list .it p { color: var(--grey); font-size: 15px; margin-top: 4px; }

/* the mock */
.mock {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 2px 8px rgba(0,0,0,.45), 0 40px 90px rgba(0,0,0,.6);
  overflow: hidden; transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.mock:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
@media (max-width: 940px) { .mock { transform: none; } .mock:hover { transform: none; } }

.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(0,0,0,.28);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); flex: none; }
.mock-bar .u {
  margin-left: 10px; flex: 1; height: 22px; border-radius: 6px; background: rgba(255,255,255,.05);
  display: flex; align-items: center; padding: 0 10px;
  font-family: var(--f-mono); font-size: 10px; color: var(--grey-2); letter-spacing: .06em;
}
.mock-body { padding: 22px; }
.mock-row { display: flex; align-items: center; gap: 12px; }
.mock-row .ref { font-family: var(--f-mono); font-size: 10.5px; color: var(--grey-2); letter-spacing: .12em; }
.mock h5 { font-size: 19px; font-weight: 660; letter-spacing: -0.022em; margin-top: 6px; }
.mock .sub { font-size: 13.5px; color: var(--grey-2); margin-top: 4px; }

.mpill {
  display: inline-flex; align-items: center; gap: 6px; margin-left: auto;
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  color: #FFC24D; border: 1px solid rgba(255,194,77,.32); background: rgba(224,163,43,.12);
}
.mpill i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.mtl { margin-top: 22px; padding-left: 26px; position: relative; }
.mtl::before { content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: var(--line-2); }
.mtl .s { position: relative; padding-bottom: 15px; }
.mtl .s:last-child { padding-bottom: 0; }
.mtl .s::before {
  content: ""; position: absolute; left: -26px; top: 2px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--black); border: 2px solid var(--line-2);
}
.mtl .s.ok::before { background: #3FBF71; border-color: #3FBF71; }
.mtl .s.now::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(214,160,58,.18); }
.mtl .s b { font-size: 13.5px; font-weight: 560; }
.mtl .s.todo b { color: var(--grey-2); font-weight: 400; }
.mtl .s span { display: block; font-family: var(--f-mono); font-size: 9.5px; color: var(--grey-2); letter-spacing: .1em; margin-top: 2px; }

.mquote {
  margin-top: 20px; border: 1px solid rgba(255,194,77,.3); border-radius: 14px;
  background: linear-gradient(180deg, rgba(224,163,43,.10), transparent 70%);
  padding: 16px 18px;
}
.mquote .k { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-2); }
.mquote .amt { font-size: 27px; font-weight: 700; letter-spacing: -0.035em; margin-top: 4px; }
.mquote .btns { display: flex; gap: 8px; margin-top: 13px; }
.mquote .b {
  font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 9px;
}
.mquote .b.y { background: #3FBF71; color: #05130A; }
.mquote .b.n { border: 1px solid var(--line-2); color: var(--grey); }

/* --------------------------------------------------------------------------
   Accordion (FAQ)
   -------------------------------------------------------------------------- */

.acc { border-top: 1px solid var(--line); margin-top: 34px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--f-disp); font-weight: 700; font-variation-settings: "wdth" 104, "wght" 700;
  font-size: clamp(16px, 2vw, 19px); letter-spacing: -0.012em; text-transform: none;
  transition: color .16s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--gold-lit); }
.acc summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 2px;
  background: var(--gold); transform: translateY(-50%);
}
.acc summary::before {
  content: ""; position: absolute; right: 11.5px; top: 50%; width: 2px; height: 13px;
  background: var(--gold); transform: translateY(-50%); transition: transform .22s, opacity .22s;
}
.acc details[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.acc .ans { padding: 0 8% 26px 0; color: var(--grey); }
.acc .ans p + p { margin-top: 14px; }
.acc .ans a { color: var(--gold-lit); text-decoration: none; border-bottom: 1px solid rgba(245,51,58,.4); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px);
}
.form-card h3 { font-family: var(--f-disp); font-weight: 800; font-variation-settings: "wdth" 108, "wght" 800;
  text-transform: uppercase; font-size: 21px; letter-spacing: -0.018em; }
.form-card .fh { color: var(--grey); font-size: 15px; margin-top: 8px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .fgrid { grid-template-columns: 1fr; } }
.field { margin-top: 18px; }
.field.wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grey-2); display: block;
}
.field label .req { color: var(--gold-lit); }
.field input, .field textarea, .field select {
  width: 100%; margin-top: 8px;
  font-family: var(--f-body); font-size: 16px; color: var(--white);
  background: var(--black); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 13px 14px; outline: none; transition: border-color .16s, background .16s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey-2); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: #0B0B0E; }
.field textarea { min-height: 108px; line-height: 1.55; }
.field select option { background: var(--panel-2); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-actions .note { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-2); }
.form-msg { margin-top: 16px; font-size: 15px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: #4ADE80; }
.form-msg.err { color: var(--danger); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

footer { background: var(--panel); border-top: 1px solid var(--line); }
.f-top { padding: clamp(50px, 6vw, 76px) 0 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 940px) { .f-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .f-top { grid-template-columns: 1fr; gap: 28px; } }
.f-top .fdesc { margin-top: 18px; color: var(--grey); font-size: 15px; max-width: 34ch; }
.f-col h4 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lit); }
.f-col a, .f-col div.li { display: block; margin-top: 13px; font-size: 15px; color: var(--grey); text-decoration: none; }
.f-col a:hover { color: var(--white); }
.fsoc-row { margin-top: 24px; display: flex; gap: 9px; }
.fsoc {
  width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: var(--r);
  display: grid; place-items: center; color: var(--grey); text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.fsoc svg { width: 17px; height: 17px; }
.fsoc:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); transform: translateY(-2px); }
.fsoc.ph { opacity: .5; }
.f-legal {
  border-top: 1px solid var(--line); padding: 22px 0 34px;
  display: flex; gap: 20px; justify-content: space-between; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-2);
}
.f-legal a { text-decoration: none; color: var(--grey-2); }
.f-legal a:hover { color: var(--gold-lit); }
.f-disc { border-top: 1px solid var(--line); padding: 20px 0 0; }
.f-disc p { font-size: 12.5px; color: var(--grey-2); line-height: 1.6; max-width: 92ch; }

/* mobile dispatch bar */
.dispatch {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
}
.dispatch a {
  flex: 1; text-align: center; padding: 15px 8px; background: var(--panel-2);
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.dispatch a.pri { background: var(--gold); color: var(--on-gold); }
/* phone-sized only — on tablets the header CTA is still reachable */
@media (max-width: 820px) {
  .dispatch { display: flex; }
  footer .f-legal { padding-bottom: 76px; }
}

/* --------------------------------------------------------------------------
   Reveal + motion
   -------------------------------------------------------------------------- */

.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker .row { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ==========================================================================
   DEALERSHIP LAYER — inventory retail surfaces
   Light sections, vehicle cards, the finder bar, trade-in banner.
   ========================================================================== */

/* --- light retail section ------------------------------------------------ */
.section.light { background: var(--lt-bg); color: var(--lt-ink); border-block: 1px solid var(--lt-line); }
.section.light-2 { background: var(--lt-bg-2); color: var(--lt-ink); border-block: 1px solid var(--lt-line); }
.section.light p, .section.light-2 p { color: var(--lt-ink-2); }
.section.light .h1, .section.light .h2, .section.light .h3,
.section.light-2 .h1, .section.light-2 .h2, .section.light-2 .h3 { color: var(--lt-ink); }
.section.light a:not(.btn), .section.light-2 a:not(.btn) { color: var(--lt-ink); }

/* --- section title with the gold rule under it --------------------------- */
.rule-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.rule-head .h2 { text-transform: uppercase; letter-spacing: -0.01em; font-variation-settings: "wdth" 108, "wght" 800; }
.rule-head .h2::after { content: ""; display: block; width: 62px; height: 4px; background: var(--gold); margin-top: 14px; }
.rule-head .more { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lit); display: inline-flex; align-items: center; gap: 8px; }
.section.light .rule-head .more, .section.light-2 .rule-head .more { color: var(--gold-deep); }
.rule-head .more:hover { color: var(--gold); }

/* --- hero with a vehicle shot -------------------------------------------- */
.hero-shot { position: relative; min-height: clamp(430px, 54vw, 620px); display: flex; align-items: center; overflow: hidden; }
.hero-shot .shot { position: absolute; inset: 0; z-index: 0; }
.hero-shot .shot img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
/* stand-in backdrop until real location photography lands — drop an <img> into
   .shot and delete the .nophoto class to swap it out, no other change needed */
.hero-shot .shot.nophoto {
  background:
    radial-gradient(72% 110% at 86% 16%, rgba(214,160,58,.22), transparent 56%),
    radial-gradient(46% 66% at 70% 64%, rgba(214,160,58,.11), transparent 72%),
    conic-gradient(from 208deg at 76% 52%, rgba(255,255,255,.05), transparent 24%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.019) 0 1px, transparent 1px 15px),
    linear-gradient(122deg, #08080A 0%, #0F0F15 40%, #1B1B24 66%, #0A0A0E 100%);
}
.hero-shot .shot.nophoto::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 26%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,160,58,.34) 46%, rgba(214,160,58,.06) 72%, transparent);
}
.hero-shot .shot.nophoto + .wrap { position: relative; }

.hero-shot .shot::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(6,6,8,.96) 0%, rgba(6,6,8,.86) 34%, rgba(6,6,8,.45) 62%, rgba(6,6,8,.30) 100%); }
.hero-shot .wrap { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 90px); }
.hero-shot h1 { text-transform: uppercase; font-variation-settings: "wdth" 112, "wght" 800; line-height: .94; letter-spacing: -0.02em; }
.hero-shot h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-shot .hero-sub { margin-top: 20px; color: #C9C9D2; font-size: clamp(16px, 1.6vw, 19px); max-width: 34ch; }

/* --- the finder bar ------------------------------------------------------ */
.finder { background: #0B0B0E; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow); position: relative; z-index: 3; }
.finder.lift { margin-top: clamp(-90px, -7vw, -54px); }
.finder h2 { font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; color: var(--white); }
.finder .fh { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.finder-row { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 12px; }
.finder-row .fx { display: flex; flex-direction: column; gap: 6px; background: var(--panel-2);
  border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 14px; min-width: 0; }
.finder-row .fx label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--grey-2); }
.finder-row .fx select { appearance: none; background: transparent; border: 0; color: var(--white);
  font-family: var(--f-body); font-size: 15.5px; font-weight: 600; padding: 0; width: 100%; cursor: pointer; }
.finder-row .fx select:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 3px; }
.finder-row .fx select option { background: var(--panel-2); color: var(--white); }
.finder-row .go { background: var(--gold); color: var(--on-gold); border: 0; border-radius: 10px;
  font-family: var(--f-body); font-size: 13.5px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; padding-inline: clamp(20px, 2.4vw, 34px); cursor: pointer;
  transition: background .18s ease, transform .12s ease; }
.finder-row .go:hover { background: #E4B14C; }
.finder-row .go:active { transform: translateY(1px); }

/* --- vehicle cards ------------------------------------------------------- */
.vgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.vcard { background: var(--lt-bg); border: 1px solid var(--lt-line); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease; }
.vcard:hover { box-shadow: 0 14px 40px rgba(16,16,20,.16); transform: translateY(-3px); }
.vcard .ph { aspect-ratio: 4 / 3; background: var(--lt-bg-2); position: relative; overflow: hidden; }
.vcard .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard .ph .none { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 12px;
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(214,160,58,.13), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px),
    linear-gradient(158deg, #191920 0%, #111116 55%, #0A0A0D 100%); }
.vcard .ph .none .mk { width: 38px; height: 38px; color: var(--gold); opacity: .62;
  filter: drop-shadow(0 3px 10px rgba(214,160,58,.28)); }
.vcard .ph .none span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .17em;
  text-transform: uppercase; color: rgba(255,255,255,.44); }
.vcard .vb { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vcard .vt { font-size: 15.5px; font-weight: 800; color: var(--lt-ink); text-transform: uppercase; letter-spacing: -0.005em; line-height: 1.25; }
.vcard .vp { font-size: 21px; font-weight: 800; color: var(--lt-ink); letter-spacing: -0.02em; }
.vcard .vs { font-family: var(--f-mono); font-size: 11.5px; color: var(--lt-ink-2); display: flex; flex-wrap: wrap; gap: 8px; }
.vcard .vs span + span::before { content: "|"; margin-right: 8px; color: #C2C2CC; }
.vcard .vgo { margin-top: auto; padding-top: 14px; }
.vcard .vgo a { display: block; text-align: center; background: var(--black); color: var(--white);
  font-size: 12.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 12px 14px; border-radius: 3px; transition: background .18s ease; }
.vcard .vgo a:hover { background: var(--gold); color: var(--on-gold); }
.vcard .tag { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--on-gold);
  font-family: var(--f-mono); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; }

/* --- why choose us ------------------------------------------------------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 38px); }
.why .w { text-align: center; }
.why .w svg { width: 46px; height: 46px; color: var(--gold); margin-bottom: 16px; }
.why .w h3 { font-size: 13.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--white); }
.why .w p { margin-top: 10px; font-size: 14px; color: var(--grey); line-height: 1.6; }

/* --- gold trade-in banner ------------------------------------------------ */
.trade { background: var(--gold); color: var(--on-gold); }
.trade .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 46px);
  flex-wrap: wrap; padding-block: clamp(26px, 3vw, 38px); }
.trade svg { width: 54px; height: 54px; flex: none; }
.trade .tt { flex: 1; min-width: 240px; }
.trade .tt h2 { font-size: clamp(21px, 2.4vw, 28px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-gold); }
.trade .tt p { margin-top: 4px; font-size: 15.5px; color: rgba(20,16,10,.78); }
.trade .btn { background: var(--black); color: var(--white); border-color: var(--black); flex: none; }
.trade .btn:hover { background: #23231f; }

/* --- header phone -------------------------------------------------------- */
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700;
  color: var(--white); white-space: nowrap; }
.nav-phone svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.nav-phone:hover { color: var(--gold-lit); }

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .why   { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .finder-row { grid-template-columns: repeat(2, 1fr); }
  .finder-row .go { grid-column: 1 / -1; padding-block: 14px; }
  .finder.lift { margin-top: 0; }
}
@media (max-width: 620px) {
  .vgrid { grid-template-columns: 1fr; }
  .why   { grid-template-columns: 1fr; }
  .finder-row { grid-template-columns: 1fr; }
  .trade .wrap { flex-direction: column; text-align: center; }
  .nav-phone span { display: none; }
}

/* --- inventory states ---------------------------------------------------- */
.loading { grid-column: 1 / -1; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey-2); padding: 40px 0; }
.inv-empty { grid-column: 1 / -1; text-align: center; padding: clamp(40px, 6vw, 70px) 20px;
  border: 1px dashed var(--lt-line); border-radius: var(--r); }
.section:not(.light):not(.light-2) .inv-empty { border-color: var(--line-2); }
.inv-empty h3 { font-size: 19px; font-weight: 800; }
.inv-empty p { margin-top: 10px; font-size: 15px; max-width: 46ch; margin-inline: auto; }

/* --- inventory page toolbar ---------------------------------------------- */
.inv-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 26px; }
.inv-bar .cnt { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lt-ink-2); }
.inv-bar .clear { font-size: 13px; font-weight: 700; color: var(--gold-deep); }

/* --- vehicle detail ------------------------------------------------------ */
.vd-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.vd-head .h2 { text-transform: uppercase; font-variation-settings: "wdth" 108, "wght" 800; }
.vd-price { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
.vd-head .tag { position: static; }
.vd-gal { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px; margin-bottom: 30px; }
.vd-gal img { width: 100%; border-radius: var(--r); border: 1px solid var(--line); display: block; }
.vd-gal img:first-child { grid-column: 1 / -1; }
.vd-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin: 32px 0; border-top: 1px solid var(--line); }
.vd-specs dt { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--grey-2); padding-top: 16px; }
.vd-specs dd { font-size: 16px; font-weight: 600; margin: 4px 0 16px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }

/* --- why-choose paired with a vehicle, as in the reference layout --------- */
.why-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
  gap: clamp(24px, 3.4vw, 56px); align-items: center; }
.why-split .why { grid-template-columns: repeat(2, 1fr); row-gap: clamp(26px, 3vw, 40px); }
.why-shot { position: relative; }
.why-shot img { width: 100%; height: auto; display: block; border-radius: var(--r);
  /* the source is a daylight photograph; fade its edges into the dark band so the
     car reads as emerging from it rather than sitting in a lit rectangle */
  -webkit-mask-image: radial-gradient(118% 96% at 56% 50%, #000 40%, transparent 82%);
          mask-image: radial-gradient(118% 96% at 56% 50%, #000 40%, transparent 82%); }
@media (max-width: 1080px) {
  .why-split { grid-template-columns: 1fr; }
  .why-shot { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 620px) {
  .why-split .why { grid-template-columns: 1fr; }
  .why-shot { display: none; }
}

/* ==========================================================================
   REFERENCE-LAYOUT PASS
   Matching the approved comp: sharp corners, a WHITE finder bar, centred nav.
   These override the earlier rounded "SaaS" treatment on purpose.
   ========================================================================== */

/* --- sharper corners throughout: the comp is square, not pill ------------- */
.btn { border-radius: 4px; }
.finder { border-radius: 6px; }
.finder-row .fx, .finder-row .go { border-radius: 4px; }
.vcard { border-radius: 4px; }

/* --- nav: brand left, links dead centre, phone right --------------------- */
.nav .wrap { position: relative; }
@media (min-width: 1081px) {
  .nav-links { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* --- the finder bar reads as white input chips on black ------------------ */
.finder-row .fx {
  background: #fff;
  border: 1px solid rgba(16,16,20,.16);
  padding: 9px 14px 10px;
}
.finder-row .fx label {
  color: #6B6B76;
  font-size: 9.5px;
  letter-spacing: .14em;
}
.finder-row .fx select {
  color: var(--lt-ink);
  font-weight: 600;
  font-size: 15px;
}
.finder-row .fx select option { background: #fff; color: var(--lt-ink); }
/* the caret now lives on .psel-btn (the styled control draws its own, and it
   animates on open). Keeping this one too would double it up. */
.finder-row .fx:not(:has(.psel))::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 8px;
  margin-top: -6px; border-right: 2px solid #6B6B76; border-bottom: 2px solid #6B6B76;
  transform: rotate(45deg); pointer-events: none;
}
.finder-row .fx { position: relative; }
.finder-row .fx select { padding-right: 18px; }
.finder-row .fx select:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- the gold search button carries the same weight as the comp ---------- */
.finder-row .go { font-size: 13px; letter-spacing: .1em; }

/* --- vehicle card action: full-bleed black bar, as drawn ----------------- */
.vcard .vgo a { border-radius: 3px; letter-spacing: .1em; }

/* --- footer contact rows with leading icons, as in the comp -------------- */
.f-col .ic { display: flex; align-items: flex-start; gap: 10px; }
.f-col .ic svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--gold); }

/* ==========================================================================
   COMP PASS 2 — corrections made against the rendered page, not the markup.
   ========================================================================== */

/* --- BROKEN: absolutely-centring the nav let it sit under the brand and the
       phone. Flex-centre it between them instead, and stop items wrapping. --- */
@media (min-width: 1081px) {
  .nav .wrap { display: flex; align-items: center; gap: 18px; }
  .nav-links { position: static; transform: none; flex: 1 1 auto;
    display: flex; justify-content: center; align-items: center;
    gap: clamp(10px, 1.4vw, 22px); }
  .nav-links > .top, .nav-links .has-sub > .top { white-space: nowrap; font-size: 12.5px; }
  .brand, .nav-phone { flex: 0 0 auto; }
  .brand .wm { font-size: 15px; }
}

/* --- BROKEN: .section.light a:not(.btn) painted the card action dark-on-black,
       making "View details" unreadable. The card button is not a .btn. -------- */
.section.light .vcard .vgo a,
.section.light-2 .vcard .vgo a { color: var(--white); }
.section.light .vcard .vgo a:hover,
.section.light-2 .vcard .vgo a:hover { color: var(--on-gold); }

/* --- the comp runs the four reasons as ONE row beside the vehicle --------- */
@media (min-width: 1081px) {
  .why-split { grid-template-columns: minmax(0, 1fr) minmax(0, 0.34fr); }
  .why-split .why { grid-template-columns: repeat(4, 1fr); }
}
.why .w { text-align: center; display: flex; flex-direction: column; align-items: center; }
.why .w svg { margin-inline: auto; }
.why-shot img { width: 100%; }

/* --- headline: the comp sets it tighter and without a full stop ----------- */
.hero-shot { min-height: clamp(400px, 42vw, 500px); }
.hero-shot h1 { font-size: clamp(38px, 5.0vw, 68px); }
.hero-shot .hero-sub { margin-top: 16px; font-size: clamp(15px, 1.25vw, 17px); }

/* --- buttons are flat uppercase blocks in the comp, not glowing pills ----- */
.btn { text-transform: uppercase; letter-spacing: .09em; font-size: 13px; }
.btn-gold { box-shadow: none; }
.btn-gold:hover { box-shadow: none; background: #E4B14C; }
.btn .arw { display: none; }              /* the comp has no arrows on buttons */

/* --- section headings sit smaller than our default display scale --------- */
.rule-head .h2 { font-size: clamp(24px, 2.6vw, 34px); }
.rule-head .more { text-decoration: none; }
.section.light .rule-head .more { color: var(--gold-deep); text-decoration: none; }

/* --- card titles: reserve two lines so prices align across the row -------- */
.vcard .vt { min-height: 2.5em; }

/* --- the trade banner centres its group in the comp ---------------------- */
.trade .wrap { max-width: 1060px; }

/* --- the hero scrim was tuned for the CSS stand-in, which had a bright gold
       glow to suppress. Over a genuinely dark photograph it erased the car.
       Keep it strong only where the headline actually sits. ----------------- */
.hero-shot .shot:not(.nophoto)::after {
  /* light touch only — the photograph is composed with its own left-hand
     falloff, so a heavy CSS scrim on top just crushes the car again. */
  background: linear-gradient(96deg,
    rgba(6,6,8,.55) 0%,
    rgba(6,6,8,.32) 30%,
    rgba(6,6,8,.10) 54%,
    rgba(6,6,8,0)   100%);
}

/* --- the hero must not depend on JavaScript ------------------------------
   .rv starts at opacity:0 and waits for an IntersectionObserver to add .in.
   For above-the-fold content that is a trap: if the observer does not fire —
   JS blocked, an error earlier in the file, a prerender/screenshot context —
   the headline and the only call to action stay permanently invisible.
   Reveal-on-scroll is an enhancement; the hero opts out. ------------------ */
.hero-shot .rv { opacity: 1; transform: none; }

/* --- final comp details -------------------------------------------------- */
/* the card action is a button, not a link: no underline */
.vcard .vgo a { text-decoration: none; }
/* the finder's "view all" reads as a small gold uppercase link in the comp */
.finder .fh .more {
  color: var(--gold-lit);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 700;
}
.finder .fh .more:hover { color: var(--gold); }

/* ==========================================================================
   PREMIUM SELECT
   The native popup is an OS widget that CSS cannot reach. site.js swaps it for
   a real listbox; these are its styles. The native <select> stays in the DOM
   (see .psel-native) so the form still submits and no-JS still works.
   ========================================================================== */

.psel { position: relative; display: block; }

/* kept for form submission and no-JS; never shown once enhanced */
.psel-native {
  position: absolute; opacity: 0; pointer-events: none;
  width: 100%; height: 100%; left: 0; top: 0; margin: 0; border: 0;
}

/* --- the closed control -------------------------------------------------- */
.psel-btn {
  appearance: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; width: 100%;
  background: transparent; border: 0; padding: 0;
  font-family: var(--f-body);
  font-size: 15px; font-weight: 600; line-height: 1.3;
  color: var(--lt-ink);
  text-align: left; cursor: pointer;
  letter-spacing: -0.005em;
}
.psel-btn::after {                     /* the chevron */
  content: ""; flex: none;
  width: 8px; height: 8px; margin-right: 2px;
  border-right: 2px solid #6B6B76; border-bottom: 2px solid #6B6B76;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s cubic-bezier(.3,.7,.35,1), border-color .2s ease;
}
.psel.is-open .psel-btn::after {
  transform: rotate(-135deg) translate(-3px, -3px);
  border-color: var(--gold-deep);
}
.psel-val { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* until something is chosen the value reads as a placeholder, not an answer */
.psel:not(.is-set) .psel-val { color: #71717C; font-weight: 500; }

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

/* the white field itself lifts on hover/open */
.finder-row .fx:has(.psel.is-open),
.finder-row .fx:hover { border-color: rgba(16,16,20,.34); }
.finder-row .fx:has(.psel.is-open) {
  box-shadow: 0 0 0 3px rgba(214,160,58,.28);
  border-color: var(--gold);
}

/* --- the panel ----------------------------------------------------------- */
.psel-list {
  position: absolute; z-index: 60;
  top: calc(100% + 10px); left: -1px; right: -1px;
  max-height: 268px; overflow-y: auto; overscroll-behavior: contain;
  background: #fff;
  border: 1px solid rgba(16,16,20,.10);
  border-radius: 8px;
  padding: 6px;
  box-shadow:
    0 1px 0 rgba(16,16,20,.04),
    0 18px 44px -12px rgba(16,16,20,.34),
    0 4px 12px -4px rgba(16,16,20,.16);
  animation: pselIn .16s cubic-bezier(.2,.7,.3,1);
  transform-origin: top center;
}
.psel.drop-up .psel-list {
  top: auto; bottom: calc(100% + 10px);
  transform-origin: bottom center;
}
@keyframes pselIn {
  from { opacity: 0; transform: translateY(-6px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .psel-list { animation: none; }
  .psel-btn::after { transition: none; }
}

/* --- options ------------------------------------------------------------- */
.psel-opt {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 5px;
  font-size: 14.5px; font-weight: 500; color: var(--lt-ink);
  cursor: pointer; user-select: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: background .12s ease, color .12s ease;
}
.psel-opt.is-active { background: rgba(214,160,58,.14); color: #2A1E06; }
.psel-opt[aria-selected="true"] { font-weight: 700; }
.psel-opt[aria-selected="true"]::before {     /* a gold tick on the chosen one */
  content: ""; position: absolute; left: 13px; top: 50%;
  width: 5px; height: 9px; margin-top: -6px;
  border-right: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep);
  transform: rotate(42deg);
}
.psel-opt[aria-disabled="true"] { opacity: .45; cursor: default; }

/* the first entry is the "Any …" reset — set it apart from real values */
.psel-opt:first-child { color: #6B6B76; }
.psel-opt:first-child[aria-selected="true"] { color: var(--lt-ink); }

/* --- scrollbar ----------------------------------------------------------- */
.psel-list { scrollbar-width: thin; scrollbar-color: rgba(16,16,20,.26) transparent; }
.psel-list::-webkit-scrollbar { width: 10px; }
.psel-list::-webkit-scrollbar-track { background: transparent; }
.psel-list::-webkit-scrollbar-thumb {
  background: rgba(16,16,20,.22); border-radius: 99px;
  border: 3px solid #fff;
}
.psel-list::-webkit-scrollbar-thumb:hover { background: rgba(16,16,20,.38); }

/* --- the same control on dark surfaces (contact + service forms) ---------- */
.field .psel-btn { color: var(--white); }
.field .psel:not(.is-set) .psel-val { color: var(--grey-2); }
.field .psel-btn::after { border-color: var(--grey-2); }
.field .psel-list {
  background: var(--panel-2);
  border-color: var(--line-2);
  box-shadow: 0 22px 50px -14px rgba(0,0,0,.8), 0 4px 14px -6px rgba(0,0,0,.6);
}
.field .psel-opt { color: var(--white); }
.field .psel-opt:first-child { color: var(--grey-2); }
.field .psel-opt.is-active { background: rgba(214,160,58,.20); color: #fff; }
.field .psel-opt[aria-selected="true"]::before {
  border-right-color: var(--gold-lit); border-bottom-color: var(--gold-lit);
}
.field .psel-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.20); border-color: var(--panel-2);
}

/* --- free-standing cutout portrait --------------------------------------
   The source is a transparent PNG of Cane, full length. Boxing it inside
   .portrait (fixed 4:5 crop + gradient scrim + border) cropped him to a
   zoomed face. A cutout wants no frame at all — it stands on the section
   with a soft pool of light behind so it does not float in a void. ------- */
.cutout { margin: 0; position: relative; display: flex; flex-direction: column;
  align-items: center; }
.cutout::before {                      /* the pool of light */
  content: ""; position: absolute; z-index: 0;
  left: 50%; bottom: 34px; transform: translateX(-50%);
  width: min(112%, 460px); aspect-ratio: 1 / 1;
  background: radial-gradient(closest-side, rgba(214,160,58,.20), rgba(214,160,58,.05) 58%, transparent 72%);
  pointer-events: none;
}
.cutout picture, .cutout img { position: relative; z-index: 1; }
.cutout img {
  display: block; width: auto; height: auto;
  max-height: clamp(360px, 42vw, 560px); max-width: 100%;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.55));
}
.cutout figcaption {
  position: relative; z-index: 1; margin-top: 14px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--grey-2); text-align: center;
}
