/* ==========================================================================
   Autoinfo — premium automotive marketplace
   Reference: Autopolis/Volvo editorial — oversized display type, white space,
   photo tiles with overlay labels, single red accent, light theme only.
   ========================================================================== */

:root {
  /* color — measured from reference language */
  --bg: #ffffff;
  --bg-soft: #f5f5f4;
  --tile: #f1f1f0;
  --ink: #0b0c0e;
  --text: #17181c;
  --text-2: #55565c;
  --muted: #66676d;
  --line: #e8e8e7;
  --line-2: #d8d8d6;
  --red: #e5332a;

  /* type scale — locked across pages */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --h1-display: clamp(88px, 18.5vw, 272px);   /* hero brand word */
  --h2: clamp(34px, 4vw, 56px);
  --h3: 20px;
  --body: 16px;
  --caption: 13px;

  /* rhythm */
  --section: clamp(96px, 12vh, 150px);
  --container: 1320px;
  --gutter: 48px;

  --r: 10px;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sh: 0 18px 50px rgba(10, 12, 14, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), calc(100% - var(--gutter))); margin-inline: auto; }

.dot { color: var(--red); }

.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Navigation — centered wordmark, links split either side
   ========================================================================== */

.nav { position: absolute; inset: 0 0 auto 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.nav__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links--right { justify-content: flex-end; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color 0.25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__logo .dot { letter-spacing: 0; }
.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span { width: 16px; height: 1.6px; background: var(--ink); border-radius: 1px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 1;
  visibility: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav.open .nav__mobile { opacity: 1; pointer-events: auto; visibility: visible; }
.nav__mobile a {
  padding: 18px 0;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
}

/* ==========================================================================
   Hero — outlined display word, vehicle overlap, info row (no slider chrome)
   ========================================================================== */

.hero { position: relative; background: #fff; }
.hero > .container {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 104px;
  padding-bottom: 36px;
}
.hero__stage2 {
  position: relative;
  text-align: center;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__word {
  font-size: var(--h1-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--line-2);
  user-select: none;
  transition: opacity 0.4s var(--ease);
}
.hero__word.swap { opacity: 0; }
.hero__carwrap {
  position: relative;
  margin-top: calc(var(--h1-display) * -0.30);
  height: clamp(220px, 35vh, 390px);
  pointer-events: none;
}
.hero__car {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  width: min(1020px, 86vw);
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(10, 12, 14, 0.20));
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}
.hero__car.active { opacity: 1; }
.hero__car.swap { opacity: 0; transform: translateX(-46%); }
.hero__floor { display: none; }

/* info row — brand/model, stats, thumbnails */
.hero__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 32px;
  margin-top: clamp(28px, 5vh, 64px);
}
.hero__id { display: flex; flex-direction: column; gap: 2px; }
.hero__idlabel { font-size: 11.5px; font-weight: 650; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero__idname { font-size: 19px; font-weight: 750; letter-spacing: -0.015em; color: var(--ink); }

.hero__stats { display: flex; gap: clamp(28px, 4vw, 56px); }
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero__stat strong { font-size: 17px; font-weight: 750; letter-spacing: -0.01em; color: var(--ink); }

.hero__thumbs { display: flex; gap: 10px; justify-content: flex-end; }
.hero__thumb {
  width: 92px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero__thumb:hover { opacity: 1; transform: translateY(-2px); }
.hero__thumb.active { opacity: 1; border-color: var(--ink); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.icon-btn svg { width: 15px; height: 15px; }
.icon-btn:hover { border-color: var(--ink); }
.icon-btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.icon-btn--red:hover { background: #c9251d; border-color: #c9251d; }

/* feature trio */
.hero__features {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 84px);
  margin-top: 76px;
}
.feat { display: flex; align-items: center; gap: 14px; }
.feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
}
.feat__icon svg { width: 20px; height: 20px; }
.feat span { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }

/* intro copy */
.hero__intro { max-width: 620px; margin: 72px auto 0; }
.hero__intro p { font-size: 16.5px; line-height: 1.75; color: var(--text-2); }
.hero__intro p + p { margin-top: 18px; }
.hero__intro p strong { color: var(--ink); font-weight: 650; }

/* ==========================================================================
   Range — heading + horizontal card carousel
   ========================================================================== */

.range { padding: var(--section) 0 0; }
.range__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}
.h2 {
  font-size: var(--h2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--ink);
}
.range__controls { display: flex; align-items: center; gap: 12px; padding-bottom: 6px; }
.range__count { font-size: 13px; font-weight: 600; color: var(--ink); }
.range__count span { color: var(--muted); }

.range__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.range__track::-webkit-scrollbar { display: none; }

.rcard {
  position: relative;
  flex: 0 0 288px;
  scroll-snap-align: start;
  border-radius: var(--r);
  background: var(--tile);
  overflow: hidden;
  aspect-ratio: 0.82;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.rcard:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.rcard__media { position: absolute; inset: 0 0 26% 0; display: flex; align-items: center; justify-content: center; }
.rcard__media img { max-width: 86%; max-height: 74%; object-fit: contain; transition: transform 0.5s var(--ease); }
.rcard:hover .rcard__media img { transform: scale(1.04); }
.rcard__body { position: absolute; left: 20px; right: 20px; bottom: 18px; }
.rcard__tag { display: block; font-size: 10.5px; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.rcard__name { display: block; margin-top: 4px; font-size: 18px; font-weight: 750; letter-spacing: -0.02em; color: var(--ink); }
.rcard__sub { display: block; margin-top: 2px; font-size: 13px; color: var(--text-2); }
.rcard__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--ink);
  transition: transform 0.35s var(--ease);
}
.rcard__arrow svg { width: 18px; height: 18px; }
.rcard:hover .rcard__arrow { transform: translate(3px, 3px); }

/* ==========================================================================
   Mosaic — photo tiles with overlay labels
   ========================================================================== */

.mosaic { padding: var(--section) 0 0; }
.mosaic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.mtile {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.mtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mtile:hover img { transform: scale(1.04); }
.mtile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.62) 0%, rgba(8, 9, 11, 0.12) 42%, transparent 62%);
  z-index: 1;
}
.mtile__label {
  position: relative;
  z-index: 2;
  padding: 24px 26px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 24ch;
}
.mtile--a { grid-column: span 5; grid-row: span 1; }
.mtile--b { grid-column: span 7; grid-row: span 2; }
.mtile--c { grid-column: span 5; grid-row: span 1; }
.mtile--d { grid-column: span 7; grid-row: span 1; }
.mtile--e { grid-column: span 5; grid-row: span 1; }

/* CTA tile — centered content on photo */
.mtile--cta { align-items: center; justify-content: center; text-align: center; }
.mtile--cta::after { background: rgba(8, 9, 11, 0.52); }
.mtile__cta { position: relative; z-index: 2; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; }
.mtile__cta h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 750; letter-spacing: -0.02em; }
.mtile__cta p { font-size: 13.5px; color: rgba(255, 255, 255, 0.82); max-width: 40ch; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: var(--sh); }
.btn-pill .icon-btn { width: 34px; height: 34px; }

/* ==========================================================================
   Offers — centered heading + full-bleed band
   ========================================================================== */

.offers { padding: var(--section) 0; }
.offers .h2 { text-align: center; margin-bottom: 48px; }
.offers__band {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.offers__band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offers__band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 9, 11, 0.74) 0%, rgba(8, 9, 11, 0.34) 52%, rgba(8, 9, 11, 0.05) 78%); z-index: 1; }
.offers__content { position: relative; z-index: 2; color: #fff; padding: clamp(28px, 5vw, 72px); max-width: 560px; }
.offers__content h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.offers__content p { margin-top: 14px; font-size: 15.5px; color: rgba(255, 255, 255, 0.85); }
.offers__content .btn-pill { margin-top: 26px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr); gap: 48px; padding-bottom: 56px; }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: 14.5px; color: var(--text-2); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 { font-size: 12px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__col a { display: block; width: fit-content; padding: 5px 0; font-size: 14.5px; color: var(--text-2); transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--ink); }
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer__legal a:hover { color: var(--ink); }

/* ==========================================================================
   Responsive — 1440 / 1024 / 768 / 390
   ========================================================================== */

@media (max-width: 1024px) {
  :root { --gutter: 36px; }
  .mtile--a, .mtile--c, .mtile--e { grid-column: span 6; }
  .mtile--b, .mtile--d { grid-column: span 6; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; --section: 84px; }
  .nav__inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .nav__links { display: none; }
  .nav__logo { justify-self: start; }
  .nav__burger { display: inline-flex; justify-self: end; }
  .hero > .container { padding-top: 92px; min-height: 92svh; }
  .hero__carwrap { height: clamp(150px, 26vh, 260px); }
  .hero__info { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .hero__thumbs { justify-content: flex-start; }
  .hero__thumb { width: 72px; height: 50px; }
  .hero__stats { flex-wrap: wrap; gap: 22px; }
  .hero__features { flex-direction: column; align-items: center; gap: 18px; margin-top: 34px; }
  .hero__intro { margin-top: 48px; }
  .mosaic__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .mtile--a, .mtile--b, .mtile--c, .mtile--d, .mtile--e { grid-column: span 1; grid-row: span 1; }
  .mtile--b { grid-row: span 2; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .rcard { flex-basis: 240px; }
}

/* ==========================================================================
   Inner pages — shared components (Autoinfo system)
   ========================================================================== */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.section-head { max-width: 680px; margin: 0 0 44px; }
.section-head .kicker { margin-bottom: 14px; }
.section__title {
  font-size: var(--h2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--ink);
}
.section__title em { font-style: normal; }
.section-sub { max-width: 560px; margin: 14px 0 0; font-size: 15px; line-height: 1.7; color: var(--text-2); }

.btn, .btn--dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn svg { width: 15px; height: 15px; }
.btn--onphoto { background: rgba(255, 255, 255, 0.94); border-color: transparent; }
.btn--ghost { border-color: var(--line-2); color: var(--text-2); }
.btn--ghost:hover { background: transparent; color: var(--ink); border-color: var(--ink); transform: none; }

.link-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.link-more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-more:hover svg { transform: translateX(4px); }

.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: var(--pill);
  border: 1px solid var(--line-2);
  background: #fff;
  font-size: 13px;
  font-weight: 620;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- page hero (inner) ---------- */

.phero { padding: 150px 0 56px; }
.phero__title { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; color: var(--ink); max-width: 18ch; }
.phero__title em { font-style: normal; }
.phero__sub { margin-top: 18px; max-width: 58ch; font-size: 16px; line-height: 1.7; color: var(--text-2); }
.phero .kicker { margin-bottom: 16px; }

.phero--photo { padding: 118px 0 0; }
.phero--photo .phero__card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.phero--photo .phero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero--photo .phero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 9, 11, 0.66) 0%, rgba(8, 9, 11, 0.18) 46%, transparent 66%); z-index: 1; }
.phero--photo .phero__content { position: relative; z-index: 2; color: #fff; padding: clamp(26px, 4vw, 56px); max-width: 720px; }
.phero--photo .phero__title { color: #fff; }
.phero--photo .phero__sub { color: rgba(255, 255, 255, 0.88); }
.phero--photo .kicker { color: rgba(255, 255, 255, 0.85); }
.phero--photo .kicker::before { background: var(--red); }

/* ---------- car tiles (lineups / listings) ---------- */

.cars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.car-tile { position: relative; }
.car-tile a, .car-tile > div { display: block; }
.car-tile__media {
  position: relative;
  aspect-ratio: 0.98;
  border-radius: var(--r);
  background: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.car-tile a:hover .car-tile__media { transform: translateY(-4px); box-shadow: var(--sh); }
.car-tile__media img { max-width: 84%; max-height: 62%; object-fit: contain; transition: transform 0.5s var(--ease); }
.car-tile a:hover .car-tile__media img { transform: scale(1.04); }
.car-tile__body { padding: 14px 6px 0; }
.car-tile__name { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.car-tile__year { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 6px; }
.car-tile__sub { display: block; margin-top: 2px; font-size: 12.5px; color: var(--text-2); }
.car-tile__price { margin-top: 10px; }

/* ---------- brand detail ---------- */

.bhero { padding: 118px 0 0; }
.bhero__card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: var(--tile);
  isolation: isolate;
}
.bhero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bhero__png { position: absolute; right: 5%; bottom: 12%; width: min(560px, 50%); filter: drop-shadow(0 26px 28px rgba(10, 12, 14, 0.2)); }
.bhero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8, 9, 11, 0.7) 0%, rgba(8, 9, 11, 0.2) 44%, transparent 64%); }
.bhero__card--tile .bhero__shade { display: none; }
.bhero__content { position: relative; z-index: 2; padding: clamp(26px, 4vw, 52px); color: #fff; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 700px; }
.bhero__card--tile .bhero__content { color: var(--ink); }
.bhero__brandchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 7px;
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 650;
}
.bhero__brandchip img { width: 28px; height: 28px; object-fit: contain; background: var(--tile); border-radius: 50%; padding: 4px; }
.bhero__title { font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
.bhero__sub { max-width: 46ch; font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.88); }
.bhero__card--tile .bhero__sub { color: var(--text-2); }
.bhero__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.bhero__cta { margin-top: 8px; }

.bd-about { padding: var(--section) 0 0; }
.bd-about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
.bd-about__copy p { font-size: 15.5px; line-height: 1.85; color: var(--text-2); margin-bottom: 16px; }
.bd-about__copy p:first-child { font-size: 17.5px; font-weight: 550; color: var(--text); }
.bd-about__photo { margin-top: 26px; border-radius: var(--r); overflow: hidden; }
.bd-about__photo img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

.bd-lineup { padding: var(--section) 0 0; }
.bd-lineup__group + .bd-lineup__group { margin-top: 72px; }

.bd-high { padding: var(--section) 0 0; }
.bd-high__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bd-high__card { height: 100%; padding: 28px 26px 32px; border-radius: var(--r); background: var(--tile); }
.bd-high__icon { width: 36px; height: 36px; object-fit: contain; margin-bottom: 16px; }
.bd-high__card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; color: var(--ink); }
.bd-high__card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bd-high__card li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }
.bd-high__card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* dark closing band (shared) */
.vd-cta { padding: var(--section) 0 0; }
.vd-cta__inner {
  border-radius: var(--r);
  background: var(--ink);
  color: #fff;
  padding: clamp(44px, 6vw, 84px) clamp(26px, 5vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vd-cta .feature__title { max-width: 22ch; font-size: clamp(28px, 3.6vw, 48px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; }
.vd-cta .feature__title em { font-style: normal; }
.vd-cta .feature__cta { margin-top: 30px; }
.vd-cta .btn, .vd-cta .btn--dark { background: #fff; border-color: #fff; color: var(--ink); }
.vd-cta .btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.vd-cta .kicker { color: rgba(255,255,255,.8); }

/* ---------- vehicle detail ---------- */

.vd-hero { padding: 132px 0 0; }
.vd-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.article__crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 550; color: var(--muted); margin-bottom: 16px; }
.article__crumb a { color: var(--ink); font-weight: 600; }
.article__crumb a:hover { text-decoration: underline; }
.article__crumb i { font-style: normal; opacity: 0.6; }
.vd-hero__title { font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.03; color: var(--ink); }
.vd-hero__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.vd-hero__price { font-size: 13px; color: var(--muted); }
.vd-hero__price strong { display: block; margin-top: 2px; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.vd-hero__years { display: inline-flex; gap: 8px; }
.vd-hero__years a { padding: 8px 15px; border-radius: var(--pill); border: 1px solid var(--line-2); background: #fff; font-size: 13px; font-weight: 600; color: var(--text-2); transition: all 0.25s var(--ease); }
.vd-hero__years a.active, .vd-hero__years a:hover { border: 1.5px solid var(--ink); color: var(--ink); }
.vd-hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.vd-hero__stage {
  position: relative;
  border-radius: var(--r);
  background: var(--tile);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vd-hero__stage img { max-width: 84%; max-height: 72%; object-fit: contain; }

.vd-subnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}
.vd-subnav__row { display: flex; align-items: center; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.vd-subnav__row::-webkit-scrollbar { display: none; }
.vd-subnav__row a {
  position: relative;
  flex: none;
  padding: 16px 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.vd-subnav__row a:hover { color: var(--ink); }
.vd-subnav__row a.active { color: var(--ink); border-color: var(--red); }
.vd-subnav__name { margin-right: auto; font-size: 13.5px; font-weight: 750; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; padding-right: 18px; }

.vd-ov { padding: 72px 0 0; }
.vd-ov__grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: clamp(32px, 4.6vw, 68px); align-items: start; }
.vd-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vd-list h3 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.vd-list ul { list-style: none; }
.vd-list li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.6; color: var(--text); }
.vd-list--plus li::before { content: "+"; position: absolute; left: 2px; top: 10px; font-size: 15px; font-weight: 700; color: var(--red); }
.vd-list--minus li::before { content: "–"; position: absolute; left: 2px; top: 10px; font-size: 15px; font-weight: 700; color: var(--muted); }
.vd-who { margin-top: 56px; }
.vd-who h3 { font-size: 20px; font-weight: 750; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.vd-who p { font-size: 15px; line-height: 1.8; color: var(--text-2); max-width: 66ch; }
.vd-who__photo { margin-top: 24px; border-radius: var(--r); overflow: hidden; }
.vd-who__photo img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

.vd-rail { position: sticky; top: 76px; }
.vd-rail__card { background: var(--tile); border-radius: var(--r); padding: 26px 26px 28px; }
.vd-rail__card .kicker { margin-bottom: 14px; }
.vd-rail__verdict { font-size: 14px; line-height: 1.7; color: var(--text-2); padding-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.vd-rail__rows { display: flex; flex-direction: column; }
.vd-rail__row { display: flex; flex-direction: column; gap: 2px; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.vd-rail__row dt { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.vd-rail__row dd { font-size: 14px; font-weight: 560; color: var(--text); }
.vd-rail__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 15px 0 17px; }
.vd-rail__price span { font-size: 12px; font-weight: 600; color: var(--muted); }
.vd-rail__price strong { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.vd-rail__card .btn { width: 100%; justify-content: center; }

.vd-trims, .vd-specs, .vd-costs, .vd-new, .vd-compare, .vd-faq { padding: var(--section) 0 0; }

.picker { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.picker__list { display: flex; flex-direction: column; border-right: 1px solid var(--line); max-height: 540px; overflow-y: auto; }
.picker__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 22px; border-bottom: 1px solid var(--line); text-align: left; transition: background 0.25s var(--ease); }
.picker__row:last-child { border-bottom: 0; }
.picker__row:hover { background: var(--bg-soft); }
.picker__row.active { background: var(--ink); }
.picker__row.active .picker__row-name, .picker__row.active .picker__row-price { color: #fff; }
.picker__row.active .picker__row-tag { background: var(--red); color: #fff; }
.picker__row-name { font-size: 14.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.picker__row-tag { padding: 3px 9px; border-radius: var(--pill); font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; background: var(--tile); color: var(--ink); }
.picker__row-price { font-size: 13.5px; font-weight: 620; color: var(--text-2); white-space: nowrap; }
.picker__detail { padding: clamp(22px, 3vw, 40px); }
.picker__detail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.picker__detail-head h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.picker__detail-head strong { font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.picker__tagline { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.picker__desc { margin-top: 12px; font-size: 14.5px; line-height: 1.8; color: var(--text-2); }
.picker__points { margin-top: 20px; }
.picker__points h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.picker__points ul { list-style: none; }
.picker__points li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid var(--line); font-size: 13.5px; line-height: 1.6; color: var(--text); }
.picker__points li::before { content: "✓"; position: absolute; left: 0; top: 9px; font-size: 12px; font-weight: 700; color: var(--red); }

.vd-specs__scroll { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); background: #fff; }
.vd-specs__table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 660px; }
.vd-specs__table th, .vd-specs__table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.vd-specs__table thead th { background: var(--tile); color: var(--ink); font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.vd-specs__table tbody th { font-weight: 620; color: var(--ink); }
.vd-specs__table tbody td { color: var(--text-2); }
.vd-specs__table tbody tr:last-child th, .vd-specs__table tbody tr:last-child td { border-bottom: 0; }
.vd-specs__table tbody tr:hover th, .vd-specs__table tbody tr:hover td { background: var(--bg-soft); }

.cost-sheet { border-radius: var(--r); border: 1px solid var(--line); background: #fff; overflow: hidden; }
.cost-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.cost-row:last-child { border-bottom: 0; }
.cost-row__item { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.cost-row__vals { display: flex; gap: 32px; }
.cost-row__vals span { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; min-width: 110px; }
.cost-row__vals strong { font-size: 15.5px; font-weight: 750; color: var(--ink); }
.cost-row__vals em { font-style: normal; font-size: 10.5px; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.vd-costs__note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

.vd-new__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.6vw, 60px); align-items: center; }
.vd-new__points { list-style: none; margin-top: 22px; display: flex; flex-direction: column; }
.vd-new__points li { position: relative; padding: 12px 0 12px 26px; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.65; color: var(--text-2); }
.vd-new__points li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.vd-new__media { border-radius: var(--r); aspect-ratio: 16 / 11; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--tile); }
.vd-new__media img { max-width: 84%; max-height: 76%; object-fit: contain; }

.vd-compare__models { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 32px; }
.rival { height: 100%; padding: 20px 18px; border-radius: var(--r); background: var(--tile); text-align: center; }
.rival img { max-width: 76%; max-height: 82px; object-fit: contain; margin: 0 auto 12px; }
.rival span { font-size: 13.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }

.vd-faq__grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; align-items: start; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: border-color 0.3s var(--ease); }
.faq__item[open], .faq__item:hover { border-color: var(--line-2); }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; position: relative; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 20px; top: 14px; font-size: 20px; font-weight: 400; color: var(--red); transition: transform 0.35s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; font-size: 14px; line-height: 1.75; color: var(--text-2); }

/* ---------- blog ---------- */

.blog__list-wrap { padding: 56px 0 0; }
.blog__heading { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 32px; color: var(--ink); }
.blog__heading em { font-style: normal; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
.post-lead { margin-bottom: 48px; }
.post-lead a { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: stretch; border-radius: var(--r); overflow: hidden; background: var(--tile); }
.post-lead__media { position: relative; overflow: hidden; min-height: 340px; }
.post-lead__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-lead a:hover .post-lead__media img { transform: scale(1.03); }
.post-lead__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 4vw, 52px); }
.post-lead__title { font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); }
.post-lead__excerpt { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--text-2); }
.post-lead__body .post-card__meta { margin-bottom: 10px; }
.post-lead__body .post-card__more { margin-top: 20px; }
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card a { display: flex; flex-direction: column; height: 100%; }
.post-card__media { position: relative; aspect-ratio: 3 / 2; border-radius: var(--r); overflow: hidden; background: var(--tile); margin-bottom: 16px; }
.post-card__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__media > img { transform: scale(1.04); }
.post-card__chip { position: absolute; top: 12px; left: 12px; z-index: 1; padding: 6px 12px; border-radius: var(--pill); background: rgba(255, 255, 255, 0.94); font-size: 10.5px; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); }
.post-card__meta { font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.post-card__title { font-size: 19px; font-weight: 750; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); transition: color 0.25s var(--ease); }
.post-card:hover .post-card__title { color: var(--red); }
.post-card__excerpt { margin-top: 8px; font-size: 13.5px; line-height: 1.65; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13.5px; font-weight: 620; color: var(--ink); }
.post-card__more svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.post-card:hover .post-card__more svg { transform: translateX(4px); }

/* ---------- article ---------- */

.article__hero { padding: 144px 0 0; }
.article__hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: center; }
.article__title { font-size: clamp(28px, 3.8vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; color: var(--ink); }
.article__meta { display: flex; gap: 22px; margin-top: 20px; }
.article__meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.article__meta-item svg { width: 15px; height: 15px; }
.article__hero-media { border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 11; }
.article__hero-media img { width: 100%; height: 100%; object-fit: cover; }
.article__body-wrap { padding: 64px 0 0; }
.article__layout { display: grid; grid-template-columns: 220px minmax(0, 1fr) 250px; gap: 48px; align-items: start; }
.article__side--left, .article__side--right { position: sticky; top: 96px; }

.toc__title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ul { list-style: none; display: flex; flex-direction: column; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 7px 0 7px 14px; margin-left: -2px; border-left: 2px solid transparent; font-size: 13px; line-height: 1.45; color: var(--muted); transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.toc a:hover { color: var(--ink); }
.toc a.active { color: var(--ink); font-weight: 600; border-color: var(--red); }

.trending__title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.trending__item { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.trending__thumb { flex: none; width: 52px; height: 52px; border-radius: 8px; overflow: hidden; background: var(--tile); }
.trending__thumb img { width: 100%; height: 100%; object-fit: cover; }
.trending__item em { display: block; font-style: normal; font-size: 10px; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.trending__item strong { display: block; margin-top: 2px; font-size: 13.5px; font-weight: 650; letter-spacing: -0.01em; line-height: 1.35; color: var(--ink); transition: color 0.25s var(--ease); }
.trending__item:hover strong { color: var(--red); }

.prose { max-width: 700px; }
.prose__lead { font-size: 18px; line-height: 1.65; font-weight: 550; color: var(--text); }
.prose h2 { margin: 46px 0 14px; font-size: 25px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); scroll-margin-top: 96px; }
.prose h3 { margin: 26px 0 8px; font-size: 16px; font-weight: 700; color: var(--ink); }
.prose p { margin: 0 0 14px; font-size: 15px; line-height: 1.8; color: var(--text-2); }
.prose ul { margin: 0 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.7; color: var(--text-2); }
.prose ul li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.prose__quote { margin: 28px 0; padding: 20px 24px; border-radius: var(--r); background: var(--tile); font-size: 18px; line-height: 1.55; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.prose__callout { display: flex; flex-direction: column; gap: 4px; margin: 26px 0; padding: 18px 22px; border-radius: var(--r); background: var(--tile); }
.prose__callout span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.prose__callout a { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.prose__callout a:hover { text-decoration: underline; }
.prose__takeaways { margin: 28px 0; padding: 22px 26px; border-radius: var(--r); border: 1px solid var(--line); }
.prose__takeaways h4 { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.prose__takeaways h4 svg { width: 14px; height: 14px; color: var(--red); }
.prose-wrap { padding: 56px 0 0; }

/* ---------- brands directory ---------- */

.brandsp { padding: 56px 0 0; }
.brandsp__head { margin-bottom: 32px; }
.brandsp__head--pad { margin-top: 80px; }
.brandsp__head .kicker { margin-bottom: 12px; }
.brandsp__section-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.brandsp__section-title em { font-style: normal; }

.spotcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spotcard { position: relative; display: flex; align-items: flex-end; min-height: 380px; border-radius: var(--r); overflow: hidden; background: var(--ink); isolation: isolate; }
.spotcard__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.spotcard:hover .spotcard__bg { transform: scale(1.04); }
.spotcard__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8, 9, 11, 0.78) 0%, rgba(8, 9, 11, 0.24) 46%, transparent 66%); pointer-events: none; }
.spotcard__content { position: relative; z-index: 2; width: 100%; padding: 22px 24px 24px; color: #fff; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.spotcard__chip { display: inline-flex; align-items: center; gap: 8px; padding: 5px 13px 5px 5px; border-radius: var(--pill); background: rgba(255, 255, 255, 0.95); color: var(--ink); font-size: 12px; font-weight: 650; }
.spotcard__chip img { width: 24px; height: 24px; object-fit: contain; background: var(--tile); border-radius: 50%; padding: 3px; }
.spotcard__title { font-size: 19px; font-weight: 750; letter-spacing: -0.02em; line-height: 1.2; max-width: 24ch; }
.spotcard__meta { font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }
.spotcard__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 13px; font-weight: 620; color: #fff; }
.spotcard__more svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.spotcard:hover .spotcard__more svg { transform: translateX(4px); }

.mq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; border-top: 1px solid var(--line); }
.mq-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto 66px 26px; align-items: center; gap: 16px; padding: 18px 6px; border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease); }
.mq-row:hover { background: var(--bg-soft); }
.mq-row__num { font-size: 12px; font-weight: 650; color: var(--muted); }
.mq-row__name { font-size: 16.5px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.mq-row__meta { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.mq-row__logo { justify-self: end; height: 32px; display: flex; align-items: center; }
.mq-row__logo img { max-width: 58px; max-height: 30px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: filter 0.3s var(--ease), opacity 0.3s var(--ease); }
.mq-row:hover .mq-row__logo img { filter: none; opacity: 1; }
.mq-row__arrow { justify-self: end; color: var(--muted); transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.mq-row__arrow svg { width: 16px; height: 16px; }
.mq-row:hover .mq-row__arrow { color: var(--red); transform: translateX(3px); }

/* ---------- about ---------- */

.about__stats-wrap { padding: 56px 0 0; }
.about__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about__stat { padding: 28px 28px 30px; border-radius: var(--r); background: var(--tile); }
.about__stat strong { display: block; font-size: clamp(30px, 3.2vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.about__stat span { display: block; margin-top: 4px; font-size: 13px; color: var(--text-2); }
.about__split { padding: var(--section) 0 0; }
.about__split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__list { margin-top: 12px; display: flex; flex-direction: column; }
.about__item { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.about__item span { font-size: 13px; font-weight: 650; color: var(--red); padding-top: 2px; }
.about__item h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.about__item p { margin-top: 6px; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.about__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3.4; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__values { padding: var(--section) 0 0; }
.about__values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about__value { padding: 28px 26px 32px; border-radius: var(--r); background: var(--tile); }
.about__value h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.about__value p { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--text-2); }

/* ---------- states + page end spacing ---------- */

.state { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 160px 24px; text-align: center; }
.state h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.state p { font-size: 14px; color: var(--text-2); max-width: 44ch; }
.spinner { width: 32px; height: 32px; border: 3px solid var(--line-2); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

main > section:last-of-type { padding-bottom: var(--section); }

@media (max-width: 1024px) {
  .cars__grid { grid-template-columns: repeat(3, 1fr); }
  .bd-about__grid, .vd-hero__inner, .vd-new__grid, .vd-faq__grid, .about__split-grid { grid-template-columns: 1fr; }
  .vd-ov__grid { grid-template-columns: 1fr; }
  .vd-rail { position: static; order: -1; }
  .bd-high__grid { grid-template-columns: repeat(2, 1fr); }
  .spotcards { grid-template-columns: 1fr; }
  .spotcard { min-height: 320px; }
  .mq { grid-template-columns: 1fr; gap: 0; }
  .article__layout { grid-template-columns: 1fr; gap: 40px; }
  .article__side--left { display: none; }
  .article__side--right { position: static; }
  .article__hero-inner { grid-template-columns: 1fr; }
  .post-lead a { grid-template-columns: 1fr; }
  .post-lead__media { min-height: 240px; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .picker { grid-template-columns: 1fr; }
  .picker__list { border-right: 0; border-bottom: 1px solid var(--line); max-height: 300px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cars__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .bd-high__grid, .about__values-grid { grid-template-columns: 1fr; }
  .vd-lists { grid-template-columns: 1fr; gap: 26px; }
  .vd-subnav__name { display: none; }
  .cost-row { grid-template-columns: 1fr; align-items: start; }
  .cost-row__vals { width: 100%; justify-content: space-between; gap: 14px; }
  .cost-row__vals span { align-items: flex-start; min-width: 0; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .phero { padding-top: 120px; }
  .vd-hero, .article__hero { padding-top: 112px; }
}

/* aliases for ported page markup */
.section { padding: var(--section) 0 0; }
.steps__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.steps__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3.4; }
.steps__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list { margin-top: 12px; display: flex; flex-direction: column; }
.why__item { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.why__item span { font-size: 13px; font-weight: 650; color: var(--red); padding-top: 2px; }
.why__item h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.why__item p { margin-top: 6px; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.about__values-wrap { padding: var(--section) 0 0; }
.about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1024px) { .steps__grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .about__values { grid-template-columns: 1fr; } }

/* ==========================================================================
   LR-native inner pages — display-word heroes, tile grids, journal mosaic
   ========================================================================== */

.eyebrow { display: block; font-size: 11.5px; font-weight: 650; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.sec { padding: var(--section) 0 0; }
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.shead .eyebrow { margin-bottom: 10px; }
.shead--center { justify-content: center; text-align: center; }

/* display-word hero (brands/about/blogs/legal + brand/vehicle with car) */
.dhero { padding: 140px 0 0; text-align: center; }
.dhero__word {
  font-size: clamp(44px, 9.25vw, 136px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--line-2);
  user-select: none;
}
.dhero__word--solid { color: var(--ink); -webkit-text-stroke: 0; letter-spacing: -0.045em; }
.dhero__word--sm { font-size: clamp(30px, 5.5vw, 80px); }
.dhero__sub { max-width: 54ch; margin: 22px auto 0; font-size: 16.5px; line-height: 1.7; color: var(--text-2); }
.dhero__stats { display: flex; justify-content: center; gap: clamp(28px, 6vw, 72px); margin-top: 40px; }
.dhero__stats .hero__stat { text-align: left; }

/* brand-tile grid (brands directory) */
.btiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.btile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  background: var(--tile);
  overflow: hidden;
  aspect-ratio: 1.15;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btile:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.btile__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px 5px 5px;
  border-radius: var(--pill);
  background: #fff;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
}
.btile__chip img { width: 26px; height: 26px; object-fit: contain; background: var(--tile); border-radius: 50%; padding: 4px; }
.btile__media { position: absolute; inset: 12% 6% 26%; display: flex; align-items: center; justify-content: center; }
.btile__media img { max-width: 92%; max-height: 88%; object-fit: contain; transition: transform 0.5s var(--ease); }
.btile:hover .btile__media img { transform: scale(1.04); }
.btile__body { position: absolute; left: 20px; right: 48px; bottom: 16px; }
.btile__name { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.btile__meta { display: block; margin-top: 2px; font-size: 12.5px; color: var(--text-2); }
.btile__arrow { position: absolute; right: 16px; bottom: 16px; color: var(--ink); transition: transform 0.35s var(--ease); }
.btile__arrow svg { width: 18px; height: 18px; }
.btile:hover .btile__arrow { transform: translate(3px, 3px); }

/* rcards as a wrapping grid (brand lineup) */
.range-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.range-grid .rcard { flex: none; width: auto; }

/* journal mosaic (blog archive) */
.journal { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 16px; }
.jtile { position: relative; border-radius: var(--r); overflow: hidden; display: flex; align-items: flex-end; isolation: isolate; }
.jtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.jtile:hover img { transform: scale(1.04); }
.jtile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.18) 46%, transparent 64%); }
.jtile__body { position: relative; z-index: 2; padding: 22px 24px; color: #fff; }
.jtile__chip { display: inline-flex; padding: 5px 12px; border-radius: var(--pill); background: rgba(255, 255, 255, 0.94); font-size: 10.5px; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.jtile__title { display: block; font-size: 20px; font-weight: 750; letter-spacing: -0.02em; line-height: 1.18; max-width: 30ch; }
.jtile__meta { display: block; margin-top: 6px; font-size: 12.5px; color: rgba(255, 255, 255, 0.8); }
.jtile--lead { grid-column: span 12; grid-row: span 2; }
.jtile--lead .jtile__title { font-size: clamp(24px, 3vw, 40px); max-width: 26ch; }
.jtile--half { grid-column: span 6; }
.jtile--third { grid-column: span 4; }

/* article — centered editorial */
.apage__meta { display: flex; gap: clamp(24px, 5vw, 64px); margin-top: 30px; }
.apage__cover { margin-top: 40px; border-radius: var(--r); overflow: hidden; max-height: 520px; }
.apage__cover img { width: 100%; height: 100%; object-fit: cover; }
.prose--center { margin-inline: auto; }
.morerow { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 16px; }

/* numbered process rows (about) */
.steps-rows { display: flex; flex-direction: column; margin-top: 8px; }
.steps-row { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.steps-row > span { font-size: 14px; font-weight: 700; color: var(--red); padding-top: 2px; }
.steps-row h3 { font-size: 18px; font-weight: 750; letter-spacing: -0.015em; color: var(--ink); }
.steps-row p { margin-top: 6px; font-size: 14.5px; line-height: 1.7; color: var(--text-2); }

@media (max-width: 1024px) {
  .btiles { grid-template-columns: repeat(2, 1fr); }
  .range-grid { grid-template-columns: repeat(3, 1fr); }
  .jtile--half, .jtile--third { grid-column: span 6; }
}
@media (max-width: 768px) {
  .dhero { padding-top: 116px; }
  .dhero__stats { flex-wrap: wrap; gap: 22px 34px; }
  .btiles { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .journal { grid-auto-rows: 210px; }
  .jtile--half, .jtile--third { grid-column: span 12; }
  .morerow { grid-template-columns: 1fr; }
  .shead { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* brand tile — photo fallback variant */
.btile--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8, 9, 11, 0.68) 0%, rgba(8, 9, 11, 0.16) 46%, transparent 64%); }
.btile__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.btile--photo:hover .btile__bg { transform: scale(1.04); }
.btile--photo .btile__body, .btile--photo .btile__arrow, .btile--photo .btile__chip { z-index: 2; }
.btile--photo .btile__name { color: #fff; }
.btile--photo .btile__meta { color: rgba(255, 255, 255, 0.82); }
.btile--photo .btile__arrow { color: #fff; }

/* journal: uniform tiles (no giant lead) */
.journal { grid-auto-rows: 300px; }
.jtile--third { grid-column: span 4; }
@media (max-width: 1024px) { .journal { grid-auto-rows: 260px; } .jtile--third { grid-column: span 6; } }
@media (max-width: 768px) { .jtile--third { grid-column: span 12; } }

/* legal-table */
.prose .legal-table{width:100%;border-collapse:collapse;margin:26px 0;font-size:14px;line-height:1.6}
.prose .legal-table thead th{text-align:left;font-weight:700;padding:12px 14px;border-bottom:2px solid rgba(0,0,0,.16)}
.prose .legal-table td{padding:12px 14px;border-top:1px solid rgba(0,0,0,.12);vertical-align:top}
.prose .legal-table td p{margin:0 0 8px}
.prose .legal-table td p:last-child{margin:0}
.prose .legal-notice{font-weight:600;letter-spacing:.01em;line-height:1.7}
/* ==========================================================================
   Filter widget — Make / Model / Year / Zip / Get Started (light)
   ========================================================================== */
.fw { width: 100%; max-width: 1080px; margin: 0 auto; display: flex; align-items: stretch; background: #fff; border: 1px solid #e7e7e7; border-radius: 20px; box-shadow: 0 24px 64px rgba(15, 18, 30, 0.12); padding: 6px 6px 6px 2px; text-align: left; }
.fw__field { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 14px 24px; border-left: 1px solid #ececec; }
.fw__field:first-child { border-left: 0; }
.fw__label { font-size: 11px; font-weight: 650; letter-spacing: 0.05em; color: #8a8f99; }
.fw__control { position: relative; }
.fw__select, .fw__input { width: 100%; border: 0; background: transparent; outline: none; font-family: inherit; font-size: 15.5px; font-weight: 650; letter-spacing: -0.01em; color: #0d1017; cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 18px; }
.fw__input { cursor: text; }
.fw__input[aria-invalid="true"] { color: #b3261e; }
.fw__err { font-size: 11px; font-weight: 600; letter-spacing: 0.01em; color: #b3261e; }
.fw__input::placeholder { color: #0d1017; opacity: 1; }
.fw__select:disabled { color: #b3b7c0; cursor: not-allowed; }
.fw__control::after { content: ""; position: absolute; right: 2px; top: 45%; width: 7px; height: 7px; border-right: 1.6px solid #6b7280; border-bottom: 1.6px solid #6b7280; transform: translateY(-50%) rotate(45deg); pointer-events: none; }
.fw__go { flex: 0 0 auto; align-self: center; display: inline-flex; align-items: center; gap: 9px; margin-left: 8px; padding: 17px 30px; border: 0; border-radius: 15px; background: #0d0d0f; color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.25s ease, transform 0.25s ease; }
.fw__go svg { width: 16px; height: 16px; }
.fw__go:hover { background: #26262c; transform: translateY(-1px); }
@media (max-width: 820px) { .fw { flex-direction: column; max-width: 460px; padding: 8px; } .fw__field { border-left: 0; border-top: 1px solid #ececec; padding: 12px 16px; } .fw__field:first-child { border-top: 0; } .fw__go { width: 100%; justify-content: center; margin: 8px 0 0; padding: 15px; } }

/* ==========================================================================
   Finder — dedicated search band
   ========================================================================== */
.finder { position: relative; z-index: 5; padding: clamp(64px, 9vh, 120px) 0; }
.finder::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 140% at 50% 0%, #f4f4f3 0%, #fafafa 55%, #fff 100%);
  border-top: 1px solid var(--line);
}
.finder__inner { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.finder__head { text-align: center; margin-bottom: clamp(26px, 4vh, 44px); }
.finder__eyebrow { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.finder__title { margin-top: 12px; font-size: clamp(30px, 4.4vw, 52px); font-weight: 850; letter-spacing: -0.03em; line-height: 1.02; color: var(--ink); }
.finder__sub { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--text-2); }
.finder .fw { box-shadow: 0 30px 70px rgba(15, 18, 30, 0.16); border-color: #e4e4e2; }
.finder .fw:focus-within { box-shadow: 0 36px 84px rgba(15, 18, 30, 0.22); border-color: #d2d2d0; }
@media (max-width: 860px) { .finder { padding: clamp(44px, 7vh, 72px) 0; } }

/* ==========================================================================
   Hero variant — stacked (search on top, showcase below, one viewport)
   ========================================================================== */
.hero--stacked { background: transparent; }
.hero--stacked::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 130% at 50% 6%, #f4f4f3 0%, #fafafa 52%, #fff 100%);
}
.hero--stacked > .container {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vh, 40px);
  padding-top: clamp(96px, 12vh, 124px);
  padding-bottom: clamp(22px, 4vh, 44px);
}
/* search on top */
.hero--stacked .finder__inner--top { width: 100%; max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero--stacked .finder__head { text-align: center; margin-bottom: clamp(16px, 2.4vh, 30px); }
.hero--stacked .finder__title { margin-top: 10px; font-size: clamp(28px, 3.6vw, 46px); font-weight: 850; letter-spacing: -0.03em; line-height: 1.02; color: var(--ink); }
.hero--stacked .finder__sub { margin-top: 12px; }
.hero--stacked .fw { max-width: 880px; margin: 0 auto; box-shadow: 0 28px 66px rgba(15, 18, 30, 0.16); border-color: #e4e4e2; }
.hero--stacked .fw:focus-within { box-shadow: 0 34px 80px rgba(15, 18, 30, 0.22); border-color: #d2d2d0; }
/* showcase below */
.hero--stacked .hero__stage2 { flex: 0 1 auto; }
.hero--stacked .hero__word { display: none; }
.hero--stacked .hero__carwrap { height: clamp(230px, 40vh, 460px); margin-top: 0; }
.hero--stacked .hero__car { width: min(1100px, 92vw); }
.hero--stacked .hero__info { margin-top: clamp(10px, 2vh, 24px); }

@media (max-height: 820px) and (min-width: 861px) {
  .hero--stacked > .container { padding-top: 88px; gap: clamp(12px, 2vh, 22px); }
  .hero--stacked .finder__head { margin-bottom: 14px; }
  .hero--stacked .finder__title { font-size: clamp(26px, 3vw, 36px); }
  .hero--stacked .finder__sub { margin-top: 8px; }
  .hero--stacked .hero__carwrap { height: clamp(200px, 34vh, 320px); }
}

@media (max-width: 860px) {
  .hero--stacked > .container { justify-content: flex-start; gap: 24px; }
  .hero--stacked .hero__carwrap { height: clamp(180px, 30vh, 300px); }
}
