/* ==========================================================================
   LocateResults — light editorial marketplace (bydrive-inspired revamp)
   White surfaces · soft animated mesh · monochrome ink · rounded cards
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f6;
  --panel: #f1f1f3;
  --ink: #0e0f12;
  --ink-2: #1b1c20;
  --text: #43454d;
  --text-2: #6c6e77;
  --muted: #9a9ca4;
  --line: #ececee;
  --line-2: #e0e0e3;

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

  --container: 1200px;
  --gutter: 40px;
  --section: clamp(72px, 9vw, 128px);

  --r-xl: 28px;
  --r-lg: 22px;
  --r: 16px;
  --r-sm: 12px;
  --pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sh-sm: 0 1px 2px rgba(16, 18, 27, 0.05);
  --sh-md: 0 2px 8px rgba(16, 18, 27, 0.04), 0 18px 44px rgba(16, 18, 27, 0.08);
  --sh-lg: 0 4px 14px rgba(16, 18, 27, 0.06), 0 34px 80px rgba(16, 18, 27, 0.14);
}

* { 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(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* soft animated background mesh */
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: var(--bg); }
body::after {
  content: ""; position: fixed; inset: -25%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 40% at 16% 10%, rgba(96, 116, 168, 0.10), transparent 68%),
    radial-gradient(34% 38% at 86% 6%, rgba(150, 116, 150, 0.09), transparent 70%),
    radial-gradient(42% 44% at 82% 88%, rgba(96, 140, 150, 0.08), transparent 70%),
    radial-gradient(40% 42% at 8% 82%, rgba(120, 128, 150, 0.07), transparent 72%);
  filter: blur(10px);
  animation: mesh 24s ease-in-out infinite alternate;
}
@keyframes mesh {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2.5%, 2%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

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

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--line-2); }
.eyebrow--center { justify-content: center; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(38px, 5vw, 58px); }
.section-head__t { margin-top: 14px; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); }
.section-head__s { margin-top: 14px; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 12px; height: 52px; padding: 0 8px 0 24px; border-radius: var(--pill); font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.btn__i { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; flex: none; transition: transform 0.35s var(--ease); }
.btn__i svg { width: 16px; height: 16px; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark .btn__i { background: #fff; color: var(--ink); }
.btn--dark:hover { transform: translateY(-2px); }
.btn--dark:hover .btn__i { transform: rotate(-45deg); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); border: 1px solid var(--line); }
.btn--light .btn__i { background: var(--ink); color: #fff; }
.btn--light:hover { transform: translateY(-2px); 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); }

.circle-btn { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: #fff; transition: transform 0.35s var(--ease); }
.circle-btn svg { width: 18px; height: 18px; }
.circle-btn:hover { transform: translateY(-2px) rotate(-45deg); }

/* ==========================================================================
   Navigation (rendered by site.js)
   ========================================================================== */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
.nav__inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }
.nav__logo { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links--center { position: absolute; left: 50%; transform: translateX(-50%); }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.25s var(--ease); white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; align-items: center; height: 42px; padding: 0 22px; border-radius: var(--pill); background: var(--ink); color: #fff; font-size: 14px; font-weight: 600; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__cta:hover { transform: translateY(-1px); opacity: 0.92; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav__burger span { width: 16px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease); }
.nav__mobile { display: none; }
.nav.open .nav__mobile {
  display: flex; flex-direction: column; gap: 6px;
  position: absolute; top: 74px; left: var(--gutter); right: var(--gutter);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px; box-shadow: var(--sh-lg);
}
.nav__mobile a { padding: 12px 14px; border-radius: var(--r-sm); font-weight: 600; color: var(--ink); }
.nav__mobile a:hover { background: var(--bg-soft); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: clamp(120px, 15vh, 168px) 0 0; text-align: center; }
.hero__inner { max-width: 820px; margin: 0 auto; }
.hero__title { font-size: clamp(34px, 5.4vw, 64px); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; color: var(--ink); }
.hero__title em { font-style: normal; color: var(--muted); }
.hero__sub { margin: 20px auto 0; max-width: 52ch; font-size: 16px; line-height: 1.7; color: var(--text-2); }

/* filter widget — Make / Model / Year / Zip / Get Started */
.fw {
  width: 100%; max-width: 860px; margin: 32px auto 0; text-align: left;
  display: flex; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: 8px 8px 8px 8px;
}
.fw__field { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 22px; border-left: 1px solid var(--line); }
.fw__field:first-child { border-left: 0; }
.fw__label { font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); }
.fw__control { position: relative; }
.fw__select, .fw__input { width: 100%; border: 0; background: none; outline: none; font-family: inherit; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 16px; }
.fw__input { cursor: text; }
.fw__input[aria-invalid="true"] { color: #b3261e; }
.fw__err { font-size: 11px; font-weight: 600; letter-spacing: 0.01em; color: #b3261e; }
.fw__input::placeholder { color: var(--ink); opacity: 1; }
.fw__select:disabled { color: var(--muted); cursor: not-allowed; }
.fw__control::after { content: ""; position: absolute; right: 0; top: 42%; width: 6px; height: 6px; border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted); transform: translateY(-50%) rotate(45deg); pointer-events: none; }
.fw__go { flex: 0 0 auto; align-self: center; display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; padding: 0 24px; height: 52px; border-radius: var(--r); background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; transition: transform 0.3s var(--ease); }
.fw__go svg { width: 16px; height: 16px; }
.fw__go:hover { transform: translateY(-1px); }
@media (max-width: 720px) {
  .fw { flex-direction: column; border-radius: var(--r); max-width: 460px; padding: 10px; }
  .fw__field { border-left: 0; border-top: 1px solid var(--line); padding: 12px 14px; }
  .fw__field:first-child { border-top: 0; }
  .fw__go { width: 100%; justify-content: center; margin: 8px 0 0; }
}

.hero__media {
  position: relative; margin: clamp(38px, 5vw, 64px) 0 0;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 16 / 6.6; background: var(--panel);
}
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity 1s var(--ease), transform 6s var(--ease); }
.hero__media img.in { opacity: 1; transform: scale(1); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,16,0.08), transparent 30%); }

/* ==========================================================================
   Logo strip
   ========================================================================== */
.makes { padding: clamp(56px, 7vw, 88px) 0 0; text-align: center; }
.makes__lead { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.makes__sub { margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.makes__row { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(30px, 5vw, 68px); }
.makes__logo { height: 30px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(1); opacity: 0.42; transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.makes__logo:hover { opacity: 0.85; filter: grayscale(0.4); }

/* ==========================================================================
   Section shell
   ========================================================================== */
.sec { padding: var(--section) 0 0; }
.sec__bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(30px, 4vw, 46px); }
.sec__bar .section-head { text-align: left; margin: 0; max-width: 620px; }
.sec__bar .section-head__t { margin-top: 12px; }

/* Models grid */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mcard { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; isolation: isolate; aspect-ratio: 3 / 2.4; background: var(--bg-soft); border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.mcard__media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: radial-gradient(82% 92% at 50% 30%, #ffffff 0%, #f2f2f4 58%, #e7e7ea 100%); }
.mcard__media img { width: 88%; height: 74%; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(16,18,27,0.18)); transition: transform 0.6s var(--ease); }
.mcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 46%, rgba(240,240,243,0.6) 70%, rgba(240,240,243,0.95) 100%); }
.mcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.mcard:hover .mcard__media img { transform: scale(1.05); }
.mcard__media { display: block; }
.mcard__body { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: var(--ink); }
.mcard__name { display: block; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
.mcard__spec { display: block; margin-top: 7px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-2); }

/* ==========================================================================
   Trust cards
   ========================================================================== */
.trust__grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 22px; }
.tcard { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 3.4; box-shadow: var(--sh-sm); }
.tcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,0.1), rgba(8,9,12,0.62)); }
.tcard__tag { position: absolute; z-index: 2; left: 18px; top: 18px; display: inline-block; padding: 9px 15px; border-radius: var(--pill); background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); font-size: 12.5px; font-weight: 700; color: var(--ink); }
.tcard__note { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; padding: 14px 16px; border-radius: var(--r); background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); }
.tcard__note h4 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.tcard__note p { margin-top: 4px; font-size: 12.5px; line-height: 1.5; color: var(--text-2); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rvw { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 22px 20px; box-shadow: var(--sh-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.rvw:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.rvw__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rvw__car { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.rvw__rate { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--ink); }
.rvw__rate svg { width: 14px; height: 14px; color: #f5a623; }
.rvw__quote { margin-top: 14px; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.rvw__who { margin-top: 18px; display: flex; align-items: center; gap: 11px; padding-top: 16px; border-top: 1px solid var(--line); }
.rvw__av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--panel); flex: none; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--text-2); }
.rvw__name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.rvw__ago { font-size: 12px; color: var(--muted); }

/* ==========================================================================
   Articles
   ========================================================================== */
.arts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.acard { display: block; }
.acard__media { display: block; position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2.1; box-shadow: var(--sh-sm); }
.acard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.acard:hover .acard__media img { transform: scale(1.05); }
.acard__go { position: absolute; z-index: 2; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); color: var(--ink); transition: transform 0.35s var(--ease); }
.acard__go svg { width: 15px; height: 15px; }
.acard:hover .acard__go { transform: rotate(-45deg); }
.acard__cat { display: block; margin-top: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.acard__title { display: block; margin-top: 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); }
.acard__ex { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }

/* ==========================================================================
   Locate / contact
   ========================================================================== */
.locate__panel { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--bg-soft); border: 1px solid var(--line); min-height: 460px; display: flex; align-items: flex-end; }
.locate__map {
  position: absolute; inset: 0; opacity: 0.9;
  background:
    linear-gradient(90deg, transparent 49.6%, var(--line-2) 49.6%, var(--line-2) 50.4%, transparent 50.4%) 0 0 / 120px 100%,
    linear-gradient(0deg, transparent 49.6%, var(--line-2) 49.6%, var(--line-2) 50.4%, transparent 50.4%) 0 0 / 100% 120px,
    linear-gradient(90deg, transparent 49.7%, #e6e6e9 49.7%, #e6e6e9 50.3%, transparent 50.3%) 40px 0 / 300px 100%,
    linear-gradient(0deg, transparent 49.7%, #e6e6e9 49.7%, #e6e6e9 50.3%, transparent 50.3%) 0 40px / 100% 300px,
    radial-gradient(60% 60% at 50% 40%, #fbfbfc, #f0f0f2);
}
.locate__pin { position: absolute; left: 52%; top: 40%; width: 18px; height: 18px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 8px rgba(14,15,18,0.12), 0 0 0 18px rgba(14,15,18,0.06); }
.locate__card { position: relative; z-index: 2; margin: clamp(20px, 3vw, 40px); background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: clamp(22px, 2.4vw, 34px); max-width: 560px; width: calc(100% - clamp(40px, 6vw, 80px)); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.locate__item { display: flex; gap: 14px; }
.locate__ic { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); display: inline-flex; align-items: center; justify-content: center; flex: none; color: var(--ink); }
.locate__ic svg { width: 18px; height: 18px; }
.locate__k { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.locate__v { margin-top: 3px; font-size: 12.5px; line-height: 1.5; color: var(--text-2); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final { padding: var(--section) 0; text-align: center; }
.final__t { font-size: clamp(30px, 4.6vw, 56px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); }
.final__cta { margin-top: 34px; display: flex; justify-content: center; }
.final__cta .circle-btn { width: 66px; height: 66px; }
.final__cta .circle-btn svg { width: 22px; height: 22px; }

/* ==========================================================================
   Footer (rendered by site.js)
   ========================================================================== */
.footer { margin-top: var(--section); border-top: 1px solid var(--line); padding: clamp(44px, 5vw, 64px) 0 34px; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__logo { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.3s var(--ease); }
.footer__social a svg { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.footer__nav { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 26px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.footer__nav a { font-size: 14px; font-weight: 500; color: var(--text); }
.footer__nav a:hover { color: var(--ink); }
.footer__legal { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; font-size: 12.5px; color: var(--muted); }
.footer__legal a:hover { color: var(--ink); }
.footer__legal span { margin-left: auto; }
.footer__ghost { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .models, .reviews__grid, .arts__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .tcard--wide { grid-column: span 2; aspect-ratio: 16/7; }
}
@media (max-width: 860px) {
  :root { --gutter: 22px; }
  .nav__links--center, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .sec__bar { flex-direction: column; align-items: flex-start; }
  .locate__card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .models, .reviews__grid, .arts__grid, .trust__grid { grid-template-columns: 1fr; }
  .tcard, .tcard--wide { grid-column: auto; aspect-ratio: 3/2.6; }
  .hero__media { aspect-ratio: 4/3; }
  .hero__search { flex-wrap: wrap; border-radius: var(--r); padding: 12px; }
  .hero__search input { flex: 1 1 100%; padding: 6px 6px 12px; }
  .hero__search button { width: 100%; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__legal span { margin-left: 0; width: 100%; }
}

/* ==========================================================================
   INNER PAGES — light system, homepage-aligned
   ========================================================================== */

/* --- page hero (shared) --- */
.phero { position: relative; padding: clamp(116px, 14vh, 152px) 0 0; }
.phero__spot, .phero__ghost { display: none; }
.phero__inner { max-width: 900px; }
.phero .eyebrow { margin-bottom: 16px; }
.phero__title { margin-top: 6px; font-size: clamp(32px, 5vw, 60px); font-weight: 800; line-height: 1.03; letter-spacing: -0.035em; color: var(--ink); text-transform: none; }
.phero__sub { margin-top: 18px; max-width: 62ch; font-size: 16px; line-height: 1.7; color: var(--text-2); }
.phero__meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 32px; }
.phero__meta span { font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.phero__meta b { color: var(--ink); font-weight: 700; }
.phero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.crumb { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.crumb a { color: var(--muted); transition: color 0.25s var(--ease); }
.crumb a:hover { color: var(--ink); }
.crumb i { font-style: normal; opacity: 0.5; }

/* --- left section header --- */
.sec-head { margin-bottom: clamp(28px, 4vw, 44px); }
.sec-head--left { text-align: left; }
.sec-head__title { margin-top: 12px; font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); }
.sec-head__sub { margin-top: 12px; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }

/* --- brand directory: photo cards --- */
.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-lg); overflow: hidden; isolation: isolate; background: var(--ink); box-shadow: var(--sh-sm); 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; background: linear-gradient(180deg, rgba(10,12,16,0.18) 0%, rgba(10,12,16,0) 34%, rgba(10,12,16,0.46) 66%, rgba(10,12,16,0.82) 100%); }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.bcard:hover .bcard__photo { transform: scale(1.06); }
.bcard__logo { position: absolute; z-index: 2; top: 15px; left: 15px; display: inline-flex; align-items: center; gap: 9px; height: 36px; padding: 0 14px 0 10px; border-radius: var(--pill); background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); }
.bcard__logo img { height: 20px; max-width: 42px; width: auto; object-fit: contain; }
.bcard__logo b { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.bcard__body { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.bcard__name { display: block; font-size: clamp(19px, 1.8vw, 24px); font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.bcard__count { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.bcard__go { position: absolute; z-index: 2; right: 15px; bottom: 15px; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); color: #fff; backdrop-filter: blur(8px); transition: all 0.35s var(--ease); }
.bcard__go svg { width: 15px; height: 15px; }
.bcard:hover .bcard__go { background: #fff; color: var(--ink); border-color: #fff; }

/* --- vehicle range: dark-media / light-body cards --- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard { display: block; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.vcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.vcard__media { display: flex; align-items: center; justify-content: center; position: relative; aspect-ratio: 16 / 10; background: radial-gradient(80% 90% at 50% 34%, #2a2c33 0%, #16171b 60%, #0c0d10 100%); overflow: hidden; }
.vcard__media img { width: 86%; height: 78%; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0,0,0,0.5)); transition: transform 0.6s var(--ease); }
.vcard:hover .vcard__media img { transform: scale(1.06); }
.vcard__body { display: block; padding: 18px 20px 20px; }
.vcard__name { display: block; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.vcard__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.vcard__price { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.vcard__price small { display: block; margin-bottom: 4px; font-size: 10px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); }
.vcard__go { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--ink); flex: none; transition: all 0.35s var(--ease); }
.vcard__go svg { width: 15px; height: 15px; }
.vcard:hover .vcard__go { background: var(--ink); border-color: var(--ink); color: #fff; }

/* --- vehicle hero stage --- */
.vhero__stage { position: relative; margin-top: clamp(-60px, -3.5vw, -104px); display: flex; align-items: flex-end; justify-content: center; }
.vhero__car { width: min(640px, 74%); max-height: clamp(230px, 32vh, 360px); object-fit: contain; filter: drop-shadow(0 34px 40px rgba(16,18,27,0.2)); opacity: 0; transform: translateY(20px) 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: 5%; transform: translateX(-50%); width: min(540px, 62%); height: 38px; border-radius: 50%; background: radial-gradient(50% 100% at 50% 50%, rgba(16,18,27,0.16), transparent 72%); filter: blur(14px); }
#v-verdict-sec { padding-top: clamp(36px, 4vw, 60px); }

/* --- vehicle verdict + tags --- */
.vd { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.vd-verdict { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px); box-shadow: var(--sh-sm); }
.vd-verdict h3 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.vd-verdict p { margin-top: 14px; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.6; font-weight: 500; letter-spacing: -0.01em; color: var(--ink-2); }
.vd-tags { display: flex; flex-direction: column; gap: 12px; }
.vd-tag { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.vd-tag__l { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.vd-tag__v { margin-top: 5px; font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.45; }

/* --- pros / cons --- */
.proscon { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pcbox { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--sh-sm); }
.pcbox h4 { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--ink); }
.pcbox h4 svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; color: var(--muted); }
.pcbox--pro h4 svg { color: #17924e; background: rgba(23,146,78,0.1); }
.pcbox ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.pcbox li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.55; color: var(--text); }
.pcbox li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--muted); }
.pcbox--pro li::before { background: #17924e; }

/* --- specifications --- */
.spec { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.spec__row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 16px clamp(22px, 2.4vw, 30px); border-top: 1px solid var(--line); }
.spec__row:first-child { border-top: 0; }
.spec__k { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.spec__v { font-size: 14.5px; color: var(--ink); }
.spec__v .trim { display: inline-block; min-width: 130px; font-weight: 600; color: var(--text-2); }

/* --- journal / blogs --- */
.jfeat { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(26px, 3.4vw, 50px); align-items: center; }
.jfeat__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--sh-md); background: var(--panel); }
.jfeat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.jfeat:hover .jfeat__media img { transform: scale(1.04); }
.jfeat__cat { font-size: 11.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.jfeat__title { margin-top: 12px; font-size: clamp(24px, 3vw, 38px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); }
.jfeat__ex { margin-top: 14px; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }
.jfeat__meta { margin-top: 20px; display: flex; gap: 20px; font-size: 12.5px; font-weight: 500; color: var(--muted); }
.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
.jcard { display: block; }
.jcard__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2.1; box-shadow: var(--sh-sm); background: var(--panel); }
.jcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.jcard:hover .jcard__media img { transform: scale(1.05); }
.jcard__cat { display: block; margin-top: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.jcard__title { margin-top: 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); }
.jcard__ex { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }
.jcard__meta { margin-top: 14px; display: flex; gap: 16px; font-size: 12px; color: var(--muted); }

/* --- article reader --- */
.article__layout { display: grid; grid-template-columns: 220px minmax(0, 1fr) 260px; gap: clamp(28px, 4vw, 64px); align-items: start; }
.article__side { position: sticky; top: 100px; }
.toc__title, .trending__title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc a { display: block; padding: 7px 0; font-size: 13.5px; line-height: 1.4; color: var(--text-2); border-left: 2px solid var(--line); padding-left: 14px; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.toc a:hover, .toc a.active { color: var(--ink); border-color: var(--ink); }
.trending__item { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.trending__item:first-of-type { border-top: 0; }
.trending__thumb { width: 58px; height: 44px; border-radius: 10px; overflow: hidden; flex: none; background: var(--panel); }
.trending__thumb img { width: 100%; height: 100%; object-fit: cover; }
.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: 13px; font-weight: 600; line-height: 1.3; color: var(--ink); }

/* --- prose --- */
.prose-wrap { padding-top: clamp(30px, 4vw, 52px); }
.prose { max-width: 760px; }
.container.prose { margin-inline: auto; }
.prose__lead { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.65; font-weight: 500; color: var(--ink-2); }
.prose h2 { margin-top: 44px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--ink); }
.prose h3 { margin-top: 30px; font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.prose p { margin-top: 15px; font-size: 15.5px; line-height: 1.8; color: var(--text); }
.prose ul { margin-top: 15px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.7; color: var(--text); }
.prose li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }
.prose a:hover { text-decoration-color: var(--ink); }
.prose__takeaways { margin: 28px 0; padding: 24px 26px; border-radius: var(--r); background: var(--bg-soft); border: 1px solid var(--line); }
.prose__takeaways h4 { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.prose__takeaways h4 svg { color: var(--ink); }
.prose__takeaways ul { margin-top: 12px; }
.prose__quote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--ink); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); }
.prose__callout { margin: 28px 0; padding: 18px 22px; border-radius: var(--r); background: var(--ink); color: #fff; display: flex; flex-direction: column; gap: 4px; }
.prose__callout span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.prose__callout a { color: #fff; text-decoration-color: rgba(255,255,255,0.4); font-weight: 600; }
.prose .legal-notice { font-weight: 600; }

/* --- FAQ --- */
.faq { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--ink); position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 400; color: var(--muted); }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 20px 18px; margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--text); }

/* --- brand about (two-col) --- */
.steps { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 64px); align-items: center; }
.steps__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.2; box-shadow: var(--sh-sm); background: var(--panel); }
.steps__media img { width: 100%; height: 100%; object-fit: cover; }

/* --- end CTA band --- */
.endcta { padding: var(--section) 0 0; }
.endcta__inner { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 72px); text-align: center; }
.endcta__title { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.endcta__sub { margin: 16px auto 0; max-width: 52ch; font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.68); }
.endcta__inner .pill { margin-top: 30px; }
.pill { display: inline-flex; align-items: center; gap: 12px; height: 50px; padding: 0 8px 0 22px; border-radius: var(--pill); font-size: 14px; font-weight: 600; transition: transform 0.3s var(--ease); }
.pill__i { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; flex: none; transition: transform 0.35s var(--ease); }
.pill__i svg { width: 15px; height: 15px; }
.pill--white { background: #fff; color: var(--ink); }
.pill--white .pill__i { background: var(--ink); color: #fff; }
.pill:hover { transform: translateY(-2px); }
.pill:hover .pill__i { transform: rotate(-45deg); }

/* --- inner responsive --- */
@media (max-width: 1000px) {
  .bgrid, .vgrid, .jgrid { grid-template-columns: repeat(2, 1fr); }
  .article__layout { grid-template-columns: 1fr; }
  .article__side { position: static; }
  .article__side .toc { display: none; }
  .jfeat { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .vd, .proscon, .steps { grid-template-columns: 1fr; }
  .spec__row { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 620px) {
  .bgrid, .vgrid, .jgrid { grid-template-columns: 1fr; }
}
