/* ============================================================
   BENELUX AUTOMOTIVE — Design System
   Editorial Automotive · Antwerp · 2026
   ============================================================ */

:root {
  /* Surfaces — deep warm black */
  --ink-0:   #0A0A0B;
  --ink-1:   #0F0F11;
  --ink-2:   #15151A;
  --ink-3:   #1C1C22;
  --ink-4:   #26262E;
  --ink-5:   #3A3A45;

  /* Type */
  --bone:    #F5F4EE;     /* warm off-white, paper-like */
  --bone-2:  #E3E1D6;
  --mute:    #8B8B8F;
  --mute-2:  #5A5A5F;

  /* Accent — Benelux signature red */
  --red:       #E30613;
  --red-bright:#FF2D3D;
  --red-deep:  #B40510;
  --red-glow:  rgba(227, 6, 19, 0.35);

  /* Misc */
  --line:    rgba(245, 244, 238, 0.08);
  --line-2:  rgba(245, 244, 238, 0.14);
  --line-3:  rgba(245, 244, 238, 0.22);

  --bg:      var(--ink-0);
  --fg:      var(--bone);

  /* Typography */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-italic:  "Instrument Serif", serif;
  --f-body:    "Bricolage Grotesque", -apple-system, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Sizing */
  --container: 1440px;
  --gutter:    clamp(20px, 4vw, 56px);
  --radius:    2px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2:    cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:    180ms;
  --t-med:     420ms;
  --t-slow:    900ms;
}

/* Light theme */
[data-theme="light"] {
  --ink-0: #F2F0E8;
  --ink-1: #ECE9DF;
  --ink-2: #E2DED1;
  --ink-3: #D6D2C2;
  --ink-4: #B8B3A1;
  --ink-5: #807B69;
  --bone:  #0A0A0B;
  --bone-2:#1C1C22;
  --mute:  #5A5A5F;
  --mute-2:#8B8B8F;
  --line:    rgba(10, 10, 11, 0.08);
  --line-2:  rgba(10, 10, 11, 0.14);
  --line-3:  rgba(10, 10, 11, 0.22);
  --bg:    var(--ink-0);
  --fg:    var(--bone);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--fg);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection {
  background: var(--red);
  color: var(--bone);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ink-1); }
::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Grain overlay removed for performance */

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.display-italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-feature-settings: "ss01" on;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute);
}
.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-fluid {
  width: 100%;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* Section number labels — editorial section markers */
.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-bottom: 24px;
}
.section-marker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--red);
  display: inline-block;
}
.section-marker .num {
  color: var(--bone);
  font-weight: 600;
}

/* Custom cursor removed */
.cursor, .cursor-ring { display: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  transition: background 320ms var(--ease), backdrop-filter 320ms var(--ease), padding 320ms var(--ease), border-color 320ms var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(10, 10, 11, 0.94);
  border-bottom-color: var(--line);
}
[data-theme="light"] .header.is-scrolled {
  background: rgba(242, 240, 232, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  text-transform: uppercase;
  text-decoration: none;
}
.brand-logo {
  width: 56px;
  height: 28px;
  flex-shrink: 0;
}
.brand-logo path,
.brand-logo line {
  stroke: var(--red);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .lg {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.brand-name .sm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-top: 5px;
  text-transform: uppercase;
}
.brand-name .sm::before,
.brand-name .sm::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
  max-width: 14px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone-2);
  transition: color var(--t-fast) var(--ease);
}
.nav a:hover, .nav a.active { color: var(--bone); }
.nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: transparent;
  color: var(--bone);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lang-switch:hover { border-color: var(--red); background: rgba(227, 6, 19, 0.08); }
.lang-switch span.divider { color: var(--mute-2); }
.lang-switch span.active { color: var(--red); }

.theme-toggle {
  width: 34px; height: 34px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.theme-toggle:hover { border-color: var(--red); }
.theme-toggle svg { width: 14px; height: 14px; stroke: var(--bone); fill: none; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  border: 1px solid var(--red);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 320ms var(--ease);
  z-index: 0;
}
.cta-btn > * { position: relative; z-index: 1; }
.cta-btn:hover::before { transform: translateY(0); }
.cta-btn:hover { color: var(--ink-0); }
.cta-btn .arrow {
  width: 14px; height: 14px;
  display: inline-block;
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: transparent;
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line-3);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.cta-btn-ghost:hover { border-color: var(--red); background: rgba(227, 6, 19, 0.06); }

.menu-trigger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}
.menu-trigger span {
  width: 16px; height: 1px;
  background: var(--bone);
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-trigger { display: flex; }
  .header-cta .lang-switch { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink-0);
  z-index: 200;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform 480ms var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .nav-list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu .nav-list a {
  font-family: var(--f-display);
  font-size: clamp(36px, 9vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .nav-list a .num {
  font-family: var(--f-mono);
  font-size: 11px;
  vertical-align: top;
  margin-right: 12px;
  color: var(--red);
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--gutter) 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.6);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(227, 6, 19, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.5) 0%, rgba(10, 10, 11, 0.2) 30%, rgba(10, 10, 11, 0.85) 100%);
  pointer-events: none;
}

.hero-meta-strip {
  position: absolute;
  top: 100px; left: 0; right: 0;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  z-index: 5;
}
.hero-meta-strip .dot { color: var(--red); }

.hero-side {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  z-index: 5;
  white-space: nowrap;
}
.hero-side .red { color: var(--red); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(56px, 12vw, 192px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--bone);
  font-weight: 300;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-headline .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.hero-headline .red {
  color: var(--red);
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-sub {
  max-width: 380px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bone-2);
}
.hero-sub strong { color: var(--bone); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-plate {
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: stretch;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--line-2);
}
.hero-plate .left {
  background: var(--red);
  padding: 4px 8px;
  color: #fff;
}
.hero-plate .right {
  padding: 4px 12px;
  color: var(--bone);
}

/* Scroll indicator at bottom */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  z-index: 5;
}
.hero-scroll .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--mute) 0%, transparent 100%);
  position: relative;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 12px; height: 3px;
  background: var(--red);
  animation: scrollHint 2.4s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: translateX(0); opacity: 1; }
  60% { transform: translateX(48px); opacity: 0; }
  100% { transform: translateX(48px); opacity: 0; }
}

/* Hero brand marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.85);
  overflow: hidden;
  z-index: 4;
}
.marquee-track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after {
  content: "✱";
  color: var(--red);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 56px var(--gutter);
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bone);
  display: flex;
  align-items: baseline;
}
.stat-cell .num .unit {
  font-size: 0.4em;
  margin-left: 6px;
  color: var(--red);
  font-family: var(--f-mono);
  font-weight: 500;
}
.stat-cell .label {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  max-width: 220px;
}
@media (max-width: 1024px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 36px var(--gutter); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   FEATURED STOCK
   ============================================================ */
.section-stock {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 12ch;
}
.section-head h2 .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-head h2 .red { color: var(--red); }
.section-head .head-link {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.section-head .head-link:hover { border-color: var(--red); background: rgba(227, 6, 19, 0.06); }
.section-head .head-link .arrow { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* Editorial stock grid */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.stock-card {
  position: relative;
  background: var(--ink-1);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 480ms var(--ease), border-color 240ms var(--ease);
  display: flex;
  flex-direction: column;
}
.stock-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
}
.stock-card.feature { grid-column: span 6; }
.stock-card.regular { grid-column: span 3; }
.stock-card.wide { grid-column: span 6; }

@media (max-width: 1100px) {
  .stock-card.feature { grid-column: span 12; }
  .stock-card.regular { grid-column: span 6; }
  .stock-card.wide { grid-column: span 12; }
}
@media (max-width: 600px) {
  .stock-card.regular { grid-column: span 12; }
}

.stock-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-2);
}
.stock-card.feature .stock-img { aspect-ratio: 16/9; }
.stock-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.stock-card:hover .stock-img img {
  transform: scale(1.04);
}
.stock-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bone);
  color: var(--ink-0);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stock-tag.is-new {
  background: var(--red);
  color: #fff;
}
.stock-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(10, 10, 11, 0.7);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.stock-fav:hover { background: var(--red); border-color: var(--red); }
.stock-fav svg { width: 14px; height: 14px; stroke: var(--bone); fill: none; }

.stock-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stock-row-1 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.stock-brand {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.stock-price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--bone);
  white-space: nowrap;
}
.stock-card.feature .stock-price { font-size: 32px; }

.stock-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.stock-card.feature .stock-name { font-size: 32px; }

.stock-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.stock-specs span { display: inline-flex; align-items: center; gap: 6px; }
.stock-specs span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--red);
  display: inline-block;
}
.stock-specs span:first-child::before { display: none; }

/* ============================================================
   SELL YOUR CAR — split section
   ============================================================ */
.section-sell {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--ink-1);
}
.sell-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 80vh;
}
@media (max-width: 1024px) {
  .sell-grid { grid-template-columns: 1fr; min-height: auto; }
}
.sell-left {
  padding: 100px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .sell-left { border-right: none; border-bottom: 1px solid var(--line); padding: 80px var(--gutter); }
}
.sell-left::before {
  content: "VERKOOP";
  position: absolute;
  top: 20%;
  right: -10%;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(180px, 26vw, 360px);
  color: var(--ink-2);
  letter-spacing: -0.06em;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.sell-headline {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 300;
  max-width: 14ch;
}
.sell-headline .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}
.sell-headline .red { color: var(--red); }

.sell-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}
.sell-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sell-point .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.12em;
  padding-top: 2px;
}
.sell-point .text strong {
  display: block;
  font-size: 15px;
  color: var(--bone);
  margin-bottom: 4px;
}
.sell-point .text p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
}

.sell-right {
  padding: 100px var(--gutter);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sell-form-card {
  position: relative;
  z-index: 1;
  background: var(--ink-0);
  border: 1px solid var(--line-2);
  padding: 36px;
}
.sell-form-card .form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.sell-form-card .form-head h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.sell-form-card .form-head .stage {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.sell-form-card .form-head .stage .red { color: var(--red); }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  font-size: 16px;
  color: var(--bone);
  font-family: var(--f-body);
  transition: border-color var(--t-fast) var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field input::placeholder { color: var(--mute-2); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--f-mono);
  position: relative;
  overflow: hidden;
  border: none;
  transition: background var(--t-fast) var(--ease);
}
.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 320ms var(--ease);
  z-index: 0;
}
.form-submit > * { position: relative; z-index: 1; }
.form-submit:hover::before { transform: translateY(0); }
.form-submit:hover { color: var(--ink-0); }

/* ============================================================
   WHY US — services
   ============================================================ */
.section-why {
  padding: 120px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-cell {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.why-cell:last-child { border-right: none; }
.why-cell:hover { background: var(--ink-1); }
@media (max-width: 900px) { .why-cell { border-right: none; } }

.why-cell .icon {
  width: 48px; height: 48px;
  border: 1px solid var(--red);
  display: grid; place-items: center;
  margin-bottom: 32px;
  position: relative;
}
.why-cell .icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--red);
  opacity: 0.3;
}
.why-cell .icon svg {
  width: 22px; height: 22px;
  stroke: var(--bone);
  fill: none;
}
.why-cell .num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.18em;
}
.why-cell h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 36ch;
}
.why-cell .why-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.why-cell .why-link .arrow { transition: transform var(--t-fast) var(--ease); }
.why-cell:hover .why-link .arrow { transform: translateX(6px); }

/* ============================================================
   FINANCING TEASER
   ============================================================ */
.section-finance {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--ink-1);
  border-block: 1px solid var(--line);
}
.section-finance::before {
  content: "00";
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(280px, 40vw, 580px);
  color: var(--ink-2);
  letter-spacing: -0.06em;
  line-height: 0.85;
  pointer-events: none;
  font-weight: 300;
  z-index: 0;
}
.finance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .finance-grid { grid-template-columns: 1fr; }
}

.finance-text h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 14ch;
}
.finance-text h2 .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}
.finance-text p {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 48ch;
}
.finance-text .partners {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.finance-text .partners .partner {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  color: var(--bone);
}

/* Calculator */
.calc {
  background: var(--ink-0);
  border: 1px solid var(--line-2);
  padding: 32px;
  position: relative;
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.calc-head h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
}
.calc-head .badge {
  padding: 4px 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.calc-row {
  margin-bottom: 22px;
}
.calc-row .lbl {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.calc-row .lbl .val {
  color: var(--red);
  font-weight: 600;
}
.calc-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--line-2);
  border-radius: 0;
  outline: none;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--red);
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid var(--bone);
  box-shadow: 0 0 0 1px var(--red);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--red);
  cursor: pointer;
  border: 2px solid var(--bone);
  box-shadow: 0 0 0 1px var(--red);
  border-radius: 50%;
}

.calc-result {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.calc-result .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.calc-result .amt {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--bone);
  line-height: 1;
}
.calc-result .amt .unit {
  font-size: 0.45em;
  color: var(--red);
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
}

/* ============================================================
   SHOWROOM SLIDESHOW / IMAGES
   ============================================================ */
.section-showroom {
  padding: 120px 0;
}
.showroom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 70vh;
  min-height: 600px;
}
.showroom-cell {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.showroom-cell:nth-child(1) { grid-row: 1 / 3; }
.showroom-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.showroom-cell:hover img {
  transform: scale(1.04);
}
.showroom-cell .label {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 10px;
  background: rgba(10, 10, 11, 0.85);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .showroom-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
    height: auto;
  }
  .showroom-cell:nth-child(1) { grid-row: 1; grid-column: 1 / 3; height: 280px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testi {
  padding: 120px 0;
  background: var(--ink-1);
  border-block: 1px solid var(--line);
}
.testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}
.google-rating {
  text-align: right;
}
.google-rating .rating-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--bone);
  line-height: 0.9;
}
.google-rating .stars {
  margin-top: 8px;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 4px;
}
.google-rating .src {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi-card {
  padding: 36px 32px;
  border: 1px solid var(--line-2);
  background: var(--ink-0);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testi-card::before {
  content: "❝";
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 80px;
  color: var(--red);
  line-height: 1;
}
.testi-card .stars {
  color: var(--red);
  letter-spacing: 3px;
  font-size: 14px;
}
.testi-card .quote {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--bone);
}
.testi-card .author {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-card .author .ava {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 500;
  color: #fff;
  font-size: 16px;
}
.testi-card .author .meta .name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.testi-card .author .meta .when {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.section-locations {
  padding: 120px 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--ink-1);
  transition: background var(--t-fast) var(--ease);
}
.loc-card:last-child { border-right: none; }
@media (max-width: 900px) {
  .loc-card { border-right: none; border-bottom: 1px solid var(--line); }
  .loc-card:last-child { border-bottom: none; }
}
.loc-card:hover { background: var(--ink-2); }
.loc-card .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.loc-card h3 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.loc-card .addr {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-2);
}
.loc-card .info-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.loc-card .info-grid .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.loc-card .info-grid .val {
  margin-top: 4px;
  color: var(--bone);
  font-size: 14px;
}
.loc-card .actions {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-block: 1px solid var(--line);
  padding: 36px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  background: var(--ink-1);
}
.trust-bar .lead {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.trust-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.trust-item .check {
  width: 24px; height: 24px;
  border: 1px solid var(--red);
  display: grid; place-items: center;
  color: var(--red);
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   CTA / Contact callout
   ============================================================ */
.section-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(227, 6, 19, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.cta-headline {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 auto;
}
.cta-headline .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}
.cta-actions {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-1);
  padding: 80px var(--gutter) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand { margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-brand .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--bone-2);
}
.footer-brand .info a { color: var(--bone-2); transition: color var(--t-fast) var(--ease); }
.footer-brand .info a:hover { color: var(--red); }

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--bone-2);
  transition: color var(--t-fast) var(--ease);
}
.footer-col ul a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.footer-bottom .socials a:hover { border-color: var(--red); background: rgba(227, 6, 19, 0.08); }
.footer-bottom .socials svg {
  width: 14px; height: 14px;
  fill: var(--bone);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  background: #25D366;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.fab-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.55);
}
.fab-whatsapp .ico {
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.fab-whatsapp svg { width: 22px; height: 22px; fill: #fff; }
@media (max-width: 768px) {
  .fab-whatsapp .lbl { display: none; }
  .fab-whatsapp { padding: 14px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal-mask.is-in > span { transform: translateY(0); }

/* Hero entrance — only after .is-loaded */
.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.is-loaded .hero-headline .word > span { transform: translateY(0); }

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.is-loaded .hero-fade {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE-SPECIFIC: Stock listing
   ============================================================ */
.page-hero {
  padding: 200px var(--gutter) 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .crumb .red { color: var(--red); }
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 300;
}
.page-hero h1 .it {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
}
.page-hero .lead {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 50ch;
}

/* Stock filter bar */
.stock-filters {
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--ink-1);
  position: sticky;
  top: 70px;
  z-index: 50;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.filter-group label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.filter-group select {
  background: transparent;
  border: 1px solid var(--line-2);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--bone);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23E30613' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
  transition: border-color var(--t-fast) var(--ease);
}
.filter-group select:focus { border-color: var(--red); outline: none; }
.filter-result {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.filter-result .num { color: var(--red); font-weight: 600; }

/* ============================================================
   PAGE-SPECIFIC: Vehicle detail
   ============================================================ */
.veh-hero {
  padding: 140px var(--gutter) 80px;
}
.veh-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
@media (max-width: 1024px) { .veh-grid { grid-template-columns: 1fr; } }

.veh-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.veh-gallery .main {
  grid-column: 1 / 3;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.veh-gallery .main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.veh-gallery .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease);
}
.veh-gallery .thumb:hover { border-color: var(--red); }
.veh-gallery .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.veh-info .crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}
.veh-info h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}
.veh-info .veh-tagline {
  margin-top: 8px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 22px;
  color: var(--mute);
}
.veh-info .veh-price {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
}
.veh-info .veh-price .amt {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.veh-info .veh-price .mo {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.veh-info .veh-price .mo .red { color: var(--red); }

.veh-specs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.veh-spec .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.veh-spec .val {
  margin-top: 4px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.veh-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.veh-features {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.veh-features h2 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.veh-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
}
@media (max-width: 800px) { .veh-feat-grid { grid-template-columns: 1fr 1fr; } }
.veh-feat-item {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.veh-feat-item::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   STAGGERED FORMS / Multi-step
   ============================================================ */
.step-wizard {
  background: var(--ink-1);
  border: 1px solid var(--line);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.steps-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.step-pill {
  flex: 1;
  height: 4px;
  background: var(--ink-3);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.step-pill.active { background: var(--red); }
.step-pill.done { background: var(--bone); }

.step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.step h2 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.wizard-actions {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   MAP placeholder
   ============================================================ */
.map-block {
  width: 100%;
  height: 380px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(245, 244, 238, 0.02) 30px 60px);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(227, 6, 19, 0.2);
  animation: ping 1.6s var(--ease) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.4); }
  100% { box-shadow: 0 0 0 24px rgba(227, 6, 19, 0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hide-mobile { }
.show-mobile { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
