/* ==========================================================================
   GEARHEAD.CULTURE — Editorial Performance system (rebuild)
   Light editorial body · dark cinematic hero + featured slab + CTA ·
   confident display type · full-bleed premium photography.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f5f5f2;
  --panel: #efefeb;
  --ink: #0f1013;
  --text: #34353b;
  --text-2: #71727a;
  --muted: #9c9ca3;
  --line: #e7e7e2;
  --line-2: #d8d8d2;
  --dark: #0a0b0d;
  --dark-2: #101216;
  --on-dark: rgba(255, 255, 255, 0.62);
  --line-d: rgba(255, 255, 255, 0.13);

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

  --container: 1320px;
  --gutter: 44px;
  --section: clamp(96px, 12vh, 160px);
  --r-xl: 32px;
  --r: 20px;
  --r-sm: 13px;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sh: 0 30px 70px rgba(10, 11, 13, 0.13);
}

* { 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: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- shared type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--center { justify-content: center; }

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

/* ---------- buttons ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 9px 9px 24px;
  border-radius: var(--pill);
  background: var(--dark); color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pill__i { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--ink); flex: none; transition: transform 0.35s var(--ease); }
.pill__i svg { width: 14px; height: 14px; }
.pill:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.pill:hover .pill__i { transform: translateX(3px); }
.pill--white { background: #fff; color: var(--ink); }
.pill--white .pill__i { background: var(--dark); color: #fff; }
.pill--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.pill--ghost .pill__i { background: var(--dark); color: #fff; }

.circle-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-d); color: #fff;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.circle-btn svg { width: 17px; height: 17px; }
.circle-btn:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ==========================================================================
   Nav — caps links split around centered wordmark, over hero
   ========================================================================== */
.nav { position: absolute; inset: 0 0 auto 0; z-index: 100; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 92px; color: #fff; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links--right { justify-content: flex-end; }
.nav__links a { position: relative; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); transition: color 0.25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__logo { font-size: 15px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; }
.nav__burger span { width: 16px; height: 1.5px; background: #fff; border-radius: 1px; transition: transform 0.35s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }
.nav__mobile { position: fixed; inset: 0; z-index: 99; background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: 0 36px; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0s 0.35s; }
.nav.open .nav__mobile { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity 0.35s var(--ease); }
.nav__mobile a { padding: 18px 0; font-size: clamp(28px, 8vw, 44px); font-weight: 700; letter-spacing: -0.02em; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.12); }

/* ==========================================================================
   Hero — dark studio spotlight, headline, big grounded car, spec bar
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  isolation: isolate;
  background: #0a0b0d;
  padding: clamp(92px, 12vh, 132px) 24px clamp(36px, 5vh, 64px);
}
.hero__spot {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(56% 52% at 50% 30%, #3a3d45 0%, #24262c 33%, #14161a 64%, #0a0b0d 100%),
    #0a0b0d;
}
.hero__spot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)); }

/* colossal watermark behind the composition */
.hero__ghost {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  z-index: 0; white-space: nowrap; pointer-events: none; user-select: none;
  font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -0.045em;
  font-size: clamp(140px, 27vw, 440px);
  color: rgba(255, 255, 255, 0.038);
}

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

.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1220px; display: flex; flex-direction: column; align-items: center; text-align: center; color: #fff; }
.hero__eyebrow { display: inline-block; margin-bottom: clamp(12px, 2.2vh, 26px); font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }

/* stacked headline with the car sandwiched between the two lines */
.hero__stack { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero__word {
  position: relative; z-index: 1; display: block;
  font-weight: 900; text-transform: uppercase; line-height: 0.84; letter-spacing: -0.045em;
  font-size: clamp(40px, 8.8vw, 120px);
}
.hero__word--bot em { font-style: italic; font-weight: 900; color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,0.72); }

.hero__stage { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center; margin: clamp(-22px, -2.6vw, -50px) 0; pointer-events: none; }
.hero__car {
  position: relative; z-index: 2;
  width: min(680px, 60vw);
  height: auto;
  max-height: min(34vh, 330px);
  object-fit: contain;
  filter: drop-shadow(0 44px 46px rgba(0, 0, 0, 0.66));
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity 0.8s var(--ease), transform 1.1s var(--ease);
}
.hero__car.in { opacity: 1; transform: none; }
.hero__floor { position: absolute; z-index: -1; left: 50%; bottom: 8%; transform: translateX(-50%); width: min(680px, 60vw); height: 44px; border-radius: 50%; background: radial-gradient(50% 100% at 50% 50%, rgba(0, 0, 0, 0.66), transparent 72%); filter: blur(16px); }

/* side annotation labels */
.hero__note {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; align-items: center; gap: 14px; max-width: 190px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.55; color: rgba(255, 255, 255, 0.5);
}
.hero__note i { flex: none; width: 40px; height: 1px; background: rgba(255, 255, 255, 0.28); }
.hero__note b { color: #fff; font-weight: 800; }
.hero__note--l { left: 0; text-align: left; }
.hero__note--r { right: 0; text-align: right; }

.hero__cta { display: flex; flex-direction: column; align-items: center; gap: clamp(16px, 3vh, 26px); margin-top: clamp(18px, 3.6vh, 44px); }
.hero__sub { max-width: 52ch; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.7; color: rgba(255, 255, 255, 0.6); }

/* hide side notes when there isn't room */
@media (max-width: 1120px) { .hero__note { display: none; } }

/* short desktops: keep the whole composition on screen */
@media (min-width: 721px) and (max-height: 900px) {
  .hero { padding-top: clamp(84px, 11vh, 128px); }
  .hero__car { max-height: min(38vh, 380px); }
  .hero__stage { margin: clamp(-26px, -3vw, -60px) 0; }
  .hero__ghost { font-size: clamp(140px, 24vw, 380px); }
}

html.js .hero__eyebrow, html.js .hero__word, html.js .hero__cta { opacity: 0; transform: translateY(22px); }
html.ready .hero__eyebrow { animation: rise 0.9s var(--ease) 0.08s forwards; }
html.ready .hero__word--top { animation: rise 1s var(--ease) 0.2s forwards; }
html.ready .hero__word--bot { animation: rise 1s var(--ease) 0.3s forwards; }
html.ready .hero__cta { animation: rise 0.9s var(--ease) 0.46s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { html.js .hero__eyebrow, html.js .hero__word, html.js .hero__cta { opacity: 1; transform: none; animation: none; } }

/* ==========================================================================
   Marquee — slim brand ticker
   ========================================================================== */
.marquee { overflow: hidden; padding: 30px 0; border-bottom: 1px solid var(--line); }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); padding: 0 34px; }
.marquee__item::after { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); margin-left: 34px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ==========================================================================
   Featured — heading + tabs + dark cinematic slab
   ========================================================================== */
.feature { padding: var(--section) 0 0; }
.feature__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.feature__title { margin-top: 18px; font-size: clamp(32px, 4.6vw, 60px); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; color: var(--ink); }
.feature__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.rtab { padding: 9px 20px; border-radius: var(--pill); border: 1px solid var(--line-2); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-2); transition: all 0.25s var(--ease); }
.rtab:hover { border-color: var(--ink); color: var(--ink); }
.rtab.active { background: var(--dark); border-color: var(--dark); color: #fff; }

.slab {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--dark);
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px) clamp(24px, 4vw, 60px) clamp(22px, 2.6vw, 34px);
  isolation: isolate;
}
.slab::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(70% 60% at 50% 34%, #191b20 0%, #101216 46%, #0a0b0d 100%); }
.slab__ghost {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  z-index: 0;
  font-size: clamp(150px, 26vw, 380px);
  font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase;
  line-height: 1; white-space: nowrap;
  color: rgba(255, 255, 255, 0.045);
  user-select: none; pointer-events: none;
}
.slab__top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.slab__marque { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.slab__name { margin-top: 8px; font-size: clamp(26px, 3.4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; }
.slab__price { text-align: right; }
.slab__price-l { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.slab__price-v { display: block; margin-top: 6px; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; letter-spacing: -0.02em; color: #fff; }

.slab__stage { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: clamp(170px, 19vw, 250px); margin: clamp(2px, 0.8vw, 8px) 0; }
.slab__stage::after { content: ""; position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%); width: min(560px, 70%); height: 40px; border-radius: 50%; background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,0.55), transparent 72%); filter: blur(16px); }
.slab__car {
  position: relative; z-index: 1;
  max-width: min(760px, 78%); max-height: clamp(240px, 27vw, 340px);
  object-fit: contain;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.55));
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}
.slab__car.in { opacity: 1; transform: none; }
.slab__nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); }
.slab__nav--l { left: clamp(4px, 1.5vw, 20px); }
.slab__nav--r { right: clamp(4px, 1.5vw, 20px); }

.slab__foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: clamp(20px, 2.4vw, 30px); border-top: 1px solid var(--line-d); }
.slab__specs { display: flex; flex-wrap: wrap; }
.sspec { padding: 0 clamp(20px, 2.6vw, 40px); border-left: 1px solid var(--line-d); }
.sspec:first-child { border-left: 0; padding-left: 0; }
.sspec__l { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.sspec__v { margin-top: 6px; font-size: clamp(17px, 1.8vw, 22px); font-weight: 700; letter-spacing: -0.02em; color: #fff; white-space: nowrap; }

/* ==========================================================================
   Statement — two-tone, big
   ========================================================================== */
.statement { padding: var(--section) 0 0; }
.statement__inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.statement p {
  margin: 20px auto 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700; line-height: 1.16; letter-spacing: -0.035em;
  color: var(--ink);
}
.statement p span { color: var(--muted); }

/* ==========================================================================
   Editorial gallery — big cinematic image + caption + support
   ========================================================================== */
.gallery { padding: var(--section) 0 0; }
.gallery__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
.gallery__main { position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px; }
.gallery__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery__main:hover img { transform: scale(1.04); }
.gallery__main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,9,11,0.82)); }
.gallery__tag { position: absolute; z-index: 2; left: 26px; bottom: 24px; right: 26px; color: #fff; }
.gallery__tag h4 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; letter-spacing: -0.02em; }
.gallery__tag p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 46ch; }
.gallery__side { display: flex; flex-direction: column; gap: 20px; }
.gallery__sm { position: relative; border-radius: var(--r); overflow: hidden; flex: 1 1 0; min-height: 190px; }
.gallery__sm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery__sm:hover img { transform: scale(1.04); }
.gallery__note { border-radius: var(--r); background: var(--bg-2); padding: 26px 26px 28px; }
.gallery__note h4 { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.gallery__note p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--text-2); }

/* ==========================================================================
   Pillars — image-led feature tiles, aligned grid
   ========================================================================== */
.pillars { padding: var(--section) 0 0; }
.pillars__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.pillars__title { margin-top: 18px; font-size: clamp(30px, 4vw, 54px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); }
.pillars__sub { margin-top: 16px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: var(--text-2); }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 22px; }
.ptile__img { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 3.2; }
.ptile__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.ptile:hover .ptile__img img { transform: scale(1.05); }
.ptile__n { position: absolute; z-index: 2; top: 16px; left: 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: #fff; mix-blend-mode: difference; }
.ptile__t { margin-top: 20px; font-size: clamp(18px, 1.8vw, 21px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.ptile__p { margin-top: 10px; font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* ==========================================================================
   Community CTA — cinematic full-bleed, left-anchored
   ========================================================================== */
.community { padding: var(--section) 0 0; }
.community__band { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 560px; display: flex; align-items: center; isolation: isolate; }
.community__band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.community__band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(7,8,10,0.95) 0%, rgba(7,8,10,0.82) 36%, rgba(7,8,10,0.52) 68%, rgba(7,8,10,0.3) 100%); }
.community__content { position: relative; z-index: 2; color: #fff; padding: 48px clamp(28px, 5vw, 72px); max-width: 620px; }
.community__title { margin-top: 18px; font-size: clamp(30px, 4.2vw, 56px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
.community__sub { margin: 18px 0 30px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: rgba(255, 255, 255, 0.78); max-width: 48ch; }
.eyebrow--light { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Footer — black, centered links, cropped ghost word
   ========================================================================== */
.footer { margin-top: var(--section); background: var(--dark); color: #fff; padding: 64px 0 0; border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 40px; border-bottom: 1px solid var(--line-d); }
.footer__logo { font-size: 16px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; color: rgba(255,255,255,0.85); transition: all 0.25s var(--ease); }
.footer__social a:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 15px; height: 15px; }
.footer__nav { display: flex; justify-content: center; gap: 36px; margin-top: 44px; }
.footer__nav a { font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.82); transition: color 0.25s var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 18px; font-size: 11px; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.45); }
.footer__legal a:hover { color: #fff; }
.footer__ghost {
  margin-top: 40px;
  height: clamp(72px, 12vw, 168px);
  overflow: hidden;
  text-align: center;
  font-size: clamp(128px, 21vw, 300px);
  font-weight: 800; letter-spacing: 0.005em; text-transform: uppercase;
  line-height: 0.92; color: #17181c;
  user-select: none; white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .feature__head { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__main { min-height: 340px; }
  .gallery__side { flex-direction: row; }
  .gallery__note { flex: 1; }
  .gallery__sm { flex: 1; min-height: 260px; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; --section: 80px; }
  .nav__inner { height: 74px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: 100svh; border-radius: 0 0 var(--r) var(--r); padding: 116px 20px 52px; }
  .hero__eyebrow { font-size: 9.5px; letter-spacing: 0.16em; max-width: 100%; }
  .hero__word { font-size: clamp(38px, 11.4vw, 96px); letter-spacing: -0.035em; max-width: 100%; }
  .hero__stage { margin: clamp(-14px, -3vw, -36px) 0; }
  .hero__car { width: 88vw; max-height: 32vh; }
  .hero__ghost { font-size: 52vw; }
  .hero__sub { max-width: 100%; }
  .slab__top { flex-direction: column; }
  .slab__price { text-align: left; }
  .slab__foot { flex-direction: column; align-items: flex-start; gap: 22px; }
  .slab__specs { width: 100%; }
  .gallery__side { flex-direction: column; }
  .pillars__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .community__band { min-height: 500px; }
  .community__band::after { background: linear-gradient(0deg, rgba(7,8,10,0.94) 0%, rgba(7,8,10,0.68) 46%, rgba(7,8,10,0.22) 100%); }
  .footer__row { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer__nav { flex-wrap: wrap; gap: 18px 26px; }
}
@media (max-width: 460px) {
  .hero__word { font-size: clamp(30px, 11vw, 52px); }
  .hero__eyebrow { font-size: 9px; letter-spacing: 0.12em; }
}

/* ==========================================================================
   INNER PAGES — shared with the homepage system (dark heroes, Archivo,
   monochrome, image-led tiles). Each page composed distinctly.
   ========================================================================== */

/* ---------- page hero (dark band, nav sits over it) ---------- */
.phero { position: relative; background: #0a0b0d; color: #fff; border-radius: 0 0 var(--r-xl) var(--r-xl); overflow: hidden; isolation: isolate; }
.phero__spot { position: absolute; inset: 0; z-index: 0; background: radial-gradient(64% 60% at 50% 8%, #34363d 0%, #202228 34%, #131519 66%, #0a0b0d 100%), #0a0b0d; }
.phero__ghost { position: absolute; z-index: 0; left: 50%; bottom: -6%; transform: translateX(-50%); font-size: clamp(150px, 30vw, 460px); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; white-space: nowrap; color: rgba(255,255,255,0.045); user-select: none; pointer-events: none; }
.phero__inner { position: relative; z-index: 2; padding: clamp(128px, 16vh, 176px) 0 clamp(52px, 8vh, 88px); }
.phero__title { font-size: clamp(24px, 3.4vw, 48px); font-weight: 900; line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase; }
.phero__sub { max-width: 60ch; margin-top: 22px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: rgba(255,255,255,0.68); }
.phero__meta { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 28px; }
.phero__meta span { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.phero__meta b { color: #fff; }
.phero .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.phero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* article hero — cover photo behind the title box, retaining the rounded shape */
.phero--article .phero__spot { display: none; }
.phero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,11,13,0.62) 0%, rgba(10,11,13,0.42) 42%, rgba(10,11,13,0.55) 72%, rgba(10,11,13,0.86) 100%); }
.phero--article .phero__inner { padding-top: clamp(150px, 22vh, 240px); }

.crumb { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.crumb a { color: rgba(255,255,255,0.5); transition: color 0.25s var(--ease); }
.crumb a:hover { color: #fff; }
.crumb i { font-style: normal; opacity: 0.4; }

/* generic section head */
.sec { padding: var(--section) 0 0; }
.sec-head { max-width: 760px; margin: 0 auto clamp(40px, 6vh, 64px); text-align: center; }
.sec-head--left { margin-left: 0; text-align: left; }
.sec-head__title { margin-top: 14px; font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); }
.sec-head__sub { margin-top: 16px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: var(--text-2); }

/* ---------- brand directory (brands.html) ---------- */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard {
  position: relative; display: block; aspect-ratio: 4 / 3.1;
  border-radius: var(--r); overflow: hidden; isolation: isolate;
  background: var(--dark); box-shadow: 0 1px 2px rgba(10, 11, 13, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.bcard__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.bcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,11,13,0.22) 0%, rgba(10,11,13,0) 34%, rgba(10,11,13,0.45) 66%, rgba(10,11,13,0.82) 100%);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.bcard:hover .bcard__photo { transform: scale(1.06); }
.bcard__logo {
  position: absolute; z-index: 2; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 9px; height: 38px; padding: 0 15px 0 11px;
  border-radius: var(--pill); background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
}
.bcard__logo img { height: 22px; max-width: 44px; width: auto; object-fit: contain; }
.bcard__logo b { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.bcard__body { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: #fff; }
.bcard__name { display: block; font-size: clamp(20px, 2vw, 27px); font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.bcard__count { display: block; margin-top: 9px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.bcard__go {
  position: absolute; z-index: 2; right: 16px; bottom: 16px;
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: #fff; backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.bcard__go svg { width: 15px; height: 15px; }
.bcard:hover .bcard__go { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- vehicle cards (brand.html grid + related) ---------- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vcard { position: relative; display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(10, 11, 13, 0.04); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); }
.vcard:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--line-2); }
.vcard__media { position: relative; aspect-ratio: 16 / 10; background: radial-gradient(78% 88% at 50% 40%, #292b33 0%, #17181c 58%, #0d0e11 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vcard__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04); pointer-events: none; }
.vcard__media img { width: 86%; height: 80%; object-fit: contain; filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.55)); transition: transform 0.6s var(--ease); }
.vcard:hover .vcard__media img { transform: scale(1.07); }
.vcard__body { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px 24px; flex: 1; }
.vcard__name { font-size: 18.5px; font-weight: 750; letter-spacing: -0.02em; color: var(--ink); }
.vcard__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.vcard__price { font-size: 18px; font-weight: 750; letter-spacing: -0.01em; color: var(--ink); }
.vcard__price small { display: block; margin-bottom: 4px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.vcard__go { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--ink); transition: all 0.35s var(--ease); flex: none; }
.vcard__go svg { width: 15px; height: 15px; }
.vcard:hover .vcard__go { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ---------- vehicle detail (vehicle.html) ---------- */
.vhero__stage { position: relative; z-index: 2; margin-top: clamp(-70px, -4vw, -120px); display: flex; align-items: flex-end; justify-content: center; }
.vhero__car { width: min(760px, 80%); max-height: clamp(300px, 40vh, 440px); object-fit: contain; filter: drop-shadow(0 40px 44px rgba(0,0,0,0.6)); opacity: 0; transform: translateY(22px) scale(0.98); transition: opacity 0.8s var(--ease), transform 1s var(--ease); }
.vhero__car.in { opacity: 1; transform: none; }
.vhero__floor { position: absolute; z-index: -1; left: 50%; bottom: 6px; transform: translateX(-50%); width: min(620px, 66%); height: 44px; border-radius: 50%; background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,0.6), transparent 72%); filter: blur(15px); }

.vd { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
.vd-verdict { border-radius: var(--r); background: var(--dark); color: #fff; padding: clamp(28px, 3.4vw, 44px); }
.vd-verdict h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.vd-verdict p { margin-top: 14px; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; color: #fff; }
.vd-tags { display: flex; flex-direction: column; gap: 14px; }
.vd-tag { border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-2); padding: 22px 24px; }
.vd-tag__l { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.vd-tag__v { margin-top: 8px; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

.proscon { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pcbox { border-radius: var(--r); border: 1px solid var(--line); padding: clamp(26px, 3vw, 38px); }
.pcbox h4 { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.pcbox h4 svg { width: 20px; height: 20px; }
.pcbox ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.pcbox li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.6; color: var(--text); }
.pcbox li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 2px; background: var(--ink); }
.pcbox--pro li::before { background: #1a1a1a; }

.spec { border-radius: var(--r); border: 1px solid var(--line); overflow: hidden; }
.spec__row { display: grid; grid-template-columns: minmax(160px, 1fr) 2fr; gap: 20px; padding: 20px clamp(20px, 3vw, 32px); border-top: 1px solid var(--line); }
.spec__row:first-child { border-top: 0; }
.spec__row:nth-child(even) { background: var(--bg-2); }
.spec__k { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
.spec__v { font-size: 15px; color: var(--ink); }
.spec__v .trim { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }

/* ---------- about ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { padding: clamp(30px, 4vw, 48px) 24px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-size: clamp(34px, 4.4vw, 60px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.steps { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.steps__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3.2; }
.steps__media img { width: 100%; height: 100%; object-fit: cover; }
.steplist { margin-top: 30px; display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; }
.step__n { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--muted); }
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.step p { margin-top: 8px; font-size: 15px; line-height: 1.65; color: var(--text-2); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-2); padding: clamp(28px, 3vw, 40px); }
.value h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.value p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--text-2); }

/* big centered CTA band (light) */
.endcta { padding: var(--section) 0 0; }
.endcta__inner { text-align: center; border-radius: var(--r-xl); background: var(--dark); color: #fff; padding: clamp(56px, 9vw, 108px) 24px; }
.endcta__title { font-size: clamp(32px, 5vw, 66px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
.endcta__sub { max-width: 52ch; margin: 18px auto 32px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.7; color: rgba(255,255,255,0.7); }

/* ---------- prose (legal + article body) ---------- */
.prose-wrap { padding: clamp(60px, 9vh, 104px) 0 0; }
.prose { max-width: 780px; margin: 0 auto; }
.prose__lead { font-size: clamp(19px, 2.1vw, 24px); line-height: 1.55; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 12px; }
.prose h2 { margin-top: 48px; font-size: clamp(23px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.prose h3 { margin-top: 30px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.prose p { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--text); }
.prose ul { margin-top: 16px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.7; color: var(--text); }
.prose li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 12px; height: 2px; background: var(--ink); }
.prose__takeaways { margin: 30px 0; border-radius: var(--r); background: var(--dark); color: #fff; padding: 30px 32px; }
.prose__takeaways h4 { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.prose__takeaways ul { margin-top: 18px; }
.prose__takeaways li { color: rgba(255,255,255,0.82); }
.prose__takeaways li::before { background: rgba(255,255,255,0.6); }
.prose__quote { margin: 30px 0; padding: 6px 0 6px 28px; border-left: 3px solid var(--ink); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.prose__callout { margin: 30px 0; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--bg-2); padding: 20px 24px; }
.prose__callout span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.prose__callout a { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.prose__callout a:hover { text-decoration: underline; }
.faq { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border-radius: var(--r-sm); border: 1px solid var(--line); padding: 4px 22px; }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 0; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; font-size: 15px; line-height: 1.7; color: var(--text-2); }

/* ---------- journal (blogs.html) ---------- */
.jfeat { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.jfeat__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 11; }
.jfeat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.jfeat:hover .jfeat__media img { transform: scale(1.04); }
.jfeat__cat { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.jfeat__title { margin-top: 16px; font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; color: var(--ink); }
.jfeat__ex { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--text-2); }
.jfeat__meta { margin-top: 22px; display: flex; gap: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.jcard { display: flex; flex-direction: column; }
.jcard__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 11; margin-bottom: 20px; }
.jcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.jcard:hover .jcard__media img { transform: scale(1.05); }
.jcard__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.jcard__title { margin-top: 10px; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); }
.jcard__ex { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.jcard__meta { margin-top: 16px; display: flex; gap: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- article layout ---------- */
.article__layout { display: grid; grid-template-columns: 220px minmax(0, 1fr) 260px; gap: clamp(32px, 4vw, 64px); align-items: start; }
.toc { position: sticky; top: 40px; }
.toc__title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc a { display: block; padding: 7px 0 7px 16px; border-left: 2px solid var(--line); font-size: 13.5px; line-height: 1.4; color: var(--text-2); transition: all 0.25s var(--ease); }
.toc a:hover { color: var(--ink); }
.toc a.active { color: var(--ink); font-weight: 600; border-color: var(--ink); }
.trending { position: sticky; top: 40px; border-radius: var(--r); border: 1px solid var(--line); padding: 24px; }
.trending__title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.trending__item { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); align-items: center; }
.trending__item:first-of-type { border-top: 0; padding-top: 0; }
.trending__thumb { flex: none; width: 58px; height: 58px; border-radius: var(--r-sm); overflow: hidden; }
.trending__thumb img { width: 100%; height: 100%; object-fit: cover; }
.trending__item em { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-style: normal; }
.trending__item strong { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.trending__item:hover strong { text-decoration: underline; }

/* ---------- inner-page responsive ---------- */
@media (max-width: 1024px) {
  .bgrid { grid-template-columns: repeat(3, 1fr); }
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .jgrid { grid-template-columns: repeat(2, 1fr); }
  .vd { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .jfeat { grid-template-columns: 1fr; }
  .article__layout { grid-template-columns: minmax(0, 1fr) 240px; }
  .toc { display: none; }
}
@media (max-width: 720px) {
  .bgrid { grid-template-columns: 1fr 1fr; }
  .vgrid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .jgrid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .values { grid-template-columns: 1fr; }
  .proscon { grid-template-columns: 1fr; }
  .article__layout { grid-template-columns: 1fr; }
  .trending { display: none; }
  .spec__row { grid-template-columns: 1fr; gap: 6px; }
}

/* legal-table */
.prose .legal-table{width:100%;border-collapse:collapse;margin:26px 0;font-size:14px;line-height:1.6}
.prose .legal-table thead th{text-align:left;font-weight:700;padding:12px 14px;border-bottom:2px solid rgba(0,0,0,.16)}
.prose .legal-table td{padding:12px 14px;border-top:1px solid rgba(0,0,0,.12);vertical-align:top}
.prose .legal-table td p{margin:0 0 8px}
.prose .legal-table td p:last-child{margin:0}
.prose .legal-notice{font-weight:600;letter-spacing:.01em;line-height:1.7}

/* ==========================================================================
   Filter widget — Make / Model / Year / Zip / Get Started
   ========================================================================== */
.fw {
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  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 22px;
  border-left: 1px solid rgba(10, 11, 13, 0.1);
}
.fw__field:first-child { border-left: 0; }
.fw__label { font-size: 11px; font-weight: 600; 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: #0a0b0d; cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 18px;
}
.fw__input { cursor: text; }
.fw__input::placeholder { color: #0a0b0d; opacity: 1; }
.fw__input[aria-invalid="true"] { color: #b3261e; }
.fw__err { font-size: 11px; font-weight: 600; letter-spacing: 0.01em; color: #b3261e; }
.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 28px; border: 0; border-radius: 15px;
  background: #0a0b0d; color: #fff; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.fw__go svg { width: 16px; height: 16px; }
.fw__go:hover { background: #23252d; transform: translateY(-1px); }

@media (max-width: 820px) {
  .fw { flex-direction: column; max-width: 420px; padding: 8px; border-radius: 18px; }
  .fw__field { border-left: 0; border-top: 1px solid rgba(10, 11, 13, 0.1); padding: 12px 16px; }
  .fw__field:first-child { border-top: 0; }
  .fw__go { width: 100%; justify-content: center; margin: 8px 0 0; padding: 15px; }
}
