/* ==========================================================================
   INTER CARS IMPORT — Location de véhicules
   Feuille de styles principale
   --------------------------------------------------------------------------
   1.  Tokens & thèmes
   2.  Base & typographie
   3.  Layout
   4.  Composants UI
   5.  En-tête & navigation
   6.  Hero & module de réservation
   7.  Sections
   8.  Véhicules & filtres
   9.  Tarifs
   10. Formulaires
   11. Pied de page
   12. Animations & accessibilité
   ========================================================================== */

/* ==========================================================================
   0. POLICES (auto-hébergées — aucune requête vers un service tiers)
   Inter et Plus Jakarta Sans sont des fontes variables : un seul fichier
   par jeu de caractères couvre toutes les graisses.
   Licence SIL Open Font License 1.1 — usage commercial autorisé.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/jakarta-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/jakarta-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   1. TOKENS & THÈMES
   ========================================================================== */

:root {
  /* Couleurs de marque */
  --brand-ink:      #0A1020;
  --brand-ink-2:    #111C33;
  --brand-accent:   #FF5A1F;
  --brand-accent-2: #E8450C;
  --brand-accent-3: #FFF1EA;

  /* Surfaces — thème clair */
  --bg:             #FFFFFF;
  --bg-alt:         #F5F6F8;
  --bg-sunken:      #EDEFF3;
  --surface:        #FFFFFF;
  --surface-2:      #FAFBFC;
  --overlay:        rgba(10, 16, 32, .55);

  /* Texte */
  --text:           #0A1020;
  --text-soft:      #4A5568;
  --text-mute:      #737D8C;
  --text-invert:    #FFFFFF;

  /* Traits */
  --line:           #E4E7EC;
  --line-strong:    #D0D5DD;

  /* Sémantique */
  --ok:             #0E9F6E;
  --warn:           #B54708;

  /* Rayons */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Ombres */
  --sh-xs: 0 1px 2px rgba(10, 16, 32, .06);
  --sh-sm: 0 2px 8px rgba(10, 16, 32, .06), 0 1px 2px rgba(10, 16, 32, .04);
  --sh-md: 0 12px 28px -12px rgba(10, 16, 32, .18), 0 2px 6px rgba(10, 16, 32, .05);
  --sh-lg: 0 34px 60px -28px rgba(10, 16, 32, .34), 0 6px 18px rgba(10, 16, 32, .07);
  --sh-accent: 0 12px 28px -10px rgba(255, 90, 31, .5);

  /* Typographie */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);

  /* Rythme */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Transitions */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --header-h: 76px;
  color-scheme: light;
}

/* Thème sombre — automatique */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:          #080C16;
    --bg-alt:      #0D1322;
    --bg-sunken:   #11182A;
    --surface:     #0F1626;
    --surface-2:   #131C2F;
    --text:        #EEF1F6;
    --text-soft:   #A9B4C5;
    --text-mute:   #8492A6;
    --line:        #1E2942;
    --line-strong: #2B3854;
    --brand-accent-3: #2A160C;
    --overlay:     rgba(4, 7, 14, .62);
    --sh-sm: 0 2px 10px rgba(0, 0, 0, .4);
    --sh-md: 0 14px 30px -14px rgba(0, 0, 0, .65);
    --sh-lg: 0 36px 64px -30px rgba(0, 0, 0, .8);
    color-scheme: dark;
  }
}

/* Thème sombre — choix explicite */
:root[data-theme="dark"] {
  --bg:          #080C16;
  --bg-alt:      #0D1322;
  --bg-sunken:   #11182A;
  --surface:     #0F1626;
  --surface-2:   #131C2F;
  --text:        #EEF1F6;
  --text-soft:   #A9B4C5;
  --text-mute:   #8492A6;
  --line:        #1E2942;
  --line-strong: #2B3854;
  --brand-accent-3: #2A160C;
  --overlay:     rgba(4, 7, 14, .62);
  --sh-sm: 0 2px 10px rgba(0, 0, 0, .4);
  --sh-md: 0 14px 30px -14px rgba(0, 0, 0, .65);
  --sh-lg: 0 36px 64px -30px rgba(0, 0, 0, .8);
  color-scheme: dark;
}

/* ==========================================================================
   2. BASE & TYPOGRAPHIE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 .6em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

strong, b { font-weight: 700; color: var(--text); }

small { font-size: .8125rem; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

::selection { background: var(--brand-accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Utilitaires texte */
.lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--text-soft);
  line-height: 1.65;
}
.muted { color: var(--text-mute); }
.soft  { color: var(--text-soft); }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.accent { color: var(--brand-accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--brand-accent);
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--alt { background: var(--bg-alt); }
.section--ink {
  background: var(--brand-ink);
  color: #E9EDF5;
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead, .section--ink .soft { color: #A7B3C8; }

.section-head { max-width: 740px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.stack > * + * { margin-top: 1rem; }

/* ==========================================================================
   4. COMPOSANTS UI
   ========================================================================== */

/* --- Boutons --- */
.btn {
  --btn-bg: var(--brand-accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  box-shadow: var(--sh-accent);
  -webkit-appearance: none;
  appearance: none;
}
.btn:hover { transform: translateY(-2px); background: var(--brand-accent-2); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--text);
}

.btn--ink {
  --btn-bg: var(--brand-ink);
  --btn-fg: #fff;
  box-shadow: var(--sh-md);
}
.btn--ink:hover { background: var(--brand-ink-2); }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--brand-ink);
  box-shadow: var(--sh-md);
}
.btn--light:hover { background: #F0F2F6; }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
}

/* Lien fléché */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: .9375rem;
}
.link-arrow .ico { width: 17px; height: 17px; transition: transform .25s var(--ease-out); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* --- Badges & puces --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: var(--r-pill);
  background: var(--brand-accent-3);
  color: var(--brand-accent-2);
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .01em;
  white-space: nowrap;
}
.badge--ink { background: var(--bg-sunken); color: var(--text-soft); }
.badge--ok { background: rgba(14,159,110,.12); color: var(--ok); }
.badge--float {
  position: absolute;
  top: .875rem;
  left: .875rem;
  background: rgba(10,16,32,.78);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .65rem;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: var(--surface-2);
  font-size: .78125rem;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}
.chip .ico { width: 15px; height: 15px; color: var(--text-mute); }
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }

/* --- Cartes --- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--line-strong);
}
.card--flat { box-shadow: none; }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }

/* Icône ronde */
.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--brand-accent-3);
  color: var(--brand-accent);
  margin-bottom: 1.15rem;
  flex: none;
}
.icon-badge .ico { width: 24px; height: 24px; }
.icon-badge--ink { background: rgba(255,255,255,.08); color: var(--brand-accent); }

.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* --- Liste à coches --- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.check-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}
.check-list .ico {
  width: 21px; height: 21px;
  flex: none;
  margin-top: .18rem;
  color: var(--brand-accent);
  stroke-width: 2.2;
}
.check-list--ink li { color: #A7B3C8; }

/* --- Statistiques --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: 1.6rem 1.5rem;
  text-align: center;
}
.stat__k {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.1;
}
.stat__v { display: block; font-size: .84rem; color: var(--text-mute); margin-top: .35rem; }

/* --- Étapes --- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 1.25rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--brand-accent);
  margin-bottom: .85rem;
}
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
}
.step:first-child::after { background: var(--brand-accent); }
.step h3 { font-size: 1.125rem; margin-bottom: .45rem; }
.step p { font-size: .9375rem; color: var(--text-soft); margin: 0; }
.section--ink .step::after { background: rgba(255,255,255,.14); }
.section--ink .step:first-child::after { background: var(--brand-accent); }
.section--ink .step p { color: #A7B3C8; }

/* --- Accordéon FAQ --- */
.faq { display: grid; gap: .75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--sh-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0125rem;
  list-style: none;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 11px; height: 11px;
  flex: none;
  border-right: 2.5px solid var(--brand-accent);
  border-bottom: 2.5px solid var(--brand-accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq .faq__body { padding: 0 1.35rem 1.35rem; color: var(--text-soft); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* --- Tableaux --- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: .9375rem;
}
table.data th, table.data td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.data thead th {
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--surface-2); }
table.data td.num { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
table.data .cell-title { font-weight: 700; font-family: var(--font-display); color: var(--text); }

/* --- Bandeau CTA --- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.75rem, 6vw, 4.75rem);
  color: #fff;
  text-align: center;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,16,32,.92) 0%, rgba(10,16,32,.72) 48%, rgba(10,16,32,.55) 100%);
  z-index: -1;
}
.cta-band h2 { color: #fff; max-width: 17ch; margin-inline: auto; }
.cta-band p { color: #C3CCDC; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.9rem; }

/* --- Media / image décorée --- */
.media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-sunken);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.media--ratio-43 { aspect-ratio: 4 / 3; }
.media--ratio-11 { aspect-ratio: 1 / 1; }
.media--ratio-32 { aspect-ratio: 3 / 2; }
.media--ratio-45 { aspect-ratio: 4 / 5; }

.media-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.media-collage > *:first-child { grid-row: span 2; }

.caption {
  font-size: .8125rem;
  color: var(--text-mute);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.caption .ico { width: 15px; height: 15px; flex: none; }

/* ==========================================================================
   5. EN-TÊTE & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px rgba(10,16,32,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--text);
  flex: none;
}
.logo__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--sh-accent);
}
.logo__mark .ico { width: 21px; height: 21px; stroke-width: 2; }
.logo__txt { display: flex; flex-direction: column; line-height: 1.05; }
.logo__txt b { font-weight: 800; }
.logo__txt span {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Navigation principale */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__list li { margin: 0; }
.nav__link {
  display: block;
  padding: .55rem .9rem;
  border-radius: var(--r-pill);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--text); background: var(--bg-alt); }
.nav__link[aria-current="page"] { color: var(--text); background: var(--bg-alt); }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); }
.icon-btn .ico { width: 19px; height: 19px; }

.theme-btn .ico--moon { display: none; }
:root[data-theme="dark"] .theme-btn .ico--sun { display: none; }
:root[data-theme="dark"] .theme-btn .ico--moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-btn .ico--sun { display: none; }
  :root:not([data-theme="light"]) .theme-btn .ico--moon { display: block; }
}

.header__tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text);
  padding: .55rem .5rem;
  white-space: nowrap;
}
.header__tel .ico { width: 17px; height: 17px; color: var(--brand-accent); }

.burger { display: none; }

/* Tiroir mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10,16,32,.5);
  opacity: 0;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: 1.25rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 1.25rem);
  margin-bottom: 1rem;
}
.drawer__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.drawer__list li { margin: 0; border-bottom: 1px solid var(--line); }
.drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem .25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}
.drawer__list a[aria-current="page"] { color: var(--brand-accent); }
.drawer__list .ico { width: 18px; height: 18px; color: var(--text-mute); }
.drawer__foot { margin-top: auto; display: grid; gap: .75rem; }
.drawer__contact {
  display: grid;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--text-soft);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.drawer__contact a { display: flex; align-items: center; gap: .6rem; }
.drawer__contact .ico { width: 17px; height: 17px; color: var(--brand-accent); flex: none; }

/* ==========================================================================
   6. HERO & MODULE DE RÉSERVATION
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,12,22,.86) 0%, rgba(8,12,22,.62) 38%, rgba(8,12,22,.88) 100%),
    radial-gradient(90% 70% at 15% 30%, rgba(255,90,31,.20) 0%, transparent 60%);
}
.hero__inner { max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal;
  color: var(--brand-accent);
}
.hero p.lead { color: #CBD4E3; max-width: 56ch; }
.hero .btn-row { margin-top: 2rem; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .5rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .8125rem;
  font-weight: 600;
  color: #E7ECF5;
  margin-bottom: 1.5rem;
}
.hero__tag b {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: var(--r-pill);
  background: var(--brand-accent);
  color: #fff;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__mark {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  font-weight: 600;
  color: #D5DCE9;
}
.hero__mark .ico { width: 19px; height: 19px; color: var(--brand-accent); flex: none; }

/* Module de réservation */
.booking {
  position: relative;
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}
.booking--float { margin-top: clamp(-4rem, -5vw, -3rem); }

.booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}
.booking__title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--text);
}
.booking__title .ico { width: 20px; height: 20px; color: var(--brand-accent); }

.booking__grid {
  display: grid;
  gap: .875rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: end;
}
.booking__grid .field--submit { grid-column: auto; }
.booking__note {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.booking__note .ico { width: 15px; height: 15px; flex: none; color: var(--ok); }

/* ==========================================================================
   7. SECTIONS
   ========================================================================== */

/* Bandeau de confiance */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.trust__item { display: flex; gap: .9rem; align-items: flex-start; }
.trust__item .ico { width: 24px; height: 24px; color: var(--brand-accent); flex: none; margin-top: .15rem; }
.trust__item h4 { margin: 0 0 .2rem; font-size: .9375rem; }
.trust__item p { margin: 0; font-size: .84rem; color: var(--text-mute); line-height: 1.5; }

/* Section agence / présence physique */
.agency-figure { position: relative; }
.agency-figure .media--main { border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.agency-figure .media--inset {
  position: absolute;
  right: -1rem;
  bottom: -1.75rem;
  width: 44%;
  border: 6px solid var(--bg);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.agency-figure .badge-card {
  position: absolute;
  left: -1rem;
  top: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 235px;
}
.agency-figure .badge-card .ico { width: 22px; height: 22px; color: var(--brand-accent); flex: none; }
.agency-figure .badge-card b { display: block; font-family: var(--font-display); font-size: .875rem; line-height: 1.25; }
.agency-figure .badge-card span { font-size: .75rem; color: var(--text-mute); }

/* Infos pratiques */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; margin: 0; }
.info-list .ico { width: 21px; height: 21px; color: var(--brand-accent); flex: none; margin-top: .2rem; }
.info-list b { display: block; font-family: var(--font-display); font-size: .9375rem; margin-bottom: .1rem; }
.info-list span, .info-list a { color: var(--text-soft); font-size: .9375rem; }
.info-list a:hover { color: var(--brand-accent); }

/* Horaires */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  margin: 0;
  font-size: .9375rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--text-soft); }
.hours li span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours li.is-closed span:last-child { color: var(--text-mute); font-weight: 500; }

/* Carte */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-sunken);
  min-height: 340px;
  box-shadow: var(--sh-sm);
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Engagements */
.pledge {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.pledge .ico { width: 26px; height: 26px; color: var(--brand-accent); flex: none; margin-top: .1rem; }
.pledge h4 { margin: 0 0 .3rem; }
.pledge p { margin: 0; font-size: .9375rem; color: var(--text-soft); }

/* Page d'en-tête interne */
.page-head {
  position: relative;
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .75rem; }
.page-head p { max-width: 62ch; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: .8125rem;
  color: var(--text-mute);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line-strong); }
.breadcrumb a:hover { color: var(--brand-accent); }
.breadcrumb [aria-current="page"] { color: var(--text-soft); font-weight: 600; }

/* Contenu légal */
.legal { max-width: 800px; }
.legal h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.0625rem; margin-top: 1.75rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal dl { margin: 0 0 1.25rem; }
.legal dt { font-weight: 700; color: var(--text); font-family: var(--font-display); font-size: .9375rem; margin-top: .9rem; }
.legal dd { margin: 0 0 .25rem; color: var(--text-soft); }
.legal .toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.5rem;
}
.legal .toc h2 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); margin: 0 0 .75rem; border: 0; padding: 0; }
.legal .toc ol { margin: 0; padding-left: 1.15rem; columns: 2; column-gap: 2rem; }
.legal .toc li { margin-bottom: .3rem; font-size: .875rem; }
.legal .toc a:hover { color: var(--brand-accent); }

/* ==========================================================================
   8. VÉHICULES & FILTRES
   ========================================================================== */

.vehicle {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease), border-color .3s var(--ease);
}
.vehicle:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--line-strong);
}
.vehicle:hover .vehicle__media img { transform: scale(1.055); }

.vehicle__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-sunken);
}
.vehicle__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }

.vehicle__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .9rem;
}
.vehicle__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.vehicle__name { font-size: 1.1875rem; margin: 0 0 .2rem; }
.vehicle__ex { font-size: .8125rem; color: var(--text-mute); margin: 0; }

.vehicle__price { text-align: right; flex: none; }
.vehicle__price b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
}
.vehicle__price span { font-size: .6875rem; color: var(--text-mute); display: block; margin-top: .2rem; }

.vehicle__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem .75rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
  list-style: none;
}
.vehicle__specs li {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  font-size: .8125rem;
  color: var(--text-soft);
  min-width: 0;
}
.vehicle__specs .ico { width: 16px; height: 16px; color: var(--text-mute); flex: none; }
.vehicle__specs span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.vehicle__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }

/* Barre de filtres */
.filters {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
}
.filters__inner { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.filters__group { display: flex; flex-wrap: wrap; gap: .5rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.pill:hover { border-color: var(--line-strong); color: var(--text); }
.pill[aria-pressed="true"] {
  background: var(--brand-ink);
  border-color: var(--brand-ink);
  color: #fff;
}
.pill .ico { width: 16px; height: 16px; }

.filters__count {
  margin-left: auto;
  font-size: .875rem;
  color: var(--text-mute);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.empty-state {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--text-mute);
}
.empty-state .ico { width: 36px; height: 36px; margin: 0 auto 1rem; color: var(--line-strong); }

/* ==========================================================================
   9. TARIFS
   ========================================================================== */

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.6vw, 2.15rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan--featured {
  border-color: var(--brand-accent);
  box-shadow: var(--sh-md);
}
.plan--featured::before {
  content: "Le plus demandé";
  position: absolute;
  top: -.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--sh-accent);
}
.plan h3 { margin-bottom: .35rem; }
.plan__sub { font-size: .875rem; color: var(--text-mute); margin-bottom: 1.35rem; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.plan__price b {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.plan__price span { font-size: .875rem; color: var(--text-mute); font-weight: 600; }
.plan .check-list { margin-bottom: 1.75rem; }
.plan .check-list li { font-size: .9375rem; }
.plan .btn { margin-top: auto; }

.note-box {
  display: flex;
  gap: .9rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--r-md);
  background: var(--brand-accent-3);
  border: 1px solid color-mix(in srgb, var(--brand-accent) 25%, transparent);
  font-size: .9375rem;
  color: var(--text-soft);
}
.note-box .ico { width: 21px; height: 21px; color: var(--brand-accent); flex: none; margin-top: .15rem; }
.note-box p { margin: 0; }
.note-box p + p { margin-top: .6rem; }

/* ==========================================================================
   10. FORMULAIRES
   ========================================================================== */

.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field > label,
.field-label {
  font-family: var(--font-display);
  font-size: .78125rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field .req { color: var(--brand-accent); }

.input, .select, .textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: .9375rem;
  line-height: 1.4;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--text-mute); opacity: .75; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--text-mute); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-accent) 16%, transparent);
}
.textarea { resize: vertical; min-height: 140px; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737D8C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 17px;
  padding-right: 2.5rem;
  cursor: pointer;
}

input[type="date"].input, input[type="time"].input { cursor: pointer; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
:root[data-theme="dark"] input::-webkit-calendar-picker-indicator { filter: invert(1); }

.field--error .input, .field--error .select, .field--error .textarea { border-color: #DC2626; }
.field__error {
  font-size: .8125rem;
  color: #DC2626;
  font-weight: 600;
  display: none;
}
.field--error .field__error { display: block; }

.checkbox {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1.55;
}
.checkbox input {
  width: 20px; height: 20px;
  flex: none;
  margin: .1rem 0 0;
  accent-color: var(--brand-accent);
  cursor: pointer;
}
.checkbox a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 2px; }
.checkbox.field--error { color: #DC2626; }
.checkbox.field--error input { outline: 2px solid #DC2626; outline-offset: 2px; border-radius: 3px; }

.form-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.form-grid .field--full { grid-column: 1 / -1; }

.form-status {
  display: none;
  gap: .75rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .9375rem;
  margin-top: 1.25rem;
}
.form-status.is-visible { display: flex; }
.form-status--ok { background: rgba(14,159,110,.1); color: var(--ok); border: 1px solid rgba(14,159,110,.3); }
.form-status--ko { background: rgba(220,38,38,.08); color: #DC2626; border: 1px solid rgba(220,38,38,.25); }
.form-status .ico { width: 20px; height: 20px; flex: none; margin-top: .1rem; }
.form-status b { display: block; color: inherit; }
.form-status p { margin: .2rem 0 0; color: inherit; opacity: .9; font-size: .875rem; }

fieldset { border: 0; margin: 0; padding: 0; }
legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  padding: 0 0 .25rem;
  color: var(--text);
}

/* ==========================================================================
   11. PIED DE PAGE
   ========================================================================== */

.footer {
  background: var(--brand-ink);
  color: #97A3B8;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  font-size: .9375rem;
}
.footer a { color: #97A3B8; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer .logo { color: #fff; margin-bottom: 1.15rem; }
.footer .logo__txt span { color: #6C7A93; }
.footer__about { max-width: 34ch; line-height: 1.65; margin-bottom: 1.5rem; }

.footer h4 {
  color: #fff;
  font-size: .78125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer__list li { margin: 0; }

.footer__contact { display: grid; gap: .8rem; }
.footer__contact a, .footer__contact span { display: flex; gap: .65rem; align-items: flex-start; line-height: 1.5; }
.footer__contact .ico { width: 17px; height: 17px; color: var(--brand-accent); flex: none; margin-top: .18rem; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer__legal li { margin: 0; }

.footer__note {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.25rem 2rem;
  font-size: .75rem;
  color: #67748B;
  line-height: 1.6;
}

/* Bouton retour en haut */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: #fff; }
.to-top .ico { width: 19px; height: 19px; }

/* ==========================================================================
   12. ANIMATIONS & RESPONSIVE
   ========================================================================== */

/* Les révélations ne s'appliquent que si JavaScript est actif : sans JS,
   le contenu reste visible (la classe « js » est posée dans le <head>). */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .header__tel { display: none; }
  .burger { display: grid; }
  .header__actions .btn { display: none; }
}

@media (max-width: 900px) {
  .agency-figure .media--inset { display: none; }
  .agency-figure .badge-card { left: auto; right: 1rem; top: auto; bottom: 1rem; }
  .legal .toc ol { columns: 1; }
  .footer__grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .hero { padding-top: 2.5rem; }
  .hero__marks { gap: .9rem 1.5rem; }
  .booking--float { margin-top: 1.5rem; }
  .btn-row .btn { width: 100%; }
  .cta-band .btn-row .btn { width: 100%; }
  .media-collage { grid-template-columns: 1fr; }
  .media-collage > *:first-child { grid-row: auto; }
  .filters { position: static; }
  .vehicle__specs { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .header, .drawer, .to-top, .cta-band, .filters, .booking { display: none !important; }
  body { color: #000; background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* Exposant ordinal compact (20e, 1er…) dans les libellés et titres */
sup.ord {
  font-size: .62em;
  line-height: 0;
  vertical-align: .45em;
  margin-left: .04em;
  letter-spacing: 0;
  text-transform: none;
}
