/* ==========================================================================
   TopListingsOnline — premium consumer marketplace · light
   Canvas grey · white surfaces · lavender tiles · deep-navy pills
   Inter, sentence case, photo-led
   ========================================================================== */

:root {
  /* surfaces — neutral editorial paper */
  --canvas: #ffffff;
  --surface: #ffffff;
  --tile: #f2f2f2;
  --tile-2: #ebebeb;
  --navy: #0d0d0d;
  --navy-2: #2a2a2a;

  /* text */
  --ink: #0d1017;
  --text: #14171f;
  --text-2: #4c5160;
  --muted: #8b90a0;
  --on-navy: #f4f6fb;
  --on-navy-sub: #aab1c4;

  /* lines & focus */
  --line: #e8e8e8;
  --line-2: #d9d9d9;
  --focus: #3b5bfd;

  /* radius — softly rounded premium surfaces; pill reserved for controls */
  --r-xl: 16px;
  --r-lg: 12px;
  --r: 10px;
  --r-sm: 8px;
  --pill: 999px;

  /* shadows — quiet, tonal, layered for depth */
  --sh-sm: 0 1px 2px rgba(16, 20, 40, 0.05);
  --sh-md: 0 2px 6px rgba(16, 20, 40, 0.04), 0 16px 40px rgba(16, 20, 40, 0.09);
  --sh-lg: 0 4px 12px rgba(16, 20, 40, 0.06), 0 36px 80px rgba(16, 20, 40, 0.15);

  --container: 1280px;
  --gutter: 44px;
  --sec-pad: clamp(64px, 7.5vw, 108px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { 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: 15.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--canvas);
  -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(--navy); color: #fff; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Voice ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.kicker::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); opacity: 0.85; }

.section { padding: 108px 0; }

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head .kicker { margin-bottom: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

.section__title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 640;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.section__title em { font-style: italic; font-weight: 560; }
.section-sub { max-width: 560px; margin: 18px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }
.section-head--center .section-sub { margin-inline: auto; }

/* ---------- Buttons, pills, chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--dark { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn--dark:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }

.btn--light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--onphoto { background: rgba(255, 255, 255, 0.94); color: var(--ink); backdrop-filter: blur(8px); }
.btn--onphoto:hover { background: #fff; transform: translateY(-1px); }

.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); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 550;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--line-2); transform: translateY(-1px); }
.chip.active { background: #fff; border: 1.5px solid var(--ink); color: var(--ink); font-weight: 650; }

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

/* circle arrow controls */
.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.circle-btn svg { width: 17px; height: 17px; }
.circle-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.circle-btn--ink { border-color: var(--line-2); color: var(--ink); background: #fff; }
.circle-btn--ink:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Reveal ---------- */

.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal--left:not(.is-visible) { transform: translateX(-30px); }
html.js .reveal--right:not(.is-visible) { transform: translateX(30px); }
html.js .reveal--scale:not(.is-visible) { transform: translateY(20px) scale(0.99); }
html.js .reveal--fade:not(.is-visible) { transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Navigation — light
   ========================================================================== */

/* non-sticky header — scrolls away with the page */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  color: var(--ink);
}
.nav__logo { justify-self: start; font-weight: 750; font-size: 17px; letter-spacing: -0.02em; }
.nav__logo em { font-style: normal; color: var(--muted); font-weight: 550; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 550;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { justify-self: end; display: inline-flex; align-items: center; gap: 18px; }
.nav__cta .btn { padding: 12px 22px; font-size: 13.5px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  z-index: 102;
}
.nav__toggle span {
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav.open .nav__mobile { opacity: 1; pointer-events: auto; }
.nav__mobile a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.nav.open .nav__mobile a { opacity: 1; transform: none; }
.nav.open .nav__mobile a:nth-child(1) { transition-delay: 0.06s; }
.nav.open .nav__mobile a:nth-child(2) { transition-delay: 0.12s; }
.nav.open .nav__mobile a:nth-child(3) { transition-delay: 0.18s; }
.nav.open .nav__mobile a:nth-child(4) { transition-delay: 0.24s; }
.nav__mobile a sup { font-size: 12px; font-weight: 600; color: var(--muted); }
.nav__mobile a:hover { color: var(--text-2); }

/* ==========================================================================
   Hero — rounded photo stage
   ========================================================================== */

.hero { padding: 102px 0 var(--sec-pad); }
.hero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sh-lg);
  background: var(--navy);
  isolation: isolate;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s linear;
}
.hero__slide.active img { transform: scale(1); }
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(80deg, rgba(7, 9, 16, 0.88) 0%, rgba(7, 9, 16, 0.62) 30%, rgba(7, 9, 16, 0.24) 56%, rgba(7, 9, 16, 0) 76%),
    linear-gradient(0deg, rgba(7, 9, 16, 0.82) 0%, rgba(7, 9, 16, 0.28) 36%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero__eyebrow::before { content: ""; width: 22px; height: 1.5px; border-radius: 1px; background: rgba(255,255,255,0.7); }
.hero__title {
  max-width: 640px;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}
.hero__title em { font-style: italic; font-weight: 560; }
.hero__sub {
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__nav { display: flex; align-items: center; gap: 16px; }
.hero__count { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.9); }
.hero__count span { color: rgba(255, 255, 255, 0.5); }

/* featured vehicle chip on photo */
.hero__feature {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 3.4vw, 40px);
  right: clamp(20px, 3.4vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sh-md);
  color: var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hero__feature:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.hero__feature strong { font-size: 14px; font-weight: 650; letter-spacing: -0.01em; white-space: nowrap; }
.hero__feature i { width: 1px; height: 16px; background: var(--line-2); }
.hero__feature em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap; }

/* hero entrance */
html.js .hero__eyebrow, html.js .hero__title, html.js .hero__sub, html.js .hero__row, html.js .hero__feature {
  opacity: 0;
  transform: translateY(22px);
}
html.ready .hero__eyebrow { animation: rise 0.9s var(--ease-out) 0.05s forwards; }
html.ready .hero__title { animation: rise 1s var(--ease-out) 0.15s forwards; }
html.ready .hero__sub { animation: rise 0.9s var(--ease-out) 0.28s forwards; }
html.ready .hero__row { animation: rise 0.9s var(--ease-out) 0.4s forwards; }
html.ready .hero__feature { animation: rise 0.9s var(--ease-out) 0.5s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html.js .hero__eyebrow, html.js .hero__title, html.js .hero__sub, html.js .hero__row, html.js .hero__feature {
    opacity: 1; transform: none; animation: none;
  }
  .hero__slide img { transform: none; transition: none; }
}

/* ==========================================================================
   Search bar — overlapping concierge
   ========================================================================== */

.finder { position: relative; z-index: 5; margin-top: -44px; }
.sw {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  border-radius: var(--pill);
  background: #fff;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
  max-width: 860px;
  margin-inline: auto;
}
.sw__field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px 8px 22px;
  border-radius: var(--pill);
  transition: background 0.3s var(--ease);
}
.sw__field:hover { background: var(--canvas); }
.sw__field + .sw__field { border-left: 1px solid var(--line); border-radius: 0 var(--pill) var(--pill) 0; }
.sw__label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); }
.sw__control { position: relative; }
.sw__control select {
  width: 100%;
  border: 0;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 2px 26px 2px 0;
  cursor: pointer;
  text-overflow: ellipsis;
}
.sw__control select:disabled { color: var(--muted); cursor: not-allowed; }
.sw__control--select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 38%;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}
.sw__go {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--canvas);
  cursor: not-allowed;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sw__go svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.sw__go.ready { cursor: pointer; color: var(--ink); background: #fff; border: 1px solid var(--ink); }
.sw__go.ready:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.sw__go.ready:hover svg { transform: translateX(3px); }

/* ---------- Brand chips strip ---------- */

.brandchips { padding: 64px 0 0; }
.brandchips__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.brandchips__row::-webkit-scrollbar { display: none; }
.brandchips .chip { padding: 12px 20px; font-size: 12.5px; font-weight: 620; letter-spacing: 0.08em; text-transform: uppercase; }

/* ==========================================================================
   Car tiles — shopping grid
   ========================================================================== */

/* ---- section rhythm — alternating bands + hairlines for clear breaks ---- */
.cars { padding: var(--sec-pad) 0; border-top: 1px solid var(--line); }
.steps { padding: var(--sec-pad) 0; background: #f7f7f6; border-top: 1px solid var(--line); }
.model { padding: var(--sec-pad) 0; border-top: 1px solid var(--line); }
.why { padding: var(--sec-pad) 0; background: #f7f7f6; border-top: 1px solid var(--line); }
.closing { padding: var(--sec-pad) 0; border-top: 1px solid var(--line); }
.cars__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.cars__bar .section-head { margin: 0; }
.cars__tabs { display: flex; flex-wrap: wrap; gap: 8px; }

.cars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 22px;
}
.car-tile { display: flex; flex-direction: column; }
.car-tile a { display: flex; flex-direction: column; height: 100%; }
.car-tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.car-tile:hover .car-tile__media { background: var(--tile-2); }
.car-tile__media::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 14%;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 50%, rgba(16, 20, 40, 0.16), transparent 72%);
  filter: blur(5px);
}
.car-tile__media img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 64%;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.car-tile:hover .car-tile__media img { transform: scale(1.05); }
.car-tile__body { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 18px 8px 0; }
.car-tile__name { font-size: 16px; font-weight: 650; letter-spacing: -0.015em; color: var(--ink); transition: color 0.25s var(--ease); }
.car-tile__sub { margin-top: 4px; font-size: 12.5px; color: var(--muted); }
.car-tile__price { margin-top: 14px; }
.car-tile:hover .car-tile__name { color: var(--navy-2); }

.cars__more { display: flex; justify-content: center; margin-top: 52px; }

/* ==========================================================================
   Steps — how it works
   ========================================================================== */

.steps { padding: var(--sec-pad) 0; }
.steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.steps__list { margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line-2);
  cursor: pointer;
}
.step__num { font-size: 13.5px; font-weight: 600; color: var(--muted); transition: color 0.3s var(--ease); }
.step__head { font-size: 16.5px; font-weight: 640; letter-spacing: -0.015em; color: var(--ink); }
.step__body {
  grid-column: 2;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin-top 0.45s var(--ease);
}
.step.active .step__body { max-height: 140px; opacity: 1; margin-top: 8px; }
.step.active .step__num { color: var(--navy); }
.step__bar { grid-column: 2; height: 2px; border-radius: 1px; background: var(--line); margin-top: 16px; overflow: hidden; display: none; }
.step.active .step__bar { display: block; }
.step__bar i { display: block; height: 100%; width: 40%; border-radius: 1px; background: var(--navy); }
.steps__cta { margin-top: 34px; }

.steps__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--sh-md);
}
.steps__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Featured model — configurator panel
   ========================================================================== */

.model { padding: var(--sec-pad) 0; }
.model__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4.6vw, 64px);
  align-items: center;
}
.model__stage {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--tile);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.model__stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 50%, rgba(16, 20, 40, 0.18), transparent 72%);
  filter: blur(7px);
}
.model__stage img {
  position: relative;
  z-index: 1;
  max-width: 82%;
  max-height: 70%;
  object-fit: contain;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.model__stage img.swap { opacity: 0; transform: translateX(16px); }
.model__arrows { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; pointer-events: none; }
.model__arrows .circle-btn { pointer-events: auto; }

.model__brand { margin-bottom: 10px; }
.model__name { font-size: clamp(28px, 3vw, 40px); font-weight: 680; letter-spacing: -0.03em; color: var(--ink); }
.model__price { margin-top: 8px; font-size: 15px; color: var(--text-2); }
.model__price strong { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

.model__trims { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.trim-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: #fff;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.trim-chip strong { font-size: 13px; font-weight: 650; color: var(--ink); }
.trim-chip em { font-style: normal; font-size: 12px; font-weight: 550; color: var(--muted); }
.trim-chip:hover { transform: translateY(-1px); border-color: var(--ink); }
.trim-chip.active { border-color: var(--navy); background: var(--navy); }
.trim-chip.active strong, .trim-chip.active em { color: #fff; }
.trim-chip.active em { color: var(--on-navy-sub); }

.model__desc {
  margin-top: 16px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.model__cta { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.model__thumbs { display: flex; gap: 10px; margin-top: 30px; }
.model__thumb {
  width: 78px;
  height: 58px;
  border-radius: var(--r-sm);
  background: var(--tile);
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.model__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.model__thumb:hover { background: var(--tile-2); }
.model__thumb.active { border-color: var(--navy); background: #fff; }

/* ==========================================================================
   Why — value trio + photo
   ========================================================================== */

.why { padding: var(--sec-pad) 0; }
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.why__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
  box-shadow: var(--sh-md);
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list { margin-top: 8px; display: flex; flex-direction: column; }
.why__item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 26px 0; border-top: 1px solid var(--line-2); }
.why__item:last-child { border-bottom: 1px solid var(--line-2); }
.why__item span { font-size: 13.5px; font-weight: 600; color: var(--muted); padding-top: 3px; }
.why__item h3 { font-size: 19px; font-weight: 650; letter-spacing: -0.02em; color: var(--ink); }
.why__item p { margin-top: 7px; font-size: 14.5px; line-height: 1.7; color: var(--text-2); }

/* ==========================================================================
   Closing CTA — navy band
   ========================================================================== */

.closing { padding: var(--sec-pad) 0; }
.closing__card {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(52px, 7vw, 96px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing__card::before { content: none; }
.closing__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.closing__title {
  max-width: 20ch;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 680;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.closing__sub { margin-top: 16px; max-width: 52ch; font-size: 15.5px; line-height: 1.7; color: var(--on-navy-sub); }
.closing__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.closing__cta .btn--light { box-shadow: none; }

/* ==========================================================================
   Footer — light
   ========================================================================== */

.footer { background: #fff; border-top: 1px solid var(--line); padding: 84px 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 56px;
  padding-bottom: 64px;
}
.footer__brand .nav__logo { font-size: 20px; }
.footer__statement { margin-top: 18px; max-width: 34ch; font-size: 15px; line-height: 1.7; color: var(--text-2); }
.footer__statement em { font-style: normal; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-content: start; }
.footer__col h4 { font-size: 12px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a {
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--ink); }
.footer__wordmark {
  font-size: clamp(48px, 10.6vw, 168px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-align: center;
  white-space: nowrap;
  color: var(--canvas);
  -webkit-text-stroke: 1px var(--line-2);
  user-select: none;
  transform: translateY(12%);
}
.footer__wordmark em { font-style: normal; }
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 28px;
  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 { transition: color 0.25s var(--ease); }
.footer__legal a:hover { color: var(--ink); }

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* ---------- Page hero (light) ---------- */

.phero { padding: 156px 0 64px; }
.phero__kicker { margin-bottom: 18px; }
.phero__title {
  max-width: 18ch;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.phero__title em { font-style: italic; font-weight: 560; }
.phero__sub { margin-top: 20px; max-width: 58ch; font-size: 16px; line-height: 1.7; color: var(--text-2); }

/* ---------- Prose ---------- */

.prose-wrap { background: var(--canvas); padding: 56px 0 120px; }
.prose { max-width: 720px; }
.prose__lead { font-size: 19px; line-height: 1.65; font-weight: 500; color: var(--text); }
.prose h2 { margin: 52px 0 16px; font-size: 27px; font-weight: 680; letter-spacing: -0.025em; color: var(--ink); scroll-margin-top: 104px; }
.prose h3 { margin: 28px 0 10px; font-size: 16.5px; font-weight: 650; color: var(--ink); }
.prose p { margin: 0 0 15px; font-size: 15.5px; line-height: 1.8; color: var(--text-2); }
.prose ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }
.prose__quote {
  margin: 30px 0;
  padding: 22px 26px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.prose__callout {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: var(--r);
  background: var(--tile);
}
.prose__callout span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.prose__callout a { font-size: 16.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.prose__callout a:hover { color: var(--navy-2); text-decoration: underline; }
.prose__takeaways { margin: 30px 0; padding: 24px 28px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.prose__takeaways h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.prose__takeaways h4 svg { width: 15px; height: 15px; }

/* ---------- FAQ ---------- */

.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: 20px 56px 20px 24px;
  position: relative;
  font-size: 15.5px;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 21px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.75; color: var(--text-2); }

/* ---------- TOC / trending ---------- */

.toc__title { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ul { list-style: none; display: flex; flex-direction: column; border-left: 1.5px solid var(--line-2); }
.toc a {
  display: block;
  padding: 7px 0 7px 16px;
  margin-left: -1.5px;
  border-left: 1.5px solid transparent;
  font-size: 13.5px;
  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(--navy); }

.trending__title { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.trending__item { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.trending__thumb {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-2);
}
.trending__item em { display: block; font-style: normal; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.trending__item strong { display: block; margin-top: 3px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; color: var(--ink); transition: color 0.25s var(--ease); }
.trending__item:hover strong { color: var(--navy-2); }

/* ---------- Article ---------- */

.article__hero { padding: 148px 0 56px; }
.article__hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.article__crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 550; color: var(--muted); margin-bottom: 18px; }
.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; }
.article__title { font-size: clamp(30px, 4vw, 52px); font-weight: 700; line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); }
.article__meta { display: flex; gap: 24px; margin-top: 22px; }
.article__meta-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.article__meta-item svg { width: 15px; height: 15px; }
.article__hero-media {
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.article__hero-cover { font-size: clamp(20px, 2.4vw, 28px); font-weight: 680; letter-spacing: -0.02em; color: var(--text-2); }
.article__body-wrap { padding: 64px 0 120px; }
.article__layout { display: grid; grid-template-columns: 230px minmax(0, 1fr) 260px; gap: 52px; align-items: start; }
.article__side--left, .article__side--right { position: sticky; top: 104px; }

/* tone panels — quiet lavender/stone tints */
.post-card__media--0 { background: linear-gradient(155deg, #e7eaf3 0%, #f2f4f9 100%); }
.post-card__media--1 { background: linear-gradient(155deg, #e4efe9 0%, #f1f8f4 100%); }
.post-card__media--2 { background: linear-gradient(155deg, #f0eae2 0%, #f8f4ee 100%); }
.post-card__media--3 { background: linear-gradient(155deg, #ece7f0 0%, #f5f2f8 100%); }
.post-card__media--4 { background: linear-gradient(155deg, #e6ecf0 0%, #f2f6f8 100%); }
.post-card__media--5 { background: linear-gradient(155deg, #f0e6e4 0%, #f8f1f0 100%); }

/* ---------- Blog list ---------- */

.blog__list-wrap { padding: 56px 0 120px; }
.blog__heading { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 40px; color: var(--ink); }
.blog__heading em { font-style: italic; font-weight: 560; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 28px; }
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card a { display: flex; flex-direction: column; height: 100%; }
.post-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: var(--r-lg);
}
.post-card__cover {
  padding: 0 28px;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  color: var(--text-2);
  transition: transform 0.6s var(--ease), color 0.35s var(--ease);
}
.post-card:hover .post-card__cover { transform: scale(1.03); color: var(--ink); }
.post-card__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 13px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  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: 8px; }
.post-card__title { font-size: 20px; font-weight: 680; 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(--navy-2); }
.post-card__excerpt {
  margin-top: 10px;
  font-size: 14px;
  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: 16px; 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); }

/* ---------- About ---------- */

.about__stats-wrap { padding: 24px 0 72px; }
.about__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about__stat { padding: 30px 30px 34px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.about__stat strong { display: block; font-size: clamp(32px, 3.4vw, 46px); font-weight: 730; letter-spacing: -0.03em; color: var(--ink); }
.about__stat span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }
.about__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.about__step { padding: 32px 30px 36px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.about__step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.about__step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--tile); font-size: 12.5px; font-weight: 650; color: var(--ink); }
.about__step h3 { margin: 16px 0 8px; font-size: 18px; font-weight: 660; letter-spacing: -0.015em; color: var(--ink); }
.about__step p { font-size: 14px; line-height: 1.7; color: var(--text-2); }
.about__values-wrap { padding: 48px 0 110px; }
.about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.about__value { padding: 32px 30px 36px; border-radius: var(--r-lg); background: var(--tile); transition: background 0.35s var(--ease); }
.about__value:hover { background: var(--tile-2); }
.about__value h3 { font-size: 18px; font-weight: 660; letter-spacing: -0.015em; color: var(--ink); }
.about__value p { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--text-2); }

/* ---------- Brands page: spotlight + index ---------- */

.brandsp { padding: 40px 0 120px; }
.brandsp__head { margin-bottom: 36px; }
.brandsp__head--pad { margin-top: 90px; }
.brandsp__head .kicker { margin-bottom: 14px; }
.brandsp__section-title { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.brandsp__section-title em { font-style: italic; font-weight: 560; }

.spot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spot__row {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.spot__row:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.spot__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--tile);
}
.spot__media img { max-width: 76%; max-height: 68%; object-fit: contain; transition: transform 0.6s var(--ease); }
.spot__row:hover .spot__media img { transform: scale(1.04); }
.spot__media--photo img { max-width: 60%; -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 48%, #000 44%, transparent 74%); mask-image: radial-gradient(ellipse 62% 62% at 50% 48%, #000 44%, transparent 74%); }
.spot__num { position: absolute; top: 16px; left: 18px; font-size: 11px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.spot__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.spot__body .kicker { margin-bottom: 10px; }
.spot__name { font-size: 21px; font-weight: 680; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; }
.spot__head { margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.spot__meta { display: flex; gap: 22px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.spot__meta strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-right: 6px; }
.spot__body .link-more { margin-top: 18px; }

.mq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mq-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 72px 30px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.mq-row:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--line-2); }
.mq-row__num { font-size: 12px; font-weight: 600; color: var(--muted); }
.mq-row__name { font-size: 17px; font-weight: 650; 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: 34px; display: flex; align-items: center; }
.mq-row__logo img { max-width: 64px; max-height: 32px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: filter 0.35s var(--ease), opacity 0.35s 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.35s var(--ease); }
.mq-row__arrow svg { width: 17px; height: 17px; }
.mq-row:hover .mq-row__arrow { color: var(--ink); transform: translateX(4px); }

/* ---------- Brand detail ---------- */

.bd-hero { padding: 156px 0 56px; }
.bd-hero__id { display: flex; align-items: center; gap: 18px; }
.bd-hero__logo {
  width: 58px;
  height: 58px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}
.bd-hero__logo img { max-width: 36px; max-height: 32px; object-fit: contain; }
.bd-hero__title { margin-top: 26px; max-width: 860px; font-size: clamp(36px, 5vw, 66px); font-weight: 700; line-height: 1.02; letter-spacing: -0.035em; color: var(--ink); }
.bd-hero__sub { margin-top: 18px; max-width: 600px; font-size: 16px; line-height: 1.7; color: var(--text-2); }
.bd-hero__stats { display: flex; align-items: center; gap: 24px; margin-top: 36px; font-size: 13px; color: var(--muted); }
.bd-hero__stats strong { font-size: 22px; font-weight: 720; letter-spacing: -0.02em; color: var(--ink); margin-right: 8px; }
.bd-hero__stats i { width: 1px; height: 24px; background: var(--line-2); }

.bd-about { padding: 56px 0 40px; }
.bd-about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; 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: 18px; font-weight: 550; line-height: 1.65; color: var(--text); }
.bd-about__showcase { margin-top: 52px; overflow: hidden; border-radius: var(--r-xl); box-shadow: var(--sh-md); }
.bd-about__showcase img { width: 100%; max-height: 520px; object-fit: cover; }

.bd-lineup { padding: 40px 0 110px; }
.bd-lineup__group + .bd-lineup__group { margin-top: 80px; }
.bd-lineup .section-head { margin-bottom: 40px; }

.lineup__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
.lineup__card { height: 100%; display: flex; flex-direction: column; }
.lineup__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.lineup__card--link:hover .lineup__media { background: var(--tile-2); }
.lineup__media img { max-width: 78%; max-height: 68%; width: auto; object-fit: contain; transition: transform 0.55s var(--ease); }
.lineup__card--link:hover .lineup__media img { transform: scale(1.05); }
.lineup__placeholder { width: 40%; height: 2px; border-radius: 1px; background: var(--line-2); }
.lineup__body { display: flex; flex-direction: column; flex: 1; padding: 18px 6px 0; }
.lineup__body h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 660;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.lineup__card--link:hover .lineup__body h3 { color: var(--navy-2); }
.lineup__year { font-size: 12px; font-weight: 600; color: var(--muted); }
.lineup__price { margin-top: 5px; font-size: 13.5px; font-weight: 650; color: var(--text); }
.lineup__summary { margin-top: 9px; font-size: 13.5px; line-height: 1.65; color: var(--text-2); }
.lineup__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 16px; font-size: 13px; font-weight: 620; color: var(--ink); }
.lineup__more svg { width: 14px; height: 14px; }

.bd-high { padding: 40px 0 110px; }
.bd-high__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bd-high__card { height: 100%; padding: 30px 28px 34px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.bd-high__card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.bd-high__icon { width: 38px; height: 38px; object-fit: contain; margin-bottom: 18px; }
.bd-high__card h3 { font-size: 17.5px; font-weight: 660; letter-spacing: -0.015em; margin-bottom: 14px; 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(--navy); }

.bd-voices { padding: 20px 0 110px; }
.bd-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.voice {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.voice:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.voice__stars { color: #e8a33d; font-size: 13px; letter-spacing: 3px; }
.voice blockquote { font-size: 14.5px; line-height: 1.7; color: var(--text); }
.voice figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.voice figcaption .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
}
.voice figcaption strong { display: block; font-size: 13.5px; font-weight: 650; color: var(--ink); }
.voice figcaption em { display: block; font-style: normal; font-size: 12px; color: var(--muted); }

/* ---------- Vehicle detail ---------- */

.vd-hero { padding: 146px 0 56px; }
.vd-hero__inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.vd-hero__title { margin-top: 8px; font-size: clamp(32px, 4.2vw, 54px); font-weight: 700; line-height: 1.03; letter-spacing: -0.035em; color: var(--ink); }
.vd-hero__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.vd-hero__price { font-size: 13px; color: var(--muted); }
.vd-hero__price strong { display: block; margin-top: 2px; font-size: 24px; font-weight: 720; letter-spacing: -0.02em; color: var(--ink); }
.vd-hero__years { display: inline-flex; gap: 8px; }
.vd-hero__years a {
  padding: 9px 16px;
  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 { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.vd-hero__verdict { margin-top: 26px; padding: 20px 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); max-width: 560px; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.vd-hero__verdict .kicker { display: flex; margin-bottom: 10px; }
.vd-hero__stage {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--tile);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vd-hero__stage::before { content: none; }
.vd-hero__stage::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 14%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 50%, rgba(16, 20, 40, 0.18), transparent 72%);
  filter: blur(7px);
}
.vd-hero__stage img { position: relative; z-index: 1; max-width: 84%; max-height: 72%; object-fit: contain; }

.vd-case { padding: 56px 0; }
.vd-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 48px; }
.vd-fact { height: 100%; padding: 26px 26px 30px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.vd-fact span { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.vd-fact p { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: var(--text); }
.vd-case__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vd-case__panel { padding: 30px 30px 34px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.vd-case__panel h3 { font-size: 19px; font-weight: 680; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--ink); }
.vd-case__panel ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.vd-case__panel li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.vd-case__panel--for li::before { content: "✓"; position: absolute; left: 0; top: 0; font-size: 14px; font-weight: 700; color: #17995c; }
.vd-case__panel--against li::before { content: "–"; position: absolute; left: 2px; top: -1px; font-weight: 700; color: var(--muted); }

.vd-story { padding: 56px 0; }
.vd-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.6vw, 64px); align-items: center; }
.vd-story__copy .section__title { margin-top: 14px; }
.vd-story__copy p { margin-top: 18px; font-size: 15.5px; line-height: 1.8; color: var(--text-2); max-width: 54ch; }
.vd-story__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tile);
  box-shadow: var(--sh-sm);
}
.vd-story__media img { width: 100%; height: 100%; object-fit: cover; }

.vd-trims { padding: 56px 0; }
.vd-trims__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.trim {
  position: relative;
  height: 100%;
  padding: 28px 26px 32px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.trim:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.trim--reco { border-color: var(--navy); }
.trim__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 6px 13px;
  border-radius: var(--pill);
  background: var(--navy);
  color: #fff;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trim__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.trim__head h3 { font-size: 18px; font-weight: 680; letter-spacing: -0.015em; color: var(--ink); }
.trim__price { font-size: 15.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.trim__tagline { margin-top: 8px; font-size: 12px; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.trim__desc { margin-top: 10px; font-size: 13.5px; line-height: 1.65; color: var(--text-2); }

.vd-reco {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 48px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--r-xl);
  background: var(--navy);
  color: var(--on-navy);
}
.vd-reco__copy .kicker { color: var(--on-navy-sub); margin-bottom: 18px; }
.vd-reco__copy .kicker::before { background: #fff; }
.vd-reco__copy .brandsp__section-title, .vd-reco__copy h2 { color: #fff; }
.vd-reco__copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.vd-reco__copy li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.65; color: var(--on-navy-sub); }
.vd-reco__copy li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 700; color: #7d96ff; }
.vd-reco__media { display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10; border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.06); }
.vd-reco__media img { max-width: 88%; max-height: 84%; object-fit: contain; filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.4)); }

.vd-specs { padding: 56px 0; }
.vd-specs__scroll { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--sh-sm); }
.vd-specs__table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 680px; }
.vd-specs__table th, .vd-specs__table td { padding: 15px 20px; 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: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.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(--canvas); }

.vd-costs { padding: 56px 0; }
.vd-costs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.cost { height: 100%; padding: 26px 26px 30px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.cost__item { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.cost__values { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.cost__values > span { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.cost__values strong { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.cost__values em { font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--muted); }
.vd-costs__note { margin-top: 22px; font-size: 12.5px; color: var(--muted); }

.vd-review { padding: 56px 0; }
.vd-review__medal { display: flex; align-items: baseline; gap: 12px; margin: -20px 0 40px; }
.vd-review__medal strong { font-size: 58px; font-weight: 760; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.vd-review__medal span { font-size: 14px; color: var(--text-2); max-width: 60ch; }
.vd-review__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.aspect { height: 100%; padding: 28px 26px 32px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.aspect__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.aspect__head h3 { font-size: 17px; font-weight: 660; letter-spacing: -0.015em; color: var(--ink); }
.aspect__score { font-size: 15px; font-weight: 720; color: var(--ink); }
.rating-bar { display: block; height: 4px; border-radius: 2px; background: var(--line); margin: 16px 0; overflow: hidden; }
.rating-bar > span { display: block; height: 100%; border-radius: 2px; background: var(--navy); }
.aspect__sub { font-size: 12px; font-weight: 650; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-2); }
.aspect__desc { margin-top: 8px; font-size: 13.5px; line-height: 1.65; color: var(--text-2); }

.vd-new { padding: 56px 0; }
.vd-new__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.6vw, 64px); align-items: center; }
.vd-new__points { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 0; }
.vd-new__points li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid var(--line-2); font-size: 15px; line-height: 1.65; color: var(--text-2); }
.vd-new__points li:last-child { border-bottom: 1px solid var(--line-2); }
.vd-new__points li::before { content: ""; position: absolute; left: 2px; top: 21px; width: 7px; height: 7px; border-radius: 50%; background: var(--navy); }
.vd-new__media {
  border-radius: var(--r-xl);
  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 { padding: 56px 0; }
.vd-compare__models { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 36px; }
.rival { height: 100%; padding: 22px 20px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); text-align: center; }
.rival img { max-width: 76%; max-height: 84px; object-fit: contain; margin: 0 auto 12px; }
.rival span { font-size: 14px; font-weight: 620; letter-spacing: -0.01em; color: var(--ink); }

.vd-faq { padding: 56px 0 90px; }
.vd-faq__grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 52px; align-items: start; }

/* dark navy CTA band shared by inner pages */
.vd-cta { padding: 20px 0 110px; }
.vd-cta__inner {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(48px, 6.6vw, 88px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vd-cta__inner::before { content: none; }
.vd-cta__inner > * { position: relative; z-index: 1; }
.vd-cta__inner .kicker { justify-content: center; color: var(--on-navy-sub); }
.vd-cta__inner .kicker::before { background: #fff; }
.vd-cta .feature__title {
  margin-top: 20px;
  max-width: 20ch;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 680;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.vd-cta .feature__title em { font-style: italic; font-weight: 560; }
.vd-cta .feature__cta { margin-top: 32px; }
.vd-cta .btn--dark { background: #fff; color: var(--ink); }
.vd-cta .btn--dark:hover { background: var(--canvas); }

/* ---------- Loading / empty states ---------- */

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  :root { --gutter: 36px; }
  .cars__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .hero__card { min-height: 66vh; }
  .steps__grid, .why__grid, .model__grid { grid-template-columns: 1fr; }
  .steps__media, .why__media { order: -1; max-width: 640px; }
  .article__layout { grid-template-columns: 1fr; gap: 44px; }
  .article__side--left { display: none; }
  .article__side--right { position: static; }
  .article__hero-inner, .vd-hero__inner, .vd-story__grid, .vd-new__grid, .vd-faq__grid,
  .bd-about__grid, .vd-reco { grid-template-columns: 1fr; }
  .vd-case__grid { grid-template-columns: 1fr; }
  .blog__grid, .lineup__grid, .bd-voices__grid, .spot { grid-template-columns: repeat(2, 1fr); }
  .bd-high__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__steps, .about__values { grid-template-columns: 1fr; }
  .mq { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  :root { --gutter: 24px; }
  .section { padding: 72px 0; }
  .nav__inner { grid-template-columns: 1fr auto; height: 70px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding-top: 88px; }
  .hero__card { min-height: 74vh; border-radius: var(--r-lg); }
  .hero__content { gap: 20px; }
  .hero__feature { top: auto; bottom: calc(100% - 0px); display: none; }
  .hero__title { font-size: clamp(34px, 9.6vw, 46px); }
  .hero__sub { font-size: 14.5px; }

  .finder { margin-top: 20px; }
  .sw { flex-wrap: wrap; border-radius: var(--r-lg); padding: 12px; }
  .sw__field { flex: 1 1 100%; padding: 12px 14px; border-radius: var(--r-sm); }
  .sw__field + .sw__field { border-left: 0; border-top: 1px solid var(--line); border-radius: var(--r-sm); }
  .sw__go { width: 100%; justify-content: center; margin-top: 4px; }

  .cars__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .car-tile__name { font-size: 14.5px; }

  .model__thumbs { flex-wrap: wrap; }
  .closing__card { border-radius: var(--r-lg); }

  .footer { padding-top: 64px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__legal { flex-direction: column; align-items: flex-start; }

  .phero { padding: 128px 0 48px; }
  .blog__grid, .lineup__grid, .bd-voices__grid, .bd-high__grid, .spot { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vd-review__medal strong { font-size: 44px; }
  .cars__bar, .arrivals__bar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .about__stats { grid-template-columns: 1fr; }
  .cars__grid { grid-template-columns: 1fr 1fr; }
  .footer__wordmark { font-size: clamp(36px, 12vw, 52px); }
}

/* ==========================================================================
   Photo-card heroes for inner pages (match homepage language)
   ========================================================================== */

.bhero { padding: 102px 0 0; }
.bhero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--tile);
  box-shadow: var(--sh-lg);
  isolation: isolate;
}
.bhero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bhero__png {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: min(560px, 50%);
  filter: drop-shadow(0 26px 30px rgba(16, 20, 40, 0.22));
}
.bhero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(80deg, rgba(7, 9, 16, 0.86) 0%, rgba(7, 9, 16, 0.58) 32%, rgba(7, 9, 16, 0.2) 58%, transparent 76%),
    linear-gradient(0deg, rgba(7, 9, 16, 0.78) 0%, rgba(7, 9, 16, 0.24) 38%, transparent 60%);
  pointer-events: none;
}
.bhero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
}
.bhero__brandchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 7px;
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  font-size: 13.5px;
  font-weight: 650;
}
.bhero__brandchip img { width: 30px; height: 30px; object-fit: contain; background: var(--tile); border-radius: 50%; padding: 5px; }
.bhero__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5);
}
.bhero__sub { max-width: 46ch; font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55); }
.bhero__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.bhero__cta { margin-top: 10px; }

/* tile variant — no photo available: ink text on lavender tile */
.bhero__card--tile { background: linear-gradient(155deg, #f0f0f0 0%, #f7f7f7 100%); }
.bhero__card--tile .bhero__shade { display: none; }
.bhero__card--tile .bhero__content { color: var(--ink); }
.bhero__card--tile .bhero__title, .bhero__card--tile .bhero__sub { text-shadow: none; }
.bhero__card--tile .bhero__sub { color: var(--text-2); }
.bhero__card--tile .bhero__brandchip { border: 1px solid var(--line); }

/* photo variant of the simple page hero (about) */
.phero--photo { padding: 102px 0 0; }
.phero--photo .phero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sh-lg);
}
.phero--photo .phero__card img.phero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero--photo .phero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(80deg, rgba(7, 9, 16, 0.84) 0%, rgba(7, 9, 16, 0.5) 36%, rgba(7, 9, 16, 0.12) 62%, transparent 78%),
    linear-gradient(0deg, rgba(7, 9, 16, 0.72) 0%, transparent 52%);
}
.phero--photo .phero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
}
.phero--photo .phero__content .kicker { color: rgba(255, 255, 255, 0.85); }
.phero--photo .phero__content .kicker::before { background: #fff; }
.phero--photo .phero__title { color: #fff; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5); }
.phero--photo .phero__sub { color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5); }

/* vehicle hero — configurator-style (stage left, panel right) */
.vd-hero__inner { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.vd-hero__cta { display: flex; align-items: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* brand lineup uses homepage car tiles; year chip inside tile */
.car-tile__year { font-size: 11.5px; font-weight: 600; color: var(--muted); margin-left: 6px; }

@media (max-width: 760px) {
  .bhero__card { min-height: 420px; border-radius: var(--r-lg); }
  .bhero__png { width: 70%; right: 8%; top: 12%; bottom: auto; }
  .phero--photo .phero__card { min-height: 400px; border-radius: var(--r-lg); }
}

/* ==========================================================================
   Editorial layer — photography-forward, sharp corners, thin borders
   ========================================================================== */

/* thin borders on every stage/tile so sharp surfaces read intentional */
.car-tile__media, .model__stage, .vd-hero__stage, .vd-new__media,
.lineup__media, .spot__media, .steps__media, .why__media,
.vd-story__media, .article__hero-media, .post-card__media { border: 1px solid var(--line); }

/* ---------- Blog cards with real photography ---------- */

.post-card__media { aspect-ratio: 3 / 2; background: var(--tile); }
.post-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.post-card:hover .post-card__media > img { transform: scale(1.04); }

/* featured lead article */
.post-lead { margin-bottom: 64px; }
.post-lead a {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
}
.post-lead__media { position: relative; overflow: hidden; min-height: 380px; border-right: 1px solid var(--line); }
.post-lead__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s 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(28px, 4vw, 56px); }
.post-lead__body .post-card__meta { margin-bottom: 12px; }
.post-lead__title { font-size: clamp(24px, 2.6vw, 36px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; color: var(--ink); transition: color 0.25s var(--ease); }
.post-lead a:hover .post-lead__title { color: var(--navy-2); }
.post-lead__excerpt { margin-top: 14px; font-size: 15px; line-height: 1.7; color: var(--text-2); }
.post-lead__body .post-card__more { margin-top: 22px; }

/* trending thumbs become photos */
.trending__thumb { overflow: hidden; padding: 0; border: 1px solid var(--line); }
.trending__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* article cover — full editorial width under the hero text */
.article__hero-media { aspect-ratio: auto; }
.article__hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Brands page — photography spotlight cards ---------- */

.spotcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.spotcard {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.spotcard__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.spotcard:hover .spotcard__bg { transform: scale(1.04); }
.spotcard__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 9, 14, 0.82) 0%, rgba(7, 9, 14, 0.28) 46%, rgba(7, 9, 14, 0.05) 70%);
  pointer-events: none;
}
.spotcard__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px 28px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.spotcard__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 650;
}
.spotcard__chip img { width: 26px; height: 26px; object-fit: contain; background: var(--tile); border-radius: 50%; padding: 4px; }
.spotcard__title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; text-shadow: 0 1px 18px rgba(0,0,0,.5); max-width: 24ch; }
.spotcard__meta { font-size: 13px; color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.spotcard__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13.5px; font-weight: 620; color: #fff; }
.spotcard__more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.spotcard:hover .spotcard__more svg { transform: translateX(4px); }

/* brand page — secondary showcase photo inside about */
.bd-about__photo { margin-top: 28px; border: 1px solid var(--line); overflow: hidden; }
.bd-about__photo img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

@media (max-width: 1024px) {
  .spotcards { grid-template-columns: 1fr; }
  .spotcard { min-height: 340px; }
  .post-lead a { grid-template-columns: 1fr; }
  .post-lead__media { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ==========================================================================
   Vehicle page v3 — product-page architecture
   ========================================================================== */

/* sticky in-page section nav */
.vd-subnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vd-subnav__row {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.vd-subnav__row::-webkit-scrollbar { display: none; }
.vd-subnav__row a {
  position: relative;
  flex: none;
  padding: 17px 0 15px;
  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(--ink); }
.vd-subnav__name { margin-right: auto; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; padding-right: 20px; }

/* overview — editorial main column + sticky rail */
.vd-ov { padding: 88px 0; }
.vd-ov__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.vd-ov__main .section-head { margin-bottom: 40px; }

.vd-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.vd-list h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.vd-list ul { list-style: none; }
.vd-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  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: 11px; font-size: 16px; font-weight: 600; color: var(--ink); }
.vd-list--minus li::before { content: "–"; position: absolute; left: 2px; top: 11px; font-size: 16px; font-weight: 600; color: var(--muted); }

.vd-who { margin-top: 64px; }
.vd-who h3 { font-size: 22px; font-weight: 680; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }
.vd-who p { font-size: 15.5px; line-height: 1.85; color: var(--text-2); max-width: 68ch; }
.vd-who__photo { margin-top: 28px; border: 1px solid var(--line); overflow: hidden; }
.vd-who__photo img { width: 100%; max-height: 440px; object-fit: cover; display: block; }

.vd-rail { position: sticky; top: 130px; }
.vd-rail__card { background: var(--surface); border: 1px solid var(--line); padding: 28px 28px 30px; }
.vd-rail__card .kicker { margin-bottom: 16px; }
.vd-rail__verdict { font-size: 14px; line-height: 1.75; color: var(--text-2); padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.vd-rail__rows { display: flex; flex-direction: column; }
.vd-rail__row { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.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: 550; color: var(--text); }
.vd-rail__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 16px 0 18px; }
.vd-rail__price span { font-size: 12px; font-weight: 600; color: var(--muted); }
.vd-rail__price strong { font-size: 22px; font-weight: 720; letter-spacing: -0.02em; color: var(--ink); }
.vd-rail__card .btn { width: 100%; }

/* trim picker — list + detail */
.picker {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}
.picker__list { display: flex; flex-direction: column; border-right: 1px solid var(--line); max-height: 560px; overflow-y: auto; }
.picker__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  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(--canvas); }
.picker__row.active { background: var(--navy); }
.picker__row.active .picker__row-name, .picker__row.active .picker__row-price { color: #fff; }
.picker__row.active .picker__row-tag { background: #fff; color: var(--ink); }
.picker__row-name { font-size: 15px; 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; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--ink); color: #fff; }
.picker__row-price { font-size: 14px; font-weight: 620; color: var(--text-2); white-space: nowrap; }
.picker__detail { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; }
.picker__detail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.picker__detail-head h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }
.picker__detail-head strong { font-size: 19px; font-weight: 720; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
.picker__tagline { margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.picker__desc { margin-top: 14px; font-size: 14.5px; line-height: 1.8; color: var(--text-2); }
.picker__points { margin-top: 22px; padding-top: 8px; }
.picker__points h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.picker__points ul { list-style: none; }
.picker__points li { position: relative; padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.6; color: var(--text); }
.picker__points li::before { content: "✓"; position: absolute; left: 0; top: 10px; font-size: 13px; font-weight: 700; color: var(--ink); }

/* ownership costs — spec-sheet rows */
.cost-sheet { border: 1px solid var(--line); background: var(--surface); }
.cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
}
.cost-row:last-child { border-bottom: 0; }
.cost-row__item { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); }
.cost-row__vals { display: flex; gap: 36px; }
.cost-row__vals span { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; min-width: 120px; }
.cost-row__vals strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.cost-row__vals em { font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 1024px) {
  .vd-ov__grid { grid-template-columns: 1fr; }
  .vd-rail { position: static; order: -1; }
  .picker { grid-template-columns: 1fr; }
  .picker__list { border-right: 0; border-bottom: 1px solid var(--line); max-height: 320px; }
}
@media (max-width: 760px) {
  .vd-lists { grid-template-columns: 1fr; gap: 28px; }
  .vd-subnav__name { display: none; }
  .vd-subnav__row { gap: 22px; }
  .cost-row { grid-template-columns: 1fr; align-items: start; }
  .cost-row__vals { width: 100%; justify-content: space-between; gap: 16px; }
  .cost-row__vals span { align-items: flex-start; min-width: 0; }
}

/* text-free hero slider: lighter scrim, controls bottom-right */
.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; }
.hero__shade {
  background: linear-gradient(0deg, rgba(7, 9, 16, 0.55) 0%, rgba(7, 9, 16, 0.12) 26%, transparent 46%);
}
.hero__row { justify-content: flex-end; }

/* featured pill lives in the bottom row, opposite the slider arrows */
.hero__feature { position: static; top: auto; right: auto; }
.hero__row { justify-content: space-between; align-items: center; }
@media (max-width: 760px) {
  .hero__feature { display: inline-flex; padding: 10px 14px; }
  .hero__feature strong { font-size: 12.5px; }
  .hero__feature em { font-size: 11.5px; }
  .hero__row { flex-wrap: wrap; gap: 14px; }
}

/* ==========================================================================
   Hero v3 — featured-vehicle showcase (info column + staged cutout)
   ========================================================================== */

.hero__card--product {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  min-height: min(66vh, 620px);
  background: linear-gradient(160deg, #f3f3f3 0%, #fbfbfb 56%, #efefef 100%);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  isolation: auto;
  overflow: visible;
}
.hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(28px, 4.4vw, 64px);
}
.hero__name {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero__price2 { font-size: 14px; color: var(--muted); }
.hero__price2 strong { display: block; margin-top: 2px; font-size: 22px; font-weight: 720; letter-spacing: -0.02em; color: var(--ink); }
.hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__inds { display: flex; gap: 20px; margin-top: 26px; }
.hind {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  width: 52px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.hind i { display: block; height: 2px; background: var(--line-2); position: relative; overflow: hidden; }
.hind i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.hind.active { color: var(--ink); }
.hind.active i::after { transform: scaleX(1); transition: transform 6.5s linear; }
@media (prefers-reduced-motion: reduce) { .hind.active i::after { transition: none; } }

.hero__visual { position: relative; min-height: 420px; border-left: 1px solid var(--line); overflow: hidden; }
.hero__slides2 { position: absolute; inset: 0; }
.hero__vcar {
  position: absolute;
  inset: 10% 6% 16%;
  width: 88%;
  height: 74%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 30px rgba(16, 20, 40, 0.18));
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.8s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
.hero__vcar.active { opacity: 1; transform: translateX(0); }
.hero__floor {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 13%;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 50%, rgba(16, 20, 40, 0.2), transparent 72%);
  filter: blur(8px);
}
.hero__nav2 { position: absolute; right: 24px; bottom: 20px; display: flex; align-items: center; gap: 14px; }
.hero__count2 { font-size: 13px; font-weight: 650; letter-spacing: 0.04em; color: var(--ink); }
.hero__count2 span { color: var(--muted); }

/* entrance */
html.js .hero__info > * { opacity: 0; transform: translateY(20px); }
html.ready .hero__info > *:nth-child(1) { animation: rise 0.8s var(--ease-out) 0.05s forwards; }
html.ready .hero__info > *:nth-child(2) { animation: rise 0.9s var(--ease-out) 0.14s forwards; }
html.ready .hero__info > *:nth-child(3) { animation: rise 0.9s var(--ease-out) 0.24s forwards; }
html.ready .hero__info > *:nth-child(4) { animation: rise 0.9s var(--ease-out) 0.34s forwards; }
html.ready .hero__info > *:nth-child(5) { animation: rise 0.9s var(--ease-out) 0.44s forwards; }
@media (prefers-reduced-motion: reduce) {
  html.js .hero__info > * { opacity: 1; transform: none; animation: none !important; }
  .hero__vcar { transition: opacity 0.3s; transform: none; }
}

@media (max-width: 1024px) {
  .hero__card--product { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero__info { padding: 28px 28px 36px; }
}
@media (max-width: 760px) {
  .hero__visual { min-height: 240px; }
  .hero__vcar { inset: 8% 4% 18%; width: 92%; height: 74%; }
  .hero__name { font-size: clamp(26px, 7.4vw, 34px); }
  .hero__inds { margin-top: 18px; }
}

/* ==========================================================================
   Hero v3.1 — unified stage composition
   ========================================================================== */

.hero__card--product {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  min-height: 560px;
  background:
    radial-gradient(80% 90% at 78% 40%, rgba(16, 20, 40, 0.05), transparent 62%),
    linear-gradient(150deg, #f9f9f9 0%, #eeeeee 100%);
  box-shadow: var(--sh-lg);
}
.hero__info { gap: 14px; padding: clamp(28px, 4vw, 60px) clamp(20px, 2.6vw, 40px) clamp(28px, 4vw, 60px) clamp(28px, 4.4vw, 64px); }
.hero__name { font-size: clamp(30px, 3.4vw, 52px); line-height: 1.04; }
.hero__price2 { display: flex; align-items: baseline; gap: 10px; }
.hero__price2 strong { display: inline; margin: 0; }

.hero__visual { border-left: 0; overflow: hidden; }
.hero__ghost2 {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 10vw, 170px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(16, 20, 40, 0.08);
  user-select: none;
  pointer-events: none;
}
.hero__visual::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 15.5%;
  height: 1px;
  background: var(--line-2);
}
.hero__vcar {
  inset: 10% 3% 15%;
  width: 94%;
  height: 75%;
  z-index: 1;
}
.hero__floor { z-index: 1; left: 16%; right: 16%; bottom: 13.5%; height: 18px; }

@media (max-width: 1024px) {
  .hero__card--product { min-height: 0; }
  .hero__visual { border-bottom: 1px solid var(--line); }
  .hero__ghost2 { font-size: clamp(60px, 14vw, 110px); }
}

/* ==========================================================================
   Hero v4 — clean photo slider + caption bar (no text on photos)
   ========================================================================== */

.hero__card--photos {
  display: block;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero__frame2 { position: relative; height: min(62vh, 600px); min-height: 380px; overflow: hidden; }
.hero__frame2 .hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease-out); }
.hero__frame2 .hero__slide.active { opacity: 1; }
.hero__frame2 .hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s linear;
}
.hero__frame2 .hero__slide.active img { transform: scale(1); }

.hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 2.6vw, 32px) 18px clamp(20px, 2.6vw, 32px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  flex-wrap: wrap;
}
.hero__featured { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero__featured-label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.hero__featured-line { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hero__featured-line strong { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.25s var(--ease); }
.hero__featured:hover .hero__featured-line strong { color: var(--navy-2); }
.hero__featured-line i { width: 1px; height: 16px; background: var(--line-2); flex: none; }
.hero__featured-line em { font-style: normal; font-size: 14px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.hero__featured-line svg { width: 16px; height: 16px; color: var(--ink); flex: none; transition: transform 0.3s var(--ease); }
.hero__featured:hover .hero__featured-line svg { transform: translateX(4px); }

.hero__controls { display: flex; align-items: center; gap: 18px; }
.hero__controls .hero__inds { margin: 0; gap: 14px; }
.hero__controls .hind { width: 40px; }

@media (max-width: 760px) {
  .hero__frame2 { height: 46vh; min-height: 300px; }
  .hero__bar { padding: 16px 18px; }
  .hero__featured { width: 100%; }
  .hero__controls { width: 100%; justify-content: space-between; }
}

/* search sits below the caption-bar hero, no overlap */
.finder { margin-top: 28px; }
@media (max-width: 760px) { .finder { margin-top: 18px; } }

/* ==========================================================================
   Hero v5 — split editorial slider: photo left, white panel right
   ========================================================================== */

.hero__card--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
  min-height: min(64vh, 620px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero__photo { position: relative; overflow: hidden; }
.hero__photo .hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease-out); }
.hero__photo .hero__slide.active { opacity: 1; }
.hero__photo .hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s linear;
}
.hero__photo .hero__slide.active img { transform: scale(1); }

.hero__panel3 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
  padding: clamp(24px, 2.6vw, 40px);
  overflow: hidden;
}
.hero__panel3-index {
  position: absolute;
  top: -14px;
  right: 10px;
  font-size: clamp(96px, 9vw, 150px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2);
  user-select: none;
  pointer-events: none;
}
.hero__panel3-body { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__panel3-name {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.hero__panel3-price { font-size: 15px; font-weight: 600; color: var(--text-2); }
.hero__panel3-body .btn { margin-top: 10px; }
.hero__panel3-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero__panel3-foot .hero__inds { margin: 0; gap: 16px; }
.hero__panel3-foot .hind { width: 44px; }
.hero__panel3-navrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; }

@media (max-width: 1024px) {
  .hero__card--split { grid-template-columns: 1fr; min-height: 0; }
  .hero__photo { height: 44vh; min-height: 300px; }
  .hero__panel3 { border-left: 0; border-top: 1px solid var(--line); }
  .hero__panel3-foot { margin-top: 26px; }
}

/* split card: stretch cells, fill card height (base .hero__card sets flex-end) */
.hero__card--split { align-items: stretch; grid-template-rows: 1fr; }

/* 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}

/* ==========================================================================
   Hero redesign — editorial split (bold headline + cinematic showcase)
   ========================================================================== */
.thero {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: clamp(32px, 4vw, 68px);
  align-items: stretch;
  min-height: min(74vh, 660px);
}
.thero__lead { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(4px, 1vh, 16px) 0 4px; }
.thero__eyebrow { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.thero__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--ink); }
.thero__title { margin-top: clamp(18px, 3vh, 30px); font-size: clamp(40px, 5.1vw, 74px); font-weight: 780; line-height: 1.0; letter-spacing: -0.038em; color: var(--ink); }
.thero__title em { font-style: italic; font-weight: 600; color: var(--text-2); }
.thero__sub { margin-top: clamp(16px, 2.2vh, 24px); max-width: 42ch; font-size: 16px; line-height: 1.7; color: var(--text-2); }

.thero__stage { position: relative; overflow: hidden; background: var(--tile); box-shadow: var(--sh-lg); border-radius: var(--r-lg); }
.thero__photo { position: absolute; inset: 0; }

/* slideshow controls, overlaid on the image */
.thero__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: 18px;
  padding: clamp(16px, 2vw, 26px);
  background: linear-gradient(0deg, rgba(7,9,16,0.55) 0%, rgba(7,9,16,0) 100%);
}
.thero__count { font-size: 13px; font-weight: 650; letter-spacing: 0.03em; color: #fff; white-space: nowrap; }
.thero__count span { color: rgba(255,255,255,0.6); }
.thero__inds { display: flex; gap: 12px; flex: 1; }
.thero__inds .hind { flex: 1; max-width: 54px; }
.thero__nav { display: flex; gap: 10px; }
.thero__overlay .circle-btn { width: 42px; height: 42px; backdrop-filter: blur(6px); background: rgba(255,255,255,0.12); }
.thero__overlay .hind { color: rgba(255,255,255,0.65); }
.thero__overlay .hind i { background: rgba(255,255,255,0.32); }
.thero__overlay .hind i::after { background: #fff; }
.thero__overlay .hind.active { color: #fff; }
.thero__photo .hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease-out); }
.thero__photo .hero__slide.active { opacity: 1; }
.thero__photo .hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6.5s linear; }
.thero__photo .hero__slide.active img { transform: scale(1); }
.thero__stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,16,0.16) 0%, transparent 26%, transparent 70%, rgba(7,9,16,0.14) 100%); pointer-events: none; }
.thero__index { position: absolute; top: clamp(12px, 1.8vw, 26px); right: clamp(16px, 2.2vw, 32px); z-index: 2; font-size: clamp(72px, 9vw, 140px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.9); pointer-events: none; }

@media (prefers-reduced-motion: reduce) { .thero__photo .hero__slide img { transform: none; transition: none; } }

@media (max-width: 860px) {
  .thero { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .thero__lead, .thero__stage { min-width: 0; }
  .thero__stage { order: -1; min-height: 300px; height: 42vh; }
  .thero__lead { padding-top: 28px; }
  .thero__sub { max-width: 100%; }
  .thero__inds { flex-wrap: wrap; }
}
/* ==========================================================================
   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::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:not(.fw--hero) { flex-direction: column; max-width: 460px; padding: 8px; } .fw:not(.fw--hero) .fw__field { border-left: 0; border-top: 1px solid #ececec; padding: 12px 16px; } .fw:not(.fw--hero) .fw__field:first-child { border-top: 0; } .fw:not(.fw--hero) .fw__go { width: 100%; justify-content: center; margin: 8px 0 0; padding: 15px; } }

/* Hero finder — compact card living inside the right column */
.fw--hero { margin: clamp(28px, 4vh, 44px) 0 0; max-width: 100%; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; border-radius: 22px; box-shadow: 0 20px 56px rgba(15, 18, 30, 0.14); }
.fw--hero .fw__grid { display: grid; grid-template-columns: 1fr 1fr; }
.fw--hero .fw__field { border-left: 0; padding: 12px 16px; border-radius: 12px; transition: background 0.2s ease; }
.fw--hero .fw__field:hover { background: #f7f7f9; }
.fw--hero .fw__field:nth-child(2), .fw--hero .fw__field:nth-child(4) { border-left: 1px solid #ececec; }
.fw--hero .fw__field:nth-child(3), .fw--hero .fw__field:nth-child(4) { border-top: 1px solid #ececec; }
.fw--hero .fw__go { margin: 8px 0 0; width: 100%; justify-content: center; padding: 16px; border-radius: 14px; }
