/* Transfert Aéroport Alsace — Ghost Driver
   Feuille de style principale (style mixte : haut sombre, contenu clair) */

@font-face { font-family: "Lora"; src: url("../fonts/lora-600.woff") format("woff"); font-weight: 500 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-400.woff") format("woff"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-500.woff") format("woff"); font-weight: 500 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-700.woff") format("woff"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --navy-950: #070f1d;
  --navy-900: #0b1628;
  --navy-800: #12213a;
  --navy-700: #1c2f4f;
  --navy-600: #2a4068;
  --gold-600: #9c7a37;
  --gold-500: #c6a15b;
  --gold-400: #d6b77c;
  --gold-200: #efe2c4;
  --gold-100: #f8f1e2;
  --ink: #152033;
  --muted: #566174;
  --line: #e5e0d5;
  --paper: #f7f4ee;
  --white: #ffffff;
  --success: #23704f;
  --danger: #b3261e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(7, 15, 29, .06);
  --shadow: 0 14px 40px rgba(7, 15, 29, .10);
  --shadow-lg: 0 30px 70px rgba(3, 8, 18, .35);
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
strong, b { font-weight: 600; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; color: inherit; }
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.35rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li + li { margin-top: .35em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
::selection { background: var(--gold-200); color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold-500); color: var(--navy-950); padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 780px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-400); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--muted); max-width: 64ch; }
.on-dark .lead { color: rgba(255, 255, 255, .78); }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.gold { color: var(--gold-500); }

/* ---------- Boutons ---------- */
.btn {
  --bg: var(--gold-500); --fg: var(--navy-950); --bd: var(--gold-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .7em 1.35em;
  font: 600 .95rem/1.2 var(--sans); letter-spacing: .01em; text-decoration: none; white-space: nowrap;
  color: var(--fg); background: var(--bg); border: 1.5px solid var(--bd); border-radius: 10px;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { --bg: var(--gold-400); --bd: var(--gold-400); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(198, 161, 91, .25); }
.btn:active { transform: none; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-outline { --bg: transparent; --fg: var(--navy-900); --bd: var(--navy-900); }
.btn-outline:hover { --bg: var(--navy-900); --fg: #fff; --bd: var(--navy-900); box-shadow: none; }
.on-dark .btn-outline, .btn-outline.on-dark { --fg: #fff; --bd: rgba(255, 255, 255, .5); }
.on-dark .btn-outline:hover, .btn-outline.on-dark:hover { --bg: #fff; --fg: var(--navy-950); --bd: #fff; }
.btn-dark { --bg: var(--navy-900); --fg: #fff; --bd: var(--navy-900); }
.btn-dark:hover { --bg: var(--navy-700); --bd: var(--navy-700); box-shadow: none; }
.btn-link { background: none; border: 0; padding: 0; min-height: 0; color: var(--gold-600); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: var(--navy-950); color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.site-header .container { max-width: 1320px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; flex: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.brand-sub { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); margin-top: 3px; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; margin: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 10px; border-radius: 8px; white-space: nowrap;
  color: rgba(255, 255, 255, .86); text-decoration: none; font-size: .9rem; font-weight: 500;
  background: none; border: 0; cursor: pointer; font-family: inherit;
}
.nav-link:hover, .nav-link[aria-current="page"], .nav-link.is-active { color: #fff; background: rgba(255, 255, 255, .07); }
.nav-link[aria-current="page"], .nav-link.is-active { box-shadow: inset 0 -2px 0 var(--gold-500); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .2s; }
.has-sub[data-open="true"] .chev { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  width: min(560px, 90vw); padding: 14px; list-style: none; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: #fff; color: var(--ink); border-radius: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .18s, visibility .18s;
}
.has-sub[data-open="true"] .sub-menu { opacity: 1; visibility: visible; }
@media (min-width: 1200px) and (hover: hover) {
  .has-sub:hover .sub-menu { opacity: 1; visibility: visible; }
  .has-sub:hover .chev { transform: rotate(180deg); }
  .has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
}
.sub-menu li { margin: 0; }
.sub-menu a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 12px; border-radius: 8px; text-decoration: none; font-size: .9rem; }
.sub-menu a:hover { background: var(--gold-100); }
.sub-menu .code { font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--gold-600); }
.sub-menu .sub-all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.sub-menu .sub-all a { font-weight: 600; color: var(--navy-900); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 500; font-size: .92rem; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--gold-400); }
.header-actions .btn { min-height: 42px; padding: .55em 1.1em; }
.nav-toggle { display: none; flex: none; margin-left: auto; width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .2); background: transparent; color: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-nav-cta { display: none; }

@media (max-width: 1359px) {
  .header-phone span:not(.visually-hidden) { display: none; }
}
@media (max-width: 760px) {
  .header-actions .btn { display: none; }
}
@media (max-width: 520px) {
  :root { --header-h: 64px; }
  .brand { gap: 10px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: .98rem; }
  .brand-sub { font-size: .58rem; letter-spacing: .16em; }
  .header-actions { display: none; }
}
@media (max-width: 1199px) {
  .nav-toggle { display: inline-flex; order: 3; margin-left: 0; }
  .header-actions { order: 2; margin-left: auto; }
  .main-nav {
    position: fixed; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); left: 0; right: 0; bottom: 0; margin: 0;
    background: var(--navy-950); overflow-y: auto; overscroll-behavior: contain;
    padding: 16px var(--gutter) calc(96px + env(safe-area-inset-bottom, 0px));
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-header[data-menu="open"] .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .header-phone { padding: 8px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 8px; font-size: 1.02rem; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav-link[aria-current="page"], .nav-link.is-active { box-shadow: none; color: var(--gold-400); background: none; }
  .sub-menu { position: static; transform: none; width: auto; grid-template-columns: 1fr; background: rgba(255, 255, 255, .04); color: #fff; box-shadow: none; opacity: 1; visibility: visible; display: none; margin: 4px 0 10px; }
  .has-sub[data-open="true"] .sub-menu { display: grid; }
  .sub-menu a:hover { background: rgba(255, 255, 255, .06); }
  .sub-menu .code { color: var(--gold-400); }
  .sub-menu .sub-all { border-color: rgba(255, 255, 255, .1); }
  .sub-menu .sub-all a { color: var(--gold-400); }
  .mobile-nav-cta { display: grid; gap: 10px; margin-top: 18px; }
}
@media (max-width: 520px) {
  .nav-toggle { margin-left: auto; }
}

/* ---------- Héros ---------- */
.hero, .page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(198, 161, 91, .18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(42, 64, 104, .55), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 75%);
}
.hero-route { position: absolute; right: -60px; bottom: -40px; width: 640px; max-width: 70%; opacity: .22; pointer-events: none; }
.hero .container, .page-hero .container { position: relative; }
.hero { padding-block: clamp(40px, 6vw, 80px) clamp(48px, 7vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  grid-template-areas: "intro booking" "extra booking"; grid-template-rows: auto 1fr;
  column-gap: clamp(28px, 4vw, 56px); row-gap: 0; align-items: start;
}
.hero-intro { grid-area: intro; padding-top: clamp(0px, 3vw, 36px); }
.hero-booking { grid-area: booking; }
.hero-extra { grid-area: extra; }
.hero-extra .trust-list { margin-top: 8px; }
.hero h1 { color: #fff; }
.hero h1 em, .page-hero h1 em { font-style: normal; color: var(--gold-400); }
.trust-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; }
.trust-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; color: rgba(255, 255, 255, .88); }
.trust-list svg { flex: none; width: 22px; height: 22px; color: var(--gold-400); margin-top: 2px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .88rem; color: rgba(255, 255, 255, .7); }
.hero-meta strong { color: #fff; font-weight: 600; }
.slogan { font-family: var(--serif); font-style: italic; color: var(--gold-400); }

.page-hero { padding-block: clamp(28px, 4vw, 48px) clamp(40px, 6vw, 72px); }
.page-hero.has-booking .hero-grid { align-items: start; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { margin-bottom: 1.2rem; }
.breadcrumb { font-size: .82rem; margin-bottom: 22px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; color: rgba(255, 255, 255, .6); }
.breadcrumb li { margin: 0; display: inline-flex; gap: 6px; align-items: center; }
.breadcrumb li + li::before { content: "›"; color: rgba(255, 255, 255, .35); }
.breadcrumb a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-400); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; padding: 0; list-style: none; }
.chips li { margin: 0; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-size: .86rem; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .9); }
.chips svg { width: 16px; height: 16px; color: var(--gold-400); }
.chips strong { color: #fff; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "booking" "extra"; grid-template-rows: auto; row-gap: 22px; }
  .hero-intro { padding-top: 0; }
  .hero-intro .lead { margin-bottom: 0; }
  .hero-route { display: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.section-white { background: var(--white); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-head p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; }
.section-dark .card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); box-shadow: none; }
.section-dark .card p { color: rgba(255, 255, 255, .75); }
.section-dark .card-icon { background: rgba(198, 161, 91, .14); color: var(--gold-400); }

a.card { text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-200); }

/* Destinations */
.dest-card { display: flex; flex-direction: column; gap: 6px; min-height: 100%; }
.dest-card .code { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--gold-600); background: var(--gold-100); border-radius: 999px; padding: 4px 10px; }
.dest-card h3 { margin: 8px 0 2px; font-size: 1.12rem; }
.dest-card .facts { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: .86rem; color: var(--muted); }
.dest-card .go { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--navy-900); }
.dest-card .go svg { width: 16px; height: 16px; transition: transform .2s; }
a.dest-card:hover .go svg { transform: translateX(4px); }

/* Étapes */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps li { counter-increment: step; margin: 0; position: relative; padding-top: 58px; }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-600);
  width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--gold-200); border-radius: 50%; background: var(--white);
}
.steps h3 { font-size: 1.08rem; }
.steps p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Listes à puces décoratives */
.check-list { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; }
.check-list svg { flex: none; width: 20px; height: 20px; color: var(--gold-600); margin-top: 4px; }
.section-dark .check-list svg { color: var(--gold-400); }
.check-list.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
@media (max-width: 680px) { .check-list.cols-2 { grid-template-columns: 1fr; } }

/* Véhicules */
.vehicle-card { display: grid; gap: 14px; }
.vehicle-card .vehicle-art { background: linear-gradient(180deg, var(--gold-100), #fff); border-radius: 12px; padding: 18px 18px 10px; color: var(--navy-800); }
.vehicle-card .vehicle-art svg { display: block; width: 100%; height: auto; }
.vehicle-card .specs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.vehicle-card .specs li { margin: 0; display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; padding: 5px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); }
.vehicle-card .specs svg { width: 15px; height: 15px; color: var(--gold-600); }

/* Chiffres clés */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .1); border-radius: var(--radius); overflow: hidden; }
.stats > div { background: var(--navy-900); padding: 24px 20px; text-align: center; }
.stats .num { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold-400); line-height: 1.1; display: block; }
.stats .lbl { font-size: .86rem; color: rgba(255, 255, 255, .72); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--gold-200); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 36px 18px 0; position: relative; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .answer { padding-bottom: 18px; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* Bandeau d'appel à l'action */
.cta-band { position: relative; overflow: hidden; border-radius: 22px; padding: clamp(28px, 5vw, 56px); color: #fff; background: radial-gradient(600px 300px at 100% 0, rgba(198, 161, 91, .25), transparent 60%), var(--navy-900); display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .78); margin: 0; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }

/* Texte long (pages légales, articles) */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: #2b3547; }
.prose a { color: var(--gold-600); text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: .94rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--gold-100); font-weight: 600; }
.table-wrap { overflow-x: auto; }
.prose blockquote { margin: 1.5em 0; padding: 14px 20px; border-left: 3px solid var(--gold-500); background: var(--gold-100); border-radius: 0 10px 10px 0; }
.todo { background: #fff1c2; border: 1px dashed #c99a1b; border-radius: 4px; padding: 0 4px; color: #5b4300; font-weight: 600; }

.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .88rem; color: rgba(255, 255, 255, .7); }
.post-card { display: flex; flex-direction: column; gap: 10px; }
.post-card .tag { align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.post-card h3 { margin: 0; font-size: 1.15rem; }
.post-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.post-card .go { margin-top: auto; font-weight: 600; font-size: .9rem; }
.toc { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin: 0 0 2em; }
.toc strong { display: block; margin-bottom: 6px; }
.toc ol { margin: 0; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.aside-box { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .aside-box { position: static; } }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { margin: 0; display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--gold-600); }
.contact-list .lbl { display: block; font-size: .8rem; color: var(--muted); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .72); padding-top: clamp(48px, 6vw, 72px); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .brand { margin-bottom: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-400); flex: none; margin-top: 4px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; }
.social a:hover { border-color: var(--gold-400); color: var(--gold-400); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 44px; padding-block: 22px calc(22px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid rgba(255, 255, 255, .08); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom nav ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-bottom nav li { margin: 0; }
.footer-bottom .btn-link { color: rgba(255, 255, 255, .78); font-weight: 400; text-decoration: none; font-size: .82rem; }
.footer-bottom .btn-link:hover { color: #fff; text-decoration: underline; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Barre d'appel mobile */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 15, 29, .96); border-top: 1px solid rgba(255, 255, 255, .1);
  }
  .mobile-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: .88rem; color: #fff; border: 1px solid rgba(255, 255, 255, .2); }
  .mobile-bar a svg { width: 18px; height: 18px; }
  .mobile-bar a.primary { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Bandeau cookies ---------- */
.consent {
  position: fixed; z-index: 60; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  max-width: 560px; margin-left: auto;
  background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 20px 22px;
}
.consent h2 { font-size: 1.1rem; margin-bottom: .4em; }
.consent p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.consent .btn { min-height: 42px; }
@media (max-width: 760px) { .consent { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); } }

/* ---------- Module de réservation ---------- */
.bk {
  position: relative; background: #fff; color: var(--ink); border-radius: 20px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .6);
  padding: clamp(18px, 2.6vw, 28px);
}
.section .bk { box-shadow: var(--shadow); border-color: var(--line); }
.bk-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 16px; margin-bottom: 14px; }
.bk-title { font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.bk-sub { font-size: .82rem; color: var(--muted); margin: 0; }
.bk-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; }
.bk-progress li { margin: 0; font-size: .76rem; font-weight: 600; letter-spacing: .02em; color: #8a93a3; padding-top: 10px; border-top: 3px solid var(--line); transition: color .2s, border-color .2s; }
.bk-progress li span { display: inline-block; min-width: 1.4em; color: inherit; }
.bk-progress li.is-current { color: var(--navy-900); border-color: var(--gold-500); }
.bk-progress li.is-done { color: var(--gold-600); border-color: var(--gold-200); }

.bk-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.bk-step legend { padding: 0; font-weight: 600; font-size: .95rem; margin-bottom: 12px; }
.fields { display: grid; gap: 12px; }
.fields.two { grid-template-columns: 1fr 1fr; }
.fields.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fields.keep { align-items: end; }
@media (max-width: 480px) { .fields.two, .fields.three { grid-template-columns: 1fr; } .fields.two.keep, .fields.three.keep { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: 5px; min-width: 0; }
.field > label, .field .label { font-size: .8rem; font-weight: 600; color: #3a4557; }
.field .hint { font-size: .76rem; color: var(--muted); }
.req { color: var(--danger); }
.input, .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field input[type="time"], .field input[type="number"], .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px;
  font: 400 .95rem/1.3 var(--sans); color: var(--ink);
  background: #fff; border: 1.5px solid #d9d4c8; border-radius: 10px;
  transition: border-color .15s, box-shadow .15s; appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%239c7a37' stroke-width='2'%3E%3Cpath d='m5 8 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(198, 161, 91, .18); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179, 38, 30, .1); }
.field .error { font-size: .76rem; color: var(--danger); }
.with-icon { position: relative; }
.with-icon > svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gold-600); pointer-events: none; }
.with-icon > input { padding-left: 40px !important; }

.route-fields { position: relative; display: grid; gap: 10px; }
.route-fields .has-swap { position: relative; }
.swap-btn { position: absolute; right: 10px; bottom: -22px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid #d9d4c8; background: #fff; color: var(--navy-800); display: grid; place-items: center; cursor: pointer; }
.swap-btn:hover { border-color: var(--gold-500); color: var(--gold-600); }
.swap-btn svg { width: 16px; height: 16px; }
.route-fields .field input { padding-right: 52px !important; }
.stops { display: grid; gap: 10px; }
.stop-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: end; }
.icon-btn { width: 48px; height: 48px; border-radius: 10px; border: 1.5px solid #d9d4c8; background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--muted); }
.icon-btn:hover { border-color: var(--danger); color: var(--danger); }
.icon-btn svg { width: 18px; height: 18px; }
.add-stop { justify-self: start; font-size: .85rem; }

.toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: .9rem; font-weight: 500; user-select: none; }
.toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.toggle .track { position: relative; width: 44px; height: 26px; border-radius: 999px; background: #d4cfc3; transition: background .2s; flex: none; }
.toggle .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); transition: transform .2s; }
.toggle input:checked + .track { background: var(--gold-500); }
.toggle input:checked + .track::after { transform: translateX(18px); }
.toggle input:focus-visible + .track { outline: 3px solid var(--gold-500); outline-offset: 2px; }

.stepper { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; border: 1.5px solid #d9d4c8; border-radius: 10px; overflow: hidden; background: #fff; }
.stepper button { border: 0; background: var(--paper); color: var(--navy-900); font-size: 1.2rem; cursor: pointer; min-height: 45px; }
.stepper button:hover { background: var(--gold-100); }
.stepper input { border: 0 !important; border-radius: 0 !important; text-align: center; min-height: 45px !important; box-shadow: none !important; -moz-appearance: textfield; padding: 8px 4px !important; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper:focus-within { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(198, 161, 91, .18); }

.vehicle-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vc { position: relative; display: block; cursor: pointer; }
.vc input { position: absolute; opacity: 0; }
.vc .vc-box { display: grid; gap: 2px; height: 100%; padding: 12px 14px; border: 1.5px solid #d9d4c8; border-radius: 12px; transition: border-color .15s, background .15s, box-shadow .15s; }
.vc .vc-name { font-weight: 600; display: flex; justify-content: space-between; gap: 8px; }
.vc .vc-model { font-size: .78rem; color: var(--muted); }
.vc .vc-cap { font-size: .76rem; color: #3a4557; margin-top: 4px; }
.vc input:checked + .vc-box { border-color: var(--gold-500); background: var(--gold-100); box-shadow: 0 0 0 3px rgba(198, 161, 91, .15); }
.vc input:focus-visible + .vc-box { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.vc .radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #b9b2a3; flex: none; margin-top: 3px; }
.vc input:checked + .vc-box .radio-dot { border-color: var(--gold-600); background: radial-gradient(circle, var(--gold-600) 45%, transparent 50%); }

.options { display: grid; gap: 8px; }
.opt { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border: 1.5px solid #e2ddd1; border-radius: 10px; cursor: pointer; font-size: .9rem; }
.opt:hover { border-color: var(--gold-200); }
.opt input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold-600); flex: none; }
.opt .price { margin-left: auto; font-weight: 600; white-space: nowrap; color: var(--navy-800); }
.promo-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.promo-row .btn { min-height: 48px; }
.promo-msg { font-size: .8rem; }
.promo-msg.ok { color: var(--success); }
.promo-msg.ko { color: var(--danger); }

.route-summary { display: grid; gap: 10px; margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); font-size: .88rem; }
.route-summary .rs-line { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.route-summary strong { color: var(--navy-900); }
.bk .hint { color: var(--muted); }
.bk-map { height: 210px; border-radius: 10px; overflow: hidden; background: #e9e5dc; }

.estimate { margin-top: 16px; border-radius: 14px; background: linear-gradient(180deg, #fbf7ee, #f6efdf); border: 1px solid var(--gold-200); padding: 14px 16px; }
.estimate .est-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.estimate .est-label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-600); }
.estimate .est-total { font-family: var(--serif); font-size: 1.9rem; line-height: 1.1; color: var(--navy-900); white-space: nowrap; }
.estimate .est-total small { font-family: var(--sans); font-size: .8rem; color: var(--muted); }
.estimate .est-lines { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 4px; font-size: .82rem; color: #3a4557; }
.estimate .est-lines li { display: flex; justify-content: space-between; gap: 12px; margin: 0; }
.estimate .est-lines li.neg span:last-child { color: var(--success); }
.estimate .est-note { font-size: .74rem; color: var(--muted); margin: 10px 0 0; }
.estimate.is-quote .est-total { font-size: 1.35rem; }

.bk-alert { margin-top: 12px; padding: 10px 12px; border-radius: 10px; font-size: .85rem; background: #eef4ff; border: 1px solid #cfdcf7; color: #1d3563; }
.bk-alert.warn { background: #fff6e0; border-color: #f0d9a0; color: #5d4300; }
.bk-alert.error { background: #fdecea; border-color: #f3c2bd; color: #7a1d16; }
.bk-alert a { font-weight: 600; }
.bk-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }
.bk-nav .btn { flex: 1; }
.bk-nav .btn-outline { flex: 0 0 auto; }
.bk-foot { margin: 12px 0 0; font-size: .74rem; color: var(--muted); line-height: 1.5; }
.bk-foot a { color: var(--gold-600); }
.recap { display: grid; gap: 4px; padding: 12px 14px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); font-size: .85rem; margin-top: 14px; }
.recap div { display: flex; justify-content: space-between; gap: 12px; }
.recap dt { color: var(--muted); }
.recap dd { margin: 0; font-weight: 600; text-align: right; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(7, 15, 29, .25); border-top-color: var(--navy-900); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pac-container { border-radius: 10px; margin-top: 4px; box-shadow: var(--shadow); font-family: var(--sans); z-index: 70; }

/* Page de remerciement */
.thanks-card { max-width: 720px; margin-inline: auto; }
.thanks-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(35, 112, 79, .12); color: var(--success); margin-bottom: 16px; }
.thanks-icon svg { width: 32px; height: 32px; }

/* Divers */
.note { padding: 14px 18px; border-radius: 12px; background: var(--gold-100); border: 1px solid var(--gold-200); font-size: .92rem; }
.badge-line { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: .85rem; }
.links-inline { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.links-inline li { margin: 0; }
.links-inline a { display: inline-block; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); text-decoration: none; font-size: .88rem; }
.links-inline a:hover { border-color: var(--gold-500); color: var(--gold-600); }
.error-page { min-height: 50vh; display: grid; place-items: center; text-align: center; }

/* ---------- Ajustements téléphone ---------- */
@media (max-width: 680px) {
  .card { padding: 18px; }
  .card:has(> .card-icon) { display: grid; grid-template-columns: 42px minmax(0, 1fr); column-gap: 14px; align-items: start; }
  .card:has(> .card-icon) > .card-icon { grid-row: span 2; width: 42px; height: 42px; margin: 0; }
  .card:has(> .card-icon) > h3 { margin-top: 8px; }
  .card:has(> .card-icon) > p { grid-column: 2; }
  .dest-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 12px; row-gap: 2px; align-items: center; padding: 14px 16px; }
  .dest-card .code { grid-column: 1; justify-self: start; }
  .dest-card h3 { grid-column: 1; margin: 4px 0 0; font-size: 1.02rem; }
  .dest-card .facts { grid-column: 1; font-size: .8rem; }
  .dest-card .go { grid-column: 2; grid-row: 1 / span 3; margin: 0; padding: 0; font-size: 0; }
  .dest-card .go svg { width: 20px; height: 20px; color: var(--gold-600); }
  .grid { gap: 12px; }
  .vehicle-card .vehicle-art { padding: 10px 14px 4px; }
  .vehicle-card .vehicle-art svg { max-height: 86px; margin-inline: auto; }
  .steps li { padding-top: 0; padding-left: 60px; }
  .steps li::before { width: 42px; height: 42px; font-size: 1.2rem; }
  .section { padding-block: 48px; }
  .section-head { margin-bottom: 22px; }
  .hero-meta { gap: 6px 16px; }
  .bk-map { height: 160px; }
}

/* Les boutons secondaires du module restent lisibles, même dans un bandeau sombre */
.bk .btn-outline { --bg: #fff; --fg: var(--navy-900); --bd: #cfc8b8; }
.bk .btn-outline:hover { --bg: var(--navy-900); --fg: #fff; --bd: var(--navy-900); }
