
/* =============================================================
   MARRAKECH DRIVE — homepage styles
   ============================================================= */

:root {
  --orange: #FF8C00;
  --orange-600: #e87800;
  --orange-50: #fff4e4;
  --terracotta: #c2624a;
  --terracotta-soft: #e8b9a9;
  --clay: #a84a2a;
  --ink: #1a1c1c;
  --ink-90: rgba(26, 28, 28, 0.92);
  --ink-80: rgba(26, 28, 28, 0.8);
  --ink-60: rgba(26, 28, 28, 0.7);
  --ink-40: rgba(26, 28, 28, 0.4);
  --ink-10: rgba(26, 28, 28, 0.1);
  --ink-06: rgba(26, 28, 28, 0.06);
  --bg: #f9f9f9;
  --bg-warm: #f6f1ea;
  --bg-cream: #fbf6ee;
  --surface: #ffffff;
  --line: #e9e4dc;
  --line-soft: #efeae1;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(var(--ink-rgb),.04), 0 2px 8px rgba(var(--ink-rgb),.04);
  --shadow: 0 4px 12px rgba(var(--ink-rgb),.05), 0 20px 40px -20px rgba(var(--ink-rgb),.14);
  --shadow-lg: 0 10px 30px rgba(var(--ink-rgb),.08), 0 40px 80px -30px rgba(var(--ink-rgb),.25);

  --font-sans: 'Space Grotesk', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Tajawal', 'Georgia', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --nav-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  /* 2026-05-13 : passage de var(--bg) (cream tenant) à var(--surface) (blanc)
     pour retirer la teinte cream/peach perçue comme "grisée" sur tout le site.
     Les cards/sections qui veulent un fond cream continuent d'utiliser
     var(--bg) ou var(--bg-cream) individuellement. */
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}

.car-price-val,
.meta-rating span,
.stat-num,
.gamme-price-val,
.tcard-stars,
.hero-stat-num,
.car-spec,
.spec,
time { font-variant-numeric: tabular-nums; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }

.wrap { width: min(1280px, 100% - 48px); margin: 0 auto; }

/* ---------- Reusable tokens ---------- */

.ital { font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-80);
  padding: 6px 12px 6px 10px;
  background: var(--ink-06);
  border-radius: 999px;
  line-height: 1.2;
}
/* Breadcrumb : les <a>/<span> enfants tombaient en display:block (héritage
   de styles génériques) → align-items:center du parent les centrait par
   leur top-padding, mais leur hauteur intrinsèque variait selon le contenu
   (caps vs mixte) → désalignement vertical visible (chevrons décalés sous
   les liens). On force inline-flex centré sur chaque enfant. */
nav.eyebrow > * { display: inline-flex; align-items: center; line-height: 1.2; }
.eyebrow.light { color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); }
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.22);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 16px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 420px;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--btn-radius, 999px);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--orange);
  color: var(--btn-primary-fg, white);
  box-shadow: 0 6px 18px -6px rgba(var(--primary-rgb),.65), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { background: var(--orange-600); color: var(--btn-primary-fg, white); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(var(--primary-rgb),.7); }

.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.4);
}
.btn-dark:hover { transform: translateY(-1px); background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  /* Audit D 2026-04-30 : ink-10 = 1.13:1 sur surface — invisible. Bumpé local
     à ink-40 (2.43:1) — toujours sous 3:1 mais le hover passe à ink (15:1).
     Le bouton ghost reste lisible par son texte (var(--ink) à 14:1+). */
  border: 1px solid rgba(var(--ink-rgb), 0.35); /* ~2.85:1 — borderline mais bouton ghost peu utilisé */
}
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn-ghost:focus-visible { border-color: var(--ink); }

/* Audit D 2026-04-30 : focus-visible global cohérent (clavier).
   Outline orange épais sur fond cream/blanc → 10:1 sur les deux.
   Outline-offset garde le contour visible même sur les boutons à box-shadow. */
.btn:focus-visible,
a.btn:focus-visible,
button.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
/* Lien standard dans contenu : focus ring discret mais identifiable. */
a:focus-visible:not(.btn):not(.chip):not(.selector-trigger):not(.selector-menu li) {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Selector trigger (lang switcher) : box-shadow ring intérieur (n'écarte pas le voisin). */
.selector-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.45);
  border-color: var(--orange);
}

/* ---------- Navbar ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,249,249,.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.nav.scrolled { background: rgba(249,249,249,.88); border-color: var(--line); }
.nav-inner {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
/* Logo image — silhouette neutre repeinte par mask CSS dans la couleur palette.
   La source PNG (logo-icon) est en silhouette noire transparente ; le mask
   prend l'alpha et le remplit avec --orange (color_primary). */
.brand-logo-img {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-color: var(--orange, currentColor);
  -webkit-mask: var(--logo-mask) center / contain no-repeat;
          mask: var(--logo-mask) center / contain no-repeat;
}
/* Calque secondaire bicolore — activé par la classe .brand-logo-img--bicolor
   et alimenté par --logo-mask-secondary (URL PNG) + --logo-color-secondary
   (hex). Sans la classe modifier, aucun ::after n'est rendu. */
.brand-logo-img--bicolor::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: var(--logo-color-secondary, var(--color-secondary, currentColor));
  -webkit-mask: var(--logo-mask-secondary) center / contain no-repeat;
          mask: var(--logo-mask-secondary) center / contain no-repeat;
}
/* Modifier pour fond sombre (footer) — peint en blanc au lieu de la palette.
   Le calque secondaire suit aussi pour rester lisible sur fond foncé. */
.brand-logo-img--inverse { background-color: #fff; }
.brand-logo-img--inverse.brand-logo-img--bicolor::after { background-color: #fff; }
.brand-logo-img-lg { width: 96px; height: 96px; }
@media (max-width: 768px) {
  .brand-logo-img { width: 52px; height: 52px; }
  .brand-logo-img-lg { width: 72px; height: 72px; }
}
/* Bloc texte (nom + slogan), aligné verticalement à côté du logo */
.brand-text-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  min-width: 0;
}
.brand-name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-slogan {
  display: block;
  font-size: 12px;
  font-weight: 500;
  /* --ink-60 défini dans partials/head.php (0.7 alpha sur la couleur de texte
     choisie via settings). Fallback rgba(0,0,0,.65) si la variable manque. */
  color: var(--ink-60, rgba(0,0,0,.65));
  letter-spacing: 0.03em;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 36ch;
}
@media (max-width: 768px) {
  .brand-name { font-size: 17px; }
  .brand-slogan { font-size: 11px; max-width: 28ch; }
}
@media (max-width: 380px) {
  /* Sur très petit écran on cache le slogan pour rester lisible */
  .brand-slogan { display: none; }
}
/* Legacy compat — masque silhouette (login pages anciennes, pas désirée
   ailleurs : on l'enlève complètement de la home/footer/admin). Conservée
   au cas où d'anciens bookmarks ou caches référencent encore la classe. */
.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  background-color: var(--orange, currentColor);
  -webkit-mask: var(--logo-mask) center / contain no-repeat;
          mask: var(--logo-mask) center / contain no-repeat;
}
.brand-logo--inverse { background-color: #fff; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px -4px rgba(var(--primary-rgb),.5);
}
.brand-dot {
  color: var(--orange);
  margin: 0 2px;
}
/* Variante claire (footer sombre) — slogan plus discret, nom en blanc
   pour rester lisible sur le fond ink/dark. */
.brand-light { color: white; }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-slogan { color: rgba(255,255,255,.72); }
.brand-light .brand-mark { background: var(--orange); }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-80);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--ink-06); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-admin-link { display: none !important; }
@media (max-width: 1100px) {
  .nav-links.open .nav-admin-link { display: flex !important; align-items: center; gap: 8px; }
}

/* ---------- Topbar (sous-header) ---------- */
.topbar {
  background: var(--ink, #0f1d1a);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-item:hover { color: var(--orange, #f59e0b); }
.topbar-item svg { opacity: .7; flex-shrink: 0; }
.topbar-wa { color: #25d366; }
.topbar-wa:hover { color: #20bd5a; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.topbar-admin { opacity: .75; }
.topbar-admin:hover { opacity: 1; color: #fff; }
.nav-tel-mobile { display: block; }
@media (max-width: 1100px) {
  .topbar { display: none; }
}
@media (min-width: 1101px) {
  .nav-tel-mobile { display: none; }
}
.lang { font-size: 13px; font-weight: 600; color: var(--ink-60); letter-spacing: 0.04em; }
.lang span { color: var(--ink-40); margin: 0 4px; }
.lang:hover { color: var(--ink); }

.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero — variante "floating" (voiture détourée) ----------
   Voiture PNG transparente qui flotte au-dessus d'un fond palette gradient,
   avec ombre douce, halo radial, et animation float subtile (8s ease).
   Mobile : empile contenu / voiture. */
.hero.hero--floating {
  position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  isolation: isolate;
}
.hero.hero--floating .hero-floating-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #ffffff 0%, var(--color-primary-50, rgba(var(--primary-rgb), .06)) 50%, rgba(var(--primary-rgb), .14) 100%);
}
.hero.hero--floating .hero-floating-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
  pointer-events: none;
}
.hero.hero--floating .hero-floating-blob--a {
  width: 600px; height: 600px; top: -120px; right: -160px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .55), transparent 70%);
}
.hero.hero--floating .hero-floating-blob--b {
  width: 500px; height: 500px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .35), transparent 70%);
}
.hero.hero--floating .hero-floating-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(var(--ink-rgb), .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(var(--ink-rgb), .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero.hero--floating .hero-floating-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 20px;
  max-width: 540px;
  width: 100%;
  margin: 0 auto 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
  color: var(--color-text, #1a1c1c);
}
.hero.hero--floating .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(var(--primary-rgb), .1);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.hero.hero--floating .eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary);
}
.hero.hero--floating .hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -.025em; font-weight: 800;
  color: var(--color-text, #1a1c1c);
  margin: 0;
}
.hero.hero--floating .hero-sub {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6;
  color: var(--color-text); opacity: .72;
  max-width: 50ch; margin: 0;
}
.hero.hero--floating .hero-floating-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero.hero--floating .btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border, #e9e4dc);
}
.hero.hero--floating .btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero.hero--floating .hero-floating-car-wrap {
  position: absolute;
  z-index: 1;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  width: 60%; max-width: 900px;
  pointer-events: none;
}
.hero.hero--floating .hero-floating-car {
  display: block;
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 40px rgba(var(--ink-rgb), .35));
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero.hero--floating .hero-floating-shadow {
  position: absolute;
  left: 8%; right: 8%; bottom: -6%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(var(--ink-rgb), .35) 0%, transparent 70%);
  filter: blur(8px);
  animation: hero-shadow 6s ease-in-out infinite;
}
@keyframes hero-shadow {
  0%, 100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(.85); opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero--floating .hero-floating-car,
  .hero.hero--floating .hero-floating-shadow { animation: none; }
}
@media (max-width: 980px) {
  .hero.hero--floating {
    flex-direction: column;
    justify-content: center;
    padding: 32px 20px 48px;
    min-height: 0;
  }
  .hero.hero--floating .hero-floating-content {
    margin: 0; max-width: 100%;
    text-align: center; align-items: center;
  }
  .hero.hero--floating .hero-floating-ctas { justify-content: center; }
  .hero.hero--floating .hero-floating-car-wrap {
    position: relative; right: auto; top: auto; transform: none;
    width: 100%; max-width: 100%;
    margin-top: 24px;
  }
  .hero.hero--floating .hero-title { font-size: clamp(32px, 8vw, 48px); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(82vh - var(--nav-h));
  padding: 40px 0 56px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--clay) 40%, var(--terracotta) 70%, var(--terracotta-soft) 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(0,0,0,.2), transparent 60%),
    linear-gradient(180deg, var(--ink-60) 0%, var(--ink-10) 40%, var(--ink-40) 100%);
}

/* ---- Placeholder photo scene (hero) ---- */
.placeholder-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.045) 0 2px, transparent 2px 14px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ph-scene { position: absolute; inset: 0; }
.ph-sky {
  position: absolute; inset: 0 0 50% 0;
  background: linear-gradient(180deg, var(--terracotta-soft) 0%, var(--terracotta) 40%, var(--clay) 75%, var(--ink) 100%);
}
.ph-mountains {
  position: absolute; left: 0; right: 0; top: 32%; height: 20%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(var(--primary-rgb), .25) 100%),
    conic-gradient(from 200deg at 30% 100%, var(--clay), var(--terracotta), var(--clay));
  clip-path: polygon(0 100%, 8% 55%, 18% 72%, 28% 40%, 40% 68%, 55% 45%, 68% 70%, 82% 50%, 92% 72%, 100% 55%, 100% 100%);
  opacity: 0.85;
}
.ph-dunes {
  position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(var(--color-accent-rgb), .25), transparent 60%),
    linear-gradient(180deg, var(--terracotta) 0%, var(--clay) 60%, var(--ink) 100%);
  clip-path: polygon(0 28%, 14% 18%, 32% 26%, 48% 14%, 66% 22%, 84% 12%, 100% 22%, 100% 100%, 0 100%);
}
.ph-road {
  position: absolute; left: 50%; bottom: 0;
  width: 80%; height: 32%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(20,8,4,.45) 35%, rgba(20,8,4,.75) 100%);
  clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
  opacity: 0.75;
}
.ph-suv {
  position: absolute;
  left: 50%; bottom: 8%;
  width: 46%; max-width: 640px;
  transform: translateX(-50%);
  filter: drop-shadow(0 40px 30px rgba(0,0,0,.5));
}
.ph-caption {
  position: absolute; left: 20px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,.28);
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.ph-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.2); }

/* Hero content */
.hero-content {
  position: relative;
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  color: white;
  max-width: 1280px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 16px 0 14px;
  max-width: 14ch;
  text-wrap: balance;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 2px 24px rgba(0,0,0,.5);
}
/* Annule l'ombre sur fond clair */
.hero-title--dark { text-shadow: none; }
/* Centrage du titre (auto-margin pour neutraliser max-width: 14ch) */
.hero-title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 22ch; }
.hero-title .ital { font-weight: 500; letter-spacing: 0; }
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 44px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 2px rgba(0,0,0,.6), 0 1px 14px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.45);
}
/* Annule l'ombre quand le sub est en mode "dark text on light bg" */
.hero-sub--dark { text-shadow: none; }

/* Booking widget */
.booking {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 14px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.18);
  max-width: 1080px;
}
.booking-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 6px;
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 8px;
  align-items: stretch;
}
.field {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s;
  position: relative;
}
.field + .field { border-left: 1px solid var(--line); }
.field:hover { background: var(--bg-warm); }
/* a11y : focus-visible clavier — outline:none sur .field input/select tue
   le ring du navigateur, on le réintroduit sur le wrapper. */
.field:focus-within { background: var(--bg-warm); box-shadow: 0 0 0 2px var(--orange); }
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 4px;
}
.field-control { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.field-icon { color: var(--orange); flex-shrink: 0; }
.field select, .field input {
  border: none; background: transparent; outline: none;
  font-size: 15px; font-weight: 600; color: var(--ink);
  width: 100%;
  appearance: none;
  padding: 0;
}
/* Format hints visibles pour les champs vides (date / time / placeholders).
   Appliqué globalement pour couvrir les formulaires de réservation, contact,
   homepage hero et modal sticky du footer. */
input::placeholder,
textarea::placeholder { color: var(--ink-60); opacity: 1; font-weight: 500; }
input[type="date"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit { color: var(--ink-60); font-weight: 500; }
input[type="date"]::-webkit-datetime-edit-text,
input[type="time"]::-webkit-datetime-edit-text { color: var(--ink-60); padding: 0 2px; }
input[type="date"]::-webkit-datetime-edit-year-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="time"]::-webkit-datetime-edit-hour-field,
input[type="time"]::-webkit-datetime-edit-minute-field { color: var(--ink-60); -webkit-text-fill-color: var(--ink-60); }
input[type="date"]:focus::-webkit-datetime-edit,
input[type="time"]:focus::-webkit-datetime-edit,
input[type="date"]:focus::-webkit-datetime-edit-year-field,
input[type="date"]:focus::-webkit-datetime-edit-month-field,
input[type="date"]:focus::-webkit-datetime-edit-day-field,
input[type="time"]:focus::-webkit-datetime-edit-hour-field,
input[type="time"]:focus::-webkit-datetime-edit-minute-field { color: var(--ink); -webkit-text-fill-color: var(--ink); }
/* iOS Safari : forcer l'affichage natif des placeholders date/time (jj/mm/aaaa, --:--).
   Sans ça, `appearance: none` masque le placeholder natif sur iPhone. */
input[type="date"], input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 24px;
  line-height: 1.4;
  display: block;
}
input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value { text-align: left; min-height: 1.4em; }
.btn-search { border-radius: 12px; height: auto; align-self: stretch; padding: 14px 22px; }

.booking-foot {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 12px 8px 4px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
.chk { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.chk input { accent-color: var(--orange); width: 15px; height: 15px; }
.foot-sep { flex: 1; }
.foot-hint { color: rgba(255,255,255,.75); }
.foot-hint strong { color: white; font-weight: 700; }

.hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-rating { display: flex; align-items: baseline; gap: 8px; color: white; font-size: 22px; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 1px 10px rgba(0,0,0,.4); }
.meta-rating .stars { font-size: 16px; letter-spacing: 2px; position: relative; display: inline-block; line-height: 1; }
.stars .stars-bg, .stars .stars-fg { display: inline-block; }
.stars .stars-bg { color: rgba(255,255,255,.28); }
.stars .stars-fg { color: var(--orange); position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; }
.tcard-stars .stars .stars-bg { color: rgba(0,0,0,.15); }
.meta-label { font-size: 13px; color: rgba(255,255,255,.85); text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 1px 8px rgba(0,0,0,.4); }
.meta-divider { width: 1px; height: 32px; background: rgba(255,255,255,.25); }
.meta-logos { color: white; font-family: inherit; font-style: normal; font-weight: 600; font-size: 14px; display: flex; gap: 8px; align-items: baseline; text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 1px 10px rgba(0,0,0,.4); }
.meta-logos span:nth-child(even) { color: rgba(255,255,255,.4); }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--orange), transparent);
  animation: scrollDown 2.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ---------- Trust indicators ---------- */

.trust {
  background: var(--bg);
  padding: 56px 0 32px;
  position: relative;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              border-color .25s ease,
              box-shadow .35s ease;
}
.trust-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-rgb), .35);
  box-shadow: 0 18px 40px -24px rgba(var(--ink-rgb), .25);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), .1);
  color: var(--color-primary);
}
.trust-title {
  font-size: clamp(15.5px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.trust-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-60);
  text-wrap: pretty;
}

@media (max-width: 880px) {
  .trust { padding: 36px 0 20px; }
  .trust-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
  }
  .trust-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .trust-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .trust-title { font-size: 14.5px; }
  .trust-desc { font-size: 13px; line-height: 1.45; }
}

/* ---------- Fleet ---------- */

.fleet {
  padding: 48px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.fleet::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><path d='M30 0L60 30L30 60L0 30Z M30 10L50 30L30 50L10 30Z M30 20L40 30L30 40L20 30Z' fill='none' stroke='%23c2624a' stroke-width='0.5' opacity='0.4'/></svg>");
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
}

.fleet-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-80);
  transition: all .15s;
}
.chip:hover { border-color: var(--ink-40); color: var(--ink); }
.chip.is-active,
.chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  position: relative;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.car-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}
.car-photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.car-card:hover .car-photo { transform: scale(1.05); }
.car-photo svg { width: 80%; height: auto; }
.car-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.car-photo:has(img)::before,
.car-photo:has(img)::after { content: none; }
.car-photo::before {
  content: '';
  position: absolute;
  bottom: 18%; left: 8%; right: 8%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0,0,0,.2), transparent 70%);
  filter: blur(4px);
}
.car-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(var(--ink-rgb),.025) 0 1px, transparent 1px 12px);
}
.car-pill {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(var(--ink-rgb),.88);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.car-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  color: var(--ink-60);
  transition: color .15s, transform .15s;
  z-index: 2;
}
.car-fav:hover { color: var(--orange); transform: scale(1.1); }

.car-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.car-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.car-name { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.car-sub { font-size: 13px; color: var(--ink-60); margin: 2px 0 0; }
.car-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.car-rating svg { color: var(--orange); }

.car-specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.spec { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-80); font-weight: 500; }
.spec svg { color: var(--ink-40); }

.car-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; }
.car-price { display: flex; flex-direction: column; }
.car-price-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--orange);
  line-height: 1;
}
.car-price-val sub { font-size: 12px; color: var(--ink-60); font-weight: 500; margin-left: 2px; letter-spacing: 0; vertical-align: baseline; }
.car-price-hint { font-size: 11px; color: var(--ink-60); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.car-actions { display: inline-flex; align-items: center; gap: 6px; }
.car-link {
  font-size: 13px; font-weight: 600;
  color: var(--ink-60);
  padding: 8px 10px; border-radius: 999px;
  transition: color .15s, background .15s;
}
.car-link:hover { color: var(--ink); background: var(--ink-06); }
.car-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.car-book:hover { background: var(--orange); }
.car-book svg { transition: transform .2s; }
.car-book:hover svg { transform: translateX(3px); }

.fleet-foot { margin-top: 32px; display: flex; justify-content: center; }

/* ---------- Gammes / Tarifs ---------- */

.gammes {
  padding: 72px 0 56px;
  background: var(--bg-warm);
  position: relative;
}
.gammes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.gamme {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
}
.gamme:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.gamme.is-featured {
  background:
    radial-gradient(ellipse at top right, rgba(var(--primary-rgb),.12), transparent 60%),
    var(--surface);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08), var(--shadow);
}
.gamme-head { display: flex; flex-direction: column; gap: 14px; }
.gamme-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gamme-badge { background: rgba(var(--ink-rgb),.06); color: var(--ink-60); }
.gamme-badge--eco { background: var(--success-bg); color: var(--success); }
.gamme-badge--confort { background: var(--orange-50); color: var(--clay); }
.gamme-badge--premium { background: rgba(var(--ink-rgb),.08); color: var(--ink); }
.gamme-desc {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0;
}
.gamme-stock {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-top: 4px;
  border-top: 1px dashed var(--line);
}
.gamme-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.gamme-name .ital { font-weight: 500; color: var(--ink-60); }
.gamme.is-featured .gamme-name .ital { color: var(--orange); }
.gamme-price {
  display: flex; align-items: baseline; gap: 6px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.gamme-price-from {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60);
}
.gamme-price-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--orange);
}
.gamme-price-unit { font-size: 13px; color: var(--ink-60); font-weight: 600; }
.gamme-feat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gamme-feat li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-80);
}
.gamme-feat li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 4px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8C00' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l4 4 10-10'/></svg>") center/contain no-repeat;
}
.gamme-cta { margin-top: auto; justify-content: center; }

.incl-band {
  margin-top: 28px;
  background: var(--ink);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.incl-band-title {
  font-size: 18px; font-weight: 700; letter-spacing: -0.015em;
  position: relative; z-index: 1;
  white-space: nowrap;
}
.incl-band-title .ital { color: var(--orange); font-weight: 500; }
.incl-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  position: relative; z-index: 1;
}
.incl-list li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.86);
}
.incl-list svg { color: var(--orange); flex-shrink: 0; }

@media (max-width: 1024px) {
  .gammes-grid { grid-template-columns: 1fr; gap: 16px; }
  .incl-band { grid-template-columns: 1fr; gap: 18px; padding: 22px 24px; }
  .incl-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .incl-list { grid-template-columns: 1fr; }
}

/* ---------- Locale (langues + villes) ---------- */

.locale {
  padding: 72px 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.locale::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23a84a2a' stroke-width='0.5' opacity='0.5'><path d='M40 0 L80 40 L40 80 L0 40 Z'/><path d='M40 16 L64 40 L40 64 L16 40 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.18;
  pointer-events: none;
}
.locale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.lang-grid {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  max-width: 460px;
}
.lang-grid li {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s, border-color .15s;
}
.lang-grid li:hover { transform: translateY(-2px); border-color: var(--orange); }
.lang-grid .flag { font-size: 18px; line-height: 1; }

.cities-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.cities-eye {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--orange);
  padding: 5px 12px;
  background: var(--orange-50);
  border-radius: 999px;
  margin-bottom: 20px;
}
.cities-eye::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.cities-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.cities-title .ital { font-weight: 500; color: var(--ink-60); }
.cities-sub {
  font-size: 14.5px;
  color: var(--ink-60);
  margin: 0 0 22px;
  line-height: 1.55;
}
.cities-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.cities-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: var(--bg-warm);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-80);
}
.cities-list svg { color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.cities-list strong { color: var(--ink); font-weight: 700; }
.cities-foot { font-size: 13px; color: var(--ink-60); margin: 0; padding-top: 4px; }
.cities-foot a { color: var(--orange); font-weight: 600; border-bottom: 1px solid rgba(var(--primary-rgb),.3); }
.cities-foot a:hover { border-color: var(--orange); }

@media (max-width: 1024px) {
  .locale-grid { grid-template-columns: 1fr; gap: 40px; }
  .lang-grid { max-width: none; }
  .cities-card { padding: 28px 26px; }
}

/* ---------- FAQ ---------- */

.faq {
  padding: 72px 0;
  background: var(--bg);
}
.faq-wrap { max-width: 1100px !important; }
.faq-head { margin-bottom: 28px; }
.faq-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: background .12s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(var(--primary-rgb),.04); }
.faq-item summary svg {
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--clay); }
.faq-a {
  padding: 0 26px 22px;
  color: var(--ink-80);
  font-size: 15px;
  line-height: 1.65;
}
.faq-a p { margin: 0; max-width: 75ch; text-wrap: pretty; }

@media (max-width: 680px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px 20px; font-size: 14.5px; }
  .faq { padding: 72px 0; }
  .gammes, .locale { padding: 72px 0; }
}

/* ---------- Locate / Map ---------- */

.locate {
  padding: 80px 0;
  background: var(--bg-cream);
  position: relative;
}
.locate-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}
.locate-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
}
.locate-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.locate-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(211, 32, 39, .08);
  color: var(--clay);
}
.locate-label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 4px;
  font-weight: 600;
}
.locate-value {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.locate-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.locate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.locate-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}
.locate-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .locate { padding: 72px 0; }
  .locate-grid { grid-template-columns: 1fr; }
  .locate-card { padding: 24px; }
  .locate-map { min-height: 320px; }
}

/* ---------- Why us ---------- */

.why {
  padding: 80px 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23a84a2a' stroke-width='0.5' opacity='0.6'><path d='M40 0 L80 40 L40 80 L0 40 Z'/><path d='M40 12 L68 40 L40 68 L12 40 Z'/><path d='M40 24 L56 40 L40 56 L24 40 Z'/><circle cx='40' cy='40' r='6'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.12;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-photo { position: absolute; inset: 0; }
.why-ph { background: linear-gradient(150deg, var(--terracotta) 0%, var(--clay) 60%, var(--ink) 100%); }
.ph-portrait {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 35% 40%, rgba(var(--color-accent-rgb), .5), transparent 55%),
    radial-gradient(circle at 60% 35%, rgba(var(--color-accent-rgb), .35), transparent 50%);
}
.ph-keys {
  position: absolute;
  right: 12%; top: 45%;
  width: 35%;
  animation: keyFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.3));
}
@keyframes keyFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.why-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--orange);
}
.why-badge div { display: flex; flex-direction: column; line-height: 1.25; }
.why-badge strong { color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.why-badge span { color: var(--ink-60); font-size: 12px; }

.why-copy .section-title { margin-top: 12px; }
.why-text { margin: 28px 0 40px; }
.why-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-80);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.why-text p:first-child { font-size: 18px; color: var(--ink); font-weight: 500; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.stat-num span {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0;
}
.stat-label { font-size: 13px; color: var(--ink-60); line-height: 1.3; }

/* ---------- Steps ---------- */

.steps {
  padding: 80px 0;
  background: var(--bg);
}
.steps-head { margin-bottom: 40px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 0.9;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.step-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
  text-wrap: pretty;
}
.step-icon {
  align-self: flex-end;
  color: var(--ink-40);
  margin-top: auto;
}
.step-connector {
  align-self: center;
  color: var(--ink-40);
  width: 100%;
  padding: 0 4px;
}

/* ---------- Testimonials ---------- */

.testimonials {
  padding: 80px 0;
  background: var(--bg-warm);
  overflow: hidden;
}
.testimonial-controls { display: flex; gap: 10px; }
.tctrl {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-80);
  transition: all .15s;
}
.tctrl:hover { background: var(--ink); color: white; border-color: var(--ink); }

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 4px;
}
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px -20px rgba(var(--ink-rgb),.2);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.tcard:nth-child(1) { transform: rotate(-1.2deg); }
.tcard:nth-child(2) { transform: translateY(-12px) rotate(0.4deg); }
.tcard:nth-child(3) { transform: rotate(1deg); }
.tcard:hover { transform: translateY(-8px) rotate(0); box-shadow: var(--shadow-lg); }
.tcard-stars { color: var(--orange); font-size: 15px; letter-spacing: 3px; }
.tcard-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  text-wrap: pretty;
}
.tcard-quote::before { content: '“'; color: var(--orange); font-size: 40px; font-family: var(--font-serif); line-height: 0; vertical-align: -20px; margin-right: 4px; }
.tcard-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.tavatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.tname { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.tcountry { font-size: 12px; color: var(--ink-60); display: inline-flex; align-items: center; gap: 4px; }

/* ---------- CTA banner ---------- */

.cta-band {
  position: relative;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, var(--orange), transparent 55%),
    radial-gradient(ellipse at 80% 80%, var(--orange-600), transparent 55%),
    linear-gradient(120deg, var(--orange) 0%, var(--orange-600) 55%, var(--ink) 100%);
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='white' stroke-width='0.6' opacity='0.3'><path d='M40 0 L80 40 L40 80 L0 40 Z'/><path d='M40 16 L64 40 L40 64 L16 40 Z'/><path d='M40 32 L48 40 L40 48 L32 40 Z'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.25;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 14px 0 12px;
  text-wrap: balance;
  color: white;
}
.cta-title .ital { font-weight: 500; }
.cta-sub { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.9); margin: 0; max-width: 54ch; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.btn-wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: border-color .15s, color .15s;
}
.btn-wa-link:hover { color: white; border-color: white; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 100px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 80px;
  padding-bottom: 72px;
}
.footer-tag { font-size: 15px; color: rgba(255,255,255,.65); margin: 20px 0 32px; max-width: 36ch; line-height: 1.55; }
.newsletter { max-width: 380px; }
.news-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.news-row { display: flex; gap: 8px; background: rgba(255,255,255,.08); padding: 6px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
.news-row input {
  flex: 1;
  border: none; outline: none; background: transparent;
  color: white;
  padding: 10px 16px;
  font-size: 14.5px;
}
.news-row input::placeholder { color: rgba(255,255,255,.8); font-weight: 500; }
/* a11y : focus-visible clavier — l'outline:none ci-dessus tue le ring du
   navigateur, on rétablit un focus visible sur le wrapper. */
.news-row:focus-within { box-shadow: 0 0 0 2px rgba(255,255,255,.85); }
.news-row .btn { padding: 10px 18px; font-size: 14px; }
.news-hint { display: block; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 10px; transition: color .15s ease; }
.news-hint--ok  { color: #6EE7B7; font-weight: 600; }
.news-hint--err { color: #FCA5A5; font-weight: 600; }
.newsletter-hp {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 18px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols li, .footer-cols a { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.5; transition: color .15s; }
.footer-cols a:hover { color: var(--orange); }
.socials a { display: inline-flex; align-items: center; justify-content: space-between; width: 100%; gap: 8px; }
.socials a > span { transition: transform .15s; margin-left: auto; }
.socials a:hover > span { transform: translateX(3px); }
/* Lien social : structure `<icon> Label → ` */
.socials .social-link { color: rgba(255,255,255,.85); }
.socials .social-link svg { flex-shrink: 0; transition: color .15s; }
/* Couleurs de marque au hover */
.socials .social-facebook svg    { color: #1877F2; }
.socials .social-instagram svg   { color: #E1306C; }
.socials .social-tiktok svg      { color: #ffffff; }
.socials .social-google_maps svg { color: #EA4335; }
.socials .social-link:hover { color: #ffffff; }
.footer-wa { gap: 8px; color: rgba(255,255,255,.85) !important; }
.footer-wa svg { color: #25d366; flex-shrink: 0; }
.footer-wa:hover svg { color: #25d366; }

.footer-pay {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.pay-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-chip {
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.75);
}

.footer-bar { padding: 24px 0; padding-bottom: calc(24px + 84px); }
.footer-legal {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-legal nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a:hover { color: white; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  min-width: 60px;
  height: 60px;
  padding: 0 16px;
  background: #25d366;
  color: white;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15);
  z-index: 40;
  isolation: isolate;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, padding .35s cubic-bezier(.4,0,.2,1);
}
.wa-fab > svg {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  position: relative; z-index: 2;
}
.wa-label {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative; z-index: 2;
  transition: max-width .35s cubic-bezier(.4,0,.2,1),
              opacity .2s ease,
              margin-left .35s cubic-bezier(.4,0,.2,1);
}
.wa-fab:hover,
.wa-fab:focus-visible {
  background: #1fbe5a;
  padding: 0 22px 0 18px;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(37,211,102,.7), 0 6px 16px rgba(0,0,0,.2);
}
.wa-fab:hover .wa-label,
.wa-fab:focus-visible .wa-label {
  max-width: 260px;
  opacity: 1;
  margin-left: 12px;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: -1;
  pointer-events: none;
  animation: wapulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
}
.wa-pulse-2 { animation-delay: 1.2s; }
.wa-fab:hover .wa-pulse,
.wa-fab:focus-visible .wa-pulse { animation-play-state: paused; opacity: 0; transition: opacity .2s; }
@keyframes wapulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-pulse { animation: none; opacity: 0; }
  .wa-fab, .wa-label { transition: none; }
}
@media (max-width: 640px) {
  .wa-fab {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    min-width: 56px; height: 56px;
    padding: 0 15px;
  }
  .wa-fab > svg { flex-basis: 26px; width: 26px; height: 26px; }
}
@media (hover: none) {
  .wa-fab:focus,
  .wa-fab:focus-visible,
  .wa-fab:active {
    background: #25d366;
    padding: 0;
    transform: none;
    box-shadow: 0 12px 28px -6px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15);
  }
  .wa-fab:focus .wa-label,
  .wa-fab:focus-visible .wa-label,
  .wa-fab:active .wa-label {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }
  .wa-fab:focus .wa-pulse,
  .wa-fab:focus-visible .wa-pulse,
  .wa-fab:active .wa-pulse {
    animation-play-state: running;
    opacity: 0.55;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .nav-burger { display: flex; }
  /* Drawer mobile : voir assets/css/mobile.css (slide-in droite + backdrop).
     Les anciennes règles dropdown ont été retirées (conflit de spécificité :
     `.nav-links.open` écrasait position/top/z-index du drawer → drawer rendu
     derrière le backdrop, clics qui ferment le menu). */
  /* Animation fine du burger en X quand ouvert */
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-burger span { transition: transform .2s, opacity .2s; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .booking-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .btn-search { grid-column: 1 / -1; }
  .field + .field { border-left: none; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { aspect-ratio: 16 / 11; max-width: 600px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .tcard:nth-child(1), .tcard:nth-child(2), .tcard:nth-child(3) { transform: none; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  .wrap { width: calc(100% - 32px); }
  .hero { padding: 56px 0 64px; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); }
  .booking-row { grid-template-columns: 1fr; }
  .trust { padding: 20px 0; }
  .trust-item { padding: 10px 4px; column-gap: 10px; }
  .trust-item:hover { padding-left: 8px; }
  [dir="rtl"] .trust-item:hover { padding-left: 4px; padding-right: 8px; }
  .trust-num { font-size: 24px; }
  .trust-title { font-size: 14px; }
  .trust-desc { font-size: 12.5px; }
  .fleet { padding: 32px 0 56px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .gammes { padding: 48px 0 40px; }
  .why { padding: 56px 0; }
  .locale { padding: 48px 0; }
  .steps { padding: 56px 0; }
  .testimonials { padding: 56px 0; }
  .faq { padding: 48px 0; }
  .locate { padding: 56px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .cta-actions { align-items: flex-start; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .section-title { font-size: clamp(30px, 7vw, 40px); }
  .hero-meta { gap: 16px; }
  .meta-divider { display: none; }
}


/* ---------- Currency / Language selectors (nav) ---------- */
.selector { position: relative; display: inline-flex; }
.selector-trigger {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--ink-10);
    background: rgba(255,255,255,0.5);
    color: var(--ink);
    font: inherit;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    font-family: var(--font-mono);
}
.selector-trigger:hover { background: rgba(255,255,255,0.85); border-color: var(--ink-40); }
.selector.open .selector-trigger { background: var(--ink); color: #fff; border-color: var(--ink); }
.selector.open .selector-trigger svg { transform: rotate(180deg); }
.selector-trigger svg { transition: transform .15s; }
.selector-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px;
    list-style: none; margin: 0; padding: 6px;
    background: #fff;
    border: 1px solid var(--ink-10);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 60;
}
.selector-menu[hidden] { display: none; }
.selector-menu li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--ink);
    transition: background .12s;
}
.selector-menu li:hover { background: var(--bg-cream); }
.selector-menu li[aria-selected="true"] { background: var(--ink); color: #fff; }
.selector-menu li[aria-selected="true"] .opt-name { color: rgba(255,255,255,0.7); }
.selector-menu .opt-code {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    background: var(--ink-06);
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
}
.selector-menu li[aria-selected="true"] .opt-code { background: rgba(255,255,255,0.15); color: #fff; }
.selector-menu .opt-name { color: var(--ink-60); flex: 1; }

/* Hero selectors invisible quand on est dans le hero (déjà sur fond glass dark) — surchargé par .nav.scrolled */
.nav.scrolled .selector-trigger { background: var(--bg); }

@media (max-width: 1100px) {
    .selector-menu { right: 0; left: auto; }
}
@media (max-width: 680px) {
    .selector-trigger { padding: 6px 10px; font-size: 11.5px; }
    .selector-menu { min-width: 180px; }
}

/* =============================================================
   RÉSERVATION — Boîte de dialogue (modale globale)
   ============================================================= */

.rsv-overlay {
    position: fixed; inset: 0;
    background: rgba(26, 28, 28, 0.55);
    backdrop-filter: blur(6px) saturate(140%);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
    z-index: 100;
    display: grid; place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s cubic-bezier(.2,.8,.2,1);
}
.rsv-overlay.is-open { opacity: 1; pointer-events: auto; }
body.rsv-locked { overflow: hidden; }

.rsv-modal {
    position: relative;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px -20px rgba(var(--ink-rgb),.45), 0 10px 30px rgba(var(--ink-rgb),.18);
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    transform: translateY(20px) scale(.98);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.rsv-overlay.is-open .rsv-modal { transform: translateY(0) scale(1); }

.rsv-aside {
    /* background-color opaque comme fallback du gradient — sans ça, axe/Lighthouse
       et les scripts WCAG alpha-blind ne voient pas de fond et calculent un
       contraste 1:1 sur le texte blanc des chips/labels. */
    background-color: #1a1a1a;
    background:
        radial-gradient(ellipse at top right, rgba(var(--primary-rgb),.18), transparent 65%),
        linear-gradient(170deg, var(--ink-90) 0%, var(--ink) 60%, var(--ink) 100%),
        #1a1a1a;
    color: var(--surface);
    padding: 28px 26px 26px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
    overflow: hidden;
}
.rsv-aside-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
    color: rgba(255,255,255,.7);
}
.rsv-aside-eyebrow::before {
    /* Sur fond ink sombre, --orange (#7f1d1d) tombe à 1.6:1 → utiliser un dot
       wash blanc pour rester lisible (et un halo primary légèrement plus
       opaque pour conserver l'accent de marque). */
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.35);
}
.rsv-aside-photo {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--ink-90), var(--ink));
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.rsv-aside-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.rsv-aside-name {
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
    line-height: 1.15; margin: 0;
    position: relative; z-index: 1;
}
.rsv-aside-name .ital { color: inherit; font-weight: inherit; font-style: normal; }
.rsv-aside-sub {
    font-size: 13px; color: rgba(255,255,255,.65);
    margin: -8px 0 0;
    position: relative; z-index: 1;
}
.rsv-aside-specs {
    display: flex; flex-wrap: wrap; gap: 8px;
    position: relative; z-index: 1;
}
.rsv-aside-spec {
    font-size: 12px; font-weight: 500;
    padding: 6px 11px; border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex; align-items: center; gap: 6px;
}
.rsv-aside-spec svg { opacity: .8; }
.rsv-aside-price {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed rgba(255,255,255,.18);
    position: relative; z-index: 1;
}
.rsv-aside-price-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,.55); font-weight: 600;
}
.rsv-aside-price-val {
    /* Prix en blanc pur sur le fond ink sombre — --orange (#7f1d1d) ne
       contraste qu'à 1.6:1 ici. Le titre car (.rsv-aside-name .ital) reste
       le seul accent --orange dans l'aside, géré séparément. */
    font-size: 30px; font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1; margin-top: 4px;
    display: inline-flex; align-items: baseline; gap: 3px;
}
.rsv-aside-price-val sub {
    font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500;
    vertical-align: baseline;
}
.rsv-aside-trust {
    display: flex; flex-direction: column; gap: 6px;
    position: relative; z-index: 1;
    font-size: 12px; color: rgba(255,255,255,.7);
}
.rsv-aside-trust span { display: inline-flex; align-items: center; gap: 6px; }
/* Checkmarks — blancs sur fond ink (var(--orange) = burgundy = 1.6:1, illisible). */
.rsv-aside-trust svg { color: rgba(255,255,255,.85); flex-shrink: 0; }

.rsv-body {
    padding: 28px 32px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
}
.rsv-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    display: grid; place-items: center;
    transition: background .15s, transform .15s;
    z-index: 5;
}
.rsv-close:hover { background: #fff; transform: rotate(90deg); }

.rsv-title {
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
    margin: 0 0 4px;
}
.rsv-title .ital { color: var(--orange); font-weight: 500; }
.rsv-lede {
    font-size: 13.5px; color: var(--ink-60);
    margin: 0 0 20px;
    line-height: 1.5;
}

.rsv-form { display: flex; flex-direction: column; gap: 14px; }
.rsv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rsv-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.rsv-field {
    /* Audit D 2026-04-30 : bordure des inputs scoped à la modale réservation,
       passée à #9a8870 (3.18:1 sur cream, 3.43:1 sur surface) pour atteindre
       le seuil WCAG UI 3:1. On NE TOUCHE PAS au token global --line (utilisé
       partout : cards, footers, dividers décoratifs où 3:1 n'est pas requis).
       2026-05-13 : background passé de --bg (cream) à --surface (blanc) pour
       que les inputs se distinguent clairement du fond de page cream. */
    border: 1px solid #9a8870;
    background: var(--surface);
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: border-color .15s, background .15s, box-shadow .15s;
    position: relative;
}
.rsv-field:hover {
    /* Hover state pour signaler l'interactivité : bordure encore plus contrastée. */
    border-color: #7d6a4a; /* 4.84:1 sur cream */
}
.rsv-field:focus-within {
    border-color: var(--orange);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.25);
}
.rsv-field:focus-within .rsv-label { color: var(--orange); }
.rsv-label {
    display: block;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 4px;
}
.rsv-label .req { color: var(--orange); margin-left: 2px; }
.rsv-input, .rsv-textarea, .rsv-select {
    width: 100%;
    border: none; outline: none; background: transparent;
    font: inherit; font-size: 16px; font-weight: 500; color: var(--ink);
    padding: 0;
    /* 16px obligatoire pour empêcher iOS Safari de zoomer au focus */
}
.rsv-textarea { resize: vertical; min-height: 60px; font-family: inherit; }
.rsv-select { appearance: none; cursor: pointer; }

/* Audit D 2026-04-30 : placeholder dans la modale (ink-40 = 2.43:1 = échec 3:1).
   Bumpé à 0.62 alpha → 4.46:1 sur surface, 4.39:1 sur bg cream — passe le seuil
   "non-textuel UI" 3:1 et frôle 4.5:1 texte. Scoped pour ne pas affecter le
   reste du site (formulaires contact / newsletter ont leurs propres règles). */
.rsv-input::placeholder,
.rsv-textarea::placeholder,
.rsv-select::placeholder {
    color: rgba(var(--ink-rgb), 0.62);
    opacity: 1;
    font-weight: 500;
}
.rsv-input:disabled,
.rsv-textarea:disabled,
.rsv-select:disabled {
    color: rgba(var(--ink-rgb), 0.55); /* 3.59:1 — état désactivé visible mais sourd */
    cursor: not-allowed;
}
.rsv-field:has(:disabled) {
    background: rgba(var(--ink-rgb), 0.04);
    border-color: rgba(var(--ink-rgb), 0.25);
}

.rsv-actions {
    display: flex; gap: 10px; align-items: stretch;
    margin-top: 8px;
    flex-wrap: wrap;
}
.rsv-actions .rsv-submit,
.rsv-actions .rsv-wa {
    height: 52px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform .18s ease, box-shadow .25s ease, background .18s ease, filter .18s ease;
    will-change: transform;
}
.rsv-actions .rsv-submit:focus-visible,
.rsv-actions .rsv-wa:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}
.rsv-submit {
    flex: 1 1 240px;
    padding: 0 24px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    box-shadow:
        0 10px 24px -10px rgba(var(--primary-rgb), .6),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}
.rsv-submit svg {
    transition: transform .25s ease;
}
.rsv-submit:hover {
    transform: translateY(-1px);
    background: var(--orange-600);
    box-shadow:
        0 16px 32px -12px rgba(var(--primary-rgb), .75),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}
.rsv-submit:hover svg { transform: translateX(3px); }
:dir(rtl) .rsv-submit:hover svg { transform: translateX(-3px); }
.rsv-submit:active { transform: translateY(0); filter: brightness(.96); }
.rsv-submit:disabled { opacity: .55; transform: none; cursor: not-allowed; box-shadow: none; }
.rsv-wa {
    flex: 0 0 auto;
    padding: 0 20px;
    background: linear-gradient(180deg, #2bd96b 0%, #1eb957 100%);
    color: #fff;
    font-size: 14px;
    box-shadow:
        0 8px 20px -10px rgba(30, 185, 87, .65),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}
.rsv-wa svg { transition: transform .25s ease; }
.rsv-wa:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #25d366 0%, #169a48 100%);
    box-shadow:
        0 14px 28px -12px rgba(22, 154, 72, .75),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}
.rsv-wa:hover svg { transform: scale(1.08); }
.rsv-wa:active { transform: translateY(0); filter: brightness(.96); }
@media (max-width: 480px) {
    .rsv-actions .rsv-submit,
    .rsv-actions .rsv-wa { width: 100%; flex: 1 1 100%; }
}

.rsv-foot {
    font-size: 11.5px; color: var(--ink-60);
    margin: 12px 0 0; line-height: 1.5;
    display: inline-flex; align-items: center; gap: 6px;
}
.rsv-foot svg { color: var(--orange); flex-shrink: 0; }

.rsv-msg {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 13.5px;
    line-height: 1.5;
    display: none;
}
/* Audit D 2026-04-30 : --success vaut #4c1010 (palette dérivée) et --success-bg
   est une teinte 10% → 1.92:1 = illisible. On force ici un texte ink fort sur
   le fond pâle, et on garde la teinte sémantique uniquement comme bordure
   (les vrais "vert/rouge" sont interdits par la charte palette dérivée). */
.rsv-msg.is-success { display: block; background: var(--success-bg); border: 1px solid var(--success); color: var(--ink); }
.rsv-msg.is-error   { display: block; background: var(--danger-bg);  border: 1px solid var(--danger);  color: var(--ink); }
.rsv-msg.is-success strong { color: var(--success); }
.rsv-msg.is-error   strong { color: var(--danger); }
.rsv-msg strong { color: inherit; }
.rsv-msg a {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px;
    padding: 8px 14px; border-radius: 999px;
    background: #25d366; color: #fff;
    font-weight: 600; font-size: 13px;
}

@media (max-width: 820px) {
    .rsv-overlay { padding: 0; }
    .rsv-modal {
        grid-template-columns: 1fr;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        overflow-y: auto;
    }
    .rsv-aside { padding: 20px 20px 18px; gap: 12px; }
    .rsv-aside-photo { aspect-ratio: 16 / 9; }
    .rsv-aside-price { padding-top: 14px; }
    .rsv-body { padding: 20px 20px 32px; max-height: none; overflow: visible; }
    .rsv-row { grid-template-columns: 1fr; }
    .rsv-row--3 { grid-template-columns: 1fr 1fr; }
    .rsv-close { top: 10px; right: 10px; }
}

/* =============================================================
   MOBILE FIXES — audit 2026-04-27 (Claude Design v1)
   ============================================================= */

/* Layouts responsifs (remplacement des grilles inline) */
.contact-layout {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.vehicule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .vehicule-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 380px) {
  /* Sur très petits écrans (iPhone SE / petit Android), on stack ; sur 390+
     on garde 2-col pour les paires courtes (dates, heures, prénom/nom). */
  .form-row-2col { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 540px) {
  .form-row-2col { gap: 12px; }
  /* Permet aux placeholders longs (téléphone, email) de ne pas faire déborder */
  .form-row-2col input,
  .form-row-2col select { min-width: 0; font-size: 15px; }
}

/* ========== Filter chips flotte : horizontal scroll mobile ========== */
@media (max-width: 768px) {
  .fleet-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 8px;
    scroll-snap-type: x proximity;
  }
  .fleet-filters::-webkit-scrollbar { display: none; }
  .fleet-filters .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 40px;
  }
}

/* ========== Carte véhicule : compacte + bouton Réserver rouge full-width sur mobile ========== */
@media (max-width: 540px) {
  /* Image plus aplatie : 16/10 au lieu de 4/3 */
  .car-media { aspect-ratio: 16 / 10; }

  /* Body plus compact */
  .car-body {
    padding: 12px 14px 14px;
    gap: 8px;
  }
  .car-top { gap: 8px; }
  .car-name { font-size: 16.5px; }
  .car-sub { font-size: 12px; margin-top: 1px; }
  .car-rating { font-size: 12px; }

  /* Specs : padding réduit, plus serré */
  .car-specs {
    padding: 8px 0;
    gap: 10px;
    border-top-style: solid;
    border-bottom: none;
  }
  .spec { font-size: 12px; gap: 4px; }

  /* Pill et favori plus discrets */
  .car-pill {
    font-size: 10px;
    padding: 4px 10px;
    top: 10px;
    left: 10px;
    letter-spacing: 0.08em;
  }
  .car-fav {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }

  /* Foot : prix au-dessus du bouton, lien Détails minimal sous le bouton */
  .car-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 4px;
  }
  .car-price { order: 1; }
  .car-price-val { font-size: 22px; }
  .car-price-val sub { font-size: 11px; }
  .car-price-hint { font-size: 10px; margin-top: 2px; }
  .car-actions {
    order: 2;
    flex-direction: column-reverse;
    gap: 4px;
    align-items: stretch;
  }
  .car-link {
    text-align: center;
    padding: 6px;
    font-size: 12px;
    color: var(--ink-60);
  }
  .car-book {
    width: 100%;
    justify-content: center;
    background: var(--orange);
    min-height: 44px;
    font-size: 14.5px;
    border-radius: 10px;
    padding: 10px 14px;
  }
}

/* ========== Hero compact mobile ========== */
.hero-cta-mobile { display: none; }
@media (max-width: 768px) {
  /* Booking form visible par défaut (UX search-first) — on cache uniquement
     scroll indicator + caption décorative photo. Le CTA mobile reste off
     pour ne pas dupliquer l'appel à l'action. */
  .hero .hero-scroll,
  .hero .ph-caption {
    display: none !important;
  }
  /* Hero auto-fit (plus de min-height 736px qui laissait 350px de vide) */
  .hero {
    padding: 48px 0 32px !important;
    min-height: auto !important;
  }
  .hero-content { gap: 20px; }

  /* Re-afficher la meta bar du hero (social proof) en version mobile compacte */
  .hero .hero-meta {
    display: flex !important;
    margin-top: 24px;
    gap: 14px;
    align-items: center;
    flex-wrap: nowrap;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 360px;
  }
  .hero .meta-item { flex: 1 1 0; min-width: 0; }
  .hero .meta-divider {
    display: block !important;
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    flex: 0 0 1px;
  }
  .hero .meta-rating {
    font-size: 16px;
    font-weight: 700;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .hero .meta-rating svg { width: 12px; height: 12px; }
  .hero .meta-logos {
    font-size: 13px;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .hero .meta-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
  }
}

/* ========== Réduction du texte sur mobile ========== */
@media (max-width: 768px) {
  /* Hero : retirer le long sous-titre (les meta sont en .trust juste après) */
  .hero .hero-sub { display: none; }

  /* Cacher les "lede" paragraphes au-dessus des sections cards-heavy de la home */
  body.page-home .fleet > .wrap > .section-head ~ .section-sub,
  body.page-home .gammes > .wrap > .section-head ~ .section-sub,
  body.page-home .testimonials > .wrap > .section-head ~ .section-sub,
  body.page-home .fleet .section-sub,
  body.page-home .gammes .section-sub,
  body.page-home .testimonials .section-sub {
    display: none;
  }

  /* Trust : titres seulement (descriptions cachées) */
  .trust-desc { display: none; }

  /* Section .locale (4 langues + villes) cachée sur mobile :
     - langues déjà dans le menu burger (sélecteur)
     - villes déjà mentionnées dans la section À propos / footer */
  body.page-home .locale { display: none; }

  /* Steps : descriptions tronquées à 2 lignes */
  .step-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* À propos : tronquer le texte long à 4 lignes */
  .why-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ========== Carrousels horizontaux home (flotte preview, gammes, témoignages) ========== */
@media (max-width: 768px) {
  /* Scope : uniquement la home (.page-home), pas la page flotte */
  body.page-home .fleet-grid,
  body.page-home .gammes-grid,
  body.page-home .tgrid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body.page-home .fleet-grid::-webkit-scrollbar,
  body.page-home .gammes-grid::-webkit-scrollbar,
  body.page-home .tgrid::-webkit-scrollbar { display: none; }

  body.page-home .fleet-grid > *,
  body.page-home .gammes-grid > *,
  body.page-home .tgrid > * {
    flex: 0 0 84%;            /* peeking next card */
    scroll-snap-align: start;
    max-width: none;
  }

  /* Gammes : snap centré (la carte Confort initialise au centre via JS,
     l'utilisateur garde le centrage symétrique en swipant). */
  body.page-home .gammes-grid > * { scroll-snap-align: center; }

  /* Témoignages : annuler le offset visuel décoratif (rotation/translate) en mobile */
  body.page-home .tcard:nth-child(1),
  body.page-home .tcard:nth-child(2),
  body.page-home .tcard:nth-child(3) {
    transform: none !important;
  }

  /* Padding vertical des sections réduit sur mobile */
  body.page-home .fleet,
  body.page-home .gammes,
  body.page-home .testimonials,
  body.page-home .why,
  body.page-home .steps,
  body.page-home .faq {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

/* Header mobile : sélecteurs devise/langue dans le menu burger uniquement */
@media (max-width: 1100px) {
  .nav-cta .selector-desktop { display: none; }
  .nav-cta { gap: 10px; }
  .nav-inner { width: calc(100% - 32px); gap: 12px; }
  .nav-links.open .selector-mobile {
    display: flex;
    width: calc(100% - 48px);
    margin: 8px 24px 4px;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
  }
  .nav-links.open .selector-mobile .selector-trigger {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    min-height: 24px;
  }
  .nav-links.open .selector-mobile-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-60);
  }
  .nav-links .selector-mobile { display: none; }
}
@media (min-width: 1101px) {
  .nav-links .selector-mobile { display: none; }
}

/* Tap targets + anti-zoom iOS sur tous les inputs */
@media (max-width: 768px) {
  input, select, textarea,
  .news-row input,
  .field input, .field select, .field textarea {
    font-size: 16px;
  }
  /* Cartes "field" du master (label + input dans une bordure unique) */
  .field, .field--input {
    min-height: 64px;
  }
  /* Boutons compacts du master */
  .btn, button.btn, a.btn {
    min-height: 44px;
  }
  /* Sélecteurs devise/langue (hors menu) */
  .selector-trigger { min-height: 44px; padding: 10px 12px; }

  /* Liens footer plus gros et plus aérés */
  footer a, .footer a, .site-footer a {
    padding: 10px 0;
    line-height: 1.3;
    display: inline-block;
  }
}

/* WhatsApp FAB : remonté au-dessus du bouton submit sur la page réservation */
@media (max-width: 768px) {
  body.page-reservation .wa-fab {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  /* Idem sur la page véhicule (sticky CTA en bas) */
  body.page-vehicule .wa-fab {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== Sticky CTA bottom — page véhicule (mobile) ========== */
.vehicule-sticky-mobile {
  display: none;
}
@media (max-width: 880px) {
  .vehicule-sticky-mobile {
    display: flex;
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    z-index: 45;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(var(--ink-rgb),.10);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    gap: 12px;
  }
  .vehicule-sticky-price {
    flex: 0 0 auto;
    line-height: 1.05;
  }
  .vehicule-sticky-price-num {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.02em;
  }
  .vehicule-sticky-price-unit {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-60);
    letter-spacing: 0;
  }
  .vehicule-sticky-price-from {
    font-size: 11px;
    color: var(--ink-60);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
  }
  .vehicule-sticky-btn {
    flex: 1 1 auto;
    min-height: 48px;
    justify-content: center;
  }
  /* Espace en bas pour ne pas masquer la fin du contenu */
  body.page-vehicule { padding-bottom: 80px; }
  /* L'aside contient prix + Réserver + WhatsApp + disclaimer. La sticky bar
     bottom duplique déjà prix + Réserver. Sur mobile, on compacte l'aside :
     - retrait du gros prix 44px (la sticky le montre déjà)
     - retrait du 1er bouton "Réserver" (idem)
     - on garde WhatsApp direct + caution + disclaimer (uniques)
     L'aside redevient en flux normal (pas sticky desktop). */
  .vehicule-aside {
    position: static !important;
    top: auto !important;
    padding: 18px !important;
  }
  /* Cible le 1er enfant text "À PARTIR DE", le gros prix (44px) et le 1er
     bouton (Réserver). Tous identifiables par leur ordre dans l'aside. */
  .vehicule-aside > div:nth-child(1),
  .vehicule-aside > div:nth-child(2),
  .vehicule-aside > button[data-rsv-open] {
    display: none !important;
  }
}

/* ========== Stepper page réservation (mobile-first) ========== */
.rsv-stepper {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
}
.rsv-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  text-align: center;
}
.rsv-step + .rsv-step::before {
  content: "";
  position: absolute;
  top: 14px;
  /* inset-inline-start = `left` en LTR, `right` en RTL → la barre reste collée au step
     précédent dans les deux directions de lecture (sinon en RTL elle déborde à gauche
     hors du conteneur, créant un overflow horizontal de ~50px et tronquant le hero). */
  inset-inline-start: -50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.rsv-step--active + .rsv-step::before,
.rsv-step--done + .rsv-step::before { background: var(--orange); }
.rsv-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink-60);
  font-size: 13px;
  font-weight: 700;
}
.rsv-step--active .rsv-step-num,
.rsv-step--done .rsv-step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(var(--primary-rgb),.5);
}
.rsv-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100px;
}
.rsv-step--active .rsv-step-label { color: var(--ink); }
@media (max-width: 540px) {
  .rsv-step-label { font-size: 10px; letter-spacing: 0.02em; }
  .rsv-stepper { gap: 4px; }
}

/* ========== Réservation — formulaire ========== */
.rsv-hero { padding: 88px 0 24px; }
.rsv-hero .wrap { max-width: 820px; }
.rsv-hero .section-title { margin-top: 14px; }
.rsv-hero .section-sub { margin-top: 14px; max-width: 580px; }

.rsv-wrap { padding: 8px 0 96px; }
.rsv-wrap .wrap { max-width: 820px; }

.rsv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.rsv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 33%, var(--line) 33%, var(--line) 100%);
  transition: background 0.4s ease;
}
.rsv-card[data-step="2"]::before { background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 66%, var(--line) 66%, var(--line) 100%); }
.rsv-card[data-step="3"]::before { background: var(--orange); }

.rsv-section + .rsv-section { margin-top: 32px; padding-top: 32px; border-top: 1px dashed var(--line); }
.rsv-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.rsv-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink-06);
  color: var(--ink-60);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.rsv-section.is-complete .rsv-section-num,
.rsv-section.is-active .rsv-section-num {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(var(--primary-rgb),.45);
}
.rsv-section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-80);
}

.rsv-field {
  display: block;
  /* Audit D 2026-04-30 : même politique que la modale — bordure 3:1+.
     2026-05-13 : background blanc (--surface) au lieu du cream (--bg) pour
     que les inputs ressortent clairement du fond cream de la page. */
  border: 1px solid #9a8870; /* 3.18:1 sur cream, 3.43:1 sur surface */
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: text;
}
.rsv-field:hover { border-color: #7d6a4a; /* 4.84:1, hover state plus contrasté */ }
.rsv-field:focus-within {
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.22);
}
/* État erreur visible AVANT submit : champ requis touché puis vidé.
   Repose sur :placeholder-shown pour distinguer "vide-non-touché" (OK) du
   "vide-après-saisie" (erreur). */
.rsv-field:has(input:invalid:not(:placeholder-shown)),
.rsv-field:has(textarea:invalid:not(:placeholder-shown)),
.rsv-field:has(select:invalid:not(:placeholder-shown)) {
  border-color: #c0392b;
  background: rgba(192, 57, 43, .04);
}
.rsv-field:has(input:invalid:not(:placeholder-shown)):focus-within,
.rsv-field:has(textarea:invalid:not(:placeholder-shown)):focus-within,
.rsv-field:has(select:invalid:not(:placeholder-shown)):focus-within {
  box-shadow: 0 0 0 4px rgba(192, 57, 43, .18);
}
.rsv-field--select { cursor: pointer; }
.rsv-field--select::after {
  content: "";
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-60);
  border-bottom: 2px solid var(--ink-60);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.rsv-field--select { position: relative; padding-inline-end: 36px; }
.rsv-field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 4px;
}
.rsv-field input,
.rsv-field select,
.rsv-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  padding: 4px 0;
  font-size: 16px;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
.rsv-field input:focus,
.rsv-field select:focus,
.rsv-field textarea:focus { outline: none; }
.rsv-field textarea { resize: vertical; min-height: 64px; }

.rsv-summary {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  border-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease, border-width 0.2s ease;
}
.rsv-summary.is-visible {
  opacity: 1;
  max-height: 200px;
  padding: 18px 20px;
  margin-top: 28px;
  border-width: 1px;
}
.rsv-summary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0 0 4px;
}
.rsv-summary-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}
.rsv-summary-value strong { color: var(--orange); font-weight: 700; }
.rsv-summary-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.rsv-summary-price-num {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.rsv-summary-price-num sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-60);
  letter-spacing: 0.06em;
  margin-left: 4px;
  vertical-align: baseline;
}
.rsv-summary-price-note {
  font-size: 11px;
  color: var(--ink-60);
  margin-top: 4px;
}
@media (max-width: 540px) {
  .rsv-summary { grid-template-columns: 1fr; }
  .rsv-summary-price { text-align: left; align-items: flex-start; }
}

.rsv-card .rsv-submit {
  width: 100%;
  margin-top: 28px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.rsv-card .rsv-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(var(--primary-rgb),.5); }
.rsv-card .rsv-submit svg { transition: transform 0.2s ease; }
.rsv-card .rsv-submit:hover svg { transform: translateX(3px); }

.rsv-disclaimer {
  font-size: 12px;
  color: var(--ink-60);
  margin: 14px 0 0;
  text-align: center;
}

@media (max-width: 640px) {
  .rsv-card { padding: 24px 20px; }
}

/* ============ AGENCE (merged why + locale + locate + testimonials) ============ */
.agence { padding: 96px 0; background: var(--cream); }
.agence-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px; align-items: end; margin-bottom: 56px; }
.agence-lede { color: var(--ink-70); font-size: 17px; line-height: 1.7; }
.agence-lede :is(p, h2, h3) { margin: 0 0 12px; }
.agence-stats { margin-bottom: 64px; }
.agence-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1.4fr); gap: 24px; margin-bottom: 64px; }
.agence-langs { display: flex; flex-direction: column; gap: 18px; }
.agence-h3 { font-family: var(--font-sans); font-size: 28px; line-height: 1.2; font-weight: 700; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.agence-h3 .ital { font-style: normal; font-weight: inherit; color: inherit; }
.agence-h3-sub { font-size: 15px; color: var(--ink-70); line-height: 1.6; max-width: 32ch; margin: 0; }
.agence-langs .lang-grid { margin-top: 4px; }
.agence-contact { margin: 0; }
.agence-map { min-height: 360px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.agence-map iframe { display: block; min-height: 360px; }
.agence-tstrip { padding-top: 48px; border-top: 1px solid rgba(0,0,0,.08); }
.agence-tstrip-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.agence-tgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

@media (max-width: 1024px) {
  .agence-head { grid-template-columns: 1fr; gap: 24px; }
  .agence-grid { grid-template-columns: 1fr 1fr; }
  .agence-map { grid-column: 1 / -1; }
  .agence-tgrid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .agence { padding: 72px 0; }
  .agence-grid { grid-template-columns: 1fr; gap: 18px; }
  .agence-stats { margin-bottom: 40px; }
  .agence-tstrip { padding-top: 32px; }
}

/* ============================================================
   PAGINATION (catalogue flotte, etc.)
   Pendant public des styles admin.css : tokens publics + look
   adapté à la grille des cards (centré, plus aéré). */
.pagination {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--ink-10);
  font-size: 14px;
  color: var(--ink-60);
  flex-wrap: wrap;
  gap: 12px;
}
.pagination[hidden] { display: none; }
.pagination-info { font-variant-numeric: tabular-nums; }
.pagination-list { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.pg-btn {
  min-width: 36px; height: 36px;
  padding: 0 12px;
  border: 1px solid var(--ink-10);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.pg-btn:hover { border-color: var(--ink); }
.pg-active, .pg-btn.pg-active { background: var(--ink); color: #fff; border-color: var(--ink); cursor: default; }
.pg-disabled { opacity: .4; pointer-events: none; }
.pg-ellipsis { color: var(--ink-40); padding: 0 4px; }
@media (max-width: 720px) {
  .pagination { flex-direction: column; align-items: stretch; gap: 10px; padding: 16px 0 4px; }
  .pagination-info { text-align: center; font-size: 13px; }
  .pagination-list { justify-content: center; }
  .pg-btn { min-width: 32px; height: 32px; padding: 0 10px; font-size: 13px; }
}

/* Rating display — bloc visuel pour la note + nb d'avis (section témoignages) */
.rating-display {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}
.rating-display .stars {
  font-size: 22px;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.rating-display .stars-bg,
.rating-display .stars-fg { display: inline-block; }
.rating-display .stars-bg { color: rgba(0, 0, 0, 0.12); }
.rating-display .stars-fg {
  color: #FBB034;
  position: absolute;
  top: 0; left: 0;
  overflow: hidden;
  white-space: nowrap;
}
.rating-display-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-sans);
  color: var(--ink);
}
.rating-display-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--orange);
}
.rating-display-on {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-60, rgba(0, 0, 0, 0.55));
  margin-left: -2px;
}
.rating-display-sep {
  font-size: 14px;
  color: var(--ink-40, rgba(0, 0, 0, 0.35));
  font-weight: 700;
}
.rating-display-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70, rgba(0, 0, 0, 0.65));
  letter-spacing: 0.01em;
}

/* RTL : la note reste lisible LTR (chiffres latins + slash) */
[dir="rtl"] .rating-display-text { direction: ltr; }
[dir="rtl"] .rating-display { align-items: flex-end; }

/* === How it works — 4 étapes (section L'agence) === */
.howit { margin: 56px 0; }
.howit-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.howit-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: howit;
}
.howit-step {
  position: relative;
  background: var(--surface, #FFFFFF);
  border: 1px solid var(--color-border-scola, #E8EAED);
  border-radius: 16px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.howit-step-num {
  position: absolute;
  inset-inline-start: 16px;
  inset-block-start: -14px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--ink, #202124);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}
.howit-step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.howit-step-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.howit-step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70, rgba(0, 0, 0, 0.65));
}

/* Tablette : 2 colonnes */
@media (max-width: 960px) {
  .howit-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

/* Mobile : empilé verticalement */
@media (max-width: 560px) {
  .howit { margin: 40px 0; }
  .howit-steps { grid-template-columns: 1fr; gap: 14px; }
  .howit-step { padding: 20px 18px; }
  .howit-step-num { inset-inline-start: 14px; inset-block-start: -12px; width: 24px; height: 24px; font-size: 12px; }
  .howit-step-icon { width: 40px; height: 40px; }
}


