/* ============================================================
   RICARS v6 — Main Stylesheet
   Design system: Precision 2026
   Canvas · Midnight · Signal · Chromium
   ============================================================ */

/* ── ABNES — RICARS wordmark font ── */
@font-face {
  font-family: 'ABNES';
  src: url('../fonts/abnes.otf') format('opentype'),
       url('../fonts/abnes.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block; /* no FOUT on brand wordmark */
}

/* ── Fraunces — display/titres (OFL, auto-hébergé, RGPD-safe) ── */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Skip link — keyboard accessibility ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: #0B0D12;
  color: #fff;
  font-family: -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: top 160ms;
}
.skip-link:focus { top: 16px; }

/* ── Focus-visible — WCAG 2.1 AA ──
   Visible ring for keyboard, invisible for mouse.
   ── */
:focus-visible {
  outline: 2px solid #0B0D12;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Inverted on dark sections */
.hero :focus-visible,
.inventory :focus-visible,
.why :focus-visible,
.finalcta :focus-visible,
.footer :focus-visible {
  outline-color: rgba(255, 255, 255, 0.80);
}

/* Suppress outline on mouse click */
:focus:not(:focus-visible) { outline: none; }

/* ── Design Tokens ──
   2026 Precision palette.
   Old token names kept for CSS compatibility — values fully replaced.
   ── */
:root {
  /* ── Surface system ── */
  --c-canvas:     #F0F1F3;  /* cool optical neutral — replaces warm ivory */
  --c-ivoire:     #F0F1F3;  /* alias: canvas */
  --c-white:      #FFFFFF;  /* pure white surfaces */

  /* ── Typography ── */
  --c-ink:        #0B0D12;  /* blue-black — not pure #000 */
  --c-encre:      #0B0D12;  /* alias: ink */
  --c-graphite:   #363A46;  /* secondary text */
  --c-pierre:     #6A6E7D;  /* muted / meta */

  /* ── Borders ── */
  --c-border:     #DFE1E8;  /* cool subtle border */
  --c-sable:      #DFE1E8;  /* alias: border */

  /* ── Brand accent system ──
     --c-or is now Signal Noir: ink-black for CTAs.
     Amber lives ONLY as --c-amber for functional status only.
     ── */
  --c-or:         #0B0D12;  /* Signal Noir — CTAs, interactive (WAS: gold) */
  --c-or-pale:    #F0F1F3;  /* → canvas */
  --c-or-doux:    #DFE1E8;  /* → border */
  --c-amber:      #C28B2A;  /* Reserved status ONLY — not decorative */

  /* ── Dark sections ── */
  --c-dark:       #090B0F;  /* inventory, hero fallback */
  --c-nuit:       #0D1520;  /* why section, deep moments */
  --c-nuit-deep:  #090B0F;  /* alias: dark */

  /* ── Functional (locked) ── */
  --c-green:      #25D366;  /* WhatsApp — immutable */
  --c-success:    #16A34A;  /* available status */

  /* ── Typography faces ── */
  --f-abnes:   'ABNES', 'Arial Black', sans-serif;  /* RICARS wordmark only */
  --f-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --f-ui:      -apple-system, 'Inter', 'Helvetica Neue', sans-serif;

  /* ── Spacing ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  120px;

  /* ── Motion — Emil Kowalski system ──
     Expo-out for enters. Sharp for exits. Linear for carousels.
     ── */
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);   /* spring-settle — entrances */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);   /* alias */
  --ease-sharp:   cubic-bezier(0.4, 0, 1, 1);      /* exits */
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);      /* alias */
  --ease-hover:   cubic-bezier(0.4, 0, 0.2, 1);    /* micro-interactions */
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94); /* images, carousels */

  --dur-instant:  80ms;    /* press feedback */
  --dur-micro:    160ms;   /* hovers */
  --dur-base:     280ms;   /* transitions */
  --dur-reveal:   680ms;   /* scroll reveals */
  --dur-cinematic: 1000ms; /* hero, large elements */
}

/* ── Body ── */
body {
  background: var(--c-canvas);
  color: var(--c-ink);
  font-family: var(--f-ui);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--dur-base) var(--ease-hover),
              box-shadow var(--dur-base) var(--ease-hover);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-sable);
}

.nav__logo {
  flex: 0 0 auto;
  font-family: var(--f-abnes);
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  transition: color var(--dur-base);
  margin-right: 48px;
}
.nav--solid .nav__logo { color: var(--c-encre); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  margin-right: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-micro);
  white-space: nowrap;
}
.nav--solid .nav__link { color: var(--c-graphite); }
.nav__link:hover { color: var(--c-white); }
.nav--solid .nav__link:hover { color: var(--c-encre); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  background: transparent;                      /* plus de fond vert */
  color: #fff;                                  /* état transparent, sur le hero sombre */
  border: 1px solid rgba(255, 255, 255, 0.40);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--dur-micro), background var(--dur-micro), border-color var(--dur-micro);
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
}
/* État solid (nav blanche) : pill encre plein */
.nav--solid .nav__cta {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.nav--solid .nav__cta:hover { background: #000; }

.nav__cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #25D366;            /* glyphe WhatsApp vert = accent */
}

/* ============================================================
   HERO — The Opening
   Bottom-aligned. Single column. Staggered reveal.
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0B1118; /* fallback while video loads */
}

/* ── Video ── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ── Veil: two gradients layered
   Top: minimal (lets the video breathe at top 35%)
   Bottom: heavy (text zone readable) ── */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 14, 24, 0.72) 0%,
      rgba(8, 14, 24, 0.55) 20%,
      rgba(8, 14, 24, 0.40) 38%,
      rgba(8, 14, 24, 0.55) 58%,
      rgba(8, 14, 24, 0.88) 80%,
      rgba(8, 14, 24, 0.97) 100%
    );
}

/* ── Content: bottom-aligned ── */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 72px;
}

/* ── Kicker: always visible immediately ──
   On desktop: appears at 0.7s (after 0.7s of video silence)
   On mobile: appears at 0.1s (clarity is immediate)  ── */
.hero__kicker {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroUp 500ms cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* ── Headline ── */
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: normal;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero__headline em {
  font-style: italic;
  /* Premium italic — warm white, not gold (gold = ink in new palette) */
  color: rgba(255, 255, 255, 0.82);
}

/* Line 1: appears at 1.4s (0.7s of kicker visible first) */
.hero__line-1 {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: heroUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

/* Line 2: staggered 160ms after line 1 */
.hero__line-2 {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: heroUp 620ms cubic-bezier(0.16, 1, 0.3, 1) 1.56s forwards;
}

/* ── Claim ── */
.hero__claim {
  font-family: var(--f-ui);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroUp 580ms cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards;
}

/* ── Actions ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroUp 560ms cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
}

/* Primary CTA — amber fill */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--c-or);
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 160ms ease-out,
              box-shadow 160ms ease-out,
              background 160ms;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 13, 18, 0.22);
  background: #363A46;
}

.hero-cta-primary:active { transform: scale(0.97); }

.hero-cta-arrow {
  transition: transform 160ms ease-out;
}

.hero-cta-primary:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* WhatsApp CTA — ghost with WA green on hover */
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 160ms ease-out,
              color 160ms ease-out,
              background 160ms ease-out,
              transform 160ms ease-out;
}

.hero-cta-wa:hover {
  border-color: var(--c-green);
  color: var(--c-white);
  background: rgba(37, 211, 102, 0.12);
  transform: translateY(-1px);
}

.hero-cta-wa:active { transform: scale(0.97); }

/* ── Trust strip: horizontal pills ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 500ms ease-out 3.0s forwards;
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: background var(--dur-micro), border-color var(--dur-micro);
}

.hero__trust-pill:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__trust-pill svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
}

.hero__trust-pill strong {
  color: var(--c-white);
  font-weight: 700;
}

/* ── Scroll indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: heroFadeIn 400ms ease-out 3.8s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollBob 2.2s ease-in-out infinite;
}

/* ── Mute button ── */
.hero__mute {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 14, 24, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: border-color var(--dur-micro), background var(--dur-micro), color var(--dur-micro);
  opacity: 0;
  animation: heroFadeIn 400ms ease-out 3.4s forwards;
}

.hero__mute:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(8, 14, 24, 0.65);
  color: var(--c-white);
}

/* CTA — shared for sections below the hero (btn-primary renamed but keep backwards compat) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--c-or);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform var(--dur-micro) var(--ease-hover),
              box-shadow var(--dur-micro) var(--ease-hover),
              background var(--dur-micro);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11, 13, 18, 0.22);
  background: #363A46;
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary .btn-arrow { transition: transform var(--dur-micro) var(--ease-hover); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.90);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: border-color var(--dur-micro), color var(--dur-micro),
              background var(--dur-micro), transform var(--dur-micro);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform var(--dur-micro) var(--ease-hover),
              box-shadow var(--dur-micro) var(--ease-hover);
  opacity: 0;
  animation: fadeIn 600ms ease 1.6s forwards;
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Pulse ring */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-fab svg { flex-shrink: 0; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* Legacy aliases used by other sections */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollBob {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.08); }
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.18); opacity: 0; }
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */

/* Tablet: tighten padding, remove scroll indicator */
@media (max-width: 1100px) {
  .hero__content { padding: 0 40px 64px; }
}

/* Mobile: kicker immediate, headline faster, CTAs stack */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }

  .hero__content { padding: 0 24px 80px; }

  /* Tighten the stagger on mobile — clarity over drama */
  .hero__kicker { animation-delay: 0.1s; }
  .hero__line-1 { animation-delay: 0.35s; }
  .hero__line-2 { animation-delay: 0.52s; }
  .hero__claim  { animation-delay: 0.80s; }
  .hero__actions { animation-delay: 1.10s; }
  .hero__trust  { animation-delay: 1.45s; }
  .hero__mute   { animation-delay: 1.80s; bottom: 20px; right: 16px; }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  .hero__headline { font-size: clamp(42px, 11vw, 60px); }
  .hero__claim { font-size: 14px; }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-cta-primary,
  .hero-cta-wa {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  .hero__trust { gap: 6px; }
  .hero__trust-pill { font-size: 11px; padding: 6px 11px; }
  .hero__trust-pill svg { display: none; }
}

/* Reduced motion: no transforms, just fade */
@media (prefers-reduced-motion: reduce) {
  .hero__kicker,
  .hero__line-1,
  .hero__line-2,
  .hero__claim,
  .hero__actions,
  .hero__trust,
  .hero__mute,
  .hero__scroll {
    transform: none !important;
    animation-name: heroFadeIn;
    animation-duration: 300ms;
    animation-timing-function: ease-out;
  }
  .hero__kicker  { animation-delay: 0ms; }
  .hero__line-1  { animation-delay: 50ms; }
  .hero__line-2  { animation-delay: 100ms; }
  .hero__claim   { animation-delay: 150ms; }
  .hero__actions { animation-delay: 200ms; }
  .hero__trust   { animation-delay: 250ms; }
  .hero__scroll  { animation-delay: 300ms; }
  .hero__mute    { animation-delay: 300ms; }
}

/* ============================================================
   SHARED SECTION TOKENS
   ============================================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-encre);
}

.section-title em {
  font-style: italic;
  color: var(--c-or);
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid var(--c-sable);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-graphite);
  transition: border-color var(--dur-micro), color var(--dur-micro),
              transform var(--dur-micro);
}
.btn-outline:hover {
  border-color: var(--c-encre);
  color: var(--c-encre);
  transform: translateY(-1px);
}
.btn-outline svg { transition: transform var(--dur-micro); }
.btn-outline:hover svg { transform: translateX(3px); }

/* Dark primary button variant */
.btn-primary--dark {
  background: var(--c-encre);
  color: var(--c-white);
}
.btn-primary--dark:hover {
  background: var(--c-graphite);
  box-shadow: 0 10px 32px rgba(15, 15, 15, 0.20);
}

/* ── Scroll Reveal System ──
   Default: fade-up (translate + opacity, expo-out easing).
   Premium feel — nothing generic AOS about this.
   Each section gets its own choreography via --delay.
   ── */
/* L'état masqué n'existe QUE si le JS tourne (html.js). Sans JS / JS en échec,
   le contenu reste visible — l'animation enrichit, ne conditionne jamais l'accès. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  var(--dur-reveal) var(--ease-expo),
    transform var(--dur-reveal) var(--ease-expo);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion : aucun masquage, tout visible d'emblée (pas de dépendance au reveal) */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   INVENTORY — Live carousel section
   Dark background. Full-width. Continuous infinite scroll.
   ============================================================ */
.inventory {
  background: var(--c-canvas);
  padding: 104px 0 112px;
  overflow: hidden;
}

/* ── Header ── */
.inventory__head {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 64px;
}

/* ── Inventory section header ── */
.inventory__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 12px;
}

.inventory__sub {
  font-family: var(--f-ui);
  font-size: 15px;
  color: var(--c-pierre);
  letter-spacing: 0.01em;
}

/* ── Carousel wrapper: clips the scrolling track ── */


/* ── Infinite scroll track ──
   Contains 2× the cards. Animation moves -50% = one full set.
   This creates a seamless visual loop.
   Duration: 40s = slow, premium feel.
   Emil K: linear is correct here (constant velocity feels expensive).
   ── */






/* ── Edge fades: left/right vignette ── */






/* ── Carousel card ── */






/* ── Card image: 16:9 ── */




/* Placeholder — premium branded state, not empty */
.ccard__img-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ccard__placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle vignette — bottom only, very light */


/* Status badge: top-left ── color rules:
   Available → verified green ONLY
   Reserved  → amber ONLY            */






/* ── Card info block ── */









/* Price row */






/* ── Proof tags: conditional commercial arguments per vehicle ──
   Belgian origin, 1st owner, service history, warranty.
   Displayed only when confirmed in CPT. Never fabricated.
   ── */
.ccard__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0 2px;
}

.ccard__proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 160ms, color 160ms;
}







/* WhatsApp button: absolute, bottom-right of card */






/* ── Inventory CTA ── */
.inventory__empty {
  text-align: center;
  color: var(--c-pierre);
  font-size: 15px;
  padding: 40px 24px 72px;
}

.inventory__cta-wrap {
  display: flex;
  justify-content: center;
}

.inventory__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 180ms, color 180ms, background 180ms, transform 180ms;
}

.inventory__cta:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.inventory__cta:active { transform: scale(0.97); }
.inventory__cta svg { transition: transform 180ms ease-out; }
.inventory__cta:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .inventory__head { padding: 0 40px; }
}

@media (max-width: 640px) {
  .inventory { padding: 72px 0 64px; }
  .inventory__head { padding: 0 20px; margin-bottom: 40px; }


}

/* ============================================================
   WHY RICARS — Editorial manifesto layout
   Left: sticky heading + CTA  |  Right: commitment list
   ============================================================ */
.why {
  background: var(--c-nuit-deep);
  padding: 72px 0 80px;
}

.why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Left: sticky lead ── */
.why__lead {
  position: sticky;
  top: 100px;
}

.why__heading {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin-bottom: 18px;
}

.why__lead-sub {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 40px;
}

/* WhatsApp CTA — only WA green on this element */
.why__wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  margin-bottom: 12px;
  display: flex;
}

.why__wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.why__wa-cta:active { transform: scale(0.97); }

.why__wa-note {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}

/* ── Right: commitment list ── */
.why__list {
  display: flex;
  flex-direction: column;
}

/* Each item: separated by thin rule */
.why__item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0; /* align visually with heading */
}

.why__item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Title: large display serif, white */
.why__item-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: normal;
  letter-spacing: -0.015em;
  color: var(--c-white);
  line-height: 1.1;
  flex: 1;
}

/* Tag: amber — specific, verifiable claim */
.why__item-tag {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 3px; /* optical baseline alignment */
}

/* Proof text: specific, not vague */
.why__item-text {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.50);
  max-width: 600px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why__inner {
    padding: 0 40px;
    grid-template-columns: 260px 1fr;
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .why__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why__lead { position: static; }
  .why__item:first-child { padding-top: 36px; }
}

@media (max-width: 640px) {
  .why { padding: 72px 0 80px; }
  .why__inner { padding: 0 20px; }
  .why__item-top { flex-direction: column; gap: 6px; }
  .why__item-title { font-size: 22px; }
}

/* ============================================================
   SOCIAL PROOF — AutoScout24 reviews (exclusive)
   Premium structure. Data-driven when real reviews exist.
   ============================================================ */
.reviews {
  background: var(--c-canvas);
  padding: 64px 0 72px;
  border-top: 1px solid var(--c-border);
}

/* Pending state: tighter because content is minimal */
.reviews:has(.reviews__pending) {
  padding-bottom: 48px;
}

.reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Head: two-column ── */
.reviews__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.reviews__head-left { flex: 1; min-width: 280px; }
.reviews__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.reviews__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 16px;
}

/* Aggregate rating: shown only when real data is set */
.reviews__aggregate {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__agg-score {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

.reviews__agg-right { display: flex; flex-direction: column; gap: 3px; }
.reviews__agg-stars { display: flex; gap: 2px; }
.reviews__agg-count { font-size: 12px; color: var(--c-pierre); }

/* Super Vendeur AS24 badge */
.reviews__badge-as24 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
}

.reviews__badge-as24 svg { color: var(--c-avail); flex-shrink: 0; }

.reviews__badge-as24-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.reviews__badge-as24-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}

.reviews__badge-as24-source {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-pierre);
}

/* Source links */
.reviews__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.reviews__source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-2, var(--c-graphite));
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--c-border);
  transition: border-color 160ms, color 160ms;
}

.reviews__source-link:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
}

.reviews__source-icon--as24 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: #002FA7;
  padding: 2px 5px;
  border-radius: 2px;
}

/* ── Review cards grid ── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}

/* Individual card */
.rcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  height: 100%;            /* hauteurs égales dans la grille */
  transition: box-shadow 200ms, transform 200ms;
}
.rcard:hover {
  box-shadow: 0 8px 28px rgba(11,13,18,0.07);
  transform: translateY(-2px);
}

/* Card header: stars + source */
.rcard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rcard__stars { display: flex; gap: 2px; }

.rcard__source {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: #002FA7;
  padding: 2px 5px;
  border-radius: 2px;
}

.rcard__source-g { opacity: 0.8; }

/* Quote: the focal point */
.rcard__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--c-ink);
  flex: 1;
  margin: 0;
}

.rcard__quote p { margin: 0; }

/* Attribution */
.rcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}

.rcard__author-block { display: flex; flex-direction: column; gap: 2px; }

.rcard__name {
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--c-ink);
}

.rcard__city { font-size: 11px; color: var(--c-pierre); }
.rcard__date { font-size: 11px; color: var(--c-pierre); flex-shrink: 0; }

/* ── Pending state — verified-source block, premium, not empty ── */
.reviews__pending {
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reviews__pending-statement {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-graphite);
  max-width: 560px;
}

/* Source cards: two linked cards per review platform */
.reviews__source-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reviews__src-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out, transform 200ms ease-out;
}

.reviews__src-card:hover {
  border-color: var(--c-ink);
  box-shadow: 0 6px 24px rgba(11, 13, 18, 0.08);
  transform: translateY(-2px);
}

.reviews__src-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews__src-card-name {
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  flex: 1;
}

.reviews__src-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--c-avail);
  color: #fff;
}


.reviews__src-card-desc {
  font-family: var(--f-ui);
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-pierre);
  flex: 1;
  margin: 0;
}

.reviews__src-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
  margin-top: auto;
}

/* Legacy pills — keep for possible non-AS24 usage */
.reviews__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 40px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
}

.reviews__trust-pill svg { color: var(--c-avail); flex-shrink: 0; }

.reviews__pending-cta { padding-left: 4px; }

/* Responsive: source cards stack on small screens */
@media (max-width: 640px) {
  .reviews__source-cards { grid-template-columns: 1fr; }
  .reviews__pending-statement { font-size: 14px; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .reviews__inner { padding: 0 40px; }
}

@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 1px; }
  .reviews__head { flex-direction: column; gap: 24px; }
  .reviews__head-right { align-items: flex-start; }
  .reviews__links { align-items: flex-start; }
}

@media (max-width: 640px) {
  .reviews { padding: 72px 0 80px; }
  .reviews__inner { padding: 0 20px; }
  .rcard { padding: 20px; }
  .rcard__quote { font-size: 16px; }
  .reviews__pending-badges { gap: 8px; }
}

/* ── New AS24-only elements ── */

/* "Avis vérifiés d'acheteurs réels" title em */
.reviews__title em {
  font-style: italic;
  color: var(--c-ink);
}

/* Note explaining AS24 verification */
.reviews__as24-note {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-pierre);
  margin-top: 12px;
  max-width: 440px;
}

/* AS24 block (right side of header) */
.reviews__as24-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Score: shown when real rating is set */
.reviews__score-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews__score-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-ink);
}

.reviews__score-detail { display: flex; flex-direction: column; gap: 4px; }
.reviews__score-stars { display: flex; gap: 2px; }
.reviews__score-count { font-family: var(--f-ui); font-size: 12px; color: var(--c-pierre); }

/* Super Vendeur badge */
.reviews__super-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
}

.reviews__super-badge svg { color: var(--c-avail); flex-shrink: 0; }

.reviews__super-label {
  display: block;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}

.reviews__super-source {
  display: block;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-pierre);
}

/* AS24 link */
.reviews__as24-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--c-border);
  transition: border-color 160ms, color 160ms;
}

.reviews__as24-link:hover { border-color: var(--c-ink); }

.reviews__as24-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: #002FA7;
  padding: 2px 5px;
  border-radius: 2px;
}

.reviews__as24-badge--lg {
  font-size: 13px;
  padding: 4px 10px;
}

/* AS24 source tag on review cards */
.rcard__source-as24 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: #002FA7;
  padding: 2px 6px;
  border-radius: 2px;
}

/* Pending state: AS24 only */
.reviews__pending-as24 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 10px;
}

.reviews__pending-icon {
  flex-shrink: 0;
  padding-top: 4px;
}

.reviews__pending-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__pending-title {
  font-family: var(--f-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0;
}

.reviews__pending-statement {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-pierre);
  margin: 0;
}

.reviews__pending-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--c-border);
  transition: border-color 160ms;
  align-self: flex-start;
}

.reviews__pending-cta-btn:hover { border-color: var(--c-ink); }

@media (max-width: 860px) {
  .reviews__as24-block { align-items: flex-start; }
  .reviews__pending-as24 { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .reviews__score-num { font-size: 44px; }
}

/* ============================================================
   FINANCING — Premium consultation block (no calculator)
   ============================================================ */
.financing {
  background: var(--c-canvas);
  padding: 96px 0 112px;
  border-top: 1px solid var(--c-border);
}

.financing__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Two-column: left (headline + card) | right (benefits) */
.financing__layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
}

/* ── Left column ── */
.financing__eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin-bottom: 14px;
}

.financing__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 16px;
}

.financing__title em {
  font-style: italic;
  color: var(--c-ink);
}

.financing__subtitle {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-pierre);
  margin-bottom: 32px;
  max-width: 440px;
}

/* WhatsApp action card */
.financing__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.financing__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--c-canvas);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
}

.financing__card-title {
  font-family: var(--f-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0;
}

.financing__card-text {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-graphite);
  margin: 0;
}

/* Primary CTA: WhatsApp green — only WA-related */
.financing__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  align-self: flex-start;
}

.financing__card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.financing__card-cta:active { transform: scale(0.97); }

.financing__card-trust {
  font-family: var(--f-ui);
  font-size: 11px;
  color: var(--c-pierre);
  letter-spacing: 0.03em;
  margin: 0;
}

/* ── Right column: benefits list ── */
.financing__right {
  padding-top: 12px;
}

.financing__benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.financing__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
}

.financing__benefit:last-child { border-bottom: none; }

.financing__benefit svg {
  flex-shrink: 0;
  color: var(--c-avail);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .financing__inner { padding: 0 40px; }
  .financing__layout { gap: 56px; }
}

@media (max-width: 860px) {
  .financing__layout { grid-template-columns: 1fr; gap: 40px; }
  .financing__right { padding-top: 0; }
}

@media (max-width: 640px) {
  .financing { padding: 72px 0 80px; }
  .financing__inner { padding: 0 20px; }
  .financing__card { padding: 22px; }
  .financing__card-cta { width: 100%; justify-content: center; }
}

/* ============================================================
   TRADE-IN
   ============================================================ */
.tradein {
  background: var(--c-white);
  padding: 80px 0 88px;
  border-top: 1px solid var(--c-sable);
}

.tradein__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Trade-in : layout centré, une seule colonne, zéro duplication ── */
.tradein__head {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.tradein__sub {
  font-size: 16px;
  color: var(--c-pierre);
  line-height: 1.6;
  margin: 16px auto 0;
  max-width: 520px;
}

/* 3 étapes en ligne horizontale */
.tradein__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 56px auto 0;
  padding: 0;
  counter-reset: tradein;
}

.tradein__step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

/* Ligne de liaison entre les étapes (desktop) */
.tradein__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 1px;
  background: var(--c-border);
}

.tradein__step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--f-ui);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.tradein__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.tradein__step-desc {
  font-size: 14px;
  color: var(--c-pierre);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 280px;
}

.tradein__cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 720px) {
  .tradein__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 420px;
    text-align: left;
  }
  .tradein__step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 16px;
    text-align: left;
    align-items: start;
  }
  .tradein__step-num { margin: 0; grid-row: 1 / 3; }
  .tradein__step-title { margin-bottom: 4px; align-self: center; }
  .tradein__step-desc { max-width: none; }
  .tradein__step:not(:last-child)::after { display: none; }
}

.tradein__card {
  background: var(--c-ivoire);
  border: 1px solid var(--c-sable);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  width: 200px;
}

.tradein__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-pierre);
  margin-bottom: 20px;
}

.tradein__car-icon {
  color: var(--c-pierre);
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.tradein__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--c-or);
  flex-shrink: 0;
}

.tradein__card--new {
  background: var(--c-nuit);
  border-color: transparent;
}

.tradein__card--new .tradein__card-label { color: rgba(255,255,255,0.45); }

.tradein__car-icon--new { color: var(--c-or); }

.tradein__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-or);
  margin-top: 12px;
}

/* layout wrapper for arrow + cards */
.tradein__visual .tradein__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tradein__visual > .tradein__card {
  flex-direction: row;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  gap: 0;
}

@media (max-width: 900px) {

  .tradein__visual { display: none; }
}

@media (max-width: 640px) {
  .tradein__inner { padding: 0 20px; }
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--c-ivoire);
  padding: 0;
  overflow: hidden;
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 560px;
}

.location__map-wrap {
  position: relative;
  min-height: 400px;
}

.location__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.05);
}

.location__info {
  background: var(--c-white);
  padding: 64px 48px;
  border-left: 1px solid var(--c-sable);
  display: flex;
  flex-direction: column;
}

.location__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-encre);
  margin-bottom: 20px;
}

.location__pitch {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-pierre);
  max-width: 460px;
  margin: 0 0 32px;
}
.location__pitch strong {
  color: var(--c-ink);
  font-weight: 600;
}

.location__title em {
  font-style: italic;
  color: var(--c-or);
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 32px;
}

.loc-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-sable);
  align-items: flex-start;
}

.loc-item:last-child { border-bottom: none; }

.loc-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-encre);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item__icon--wa {
  background: rgba(37,211,102,0.12);
  color: var(--c-green);
}

.loc-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-pierre);
  margin-bottom: 4px;
}

.loc-item__value {
  font-size: 14px;
  color: var(--c-encre);
  line-height: 1.55;
}

.loc-item__value--link {
  font-weight: 600;
  transition: color var(--dur-micro);
}

.loc-item__value--link:hover { color: var(--c-or); }

.loc-item__sub {
  font-size: 11px;
  color: var(--c-success);
  font-weight: 600;
  margin-top: 2px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--c-graphite);
  gap: 16px;
}

.hours-open {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-success);
  margin-top: 6px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1.5px solid var(--c-encre);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-encre);
  transition: background var(--dur-micro), color var(--dur-micro), transform var(--dur-micro);
  align-self: flex-start;
}

.btn-directions:hover {
  background: var(--c-encre);
  color: var(--c-white);
  transform: translateY(-1px);
}

/* Local SEO: area served — subtle, natural text */
.loc-area-served {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--c-pierre);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: var(--c-canvas);
  border-radius: 4px;
  border: 1px solid var(--c-border);
}

.loc-area-served strong {
  color: var(--c-ink-2, var(--c-graphite));
  font-weight: 600;
}

.loc-area-served a {
  color: var(--c-graphite);
  border-bottom: 1px solid var(--c-border);
  transition: color 140ms, border-color 140ms;
}

.loc-area-served a:hover {
  color: var(--c-ink);
  border-color: var(--c-ink);
}

@media (max-width: 900px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 300px; }
  .location__info { padding: 40px 24px; border-left: none; border-top: 1px solid var(--c-sable); }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  background: var(--c-nuit);
  padding: 88px 0 96px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle upward glow — updated to match new palette (cool, not amber) */
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.finalcta__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Eyebrow: white/muted on dark bg — was using --c-or which is now ink */
.finalcta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

.finalcta__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin: 16px 0 24px;
}

/* Italic em: now white italic — not amber which is invisible on dark */
.finalcta__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.finalcta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-bottom: 48px;
}

.finalcta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.finalcta__btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: transform var(--dur-micro), box-shadow var(--dur-micro);
}

.finalcta__btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.40);
}

.finalcta__btn-vehicles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--dur-micro);
}

.finalcta__btn-vehicles:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--c-white);
  transform: translateY(-1px);
}

.finalcta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.finalcta__dot { opacity: 0.3; }

@media (max-width: 480px) {
  .finalcta__inner { padding: 0 20px; }
  .finalcta__btn-wa, .finalcta__btn-vehicles { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080E18;
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}

.footer__logo {
  font-family: var(--f-abnes);
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--dur-micro), color var(--dur-micro), background var(--dur-micro);
}

.footer__social:hover {
  border-color: var(--c-or);
  color: var(--c-or);
  background: rgba(200,169,110,0.08);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
  transition: color var(--dur-micro);
}

.footer__link:hover { color: var(--c-white); }

.footer__hours {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-success);
  margin-top: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  transition: color var(--dur-micro);
}

.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .footer__inner { padding: 48px 20px 40px; }
  .footer__nav { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   VEHICLE LISTING PAGE
   ============================================================ */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

.page-hero {
  background: var(--c-ivoire);
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--c-sable);
}

.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-encre);
  margin: 12px 0 16px;
}

.page-hero__title em { font-style: italic; color: var(--c-or); }

.page-hero__sub {
  font-size: 15px;
  color: var(--c-pierre);
}

.page-hero__count {
  font-weight: 700;
  color: var(--c-encre);
}

/* Listing layout */
.listing {
  background: var(--c-ivoire);
  padding: 48px 0 80px;
}

.listing__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  /* Layout colonne unique — plus de sidebar (toolbar + tri en haut) */
}

/* Sidebar */
.listing__sidebar {
  position: sticky;
  top: 88px;
  background: var(--c-white);
  border: 1px solid var(--c-sable);
  border-radius: 8px;
  padding: 28px;
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-sable);
}

.filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.filter-group__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-encre);
  margin-bottom: 14px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-graphite);
  padding: 5px 0;
  cursor: pointer;
  user-select: none;
}

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--c-sable);
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--c-encre);
}

.filter-check__count {
  margin-left: auto;
  font-size: 11px;
  color: var(--c-pierre);
  background: var(--c-ivoire);
  padding: 2px 7px;
  border-radius: 10px;
}

.sidebar-slider { margin-top: 8px; }

.sidebar-slider__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sidebar-slider__val {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-or);
}

.filter-reset {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--c-sable);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-pierre);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-micro);
}

.filter-reset:hover {
  border-color: var(--c-encre);
  color: var(--c-encre);
}

/* Results */
.listing__results { min-width: 0; }

.listing__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.listing__found {
  font-size: 13px;
  color: var(--c-pierre);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
}
.listing__found strong { color: var(--c-ink); font-weight: 700; }

/* Filtres par type */
.vehicles__filters {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
}
.vfilter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-graphite);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 140ms, color 140ms, background 140ms;
}
.vfilter:hover { border-color: var(--c-ink); color: var(--c-ink); }
.vfilter--active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
}
.vfilter__count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.55;
}
.vfilter--active .vfilter__count { opacity: 0.8; }

/* Tri */
.listing__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.listing__sort-label {
  font-size: 13px;
  color: var(--c-pierre);
  white-space: nowrap;
}
.listing__sort-select {
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B0D12' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 140ms;
}
.listing__sort-select:hover { border-color: var(--c-ink); }
.listing__sort-select:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 1px; }

@media (max-width: 600px) {
  .listing__sort { width: 100%; }
  .listing__sort-select { flex: 1; }
}

.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--c-sable);
  border-radius: 4px;
  font-size: 13px;
  color: var(--c-encre);
  background: var(--c-white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--dur-micro);
}

.sort-select:focus { border-color: var(--c-encre); }

.listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Warranty badge on card image */
.vcard__warranty-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 10px;
  background: rgba(15,15,15,0.75);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.vcard__badge--owner {
  background: rgba(26, 58, 92, 0.85);
  color: white;
}

.vcard__badge--belgian {
  background: rgba(248,246,242,0.92);
  color: var(--c-encre);
  font-size: 10px;
}

.listing__empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-pierre);
}

.listing__empty svg { margin: 0 auto 16px; display: block; }
.listing__empty p { font-size: 15px; margin-bottom: 24px; }

@media (max-width: 1100px) {
  .listing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .listing__inner { grid-template-columns: 1fr; }
  .listing__sidebar { position: static; }
}

@media (max-width: 640px) {
  .listing__inner { padding: 0 20px; }
  .listing__grid { grid-template-columns: 1fr; }
  .page-hero__inner { padding: 0 20px; }
}

/* ============================================================
   VEHICLE DETAIL PAGE
   ============================================================ */

.breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--c-pierre);
}

.breadcrumb__link { transition: color var(--dur-micro); }
.breadcrumb__link:hover { color: var(--c-encre); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--c-encre); font-weight: 500; }

/* Detail layout */
.vdetail { background: var(--c-ivoire); padding: 48px 0 80px; }

.vdetail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.vgallery {
  background: var(--c-white);
  border: 1px solid var(--c-sable);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}

.vgallery__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  aspect-ratio: 16 / 10;
}

.vgallery__track::-webkit-scrollbar { display: none; }

.vgallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--c-ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vgallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--c-pierre);
}

.vgallery__slide-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-pierre);
  opacity: 0.4;
}



.vgallery__counter {
  position: absolute;
  bottom: 60px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(15,15,15,0.6);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* Identity */
.vdetail__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

.vdetail__make {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-pierre);
  margin-bottom: 4px;
}

.vdetail__model {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-encre);
  margin-bottom: 4px;
}

.vdetail__variant {
  font-size: 14px;
  color: var(--c-pierre);
  margin-bottom: 28px;
}

.vdetail__strip {
  display: flex;
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-sable);
  border-radius: 8px;
  overflow: hidden;
}

.vdetail__strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-right: 1px solid var(--c-sable);
  text-align: center;
}

.vdetail__strip-item:last-child { border-right: none; }

.vdetail__strip-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-encre);
  margin-bottom: 3px;
  white-space: nowrap;
}

.vdetail__strip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-pierre);
}

/* Specs */
.vspecs, .voptions, .vcarpass, .vfinancing {
  background: var(--c-white);
  border: 1px solid var(--c-sable);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.vspecs__title, .voptions__title, .vcarpass__title, .vfinancing__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-encre);
  margin-bottom: 20px;
}

.vspecs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.vspec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-sable);
  font-size: 13px;
}

.vspec:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--c-sable); }
.vspec:nth-child(even) { padding-left: 20px; }

.vspec__label { color: var(--c-pierre); }
.vspec__val { font-weight: 600; color: var(--c-encre); }

/* Options */
.voptions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.voption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-graphite);
}

.voption svg { color: var(--c-success); flex-shrink: 0; }

/* Car-Pass */
.vcarpass__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.vcarpass__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-encre);
}

.vcarpass__logo svg { color: var(--c-or); }

.vcarpass__ref {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-pierre);
  background: var(--c-ivoire);
  padding: 4px 10px;
  border-radius: 20px;
}

.vcarpass__intro {
  font-size: 13px;
  color: var(--c-pierre);
  line-height: 1.6;
  margin-bottom: 24px;
}

.vcarpass__timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.cp-row {
  display: grid;
  grid-template-columns: 48px 1fr 100px;
  align-items: center;
  gap: 12px;
}

.cp-row__year {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-pierre);
  letter-spacing: 0.04em;
}

.cp-row__bar-wrap {
  background: var(--c-sable);
  border-radius: 2px;
  height: 6px;
  overflow: hidden;
}

.cp-row__bar {
  height: 100%;
  background: var(--c-or);
  border-radius: 2px;
  transition: width 800ms var(--ease-out);
}

.cp-row__km {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-encre);
  text-align: right;
  white-space: nowrap;
}

.vcarpass__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--c-sable);
}

.vcarpass__verdict {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-success);
}

.vcarpass__dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-encre);
  border-bottom: 1px solid var(--c-sable);
  padding-bottom: 1px;
  transition: color var(--dur-micro), border-color var(--dur-micro);
}

.vcarpass__dl:hover { color: var(--c-or); border-color: var(--c-or); }

/* Financing on detail */
.vfinancing__title { margin-bottom: 20px; }

/* Sticky sidebar */
.vdetail__sidebar {
  position: sticky;
  top: 88px;
}

.vsticky {
  background: var(--c-white);
  border: 1px solid var(--c-sable);
  border-radius: 8px;
  padding: 28px;
}

.vsticky__ref {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-pierre);
  margin-bottom: 16px;
}

.vsticky__price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-encre);
  line-height: 1;
  margin-bottom: 6px;
}

.vsticky__monthly {
  font-size: 13px;
  color: var(--c-pierre);
  margin-bottom: 20px;
}

.vsticky__monthly strong { color: var(--c-or); font-weight: 700; }

.vsticky__monthly-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-encre);
  border-bottom: 1px solid var(--c-sable);
  margin-left: 8px;
  transition: color var(--dur-micro);
}

.vsticky__monthly-link:hover { color: var(--c-or); }

.vsticky__trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--c-ivoire);
  border-radius: 6px;
}

.vsticky__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-graphite);
}

.vsticky__trust-item svg { color: var(--c-success); flex-shrink: 0; }

.vsticky__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: transform var(--dur-micro), box-shadow var(--dur-micro);
}

.vsticky__btn--wa {
  background: var(--c-green);
  color: white;
}

.vsticky__btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.vsticky__btn--call {
  background: var(--c-ivoire);
  color: var(--c-encre);
  border: 1.5px solid var(--c-sable);
  margin-bottom: 16px;
}

.vsticky__btn--call:hover {
  border-color: var(--c-encre);
  transform: translateY(-1px);
}

.vsticky__open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-success);
  letter-spacing: 0.04em;
}

/* Mobile sticky bar */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--c-white);
  border-top: 1px solid var(--c-sable);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-sticky__call {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1.5px solid var(--c-sable);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-encre);
}

.mobile-sticky__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--c-green);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .vdetail__inner { grid-template-columns: 1fr; }
  .vdetail__sidebar { display: none; }
  .mobile-sticky { display: flex; }
  .voptions__grid { grid-template-columns: 1fr; }
  .vspecs__grid { grid-template-columns: 1fr; }
  .vspec:nth-child(odd) { padding-right: 0; border-right: none; }
  .vspec:nth-child(even) { padding-left: 0; }
}

@media (max-width: 640px) {
  .vdetail__inner { padding: 0 16px; }
  .breadcrumb__inner { padding: 14px 20px; }
  .vdetail__strip { flex-wrap: wrap; }
  .vdetail__strip-item { flex: 0 0 33.33%; }
  .cp-row { grid-template-columns: 40px 1fr 80px; }
}

/* ============================================================
   CAR-PASS NOTICE (replaces fake timeline)
   ============================================================ */
.vcarpass__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--c-green-bg);
  border: 1px solid rgba(42,102,72,0.2);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--c-graphite);
  line-height: 1.55;
}

.vcarpass__notice svg {
  flex-shrink: 0;
  color: var(--c-success);
  margin-top: 1px;
}

.vcarpass__notice a {
  color: var(--c-success);
  font-weight: 600;
  text-decoration: underline;
}

.vcarpass__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-pierre);
}

.vcarpass__info svg { flex-shrink: 0; }

/* ============================================================
   FINANCING BLOCK (replaces fake calculator on detail page)
   ============================================================ */
.vfinancing__content { display: flex; flex-direction: column; gap: 20px; }

.vfinancing__points { display: flex; flex-direction: column; gap: 10px; }

.vfinancing__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-graphite);
  line-height: 1.5;
}

.vfinancing__point svg {
  flex-shrink: 0;
  color: var(--c-success);
  margin-top: 2px;
}


/* ============================================================
   MOBILE QA FIXES
   ============================================================ */

/* Global: prevent horizontal overflow everywhere */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Nav: mobile hamburger placeholder */
@media (max-width: 900px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav__logo { margin-right: 0; }
  .nav__links { display: none; }
  .nav__cta span:not(.nav__cta-icon) { display: none; }
  .nav__cta { padding: 10px 16px; }
}

/* Hero: mobile adjustments */
@media (max-width: 640px) {
  .hero__content { padding: 0 20px 80px; }
  .hero__headline { font-size: clamp(36px, 10vw, 56px); }
  .hero__sub { font-size: 14px; }
  .hero__actions { flex-direction: column; gap: 10px; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .trust-pill { padding: 7px 12px; }
  .trust-pill__icon { display: none; }
  .hero__mute { right: 16px; bottom: 20px; }
  .hero__scroll { display: none; }
}

/* Why section mobile */
@media (max-width: 640px) {
  .why__inner { padding: 0 20px; }
  .why__grid { grid-template-columns: 1fr; gap: 1px; }
}

/* Reviews mobile */
@media (max-width: 640px) {
  .reviews { padding: var(--space-lg) 0; }
  .reviews__inner { padding: 0 20px; gap: 28px; }
  .reviews__score { font-size: 48px; }
}

/* Financing mobile */
@media (max-width: 640px) {
  .financing__inner { padding: 0 20px; }
  .financing__layout { gap: 32px; }
}

/* Trade-in mobile */
@media (max-width: 640px) {
  .tradein__inner { padding: 0 20px; }

  .tradein__visual { display: none; }
}

/* Location mobile */
@media (max-width: 640px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 260px; }
  .location__info { padding: 28px 20px; border-top: 1px solid var(--c-sable); }
  .location__title { font-size: 26px; margin-bottom: 24px; }
  .hours-row { font-size: 12px; }
}

/* Final CTA mobile */
@media (max-width: 640px) {
  .finalcta__inner { padding: 0 20px; }
  .finalcta__title { font-size: clamp(36px, 9vw, 56px); }
  .finalcta__actions { flex-direction: column; }
  .finalcta__btn-wa, .finalcta__btn-vehicles { width: 100%; justify-content: center; }
  .finalcta__trust { gap: 8px; font-size: 10px; }
}

/* Footer mobile */
@media (max-width: 640px) {
  .footer__inner { padding: 40px 20px 32px; gap: 36px; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom-inner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 380px) {
  .footer__nav { grid-template-columns: 1fr; }
}

/* Listing page mobile */
@media (max-width: 640px) {
  .page-hero { padding: 84px 0 40px; }
  .page-hero__inner { padding: 0 20px; }
  .listing { padding: 24px 0 60px; }
  .listing__inner { padding: 0 20px; gap: 24px; }
  .listing__grid { grid-template-columns: 1fr; gap: 14px; }
  .listing__toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sort-select { width: 100%; }
}

/* Vehicle detail mobile sticky bar — override body padding */
@media (max-width: 900px) {
  body:has(.mobile-sticky) { padding-bottom: 80px; }
}

/* Prevent card text overflow */
.vcard__name { word-break: break-word; }
.vdetail__model { word-break: break-word; }
.section-title { word-break: break-word; }

/* Budget filter label wrapping fix on small screens */
@media (max-width: 480px) {
  .filter-group { margin-bottom: 20px; padding-bottom: 20px; }
}

/* ============================================================
   MENU HAMBURGER MOBILE
   ============================================================ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 160ms;
  margin-left: 8px;
  z-index: 1001;
}

.nav__burger:hover { background: rgba(255,255,255,0.1); }
.nav--solid .nav__burger:hover { background: rgba(0,0,0,0.06); }

.nav__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 280ms var(--ease-expo), opacity 200ms;
  transform-origin: center;
}

.nav--solid .nav__burger-line { background: var(--c-ink); }

/* Burger → X quand ouvert */
.nav--open .nav__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay sombre */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 15, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 280ms;
  backdrop-filter: blur(4px);
}

.nav__overlay.is-visible { opacity: 1; }

/* Menu mobile */
@media (max-width: 900px) {
  .nav__burger { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--c-white);
    z-index: 999;
    padding: 88px 28px 40px;
    transition: right 320ms var(--ease-expo);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    overflow-y: auto;
  }

  .nav--open .nav__menu { right: 0; }
  .nav--open .nav__overlay { display: block; }

  .nav__links {
    flex-direction: column;
    gap: 0;
    margin: 0;
  }

  .nav__links li {
    border-bottom: 1px solid var(--c-border);
  }

  .nav__link {
    display: block;
    padding: 18px 0;
    font-size: 18px !important;
    font-weight: 500;
    color: var(--c-ink) !important;
    letter-spacing: 0;
  }

  .nav__link:hover { color: var(--c-ink) !important; }
}

/* ── Final CTA trust strip — meilleur contraste ── */
.finalcta__trust {
  color: rgba(255, 255, 255, 0.55) !important;
}

.finalcta__dot { opacity: 0.4; }

/* ── Étoiles avis — amber visible (pas --c-or qui est noir) ── */
.rcard__stars svg,
.reviews__agg-stars svg,
.reviews__score-stars svg {
  /* surcharge pour être sûr que la couleur amber passe */
}

/* ── Carousel étoiles avec --c-amber ── */
.rcard__stars [fill="var(--c-amber)"],
.reviews__score-stars [fill="var(--c-amber)"] {
  fill: #C28B2A !important;
}

/* ── Archive H1 — espace manquant ── */
.page-hero__title br + em,
.page-hero__title em {
  display: inline;
}


/* ── Trust pills hero mobile — 2 colonnes propres ── */
@media (max-width: 640px) {
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero__trust-pill {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }
}

/* ── Fix: liens visibles dans le menu mobile ── */
@media (max-width: 900px) {
  .nav__menu .nav__links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nav__menu .nav__link {
    display: block;
    padding: 18px 0;
    font-size: 17px !important;
    font-weight: 500;
    color: var(--c-ink) !important;
    letter-spacing: 0.01em;
    border-bottom: 1px solid var(--c-border);
  }

  .nav__menu .nav__link:hover {
    color: var(--c-ink) !important;
    padding-left: 8px;
    transition: padding 160ms;
  }

  /* Ajouter WhatsApp en bas du menu mobile */
  .nav__menu::after {
    content: '';
    display: block;
    margin-top: 24px;
  }
}

/* ============================================================
   SINGLE VEHICLE TEMPLATE — single-vehicle.php
   ============================================================ */

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--c-canvas);
  border-bottom: 1px solid var(--c-border);
  /* 72px de nav fixe + respiration — sinon le fil est recouvert par le header */
  padding: 86px 0 14px;
}
.breadcrumb__inner {
  max-width: var(--w-site);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-pierre);
  flex-wrap: wrap;
}
.breadcrumb__link {
  color: var(--c-pierre);
  text-decoration: none;
  transition: color 140ms;
}
.breadcrumb__link:hover { color: var(--c-ink); }
.breadcrumb__sep { color: var(--c-border); }
.breadcrumb__current { color: var(--c-ink); font-weight: 500; }

/* ── Vehicle detail layout ── */
.vdetail {
  max-width: var(--w-site);
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
}
.vdetail__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: start;
}

/* Empêche la colonne gauche de déborder du grid */
.vdetail__main {
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .vdetail__inner {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }
}

@media (max-width: 800px) {
  .vdetail__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* La voiture mène : galerie avant le prix sur tablette/mobile */
  .vdetail__side { order: 0; }
}

/* ── Gallery ── */
.vgallery__stage {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--c-canvas);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.vgallery__slide {
  display: none;
  width: 100%;
  height: 100%;
}
.vgallery__slide--active { display: block; }
.vgallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.vgallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 140ms, transform 140ms;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.vgallery__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.vgallery__arrow--prev { left: 12px; }
.vgallery__arrow--next { right: 12px; }
.vgallery__counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.50);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.vgallery__thumbs { display: flex; gap: 8px; padding: 12px 0 0; overflow-x: auto; scrollbar-width: none; }
.vgallery__thumb {
  flex: 0 0 auto; width: 112px; height: auto; aspect-ratio: 3/2;
  border-radius: 5px; overflow: hidden; padding: 0; cursor: pointer;
  border: 2px solid transparent; background: var(--c-canvas);
  opacity: 0.55;
  transition: opacity var(--dur-micro) var(--ease-hover), border-color var(--dur-micro) var(--ease-hover);
}
.vgallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vgallery__thumb:hover { opacity: 0.85; }
.vgallery__thumb--active { opacity: 1; border-color: var(--c-ink); }
.vgallery__empty {
  aspect-ratio: 3/2;
  background: var(--c-canvas);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--c-pierre);
  font-size: 14px;
  margin-bottom: 12px;
}

/* ── Specs table ── */
.vspecs { margin-top: 40px; }
.vspecs__title {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
  color: var(--c-ink);
}
.vspecs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
}
.vspecs__row {
  display: contents;
}
.vspecs__row:not(:last-child) .vspecs__label,
.vspecs__row:not(:last-child) .vspecs__val {
  border-bottom: 1px solid var(--c-border);
}
.vspecs__label, .vspecs__val {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
}
.vspecs__label {
  background: var(--c-canvas);
  color: var(--c-pierre);
  font-weight: 500;
  border-right: 1px solid var(--c-border);
}
.vspecs__val {
  color: var(--c-ink);
}

@media (max-width: 500px) {
  .vspecs__list { grid-template-columns: 1fr; }
  .vspecs__row .vspecs__label { border-right: none; border-bottom: none !important; padding-bottom: 4px; }
  .vspecs__row .vspecs__val { padding-top: 4px; }
}

/* ── Sticky panel ── */
.vsticky {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 88px;
}
.vsticky__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.vsticky__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
/* Monochrome — le vert marketplace est banni de la palette (statut binaire) */
.vsticky__status--available {
  background: rgba(11, 13, 18, 0.06);
  color: var(--c-ink);
}
.vsticky__status--sold {
  background: var(--c-canvas);
  color: var(--c-pierre);
}
.vsticky__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.vsticky__as24 { text-decoration: none; }
.vsticky__as24-badge {
  display: inline-block;
  background: #003087;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 3px;
}
.vsticky__make {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-pierre);
  margin-bottom: 4px;
}
.vsticky__model {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: normal;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.vsticky__year-km {
  font-size: 14px;
  color: var(--c-pierre);
  margin-bottom: 20px;
}
.vsticky__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.vsticky__price {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.vsticky__vat {
  font-size: 11px;
  color: var(--c-pierre);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Preuve sociale AS24 au point de décision */
.vsticky__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: opacity 140ms;
}
.vsticky__rating:hover { opacity: 0.75; }
.vsticky__rating-stars {
  display: inline-flex;
  gap: 1px;
  flex-shrink: 0;
}
.vsticky__rating-text {
  font-size: 13px;
  color: var(--c-graphite);
  line-height: 1.3;
}
.vsticky__rating-text strong { color: var(--c-ink); font-weight: 700; }
.vsticky__rating-as24 {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #002FA7;
  padding: 1px 4px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 2px;
}

/* Ligne de réassurance sous les CTA */
.vsticky__reassure {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--c-pierre);
}
.vsticky__reassure svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-ink);
}

.vsticky__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.vsticky__proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  background: var(--c-canvas);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  color: var(--c-graphite);
}
.vsticky__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.vsticky__cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 160ms, transform 120ms;
}
.vsticky__cta-wa:hover { background: #1ebe5c; }
.vsticky__cta-wa:active { transform: scale(0.98); }
.vsticky__cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  background: transparent;
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 140ms, background 140ms;
}
.vsticky__cta-phone:hover { border-color: var(--c-ink); background: var(--c-canvas); }
.vsticky__cta-phone:active { transform: scale(0.98); }

/* Liens d'intention tertiaires */
.vsticky__cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.vsticky__cta-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-pierre);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 140ms, border-color 140ms;
}
.vsticky__cta-links a:hover {
  color: var(--c-ink);
  border-bottom-color: var(--c-ink);
}
.vsticky__cta-links span { color: var(--c-border); font-size: 11px; }

.vsticky__carpass {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-graphite);
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
  transition: color 140ms;
}
.vsticky__carpass:not(.vsticky__carpass--text):hover { color: var(--c-ink); }
.vsticky__carpass--text {
  font-size: 12px;
  color: var(--c-pierre);
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vsticky__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-pierre);
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
  margin-top: 2px;
}

/* ── Similar vehicles ── */
.vsimilar {
  background: var(--c-canvas);
  border-top: 1px solid var(--c-border);
  padding: 56px 0 72px;
}
.vsimilar__inner {
  max-width: var(--w-site);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.vsimilar__title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: normal;
  margin-bottom: 32px;
  color: var(--c-ink);
}
.vsimilar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .vsimilar__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .vsimilar__grid { grid-template-columns: 1fr; }
}
.vsim-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 180ms, transform 180ms;
}
.vsim-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.vsim-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--c-canvas);
  overflow: hidden;
}
.vsim-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsim-card__img-empty { width: 100%; height: 100%; background: var(--c-canvas); }
.vsim-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(11,13,18,0.82);
  color: #fff;
}
.vsim-card__body { padding: 14px 16px 16px; }
.vsim-card__make { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-pierre); margin-bottom: 2px; }
.vsim-card__model { font-size: 15px; font-weight: 600; color: var(--c-ink); margin-bottom: 4px; }
.vsim-card__meta { font-size: 12px; color: var(--c-pierre); margin-bottom: 8px; }
.vsim-card__price { font-size: 18px; font-weight: 700; color: var(--c-ink); }
.vsimilar__foot { text-align: center; }
.vsimilar__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  padding: 12px 24px;
  border: 1.5px solid var(--c-ink);
  border-radius: 6px;
  transition: background 150ms;
}
.vsimilar__all:hover { background: var(--c-ink); color: #fff; }

/* ============================================================
   VEHICLES GRID + VCARD — archive-vehicle.php
   ============================================================ */

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 720px) {
  .vehicles__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Card container */
.vcard {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  /* overflow:hidden retiré — coupait le footer à cause de height:100% circulaire */
  transition: box-shadow var(--dur-base) var(--ease-hover), transform var(--dur-base) var(--ease-hover);
}
.vcard:hover {
  box-shadow: 0 16px 44px rgba(11,13,18,0.16);
  transform: translateY(-4px);
}
.vcard__img--real { transition: transform 480ms var(--ease-smooth); }
.vcard:hover .vcard__img--real { transform: scale(1.04); }

/* Full-card link */
.vcard__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* Photo */
.vcard__visual {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--c-canvas);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0; /* arrondi haut uniquement */
}
.vcard__img--real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.vcard:hover .vcard__img--real { transform: scale(1.03); }

/* Badges overlay */
.vcard__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.vcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.vcard__badge--avail { background: rgba(11,13,18,0.82); color: #fff; border: none; font-weight: 600; }
.vcard__badge--cp      { background: rgba(255,255,255,0.94); color: var(--c-ink); }

/* Info block */
.vcard__info {
  flex: 1;
  padding: 16px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vcard__strip {
  font-size: 12px;
  color: var(--c-pierre);
  letter-spacing: 0.01em;
}

.vcard__make {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-pierre);
  margin: 0;
}
.vcard__model {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: normal;
  line-height: 1.2;
  color: var(--c-ink);
  margin: 2px 0 0;
}

.vcard__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}
.vcard__price {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.vcard__financing {
  font-size: 11px;
  color: var(--c-pierre);
}

/* Footer: voir + WA */
.vcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-top: 12px;
  border-top: 1px solid var(--c-border);
}
.vcard__see {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  transition: gap 160ms;
}
.vcard:hover .vcard__see { gap: 10px; }
.vcard__see-arrow { flex-shrink: 0; }

.vcard__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.10);
  color: #25D366;
  text-decoration: none;
  transition: background 160ms;
  flex-shrink: 0;
}
.vcard__wa:hover { background: #25D366; color: #fff; }

/* ── Reviews — correctifs 4 points ── */

/* 2. Grille toujours pleine : 3 colonnes (3 ou 6 avis, jamais de case vide) */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* 3. Mention source discrète */
.reviews__source-note {
  text-align: center;
  font-size: 12px;
  color: var(--c-pierre);
  margin-top: 24px;
  letter-spacing: 0.01em;
}
.reviews__source-note a {
  color: var(--c-pierre);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reviews__source-note a:hover { color: var(--c-ink); }

/* 4. Fallback — apparence propre même sans reviews */
.reviews__pending-as24 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .reviews__pending-as24 { flex-direction: column; align-items: flex-start; }
}

.reviews__pending-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 1px;
  transition: opacity 140ms;
}
.reviews__pending-cta-btn:hover { opacity: 0.65; }

/* ============================================================
   COMPOSANT SOCIAL RICARS — réutilisable
   Encre par défaut, couleur de marque au survol. Pas de vert WhatsApp.
   ============================================================ */

/* ── Variante SECTION (homepage) ── */
.rsocial-section {
  background: var(--c-canvas);
  padding: 72px 0;
  border-top: 1px solid var(--c-border);
}
.rsocial-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pad-x, 40px);
}
.rsocial-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.rsocial-section__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: normal;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 12px;
}
.rsocial-section__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-pierre);
  max-width: 480px;
  margin: 0 auto;
}
.rsocial-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 680px) {
  .rsocial-section__cards { grid-template-columns: 1fr; }
}

.rsocial-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 200ms var(--ease-out, ease), transform 200ms var(--ease-out, ease), box-shadow 200ms;
}
.rsocial-card:hover {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--c-border));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--brand) 14%, transparent);
}
.rsocial-card:active { transform: translateY(-1px) scale(0.99); }

.rsocial-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-canvas);
  color: var(--c-ink);
  transition: background 200ms, color 200ms;
}
.rsocial-card__icon svg { width: 22px; height: 22px; }
.rsocial-card:hover .rsocial-card__icon {
  background: var(--brand);
  color: #fff;
}

.rsocial-card__body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.rsocial-card__name { font-size: 15px; font-weight: 700; color: var(--c-ink); }
.rsocial-card__meta { font-size: 13px; color: var(--c-pierre); }

.rsocial-card__arrow {
  color: var(--c-pierre);
  flex-shrink: 0;
  transition: color 200ms, transform 200ms var(--ease-out, ease);
}
.rsocial-card:hover .rsocial-card__arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

/* ── Variante COMPACT (footer) ── */
.rsocial--compact {
  display: flex;
  gap: 12px;
}
.rsocial__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color 180ms, color 180ms, background 180ms;
}
.rsocial__icon svg { width: 17px; height: 17px; }
.rsocial__icon:hover {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

/* ============================================================
   PAGE VILLE (SEO local) — template-ville.php
   ============================================================ */
.ville-hero { background: var(--c-canvas); padding: 48px 0 40px; border-bottom: 1px solid var(--c-border); }
.ville-hero__inner, .ville-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad-x, 40px); }
.ville-hero__title {
  font-family: var(--f-display); font-size: clamp(28px, 4vw, 46px); font-weight: normal;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--c-ink); margin: 0 0 18px;
}
.ville-hero__title em { font-style: italic; }
.ville-hero__intro { font-size: 17px; line-height: 1.7; color: var(--c-graphite); max-width: 760px; margin: 0 0 20px; }
.ville-hero__proof {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--c-pierre); margin-bottom: 24px;
}
.ville-hero__proof strong { color: var(--c-ink); }
.ville-proof__stars { display: inline-flex; gap: 1px; }
.ville-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.ville-stock, .ville-why, .ville-faq { padding: 48px 0; }
.ville-why { background: var(--c-canvas); }
.ville-section__title {
  font-family: var(--f-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: normal;
  color: var(--c-ink); margin: 0 0 24px;
}
.ville-why__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.ville-why__text { font-size: 16px; line-height: 1.7; color: var(--c-graphite); }
@media (max-width: 800px) { .ville-why__grid { grid-template-columns: 1fr; gap: 32px; } }

.ville-services { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ville-services a {
  display: block; padding: 16px 18px; background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: 8px; text-decoration: none; transition: border-color 160ms, transform 160ms;
}
.ville-services a:hover { border-color: var(--c-ink); transform: translateY(-2px); }
.ville-services strong { display: block; color: var(--c-ink); font-size: 15px; margin-bottom: 2px; }
.ville-services span { color: var(--c-pierre); font-size: 13px; }

.ville-map { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 360px; }
.ville-map__embed { background: var(--c-canvas); }
.ville-map__embed iframe { width: 100%; height: 100%; display: block; filter: grayscale(0.15); }
.ville-map__info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.ville-map__info p { color: var(--c-graphite); line-height: 1.7; margin: 0 0 20px; max-width: 380px; }
@media (max-width: 800px) { .ville-map { grid-template-columns: 1fr; } .ville-map__embed { min-height: 280px; } }

.ville-faq__list { max-width: 760px; }
.ville-faq__item { border-bottom: 1px solid var(--c-border); padding: 4px 0; }
.ville-faq__item summary {
  cursor: pointer; padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--c-ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.ville-faq__item summary::-webkit-details-marker { display: none; }
.ville-faq__item summary::after { content: "+"; font-size: 22px; color: var(--c-pierre); font-weight: 300; }
.ville-faq__item[open] summary::after { content: "−"; }
.ville-faq__item p { padding: 0 0 18px; margin: 0; color: var(--c-graphite); line-height: 1.7; max-width: 680px; }

/* ── Page ville : CTA hiérarchie (encre dominant, WhatsApp discret) ── */
.ville-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: var(--c-ink); color: #fff;
  font-size: 15px; font-weight: 600; border-radius: 8px; text-decoration: none;
  transition: transform 140ms, opacity 140ms;
}
.ville-cta-primary:hover { opacity: 0.9; }
.ville-cta-primary:active { transform: scale(0.98); }
.ville-cta-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; background: transparent; color: var(--c-graphite);
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--c-border);
  border-radius: 8px; text-decoration: none; transition: border-color 140ms, color 140ms;
}
.ville-cta-wa svg { color: #25D366; }
.ville-cta-wa:hover { border-color: var(--c-ink); color: var(--c-ink); }

/* ── Bloc SHOWROOM (la preuve montrée) ── */
.showroom {
  display: grid; grid-template-columns: 1.25fr 1fr; align-items: stretch;
  background: var(--c-ink); color: #fff;
}
.showroom__media { position: relative; min-height: 420px; }
.showroom__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showroom__body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.showroom__body .section-eyebrow { color: rgba(255,255,255,0.55); }
.showroom__title {
  font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: normal;
  line-height: 1.1; margin: 8px 0 18px; color: #fff;
}
.showroom__title em { font-style: italic; }
.showroom__text { color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0 0 22px; max-width: 420px; }
.showroom__facts { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.showroom__facts li { font-size: 14px; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; }
.showroom__facts li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #C28B2A; }
.showroom__facts strong { color: #fff; font-weight: 600; }
.showroom__thumbs { display: flex; gap: 10px; }
.showroom__thumbs img { width: 33%; aspect-ratio: 3/2; object-fit: cover; border-radius: 6px; }
@media (max-width: 860px) {
  .showroom { grid-template-columns: 1fr; }
  .showroom__media { min-height: 260px; }
  .showroom__body { padding: 40px 24px; }
}

/* ── Grille de preuve visuelle (icônes + chiffres) ── */
.ville-proofgrid { padding: 56px 0; }
.proofgrid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 28px;
}
.proofgrid__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 24px 12px; background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: 10px;
}
.proofgrid__item svg { width: 26px; height: 26px; color: var(--c-ink); margin-bottom: 4px; }
.proofgrid__num { font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--c-ink); line-height: 1; }
.proofgrid__label { font-size: 12px; color: var(--c-pierre); line-height: 1.3; }
.ville-why__text { font-size: 16px; line-height: 1.7; color: var(--c-graphite); max-width: 760px; margin: 0; }
@media (max-width: 860px) { .proofgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .proofgrid { grid-template-columns: 1fr; } }

/* ── Services en ligne ── */
.ville-services-sec { padding: 0 0 56px; }
.ville-services--row { flex-direction: row; }
.ville-services--row li { flex: 1; }
@media (max-width: 760px) { .ville-services--row { flex-direction: column; } }

/* ── Maillage inter-villes ── */
.ville-cluster { padding: 40px 0 56px; border-top: 1px solid var(--c-border); }
.ville-cluster__title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-pierre); margin: 0 0 16px; }
.ville-cluster__links { display: flex; flex-wrap: wrap; gap: 10px; }
.ville-cluster__links a {
  font-size: 14px; color: var(--c-ink); text-decoration: none;
  padding: 8px 14px; border: 1px solid var(--c-border); border-radius: 999px;
  transition: border-color 140ms, background 140ms;
}
.ville-cluster__links a:hover { border-color: var(--c-ink); background: var(--c-canvas); }

/* ── Mention légale crédit (obligatoire BE) ── */
.financing__legal,
.ville-legal {
  font-size: 11px;
  line-height: 1.5;
  color: var(--c-pierre);
  margin-top: 16px;
  max-width: 520px;
}
.ville-legal { text-align: center; margin: 16px auto 0; }

/* ── Barre d'action sticky MOBILE (fiche véhicule) ── */
.vbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--c-white); border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(11,13,18,0.10);
  transform: translateY(110%);
  transition: transform 260ms cubic-bezier(0.23,1,0.32,1);
}
.vbar.vbar--show { transform: translateY(0); }
.vbar__price { display: flex; flex-direction: column; line-height: 1.15; margin-right: auto; min-width: 0; }
.vbar__price-num { font-size: 16px; font-weight: 700; color: var(--c-ink); }
.vbar__price-veh { font-size: 11px; color: var(--c-pierre); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.vbar__btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 15px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; flex-shrink: 0; transition: transform 120ms; }
.vbar__btn--call { background: var(--c-ink); color: #fff; }
.vbar__btn--wa { background: #25D366; color: #fff; }
.vbar__btn:active { transform: scale(0.97); }

/* Desktop : jamais (le panneau sticky latéral fait le job) */
@media (min-width: 801px) { .vbar { display: none !important; } }
/* Sur la fiche mobile, la barre remplace le FAB (évite le chevauchement) */
/* Fiche : le panneau (desktop) et la vbar (mobile) portent déjà les CTA — FAB redondant */
body.single-vehicle .wa-fab { display: none; }

/* ── Ligne financement (fiche) — conforme BE, pas de mensualité ── */
.vsticky__finance {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--c-border);
}
.vsticky__finance-line {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: 13px; color: var(--c-graphite); margin: 0 0 6px;
}
.vsticky__finance-line svg { color: var(--c-ink); flex-shrink: 0; }
.vsticky__finance-line strong { color: var(--c-ink); }
.vsticky__finance-line a {
  color: var(--c-ink); text-decoration: underline; text-underline-offset: 2px; font-weight: 600;
}
.vsticky__finance-line a:hover { opacity: 0.7; }
.vsticky__finance-legal { font-size: 10.5px; line-height: 1.45; color: var(--c-pierre); margin: 0; }

/* ── Lightbox plein-écran ── */
.vlb[hidden] { display: none; }  /* l'attribut hidden doit gagner sur display:flex — sinon calque invisible qui avale tous les clics */
.vlb {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(9,11,15,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 220ms ease;
}
.vlb.vlb--open { opacity: 1; }
.vlb__stage {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.vlb__img {
  display: none; max-width: 94vw; max-height: 88vh;
  object-fit: contain; user-select: none; -webkit-user-drag: none;
}
.vlb__img--active { display: block; }
.vlb__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 140ms;
}
.vlb__close:hover { background: rgba(255,255,255,0.22); }
.vlb__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.10); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 140ms;
}
.vlb__arrow:hover { background: rgba(255,255,255,0.20); }
.vlb__arrow--prev { left: 16px; }
.vlb__arrow--next { right: 16px; }
.vlb__counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  background: rgba(0,0,0,0.4); padding: 4px 12px; border-radius: 20px;
}
@media (max-width: 600px) {
  .vlb__arrow { width: 40px; height: 40px; }
  .vlb__arrow--prev { left: 8px; } .vlb__arrow--next { right: 8px; }
}

/* ── Stock : compteur + contact rapide ── */
.listing__found {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.listing__found-text { font-size: 13px; color: var(--c-pierre); }
.listing__found-text strong { color: var(--c-ink); font-weight: 700; }
.listing__reset {
  margin-left: 6px; font-size: 12px; color: var(--c-pierre);
  text-decoration: underline; text-underline-offset: 2px;
}
.listing__reset:hover { color: var(--c-ink); }



.listing__contact a:last-child svg { color: #25D366; }

/* ── Stock mobile : filtres lisibles, tri pleine largeur, contact bien visible ── */
@media (max-width: 700px) {
  .listing__toolbar { gap: 14px; }
  /* filtres en scroll horizontal propre (pas de wrap serré) */
  .vehicles__filters {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px; scrollbar-width: none;
  }
  .vehicles__filters::-webkit-scrollbar { display: none; }
  .vfilter { flex-shrink: 0; padding: 9px 15px; font-size: 13.5px; }
  .listing__sort { width: 100%; }
  .listing__sort-select { flex: 1; padding: 11px 32px 11px 12px; font-size: 14px; }
  .listing__found { flex-direction: column; align-items: flex-start; gap: 10px; }
  .listing__contact { width: 100%; }
  .listing__contact a { flex: 1; justify-content: center; padding: 11px; }
}

/* ── Stock : rangée filtres marques (secondaire) ── */


.vehicles__filters--make .vfilter:not(.vfilter--active) { background: transparent; }

/* ── Phase 7 : press-feedback sur les éléments ajoutés (cohérence système) ── */
.vfilter { transition: background var(--dur-micro) var(--ease-hover), border-color var(--dur-micro) var(--ease-hover), transform var(--dur-instant) var(--ease-hover); }
.vfilter:active { transform: scale(0.97); }

.vlb__close:active, .vlb__arrow:active { transform: scale(0.92); }
.vlb__arrow--prev:active, .vlb__arrow--next:active { transform: translateY(-50%) scale(0.92); }
@media (prefers-reduced-motion: reduce) {
  .vfilter, .listing__contact a, .vlb__close, .vlb__arrow { transition: none; }
  .vfilter:active, .listing__contact a:active, .vlb__close:active, .vlb__arrow:active { transform: none; }
}

/* ── Bandeau de consentement Complianz — habillage premium RICARS ── */
.cmplz-cookiebanner {
  border-radius: 12px !important;
  border: 1px solid var(--c-border) !important;
  box-shadow: 0 14px 44px rgba(11,13,18,0.16) !important;
  font-family: var(--f-ui) !important;
}
.cmplz-cookiebanner .cmplz-title {
  font-family: var(--f-display) !important;
  color: var(--c-ink) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}
.cmplz-cookiebanner .cmplz-body,
.cmplz-cookiebanner .cmplz-description { color: var(--c-graphite) !important; }
.cmplz-cookiebanner .cmplz-btn {
  border-radius: 8px !important;
  font-family: var(--f-ui) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  transition: transform 120ms var(--ease-hover), background 160ms var(--ease-hover), border-color 160ms var(--ease-hover) !important;
}
.cmplz-cookiebanner .cmplz-btn:active { transform: scale(0.97); }
/* Primaire = noir encre (couleur de marque, pas le bleu Complianz) */
.cmplz-cookiebanner .cmplz-btn.cmplz-accept,
.cmplz-cookiebanner .cmplz-btn.cmplz-save-preferences {
  background: var(--c-ink) !important;
  color: #fff !important;
  border: 1px solid var(--c-ink) !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-accept:hover,
.cmplz-cookiebanner .cmplz-btn.cmplz-save-preferences:hover { background: #000 !important; }
/* Secondaire (Refuser) = contour encre */
.cmplz-cookiebanner .cmplz-btn.cmplz-deny {
  background: transparent !important;
  color: var(--c-ink) !important;
  border: 1px solid var(--c-ink) !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-deny:hover { background: var(--c-canvas) !important; }
/* Tertiaire (Préférences) = discret */
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
  background: transparent !important;
  color: var(--c-pierre) !important;
  border: 1px solid var(--c-border) !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences:hover { color: var(--c-ink) !important; border-color: var(--c-ink) !important; }
/* Liens légaux + toggles */
.cmplz-cookiebanner .cmplz-links a,
.cmplz-cookiebanner .cmplz-documents a { color: var(--c-ink) !important; text-underline-offset: 2px; }
.cmplz-cookiebanner .cmplz-category-toggle,
.cmplz-cookiebanner input.cmplz-consent-checkbox { accent-color: var(--c-ink); }
@media (prefers-reduced-motion: reduce) {
  .cmplz-cookiebanner .cmplz-btn { transition: none !important; }
  .cmplz-cookiebanner .cmplz-btn:active { transform: none; }
}

/* ════════════════════════════════════════════════════════════
   HIÉRARCHIE CTA — WhatsApp n'est plus la couleur dominante.
   Action = encre (fond clair) ou ghost (fond sombre).
   Le glyphe WhatsApp reste vert = accent reconnaissable.
   ════════════════════════════════════════════════════════════ */
/* Boutons sur fond CLAIR → action encre */
.vsticky__cta-wa,
.financing__card-cta,
.vbar__btn--wa {
  background: var(--c-ink) !important;
  color: #fff !important;
  border-color: var(--c-ink) !important;
}
.vsticky__cta-wa:hover,
.financing__card-cta:hover,
.vbar__btn--wa:hover { background: #000 !important; }

/* Boutons sur fond SOMBRE (why, final CTA) → ghost blanc */
.why__wa-cta,
.finalcta__btn-wa {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
}
.why__wa-cta:hover,
.finalcta__btn-wa:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.55) !important;
}

/* Glyphe WhatsApp vert sur tous ces boutons (accent, pas fond) */
.vsticky__cta-wa svg,
.financing__card-cta svg,
.vbar__btn--wa svg,
.why__wa-cta svg,
.finalcta__btn-wa svg { fill: #25D366 !important; }

/* Mobile sticky : "Appeler" en outline pour le différencier de l'Essai encre */
.vbar__btn--call {
  background: transparent !important;
  color: var(--c-ink) !important;
  border: 1px solid var(--c-ink) !important;
}

/* ── Fiche : bloc éditorial "En bref" ── */
.veditorial { margin-bottom: 36px; }
.veditorial__title { font-family: var(--f-display); font-size: clamp(20px, 2.4vw, 26px); color: var(--c-ink); margin: 0 0 12px; letter-spacing: -0.01em; }
.veditorial__text { font-family: var(--f-ui); font-size: 16px; line-height: 1.7; color: var(--c-graphite); max-width: 62ch; margin: 0; }

/* ── Avis : citation mise en avant ── */
.rfeatured { margin: 0 0 36px; max-width: 70ch; }
.rfeatured__quote { font-family: var(--f-display); font-size: clamp(22px, 3vw, 32px); line-height: 1.35; color: var(--c-ink); letter-spacing: -0.01em; margin: 0 0 14px; }
.rfeatured__meta { font-family: var(--f-ui); font-size: 14px; color: var(--c-pierre); }
.rfeatured__meta strong { color: var(--c-graphite); font-weight: 600; }

/* ── Section À propos — déclaration centrée (varie le rythme : pas de CTA) ── */
.about { padding: 152px 0; background: var(--c-canvas); }
.about__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; text-align: center; }
.about__title { font-family: var(--f-display); font-size: clamp(30px, 4vw, 52px); color: var(--c-ink); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 22px; }
.about__title em { font-style: italic; }
.about__text { font-family: var(--f-ui); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.75; color: var(--c-graphite); max-width: 60ch; margin: 0 auto; }
@media (max-width: 600px) { .about { padding: var(--space-lg) 0; } }

/* ════════════════════════════════════════════════════════════
   CARTE BELGIQUE PREMIUM (homepage) — SVG, animée au scroll
   ════════════════════════════════════════════════════════════ */
.bmap-wrap { border-radius: 12px; overflow: hidden; background: #0b0e15; }
.bmap { width: 100%; height: auto; display: block; font-family: var(--f-ui); }
@media (max-width: 600px) { .bmap__city--sec { display: none; } }

/* États initiaux — uniquement si JS (sinon tout visible) */
.js .bmap__circle { stroke-dasharray: 1320; stroke-dashoffset: 1320; }
.js .bmap__pin { opacity: 0; transform: translateY(-16px); }
.js .bmap__contour,
.js .bmap__routes,
.js .bmap__cities,
.js .bmap__badge,
.js .bmap__legend { opacity: 0; }

/* Révélation au scroll (le conteneur .location__map-wrap reçoit .is-revealed) */
.is-revealed .bmap__contour { animation: bmFade 1s ease 0s forwards; }
.is-revealed .bmap__circle  { animation: bmDraw 1.7s var(--ease-expo, ease) 0.3s forwards; }
.is-revealed .bmap__routes  { animation: bmFade 1.2s ease 0.7s forwards; }
.is-revealed .bmap__cities  { animation: bmFade 1.2s ease 1s forwards; }
.is-revealed .bmap__pin     { animation: bmDrop 0.6s var(--ease-expo, ease) 1.3s forwards; }
.is-revealed .bmap__badge   { animation: bmFade 0.8s ease 1.5s forwards; }
.is-revealed .bmap__legend  { animation: bmFade 0.8s ease 1.6s forwards; }

@keyframes bmDraw { to { stroke-dashoffset: 0; } }
@keyframes bmFade { to { opacity: 1; } }
@keyframes bmDrop { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .js .bmap__circle, .js .bmap__pin, .js .bmap__contour, .js .bmap__routes,
  .js .bmap__cities, .js .bmap__badge, .js .bmap__legend {
    stroke-dashoffset: 0 !important; opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

/* ── Badge AutoScout24 → monochrome (plus de bleu marketplace) ── */
.reviews__as24-badge,
.vsticky__rating-as24,
.vsticky__as24-badge {
  background: transparent !important;
  color: var(--c-pierre) !important;
  border: 1px solid var(--c-border) !important;
}

/* ── Caractéristiques fiche : chiffres décisifs en avant ── */
.vspecs__key { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 22px 28px; padding: 22px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); margin-bottom: 22px; }
.vspecs__key-item { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.vspecs__key-val { font-family: var(--f-display); font-size: clamp(19px, 2.1vw, 25px); color: var(--c-ink); line-height: 1.05; letter-spacing: -0.01em; white-space: normal; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.vspecs__key-label { font-size: 11px; color: var(--c-pierre); text-transform: uppercase; letter-spacing: 0.05em; }
.vspecs__more { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
@media (max-width: 600px) { .vspecs__key { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; } }
@media (max-width: 600px) { .vspecs__more { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   PHASE 1 — Composants contrôlés (cartes / badges / hover)
   ════════════════════════════════════════════════════════════ */
:root { --card-ratio: 16 / 10; }

/* Ratio photo unifié partout (carrousel = grille) */
.vcard__visual { aspect-ratio: var(--card-ratio); overflow: hidden; }


/* Toolbar archive — une rangée, marque + tri à droite (moins marketplace) */
.listing__selects { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.listing__found { margin-bottom: 28px; }
@media (max-width: 600px) {
  .listing__selects { gap: 14px; width: 100%; }
  .listing__selects .listing__sort { flex: 1; }
}

/* Fiche — panneau en 3 paliers (fin des 9 éléments à poids égal) */
.vsticky__tier--proof,
.vsticky__tier--practical {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(11,13,18,0.09);
}
.vsticky__tier--decision .vsticky__ctas { margin-top: 18px; }


/* ════════════════════════════════════════════════════════════
   UX-08 — Financement : composition éditoriale (titre → 3 temps → CTA)
   ════════════════════════════════════════════════════════════ */
.financing__layout { max-width: none; }   /* neutralise l'ancien cap 640px */

.financing__head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: end;
  gap: 20px 64px;
  margin-bottom: 56px;
}
.financing__lead {
  font-family: var(--f-ui);
  font-size: 16px; line-height: 1.6;
  color: var(--c-pierre);
  max-width: 48ch; margin: 0;
}

.financing__steps {
  list-style: none; margin: 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--c-border);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.financing__step { display: flex; flex-direction: column; }
.financing__step-num {
  font-family: var(--f-display); font-size: 22px; line-height: 1;
  color: var(--c-ink); padding-bottom: 12px; position: relative;
}
.financing__step-num::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 26px; height: 2px; background: var(--c-ink);
}
.financing__step-title {
  font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  color: var(--c-ink); margin: 16px 0 6px; line-height: 1.3;
}
.financing__step-text {
  font-family: var(--f-ui); font-size: 14px; line-height: 1.6;
  color: var(--c-pierre); margin: 0;
}

.financing__foot {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.financing__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: var(--c-ink); color: #fff;
  font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  border-radius: 4px; text-decoration: none;
  transition: background var(--dur-base) var(--ease-hover), transform var(--dur-instant) var(--ease-hover);
}
.financing__cta svg { color: var(--c-green); }
.financing__cta:hover { background: #000; }
.financing__cta:active { transform: scale(0.98); }
.financing__legal {
  font-family: var(--f-ui); font-size: 12px; line-height: 1.55;
  color: var(--c-pierre); max-width: 66ch; margin: 0;
}

@media (max-width: 900px) {
  .financing__head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .financing__steps { gap: 30px; }
}
@media (max-width: 600px) {
  .financing__steps { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .financing__cta { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   PHASE 1 — Sélection home : grille claire, photo en avant (≥ archive)
   ════════════════════════════════════════════════════════════ */

.inventory__grid {
  max-width: 1280px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 1200px) { .inventory__grid { padding: 0 40px; } }
@media (max-width: 1079px) { .inventory__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .inventory__grid { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; } }

/* CTA de section — ghost encre, élégant, un seul point d'action */
.inventory__cta-wrap { margin-top: 48px; }
.inventory__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 4px;
  border: 1px solid var(--c-ink); background: transparent; color: var(--c-ink);
  font-family: var(--f-ui); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background var(--dur-base) var(--ease-hover), color var(--dur-base) var(--ease-hover), transform var(--dur-instant) var(--ease-hover);
}
.inventory__cta:hover  { background: var(--c-ink); color: #fff; }
.inventory__cta:active { transform: scale(0.98); }

/* ════════════════════════════════════════════════════════════
   PHASE 2 — Galerie fiche : photo héros, agrandir, vignettes
   ════════════════════════════════════════════════════════════ */
.vgallery__counter { bottom: 14px; right: 14px; }

.vgallery__expand {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border: none; border-radius: 20px; cursor: zoom-in;
  background: rgba(11,13,18,0.62); color: #fff;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background var(--dur-micro) var(--ease-hover), transform var(--dur-instant) var(--ease-hover);
}
.vgallery__expand:hover  { background: rgba(11,13,18,0.85); }
.vgallery__expand:active { transform: scale(0.97); }


@media (max-width: 600px) {
  .vgallery__thumb { width: 84px; }
  .vgallery__expand span { display: none; }
  .vgallery__expand { padding: 9px; }
}





/* Ancres : ne pas atterrir sous la nav fixe (~72px) */
#garantie, #financement, #reprise, #contact, #apropos, #vehicules, #showroom, #engagements {
  scroll-margin-top: 90px;
}

/* ════════════════════════════════════════════════════════════
   P3b — PARTITION VERTICALE : fin du métronome 96-120 uniforme.
   Calme = aéré (about) · preuve = dense (why, reviews) ·
   produit = généreux (inventory) · clôture = basse (finalcta).
   Financement non touché (composition UX-08 protégée).
   ════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  .inventory { padding: 72px 0 80px; }
  .why       { padding: 56px 0 64px; }
  .about     { padding: 96px 0; }
  .reviews   { padding: 48px 0 56px; }
  .tradein   { padding: 56px 0 64px; }
  .finalcta  { padding: 64px 0 72px; }
}

/* Avis curés — lien "tous les avis" discret sous la grille */
.reviews__all { margin-top: 28px; text-align: center; }
.reviews__all a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-ui); font-size: 14px; font-weight: 600;
  color: var(--c-ink); text-decoration: none;
  border-bottom: 1px solid var(--c-ink); padding-bottom: 2px;
  transition: opacity var(--dur-micro) var(--ease-hover);
}
.reviews__all a:hover { opacity: 0.65; }

/* ════════════════════════════════════════════════════════════
   « ÊTRE RAPPELÉ » — mini-formulaire fiche (replié par défaut)
   ════════════════════════════════════════════════════════════ */
.vrappel { margin-top: 14px; }
.vrappel__summary {
  list-style: none; cursor: pointer;
  font-family: var(--f-ui); font-size: 13px; color: var(--c-pierre);
}
.vrappel__summary::-webkit-details-marker { display: none; }
.vrappel__summary span {
  color: var(--c-ink); font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.vrappel__summary:hover span { opacity: 0.7; }
.vrappel__details[open] .vrappel__summary { margin-bottom: 12px; }

.vrappel__hp { position: absolute; left: -9999px; top: auto; height: 1px; overflow: hidden; }
.vrappel__fields { display: flex; flex-direction: column; gap: 8px; }
.vrappel__fields input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--c-border); border-radius: 4px;
  font-family: var(--f-ui); font-size: 15px; color: var(--c-ink);
  background: var(--c-white);
}
.vrappel__fields input:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 1px; border-color: var(--c-ink); }
.vrappel__submit {
  margin-top: 10px; width: 100%;
  padding: 13px 18px; border: none; border-radius: 4px; cursor: pointer;
  background: var(--c-ink); color: #fff;
  font-family: var(--f-ui); font-size: 14px; font-weight: 600;
  transition: background var(--dur-base) var(--ease-hover), transform var(--dur-instant) var(--ease-hover);
}
.vrappel__submit:hover  { background: #000; }
.vrappel__submit:active { transform: scale(0.98); }
.vrappel__legal { margin-top: 8px; font-size: 11.5px; line-height: 1.5; color: var(--c-pierre); }
.vrappel__legal a { color: inherit; }

.vrappel__ok {
  padding: 12px 14px; border-radius: 4px;
  background: var(--c-canvas); border: 1px solid var(--c-border);
  font-family: var(--f-ui); font-size: 14px; color: var(--c-ink); line-height: 1.5;
}
.vrappel__err {
  margin-bottom: 10px; font-family: var(--f-ui); font-size: 13px;
  color: #8a2a2a; line-height: 1.5;
}
.vrappel--sold p { font-family: var(--f-ui); font-size: 14px; color: var(--c-ink); line-height: 1.6; }
.vrappel--sold a { color: var(--c-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ════════════════════════════════════════════════════════════
   P2-7 — Cibles tactiles ≥44px SANS décalage visuel :
   le padding agrandit la zone de clic, la marge négative
   équivalente annule l'impact sur la mise en page.
   ════════════════════════════════════════════════════════════ */
.vsticky__cta-links a,
.breadcrumb__link,
.reviews__all a,
.footer__link,
.footer__legal-link,
.vrappel__summary span,
.vrappel__legal a,
.ville-hero__phone a,
.vsticky__finance-line a {
  padding: 12px 6px;
  margin: -12px -6px;
}
.hero__mute { min-width: 44px; min-height: 44px; }
.rsocial__icon, .footer__social a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
/* retardataires : tout lien tel:, agrandir mobile, badge AS24, note avis */
a[href^="tel:"]:not(.vsticky__cta-phone):not(.vbar__btn) { padding: 12px 4px; margin: -12px -4px; }
.reviews__score-cta, .vsticky__as24, .vsticky__rating { padding: 10px 6px; margin: -10px -6px; }
@media (max-width: 600px) { .vgallery__expand { min-width: 44px; min-height: 44px; justify-content: center; } }

/* P1-3 — note pratique sous les horaires (contact) */
.hours-note { margin-top: 6px; font-size: 13px; color: var(--c-pierre); line-height: 1.5; }
