/* Design C — Bold Editorial */
:root {
  --bg: #fafaf7;
  --bg-2: #f0f0eb;
  --bg-3: #e8e8e0;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --line: #1a1a1a;
  --line-2: #2a2a2a;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --ink-3: #5a5a5a;
  --accent: #ff5722;
  --accent-2: #ff8a50;
  --red: #ff5722;
  --red-2: #ff8a50;
  background: var(--bg);
  color: var(--ink);
}
.site-header { background: rgba(255,255,255,0.92); border-bottom: 2px solid var(--line); padding: 16px 0; }
.site-header.scrolled { background: rgba(255,255,255,0.98); padding: 12px 0; }
.nav__cta { background: var(--accent); color: white; }
.hero__cta { background: var(--ink); color: white; }
.hero__cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.hero__title { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.005em; }
.hero__title em { color: var(--accent); font-style: normal; }

/* Inner-page heroes — dark overlay, readable white text */
.hero--page,
.hero--home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: auto;
  padding: clamp(110px, 12vw, 140px) 0 clamp(48px, 6vw, 72px);
}
.hero--page-sm { min-height: 320px; }
.hero--page-md { min-height: 360px; }
.hero--page-lg { min-height: 400px; }
.hero--page-xl { min-height: 440px; }
.hero--home {
  min-height: min(88vh, 820px);
  padding: clamp(120px, 14vw, 150px) 0 clamp(56px, 7vw, 88px);
}
.hero--page .hero__inner,
.hero--home .hero__inner {
  width: min(1320px, calc(100% - clamp(32px, 6vw, 80px)));
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.hero--page .hero__bg,
.hero--home .hero__bg {
  background-image: url('assets/images/hero/welcome.webp');
  background-size: cover;
  background-position: 72% center;
}
.hero--home .hero__bg { background-position: center 40%; }
.hero--page .hero__bg::after,
.hero--home .hero__bg::after {
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.88) 38%, rgba(8, 8, 8, 0.55) 62%, rgba(8, 8, 8, 0.25) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.6) 0%, transparent 50%);
}
.hero--home .hero__bg::after {
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 42%, rgba(8, 8, 8, 0.25) 68%, transparent 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.55) 0%, transparent 50%);
}
.hero--page .hero__eyebrow,
.hero--home .hero__eyebrow {
  color: #fff;
  background: rgba(255, 87, 34, 0.18);
  border-color: rgba(255, 87, 34, 0.5);
}
.hero--page .hero__title,
.hero--home .hero__title {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero--page .hero__title em,
.hero--home .hero__title em { color: var(--accent-2); }

/* Homepage credit headline — floating promo card */
.hero__credit-float {
  position: relative;
  z-index: 4;
  width: min(100%, 600px);
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 87, 34, 0.4);
  border-radius: 16px;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 87, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero__credit-headline-float {
  animation: heroCreditFloat 5.5s ease-in-out infinite;
  will-change: transform;
}
.hero__credit-float::before {
  content: '';
  position: absolute;
  left: clamp(22px, 4vw, 34px);
  right: clamp(22px, 4vw, 34px);
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(255, 87, 34, 0.65);
  z-index: 1;
  pointer-events: none;
}
@keyframes heroCreditFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__credit-headline-float { animation: none; }
}

/* Desktop — float card over visible hero imagery */
@media (min-width: 1024px) {
  .hero--home {
    position: relative;
    overflow: hidden;
  }
  .hero--home .hero__bg { background-position: 68% center; }
  .hero--home .hero__bg::after {
    background:
      linear-gradient(to right, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 32%, rgba(8, 8, 8, 0.28) 52%, rgba(8, 8, 8, 0.08) 68%, transparent 82%),
      linear-gradient(to top, rgba(8, 8, 8, 0.5) 0%, transparent 45%);
  }
  .hero--home .hero__inner {
    display: grid;
    grid-template-columns: minmax(340px, 560px) 1fr;
    grid-template-areas:
      "eyebrow ."
      "float ."
      "sub ."
      "ctas ."
      "stats .";
    align-content: center;
    min-height: min(78vh, 760px);
    gap: 0 48px;
  }
  .hero--home .hero__eyebrow { grid-area: eyebrow; margin-bottom: 16px; }
  .hero--home .hero__credit-float {
    grid-area: float;
    width: 100%;
    max-width: 560px;
    margin-bottom: 24px;
  }
  .hero--home .hero__sub { grid-area: sub; max-width: 520px; margin-bottom: 24px; }
  .hero--home .hero__ctas { grid-area: ctas; max-width: 520px; margin-bottom: 8px; }
  .hero--home .hero__stats {
    grid-area: stats;
    max-width: 520px;
    margin-top: 24px;
  }
  .hero__credit-headline-float {
    animation: heroCreditFloatDesktop 5s ease-in-out infinite;
  }
  @keyframes heroCreditFloatDesktop {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -16px, 0); }
  }
}

.hero__title--credit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.hero__credit-q {
  display: block;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}
.hero__credit-a {
  display: block;
  font-size: clamp(48px, 8vw, 108px);
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.92;
}
.hero__credit-a em { color: var(--accent); }

.hero__credit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  box-shadow: none;
}
.hero__credit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}
.hero__credit-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  background: radial-gradient(circle at 30% 30%, #fff 0%, #c8c8c8 45%, #888 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.hero__credit-text {
  flex: 1;
  min-width: 0;
}
.hero__credit-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero__credit-text > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.hero--page .hero__sub,
.hero--home .hero__sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero--page .hero__cta,
.hero--home .hero__cta { background: var(--accent); color: #fff; }
.hero--page .hero__cta--ghost,
.hero--home .hero__cta--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.hero--home .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  margin-top: 40px;
  max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero--home .hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 44px);
  line-height: 1;
  color: #fff;
}
.hero--home .hero__stat-num em { color: var(--accent-2); }
.hero--home .hero__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .hero--home .hero__stats { grid-template-columns: 1fr; gap: 16px; }
}

/* Homepage — large showroom showcase (not tied to a specific vehicle) */
.home-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: min(72vh, 680px);
  background: var(--ink);
  color: #fff;
}
.home-showcase__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.home-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 50%;
}
.home-showcase__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.home-showcase__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.home-showcase__title em { color: var(--accent); font-style: normal; }
.home-showcase__text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 16px;
  max-width: 46ch;
  margin-bottom: 28px;
}
.home-showcase__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-showcase .sec-head__kicker { color: var(--accent); }
.home-showcase .hero__cta { background: var(--accent); color: #fff; }
.home-showcase .hero__cta--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}
@media (max-width: 900px) {
  .home-showcase {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .home-showcase__media {
    min-height: clamp(220px, 56vw, 400px);
    max-height: none;
    aspect-ratio: 16 / 11;
  }
}
@media (max-width: 480px) {
  .home-showcase__media {
    aspect-ratio: 4 / 3;
    min-height: clamp(200px, 62vw, 300px);
  }
}

/* Inner pages — consistent content spacing below hero */
.section--page {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(64px, 10vw, 120px);
}
.section--page .sec-head { margin-bottom: 48px; }
.section--page .about__grid,
.about .about__grid {
  align-items: start;
  gap: clamp(32px, 5vw, 64px);
}
.about .about__text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
}
.about .about__text h2 em { color: var(--accent); font-style: normal; }

@media (max-width: 1100px) {
  .nav__links { gap: 14px; }
  .nav__link { font-size: 11px; letter-spacing: 0.12em; }
  .nav__cta { padding: 10px 14px; font-size: 10px; }
}
.sec-head__title em { color: var(--accent); font-style: normal; }
.sec-head__row { border-bottom: 3px solid var(--ink); }
.sec-head__kicker { color: var(--accent); }
.filters { border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.inv-card {
  border: 2px solid var(--line);
  border-radius: 12px;
}
.inv-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(255, 87, 34, 0.1);
}
.inv-card__price { color: var(--accent); }
.inv-card__promo { background: var(--accent); }
.inv-card__btn--primary:hover { background: var(--accent); }
.inv-card__chip-link:hover { color: var(--accent); border-color: var(--accent); }
.inv-card__phone:hover { color: var(--accent); }
.hero__viewer {
  border: 2px solid var(--ink);
  overflow: hidden;
  min-height: 400px;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 8px;
}
.hero__viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero3d-status--error { color: #ff5722; }

/* Homepage — dripmotors.ca-style split hero with featured BMW */
.hero--split {
  min-height: min(100vh, 920px);
  align-items: center;
  padding: clamp(120px, 14vw, 160px) 0 clamp(48px, 6vw, 80px);
}
.hero--split .hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(255, 87, 34, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 45%, #0d0d0d 100%);
}
.hero--split .hero__bg::after {
  background:
    linear-gradient(
      to right,
      rgba(8, 8, 8, 0.98) 0%,
      rgba(10, 10, 10, 0.92) 38%,
      rgba(10, 10, 10, 0.55) 58%,
      rgba(10, 10, 10, 0.15) 78%,
      transparent 100%
    );
}
.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  max-width: 1280px;
  min-height: unset;
  padding: 0;
}
.hero--split .hero__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: clamp(28px, 4vw, 40px);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero--split .hero__eyebrow {
  color: #fff;
  background: rgba(255, 87, 34, 0.2);
  border-color: rgba(255, 87, 34, 0.55);
}
.hero--split .hero__title {
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}
.hero--split .hero__title em {
  color: var(--accent-2);
}
.hero--split .hero__sub {
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
}
.hero--split .hero__cta {
  background: var(--accent);
  color: #fff;
}
.hero--split .hero__cta--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.hero--split .hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
.hero--split .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero--split .hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 44px);
  line-height: 1;
  color: #fff;
}
.hero--split .hero__stat-num em {
  color: var(--accent-2);
}
.hero--split .hero__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .hero--split .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.hero__media {
  position: relative;
  z-index: 2;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 640px;
}
.hero__media a {
  display: block;
  position: relative;
  transition: transform 0.5s var(--ease, cubic-bezier(0.16, 1, 0.3, 1));
}
.hero__media a:hover { transform: translateY(-6px); }
.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 580px);
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
  animation: heroCarIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__media-badge {
  position: absolute;
  left: 0;
  bottom: 12%;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.hero__media-badge span:last-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  color: var(--accent);
}
@keyframes heroCarIn {
  from { opacity: 0; transform: translateX(28px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
  @media (max-width: 960px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero--split .hero__content {
    padding: 24px 20px;
    background: rgba(8, 8, 8, 0.88);
  }
  .hero__media {
    order: -1;
    justify-self: center;
    max-width: min(100%, 520px);
  }
  .hero__media img {
    max-height: 42vh;
    object-position: center;
  }
  .hero__media-badge { bottom: 8%; left: 8px; }
  .hero--split .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.35) 0%,
      rgba(8, 8, 8, 0.92) 42%,
      rgba(8, 8, 8, 0.98) 100%
    );
  }
}

/* ---------- Homepage extras ---------- */
.section--tight { padding: clamp(48px, 8vw, 100px) 0; }

.home-perks {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 3px solid var(--accent);
}
.home-perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.home-perk h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.home-perk p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}
.home-perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .home-perks__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .home-perks__grid { grid-template-columns: 1fr; }
}

.home-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.home-brand {
  display: inline-flex;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.home-brand:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.home-brands__note {
  font-size: 14px;
  color: var(--ink-3);
}

.home-depts { background: var(--bg-2); }
.home-depts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-dept {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 12px;
  min-height: 220px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.home-dept:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(255, 87, 34, 0.12);
}
.home-dept__tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.home-dept h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.home-dept p {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.home-dept__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 1000px) {
  .home-depts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-depts__grid { grid-template-columns: 1fr; }
}

.about__visual--drip {
  border: 2px solid var(--ink);
  border-radius: 12px;
}
.about__visual--drip img { border-radius: 10px; }
.about { padding: clamp(80px, 12vw, 140px) 0; }

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-why__card {
  padding: 32px 28px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.home-why__card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.home-why__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 800px) {
  .home-why__grid { grid-template-columns: 1fr; }
}

.home-reviews {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) 0;
}
.home-reviews__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.home-reviews__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}
.home-reviews__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}
.home-reviews__stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.home-reviews__lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  font-weight: 600;
}
.home-reviews__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin: 8px 0 12px;
  color: var(--ink);
}
.home-reviews__title em { color: var(--accent); font-style: normal; }
.home-reviews__lead {
  margin: 0;
  color: var(--ink-3);
  max-width: 480px;
  line-height: 1.6;
}
.home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}
.review-card__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card__text {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  flex: 1;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--bg-3);
}
.review-card__author strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.review-card__author span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.home-reviews__foot {
  margin-top: clamp(28px, 4vw, 40px);
  text-align: center;
}
@media (max-width: 1024px) {
  .home-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .home-reviews__head {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-reviews__lead { margin: 0 auto; }
  .home-reviews__grid { grid-template-columns: 1fr; }
}

.home-visit {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--ink);
  color: #fff;
}
.home-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.home-visit__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.home-visit__title em { color: var(--accent); font-style: normal; }
.home-visit .sec-head__kicker { color: var(--accent); }
.home-visit__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.home-visit__list li {
  display: grid;
  gap: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.home-visit__list strong {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.home-visit__list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-visit__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-visit__ctas .hero__cta--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.home-visit__map {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  background: #1a1a1a;
}
.home-visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
@media (max-width: 900px) {
  .home-visit__grid { grid-template-columns: 1fr; }
}

/* ---------- Site-wide layout utilities ---------- */
.hero__cta--block {
  width: 100%;
  justify-content: center;
}

.page-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 32px;
}
.page-head em { color: var(--accent); font-style: normal; }

.lead {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
  max-width: 52ch;
}

.statband__grid--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .statband__grid--compact { grid-template-columns: 1fr; }
}

.info-block { margin-bottom: 24px; }
.info-block__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-block__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.3;
}
.info-block__value--lg { font-size: 32px; }
.info-block__text {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
}

.form-panel {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
}
.form-panel--wide { max-width: 720px; margin: 0 auto; }
.form-panel__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.map-embed {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: min(450px, 55vh);
  border: 0;
}

.filters {
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.filters__count {
  margin-left: auto;
  margin-top: 0;
  width: auto;
  line-height: 44px;
  align-self: center;
}
@media (max-width: 767px) {
  .filters__count {
    width: 100%;
    margin-left: 0;
    line-height: 1.4;
    padding-top: 4px;
  }
}


.vd__ctas .hero__cta--ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

/* Vehicle detail page — buttons & gallery */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn--sm {
  font-size: 10px;
  padding: 11px 16px;
  letter-spacing: 0.12em;
}
.modal__ctas .btn--outline,
.modal__ctas .hero__cta--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
}

.container--narrow { max-width: 800px; }
.container--form { max-width: 920px; margin: 0 auto; }

/* Credit application — multi-section form (dripmotors.ca style) */
.credit-apply { padding-top: clamp(32px, 5vw, 56px); }
.credit-apply__lead {
  margin: 0 0 clamp(28px, 4vw, 40px);
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 16px;
  max-width: 72ch;
}
.credit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.credit-form__section {
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.credit-form__section--consent {
  background: var(--bg-2);
}
.credit-form__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  width: 100%;
  padding: 0;
  margin: 0 0 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
}
.credit-form__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
}
.credit-form__hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-3);
}
.credit-form .form-group { margin-bottom: 16px; }
.credit-form .form-group:last-child { margin-bottom: 0; }
.credit-form .form-row { margin-bottom: 0; }
.credit-form .form-row .form-group { margin-bottom: 16px; }
.credit-form .form-row:last-child .form-group:last-child { margin-bottom: 0; }
.form-row--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .form-row--3 { grid-template-columns: 1fr; }
}
.req { color: var(--accent); }
.opt {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.credit-form__links {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink-3);
}
.credit-form__links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.credit-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  cursor: pointer;
}
.credit-form__check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.credit-form__disclaimer {
  margin: 20px 0 24px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-3);
}
.credit-form__disclaimer strong { color: var(--ink); }
.credit-form__submit { margin-top: 4px; }
.credit-form .form__out { margin-top: 16px; text-align: center; }

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.feature-card__icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.feature-card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

.form__out {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}

.foot__addr {
  color: var(--ink-2);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

.u-mt-16 { margin-top: 16px; }

/* Compare toolbar & chips */
.compare-toolbar {
  margin-bottom: clamp(24px, 4vw, 40px);
  padding: clamp(16px, 3vw, 24px);
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 14px;
}
.compare-toolbar__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0;
}
.compare-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.compare-toolbar__hint {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.compare-toolbar__hint a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.compare-toolbar__hint code {
  font-size: 12px;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover,
.chip--active {
  background: var(--ink);
  color: #fff;
}

/* Floating compare bar (inventory) */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.94);
  color: #fff;
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.compare-bar.is-visible { transform: translateY(0); }
.compare-bar__inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.compare-bar__text {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.compare-bar__text strong { color: var(--accent-2); }
.compare-bar__actions .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.compare-bar__actions .btn--outline:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- Site-wide mobile polish ---------- */
@media (max-width: 768px) {
  .sec-head { margin-bottom: 48px; }
  .sec-head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .sec-head__title { font-size: clamp(36px, 10vw, 56px); }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hero__ctas .hero__cta { justify-content: center; }
  .hero--home .hero__stats {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero--home .hero__stat-num { font-size: 28px; }
  .hero--home .hero__stat-lbl { font-size: 9px; }
  .hero__credit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__credit-float {
    width: 100%;
  }
  .hero__credit-headline-float {
    animation: heroCreditFloat 6s ease-in-out infinite;
  }
  @keyframes heroCreditFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
  }
  .hero__credit-icon { width: 40px; height: 40px; font-size: 16px; }
  .featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inv-grid { gap: 20px; }
  .filters select { flex: 1 1 calc(50% - 6px); min-width: 140px; }
  .filters__count { width: 100%; margin-left: 0; line-height: 1.4; }
  .modal__box { padding: 24px 20px; max-height: 92vh; }
  .modal__title { font-size: 32px; }
  .modal__price { font-size: 40px; }
  .vd__price { font-size: 42px; }
  .vd__ctas { flex-direction: column; }
  .vd__ctas .btn { width: 100%; justify-content: center; }
  .compare-card__actions { flex-direction: column; }
  .compare-card__actions .btn { width: 100%; justify-content: center; }
  .home-showcase { grid-template-columns: 1fr; }
  .inv-card__btn { padding: 10px 12px; font-size: 11px; }
  .home-visit__ctas { flex-direction: column; }
  .home-visit__ctas .hero__cta { justify-content: center; }
  .strip .hero__cta { width: 100%; justify-content: center; max-width: 320px; }
  .statband { padding: 48px 0; }
  .stat__num { font-size: clamp(40px, 12vw, 64px); }
  .form-panel { padding: 24px 20px; }
  .compare-bar__inner { justify-content: center; text-align: center; }
  .compare-bar__actions { width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .hero--home .hero__stats { grid-template-columns: 1fr; }
  .filters select { flex: 1 1 100%; }
}
