/* ─────────────────────────────────────────────────────────────
   Kent's Auto Sales — Design System
   Production stylesheet.
   Tone: bold, editorial, confident. Paper white / ink / one red.
   Anton (display) + Inter Tight (body) + JetBrains Mono (meta).
   ───────────────────────────────────────────────────────────── */

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --paper:       #f6f3ee;
  --paper-2:     #ffffff;
  --paper-3:     #ecebe5;
  --ink:         #0a0a0a;
  --ink-2:       #181818;
  --ink-soft:    #4d4d4d;
  --ink-muted:   #8a8780;
  --line:        rgba(10, 10, 10, 0.10);
  --line-strong: rgba(10, 10, 10, 0.22);

  --red:         #e51e2a;
  --red-ink:     #b12929;
  --red-bg:      #fbe1e2;

  --font-display: "Anton", "Bebas Neue", "Arial Black", sans-serif;
  --font-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw:  1320px;
  --pad-x: 56px;
  --r:     6px;
  --r-lg:  14px;
}

/* ─── BASE ────────────────────────────────────────────────────── */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.app { overflow-x: hidden; }
main { display: block; }
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: -.01em;
}

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--paper);
  padding: 8px 16px; z-index: 100;
}
.skip-link:focus { top: 0; }

/* ─── WORDMARK ────────────────────────────────────────────────── */
.wordmark { display: inline-flex; align-items: center; user-select: none; line-height: 0; }
.wordmark img { height: 64px; width: auto; display: block; -webkit-user-drag: none; }
.wordmark-sm img { height: 38px; }
.wordmark-light img { filter: none; }

/* ─── NAV (BLACK TOP BAR — balances dark inventory + visit sections) ─── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.nav-logo { text-decoration: none; }
/* Logo on the dark nav: use the dark-background logo as-is, no filter */
.nav-logo .wordmark img { filter: none; }
.nav-links {
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
}
.nav-links a {
  color: rgba(245,242,236,.85); padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--red); }
.nav-links a[aria-current="page"] { color: #fff; border-bottom-color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: 2px;
}
.lang-switch a, .lang-switch button {
  color: rgba(245,242,236,.75); padding: 5px 10px; border-radius: 999px;
  font: inherit; letter-spacing: inherit;
}
.lang-switch .lang-on { background: var(--paper); color: var(--ink); }

.call-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--r);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .06em;
  background: var(--red); color: #fff;
}
.call-link:hover { background: var(--red-ink); }

.nav-toggle {
  display: none;
  align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--r);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--paper);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: -.005em; border: 1.5px solid transparent; line-height: 1;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
  text-decoration: none; cursor: pointer; min-height: 44px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper-2); color: var(--ink); border-color: var(--line-strong); }
.btn-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-lg { padding: 20px 30px; font-size: 17px; }
.btn-primary-sm, .btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--r); font-family: var(--font-body);
  font-weight: 600; font-size: 13px; line-height: 1;
  border: 1.5px solid transparent;
}
.btn-primary-sm { background: var(--red); color: #fff; }
.btn-primary-sm:hover { background: var(--red-ink); }
.btn-ghost-sm { color: var(--ink); border-color: var(--line-strong); }
.btn-ghost-sm:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.phone-glyph { font-size: 11px; }

/* ─── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,.78); }
.eyebrow-red   { color: var(--red); }
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--red) 18%, transparent);
}
.eyebrow-dot.light { box-shadow: 0 0 0 4px rgba(229,30,42,.25); }

.kicker-sm {
  display: inline-block; font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── PHOTO SLOTS ─────────────────────────────────────────────── */
.photo-slot {
  position: relative; width: 100%; overflow: hidden;
  background: var(--paper-3); border-radius: var(--r);
  border: 1px solid var(--line);
}
.photo-slot-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s ease;
}
.photo-slot-img:hover img { transform: scale(1.03); }
.photo-slot-tall { min-height: 620px; }
.photo-slot-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(10,10,10,.05) 16px 17px);
}
.photo-slot-label {
  position: absolute; left: 14px; top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  background: var(--paper-2); color: var(--ink-soft);
  padding: 6px 10px; border-radius: 4px; border: 1px solid var(--line);
  letter-spacing: .02em;
}
.photo-slot-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.thumb-slot {
  width: 72px; height: 50px; border-radius: 4px;
  background: var(--paper-3); position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.thumb-slot-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── HERO — SHOWROOM (the locked layout) ─────────────────────── */
.hero { position: relative; padding-top: 0; }
.hero-showroom { padding: 0; }
.hero-sr-photo { position: relative; max-width: 100%; }
.hero-sr-photo .photo-slot {
  aspect-ratio: 21/9; border-radius: 0; min-height: 620px;
}
.hero-sr-photo .photo-slot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
}
.hero-sr-overlay {
  position: absolute; left: var(--pad-x); bottom: 60px; right: var(--pad-x);
  max-width: 880px; color: var(--paper);
}
.hero-sr-overlay .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.hero-sr-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 152px); line-height: .86;
  margin: 0 0 18px; text-transform: uppercase; font-weight: 900; letter-spacing: -.02em;
  color: #fff; text-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.hero-sr-title span { display: block; }
.hero-sr-title .accent { color: var(--red); }
.hero-sr-sub {
  font-size: 18px; max-width: 56ch; color: rgba(255,255,255,.92); margin: 0 0 22px;
  line-height: 1.5; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 14px 0;
}
.marquee-big { padding: 26px 0; background: var(--red); color: #fff; }
.marquee-track {
  display: inline-flex; gap: 36px; align-items: center;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee-item {
  font-family: var(--font-display); font-size: 24px; letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 36px;
}
.marquee-big .marquee-item { font-size: 44px; }
.marquee-dot { color: var(--red); font-size: 18px; }
.marquee-big .marquee-dot { color: #fff; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── FACTS BAR ───────────────────────────────────────────────── */
.facts {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 48px var(--pad-x); gap: 24px;
  border-bottom: 1px solid var(--line);
}
.fact {
  display: flex; flex-direction: column; gap: 8px;
  padding-right: 16px; border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact-kicker {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px);
  line-height: 0.9; letter-spacing: -.01em; text-transform: uppercase;
}
.facts .fact:nth-child(2) .fact-kicker,
.facts .fact:nth-child(4) .fact-kicker { color: var(--red); }
.fact-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--ink-soft); text-transform: uppercase;
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad-x);
}
.section-dark {
  max-width: none; margin: 0;
  background: var(--ink); color: var(--paper);
  padding-left: 0; padding-right: 0;
}
.section-dark > * {
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding-left: var(--pad-x); padding-right: var(--pad-x);
}
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px); line-height: .9;
  letter-spacing: -.02em; margin: 0; text-transform: uppercase; font-weight: 900;
  color: inherit;
}
.section-title-dark { color: var(--ink); }
.section-sub { font-size: 18px; color: var(--ink-soft); max-width: 50ch; margin: 0; line-height: 1.55; }
.section-dark .section-sub { color: rgba(255,255,255,.7); }

/* ─── PAGE HEADER — PHOTO HERO (interior pages) ─────────────── */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.78) 100%);
}
.page-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 120px var(--pad-x) 64px;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb [aria-current] { color: #fff; }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,.4); }
.page-hero .eyebrow { color: rgba(255,255,255,.78); }
.page-hero .page-title {
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45);
  max-width: 16ch;
}
.page-hero .page-lede {
  color: rgba(255,255,255,.92); text-shadow: 0 2px 12px rgba(0,0,0,.4);
  max-width: 58ch;
}

/* Compact hero — solid ink background, no photo. For inventory + listing pages. */
.page-hero--compact {
  min-height: 0;
  background: var(--ink);
  color: var(--paper);
}
.page-hero--compact .page-hero__bg { display: none; }
.page-hero--compact .page-hero__inner {
  padding: 56px var(--pad-x) 48px;
}
.page-hero--compact .page-title {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 22ch;
  text-shadow: none;
}
.page-hero--compact .page-lede {
  font-size: 17px; max-width: 64ch; margin-bottom: 22px; text-shadow: none;
}
.page-hero--compact .breadcrumb { margin-bottom: 16px; }
@media (max-width: 1080px) {
  .page-hero--compact .page-hero__inner { padding: 44px var(--pad-x) 36px; }
}

/* legacy paper page-header (kept for utility/static pages where photo isn't right) */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 64px var(--pad-x) 72px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end;
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--ink-muted); opacity: .5; }
.breadcrumb [aria-current] { color: var(--ink); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 128px); line-height: .9;
  letter-spacing: -.02em; margin: 0 0 22px;
  text-transform: uppercase; font-weight: 900;
}
.page-title .accent { color: var(--red); }
.page-lede {
  font-size: 19px; line-height: 1.5; color: var(--ink-soft); max-width: 56ch;
  margin: 0 0 28px;
}
.page-header-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.page-header-card {
  background: var(--ink); color: var(--paper);
  padding: 32px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.page-header-card .eyebrow { color: rgba(255,255,255,.6); margin-bottom: 4px; }
.page-header-card-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.01em;
  font-size: 24px; line-height: 1.1;
}
.page-header-card ul { display: flex; flex-direction: column; gap: 10px; }
.page-header-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: rgba(245,242,236,.92); line-height: 1.4;
}
.page-header-card li::before {
  content: "→"; color: var(--red); font-weight: 700; flex: 0 0 auto;
}
.page-header-card .price-line {
  font-family: var(--font-display); font-size: 36px; color: var(--red);
  text-transform: uppercase; letter-spacing: -.005em; line-height: 1;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 4px;
}
.page-header-card .price-sub {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,242,236,.55);
}

/* ─── VEHICLE GALLERY (built to handle 30+ photos) ──────────── */
.gallery-band {
  background: var(--paper-3);
  padding: 56px var(--pad-x) 64px;
}
.gallery-inner { max-width: var(--maxw); margin: 0 auto; }
.gallery-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.gallery-head .eyebrow { margin: 0; }
.gallery-count {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  color: var(--ink-muted); text-transform: uppercase;
}
.gallery-featured {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--r); background: var(--ink);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  cursor: zoom-in;
}
.gallery-featured img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .25s ease;
}
.gallery-featured .zoom-hint {
  position: absolute; right: 14px; bottom: 14px;
  background: rgba(0,0,0,.78); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 4px;
}
.gallery-thumbs {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 110px; gap: 8px;
  overflow-x: auto;
  padding: 14px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-thumbs::-webkit-scrollbar { height: 8px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,.25); border-radius: 4px; }
.gallery-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 4px; cursor: pointer; scroll-snap-align: start;
  border: 2px solid transparent; padding: 0; background: var(--paper-2);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb[aria-current="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.gallery-thumb:hover { border-color: var(--ink); }
.gallery-thumb:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.gallery-prev, .gallery-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.6); color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 28px; line-height: 1;
  transition: background .15s;
}
.gallery-prev:hover, .gallery-next:hover { background: var(--red); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-stage {
  position: relative; max-width: min(1400px, 96vw); max-height: 92vh;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.lightbox-img {
  max-width: 96vw; max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain; display: block;
  border-radius: var(--r);
}
.lightbox-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.lightbox-counter { color: #fff; }
.lightbox-close {
  position: absolute; top: -8px; right: -8px;
  background: var(--red); color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 22px;
}
.lightbox-close:hover { background: var(--red-ink); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 32px; line-height: 1;
  transition: background .15s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-prev { left: -68px; }
.lightbox-next { right: -68px; }
@media (max-width: 900px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; }
}

/* Locked scroll while lightbox open */
body.lightbox-open { overflow: hidden; }

/* ─── SPLIT BANDS — alternating photo + copy bands ─────────── */
.band {
  max-width: none; margin: 0;
}
.band-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.band--paper { background: var(--paper); color: var(--ink); }
.band--paper-3 { background: var(--paper-3); color: var(--ink); }
.band--dark { background: var(--ink); color: var(--paper); }
.band--red { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.band--red::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.05) 24px 25px);
}
.band--red > * { position: relative; }
.band--photo-left .band-photo { order: -1; }
.band-photo {
  position: relative;
  aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.band-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-photo .photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(0,0,0,.78); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
}
.band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 88px); line-height: .9;
  letter-spacing: -.01em; text-transform: uppercase; font-weight: 900;
  margin: 0 0 22px;
}
/* Compact band — for supporting / secondary content like the financing
   block on a vehicle detail page where the heading shouldn't shout. */
.band--sm .band-inner { padding: 56px var(--pad-x); gap: 56px; }
.band--sm .band-copy h2 { font-size: clamp(26px, 3.2vw, 48px); margin-bottom: 14px; }
.band--sm .band-copy .lede { font-size: 16px; margin-bottom: 16px; max-width: 50ch; }
.band--sm .band-copy p { font-size: 15px; }
.band--sm .band-copy ul li, .band--sm .band-copy ol li { font-size: 15px; }
.band--sm .band-copy ul li::before, .band--sm .band-copy ol li::before { top: 9px; }
.band--sm .band-photo { aspect-ratio: 16/10; box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.band--sm .btn { padding: 11px 18px; min-height: 40px; font-size: 14px; }
@media (max-width: 1080px) {
  .band--sm .band-inner { padding: 48px var(--pad-x); gap: 32px; }
  .band--sm .band-photo { aspect-ratio: 16/9; }
}
.band-copy h2 .accent { color: var(--red); }
.band--red .band-copy h2 .accent { color: #fff; text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
.band--dark .band-copy h2 .accent { color: var(--red); }
.band-copy .lede { font-size: 19px; line-height: 1.55; margin: 0 0 22px; max-width: 56ch; }
.band--paper .band-copy .lede { color: var(--ink-soft); }
.band--paper-3 .band-copy .lede { color: var(--ink-soft); }
.band--dark .band-copy .lede { color: rgba(245,242,236,.85); }
.band--red .band-copy .lede { color: rgba(255,255,255,.92); }
.band-copy p { font-size: 17px; line-height: 1.6; margin: 0 0 14px; }
.band-copy ul, .band-copy ol {
  display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px; padding: 0;
}
.band-copy ul li, .band-copy ol li {
  position: relative; padding-left: 36px; font-size: 17px; line-height: 1.45;
}
.band-copy ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 22px; height: 2px; background: var(--red);
}
.band--red .band-copy ul li::before { background: #fff; }
.band--dark .band-copy ul li::before { background: var(--red); }
.band-copy ol { counter-reset: stepcount; }
.band-copy ol li::before {
  counter-increment: stepcount;
  content: counter(stepcount, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--red); letter-spacing: .04em;
}
.band--red .band-copy ol li::before { color: #fff; }
.band--dark .band-copy ol li::before { color: var(--red); }
.band-copy ol li { padding-left: 44px; padding-top: 2px; }
.band-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.band--red .btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.band--red .btn-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.band--red .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.band--red .btn-ghost:hover { background: #fff; color: var(--red); border-color: #fff; }
.band--dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.band--dark .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Stat band — full-bleed RED with massive number, no photo */
.stat-band {
  background: var(--red); color: #fff; text-align: center;
  padding: 96px var(--pad-x); position: relative; overflow: hidden;
}
.stat-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.04) 24px 25px);
}
.stat-band-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.stat-band-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 18px;
}
.stat-band-number {
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 224px); line-height: .9;
  letter-spacing: -.02em; text-transform: uppercase; margin: 0 0 12px;
}
.stat-band-sub {
  font-size: 22px; max-width: 50ch; margin: 0 auto 28px;
  color: rgba(255,255,255,.92); line-height: 1.4;
}
.stat-band .btn { background: #fff; color: var(--ink); border-color: #fff; }
.stat-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Compact stat band — for inline price/CTA strips on detail pages */
.stat-band--sm { padding: 36px var(--pad-x); }
.stat-band--sm .stat-band-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; text-align: left;
}
.stat-band--sm .stat-band-number {
  font-size: clamp(32px, 4.4vw, 56px); margin: 0;
}
.stat-band--sm .stat-band-sub {
  font-size: 15px; margin: 0; max-width: 36ch; line-height: 1.4;
}
.stat-band--sm .btn { padding: 12px 18px; min-height: 40px; font-size: 14px; }
@media (max-width: 680px) {
  .stat-band--sm { padding: 28px var(--pad-x); }
  .stat-band--sm .stat-band-inner { text-align: center; }
}

/* ─── PROSE (long-form body content on interior pages) ──────── */
.prose {
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: minmax(0, 760px) minmax(0, 1fr); gap: 80px;
  align-items: start;
}
.prose-body p {
  font-size: 18px; line-height: 1.65; color: var(--ink); margin: 0 0 18px;
}
.prose-body h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: -.01em; text-transform: uppercase;
  margin: 56px 0 16px; padding-top: 28px; border-top: 1px solid var(--line);
}
.prose-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose-body h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 20px; line-height: 1.3;
  margin: 28px 0 8px;
}
.prose-body ul, .prose-body ol {
  margin: 0 0 22px; padding-left: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.prose-body ul li, .prose-body ol li {
  position: relative; padding-left: 28px;
  font-size: 17px; line-height: 1.6;
}
.prose-body ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 2px; background: var(--red);
}
.prose-body ol { counter-reset: stepcount; }
.prose-body ol li::before {
  counter-increment: stepcount;
  content: counter(stepcount, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--red); letter-spacing: .04em;
}
.prose-body ol li { padding-left: 40px; padding-top: 1px; }
.prose-body blockquote {
  border-left: 3px solid var(--red);
  padding: 8px 24px; margin: 24px 0; font-size: 18px; line-height: 1.55;
  color: var(--ink-soft); font-style: italic;
}
.prose-body strong { font-weight: 700; }
.prose-body a { color: var(--red); border-bottom: 1px solid currentColor; }
.prose-body a:hover { color: var(--red-ink); }
.prose-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.prose-sidebar-card {
  background: var(--paper-3); padding: 28px; border-radius: var(--r);
}
.prose-sidebar-card .eyebrow { margin-bottom: 14px; }
.prose-sidebar-card .h {
  font-family: var(--font-display); font-size: 22px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -.005em; margin: 0 0 12px;
}
.prose-sidebar-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; }
.prose-sidebar-card .btn { width: 100%; justify-content: center; }
.disclosure {
  background: var(--paper-3); border-left: 3px solid var(--ink);
  padding: 20px 24px; margin: 28px 0;
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
}
.disclosure strong { color: var(--ink); }

/* ─── INVENTORY ───────────────────────────────────────────────── */
.inv-tools {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 24px;
}
.inv-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  cursor: pointer; background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 8px 16px; font: inherit; font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, color .15s, border-color .15s;
}
.pill:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.pill.pill-on { background: #fff; color: var(--ink); border-color: #fff; }
.pill-count {
  font-family: var(--font-mono); font-size: 10px; opacity: .6;
  padding: 1px 6px; border-radius: 999px; background: rgba(255,255,255,.08);
}
.pill.pill-on .pill-count { background: rgba(10,10,10,.08); color: var(--ink-soft); opacity: 1; }
.inv-count {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.5); letter-spacing: .04em;
}

.inv-table { border-top: 1px solid rgba(255,255,255,.14); }
.inv-thead, .inv-row {
  display: grid;
  grid-template-columns: 92px 1.6fr 80px 120px 1fr 180px;
  align-items: center; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.inv-thead {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  padding: 12px 0;
}
.inv-row { transition: background .15s; }
.inv-row:hover { background: rgba(255,255,255,.03); }
.inv-model {
  font-family: var(--font-display); font-size: 22px; line-height: 1; letter-spacing: -.005em;
  text-transform: uppercase;
}
.inv-trim {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em;
  color: rgba(255,255,255,.6); margin-top: 6px;
}
.inv-c-year, .inv-c-color { color: rgba(255,255,255,.78); font-size: 13px; }
.body-chip {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.8); padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
}
.btn-row {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 9px 14px; border-radius: var(--r); font-weight: 600; font-size: 13px;
  white-space: nowrap;
}
.btn-row:hover { background: var(--red-ink); }

.inv-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.inv-callout {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.78);
}
.inv-callout .phone-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--red); color: #fff;
  border-radius: 50%; font-size: 14px;
}
.inv-foot .btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.inv-foot .btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ─── FINANCE + TRADE ─────────────────────────────────────────── */
.finance-trade {
  padding-top: 96px; padding-bottom: 96px;
}
.ft-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.ft-card {
  border-radius: var(--r-lg); padding: 48px;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.ft-finance { background: var(--paper-2); border: 1px solid var(--line); }
.ft-trade { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.ft-trade::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.04) 24px 25px);
}
.ft-trade > * { position: relative; }
.ft-trade .eyebrow-dot.light { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.ft-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 72px); line-height: .95;
  letter-spacing: -.01em; margin: 0 0 16px; text-transform: uppercase; font-weight: 900;
}
.ft-title-light { color: #fff; }
.ft-body { font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 50ch; margin: 0 0 22px; }
.ft-body-light { color: rgba(255,255,255,.92); }
.ft-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.ft-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.ft-list-light li { color: rgba(255,255,255,.95); }
.ft-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--red); color: #fff;
  font-size: 12px; border-radius: 4px; flex: 0 0 22px; margin-top: 1px;
}
.ft-check-light { background: rgba(255,255,255,.18); color: #fff; }
.ft-sub { margin-top: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: .04em; }

.ft-trade-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
}
.ft-trade-call { text-align: right; }
.ft-trade-phone { font-family: var(--font-display); font-size: 32px; line-height: 1; margin-top: 2px; color: #fff; }
.ft-trade .btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.ft-trade .btn-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── STORY (Why Call Kent's) ─────────────────────────────────── */
.story {
  background: var(--paper-3);
  max-width: none; margin: 0; padding-left: 0; padding-right: 0;
}
.story-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad-x);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center;
}
.story-photo { position: relative; }
.story-sticker {
  position: absolute; right: -16px; bottom: -16px;
  background: var(--red); color: #fff;
  padding: 18px 22px; border-radius: var(--r);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  max-width: 200px;
}
.story-body { font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin: 14px 0 28px; max-width: 52ch; }
.story-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-size: 22px; border-radius: 4px;
}
.pillar:nth-child(3) .pillar-icon {
  font-size: 10px; letter-spacing: .12em; font-family: var(--font-mono);
  background: var(--red); color: #fff;
}
.pillar-title {
  font-family: var(--font-display); font-size: 22px; line-height: 1;
  text-transform: uppercase; letter-spacing: -.005em;
}
.pillar-body { font-size: 15px; color: var(--ink-soft); line-height: 1.5; margin-top: 6px; }

/* ─── VOICES (testimonials) ───────────────────────────────────── */
.voices-section { padding-top: 96px; padding-bottom: 96px; }
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.voice {
  background: var(--paper-2);
  border: 1px solid var(--line); border-left: 3px solid var(--red);
  padding: 28px 28px 22px; border-radius: var(--r);
  font-size: 17px; line-height: 1.5; color: var(--ink);
}
.voice-q::before { content: "\201C"; color: var(--red); font-size: 36px; line-height: 0; vertical-align: -14px; margin-right: 4px; font-family: var(--font-display); }
.voice-cite {
  display: block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-muted);
}

/* ─── VISIT ───────────────────────────────────────────────────── */
.visit-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 24px; }
.visit-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.visit-row-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); padding-top: 4px;
}
.visit-row-val { font-size: 17px; line-height: 1.45; color: #fff; }
.visit-phone {
  font-family: var(--font-display); font-size: 36px; color: var(--red);
  letter-spacing: .01em; line-height: 1;
}
.visit-email {
  font-family: var(--font-body); font-size: 18px; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px; transition: border-color .15s;
}
.visit-email:hover { border-bottom-color: var(--red); }
.visit-hours-note { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.7); }
.visit-closed-tag {
  display: inline-block; margin-top: 4px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: rgba(229,30,42,.18);
  padding: 3px 8px; border-radius: 4px;
}
.visit-ctas { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.visit .btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.visit .btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.visit-map {
  min-height: 580px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); position: relative;
}
.map-wrap { width: 100%; height: 100%; min-height: 580px; position: relative; }
.map-svg { width: 100%; height: 100%; display: block; }
.map-attr {
  position: absolute; left: 12px; bottom: 12px;
  font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .04em;
  background: rgba(0,0,0,.4); padding: 4px 8px; border-radius: 4px;
  font-family: var(--font-mono);
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--paper); max-width: none; margin: 0;
  padding-left: 0; padding-right: 0;
}
.faq-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad-x);
  display: grid; grid-template-columns: 0.95fr 1.5fr; gap: 80px; align-items: start;
}
.faq-head {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 16px;
}
.faq-sub { font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin: 6px 0 12px; max-width: 38ch; }
.faq-head .btn { align-self: flex-start; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  cursor: pointer; background: transparent; border: 0;
  display: grid; grid-template-columns: 48px 1fr 32px; gap: 16px;
  width: 100%; padding: 22px 0; text-align: left;
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px);
  text-transform: uppercase; letter-spacing: -.005em; line-height: 1.1;
  color: var(--ink); transition: color .15s;
}
.faq-q:hover { color: var(--red); }
.faq-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  color: var(--ink-muted); padding-top: 6px;
}
.faq-chev {
  font-family: var(--font-display); font-size: 28px; line-height: 1;
  color: var(--red); transition: transform .25s ease;
  align-self: center; text-align: right;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-a {
  font-size: 17px; line-height: 1.55; color: var(--ink-soft);
  padding: 4px 32px 24px 64px; max-width: 64ch;
}

/* Native <details> reset (we use details/summary for FAQ for a11y + no-JS support) */
details.faq-item { background: transparent; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ─── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  text-align: center; padding: 120px var(--pad-x);
  background: var(--paper-3);
  max-width: none; margin: 0;
}
.final-cta-inner { max-width: 880px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--font-display); font-size: clamp(56px, 9vw, 140px);
  line-height: .9; letter-spacing: -.02em; margin: 0 0 18px;
  text-transform: uppercase; font-weight: 900;
}
.final-cta-sub { font-size: 19px; color: var(--ink-soft); margin: 0 0 32px; line-height: 1.5; }
.final-cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 80px var(--pad-x) 32px;
}
.footer-top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1.5fr; gap: 64px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .wordmark img { height: 56px; filter: none; }
.footer-tagline {
  font-family: var(--font-display); font-size: 32px; line-height: 1.05;
  margin: 24px 0 22px; max-width: 18ch; text-transform: uppercase; letter-spacing: -.005em;
}
.footer-contact { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; }
.footer-contact a { color: var(--red); font-family: var(--font-display); font-size: 22px; }
.footer-contact .footer-email {
  color: rgba(255,255,255,.85); font-family: var(--font-body); font-size: 14px;
}
.footer-contact .footer-email:hover { color: var(--red); }
.footer-social {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.footer-social a { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-family: var(--font-mono); }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 8px;
}
.footer-cols a { color: rgba(255,255,255,.85); font-size: 14px; }
.footer-cols a:hover { color: var(--red); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
.footer-credit {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.45);
}
.footer-credit a { color: rgba(255,255,255,.7); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1px; }
.footer-credit a:hover { color: var(--red); border-bottom-color: var(--red); }
.footer-lang { display: inline-flex; align-items: center; gap: 8px; }
.footer-lang-label { color: rgba(255,255,255,.5); }
.footer-lang a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-lang a.lang-on { color: #fff; }
.footer-lang .lang-sep { color: rgba(255,255,255,.3); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  :root { --pad-x: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .story-grid, .visit-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .page-header-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { min-height: 440px; }
  .page-hero__inner { padding: 96px var(--pad-x) 56px; }
  .band-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px var(--pad-x); }
  .band--photo-left .band-photo { order: 0; }
  .band-photo { aspect-ratio: 16/10; }
  .prose { grid-template-columns: 1fr; gap: 48px; }
  .prose-sidebar { position: static; }
  .stat-band { padding: 72px var(--pad-x); }
  .inv-thead, .inv-row { grid-template-columns: 72px 1fr 70px 130px; }
  .inv-c-body, .inv-c-color { display: none; }
  .voices-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links[data-open="true"] {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; inset: 64px 0 auto 0;
    background: var(--ink); padding: 12px 32px 20px;
    box-shadow: 0 16px 36px rgba(0,0,0,.32); z-index: 49;
  }
  .nav-links[data-open="true"] a {
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(245,242,236,.85);
  }
  .hero-sr-overlay { bottom: 40px; }
}

@media (max-width: 680px) {
  .facts { grid-template-columns: 1fr 1fr; gap: 20px; padding: 36px var(--pad-x); }
  .inv-thead, .inv-row { grid-template-columns: 1fr 100px; }
  .inv-c-thumb, .inv-c-year, .inv-c-color { display: none; }
  .ft-card { padding: 32px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-right .btn-ghost-sm, .nav-right .call-link { display: none; }
  .hero-sr-overlay { left: 24px; right: 24px; bottom: 32px; }
  .hero-sr-title { font-size: clamp(48px, 12vw, 96px); }
  .story-grid, .visit-grid, .faq-grid { padding: 64px 24px; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
}

/* ─── PRINT ───────────────────────────────────────────────────

.footer-gdn {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.55); white-space: nowrap;
}
