/* ==========================================================================
   OZAR — Chauffeur Privé · Design System
   Palette : nuit profonde / ivoire / or discret
   Typo : Marcellus (titres) + Inter (texte)
   ========================================================================== */

:root {
  /* Couleurs */
  --ink: #0b0e14;
  --ink-2: #10141d;
  --surface: #141926;
  --surface-2: #1a2030;
  --ivory: #f2efe7;
  --ivory-dim: #d8d4c8;
  --muted: #989dab;
  --gold: #c6a15b;
  --gold-2: #dabd80;
  --gold-soft: rgba(198, 161, 91, 0.14);
  --line: rgba(242, 239, 231, 0.09);
  --line-strong: rgba(242, 239, 231, 0.18);
  --danger: #e2695f;
  --success: #7fc08a;

  /* Typo */
  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rythme */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 16px 40px -18px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 10px 18px; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typographie ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold);
  opacity: 0.7;
}

.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ivory-dim); }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 40px); } }

.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 88px) 0; }
.section--alt { background: var(--ink-2); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--muted); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after { display: none; }

.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%);
  color: #171309;
  box-shadow: 0 12px 30px -12px rgba(198, 161, 91, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(198, 161, 91, 0.65); }

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: rgba(242, 239, 231, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

.btn--dark { background: var(--ink); color: var(--ivory); border: 1px solid var(--line-strong); }
.btn--dark:hover { border-color: var(--gold); color: var(--gold-2); }

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 11px 22px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 600; font-size: 0.95rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; z-index: 102; }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--gold);
}
.brand-name { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.14em; }
.brand-sub { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a:not(.btn) {
  position: relative; font-size: 0.92rem; font-weight: 500; color: var(--ivory-dim);
  padding: 6px 0; transition: color 0.3s ease;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:not(.btn):hover, .main-nav a:not(.btn)[aria-current="page"] { color: var(--ivory); }
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}

.nav-toggle { display: none; z-index: 102; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--ivory); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease, top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 101;
    flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(11, 14, 20, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a:not(.btn) {
    font-family: var(--font-display); font-size: 1.7rem; color: var(--ivory);
    padding: 10px 0; opacity: 0; transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.3s ease;
  }
  .main-nav.is-open a:not(.btn) { opacity: 1; transform: none; }
  .main-nav .btn { margin-top: 22px; opacity: 0; transform: translateY(14px); transition: opacity 0.45s var(--ease) 0.2s, transform 0.45s var(--ease) 0.2s; }
  .main-nav.is-open .btn { opacity: 1; transform: none; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg svg, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 55% at 72% 62%, rgba(198, 161, 91, 0.09), transparent 65%),
    linear-gradient(180deg, rgba(11, 14, 20, 0.25) 0%, rgba(11, 14, 20, 0.05) 45%, var(--ink) 100%);
}
.hero-inner { max-width: 720px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 em { font-style: normal; color: var(--gold-2); }
.hero .lead { max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px 44px;
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ivory-dim); }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@media (max-width: 640px) { .scroll-hint { display: none; } }

/* Mini formulaire hero */
.quick-book {
  margin-top: 56px;
  background: rgba(20, 25, 38, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px;
  box-shadow: var(--shadow-md);
  max-width: 860px;
}
.quick-book form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.quick-book .field { margin: 0; }
@media (max-width: 800px) {
  .quick-book form { grid-template-columns: 1fr; }
  .quick-book .btn { width: 100%; }
}

/* ---------- Cartes ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.45s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px; margin-bottom: 22px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.25);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .link-arrow { margin-top: 20px; }

.card--service { display: flex; flex-direction: column; }
.card--service .link-arrow { margin-top: auto; padding-top: 22px; }

/* ---------- Avantages (liste éditoriale) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.visual-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  background: var(--surface);
}
.visual-frame svg, .visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.visual-frame::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
@media (max-width: 900px) { .visual-frame { aspect-ratio: 16/11; } }

.feature-list { display: grid; gap: 8px; margin-top: 34px; }
.feature-list li {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .f-icon { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--gold-soft); color: var(--gold); }
.feature-list .f-icon svg { width: 20px; height: 20px; }
.feature-list strong { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 3px; }
.feature-list span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Étapes ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 161, 91, 0.55);
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Véhicule ---------- */
.vehicle-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 30px; border-radius: var(--radius-sm); overflow: hidden; }
.vehicle-specs div { background: var(--surface-2); padding: 18px 20px; }
.vehicle-specs dt { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.vehicle-specs dd { font-weight: 600; font-size: 1.02rem; }
.equip-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.equip-tags li {
  font-size: 0.85rem; color: var(--ivory-dim);
  border: 1px solid var(--line-strong);
  padding: 8px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.equip-tags svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(198, 161, 91, 0.4); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; cursor: pointer;
  font-weight: 600; font-size: 1.02rem;
  list-style: none;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-2); }
.faq-item summary .faq-chevron {
  flex: none; width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
}
.faq-item summary .faq-chevron svg { width: 14px; height: 14px; }
.faq-item[open] summary .faq-chevron { transform: rotate(45deg); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 0.96rem; }
.faq-item .faq-body a { color: var(--gold); }

/* ---------- Bande CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(198, 161, 91, 0.3);
  background:
    radial-gradient(ellipse 70% 120% at 85% 50%, rgba(198, 161, 91, 0.16), transparent 60%),
    linear-gradient(120deg, var(--surface-2), var(--surface));
  padding: clamp(44px, 6vw, 80px);
  text-align: center;
}
.cta-band h2 { max-width: 620px; margin-inline: auto; }
.cta-band p { max-width: 520px; margin: 18px auto 0; color: var(--muted); }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Formulaires ---------- */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ivory-dim); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--ivory);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23c6a15b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(152, 157, 171, 0.65); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field textarea { resize: vertical; min-height: 110px; }
.field .field-error { display: none; font-size: 0.82rem; color: var(--danger); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field-error { display: block; }
.field-hint { font-size: 0.8rem; color: var(--muted); }

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

/* Stepper réservation */
.booking-shell {
  max-width: 860px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-progress {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.booking-progress .bp-step {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 10px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.booking-progress .bp-num {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 0.78rem;
  transition: all 0.3s ease;
}
.booking-progress .bp-step.is-active { color: var(--ivory); border-bottom-color: var(--gold); }
.booking-progress .bp-step.is-active .bp-num { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.booking-progress .bp-step.is-done { color: var(--gold); }
.booking-progress .bp-step.is-done .bp-num { border-color: var(--gold); color: var(--gold); }
@media (max-width: 640px) { .booking-progress .bp-label { display: none; } .booking-progress .bp-step { padding: 14px 6px; } }

.booking-body { padding: clamp(26px, 4vw, 44px); }
.booking-step { display: none; border: 0; padding: 0; margin: 0; animation: stepIn 0.45s var(--ease); }
.booking-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.booking-step h2 { font-size: 1.5rem; margin-bottom: 6px; }
.booking-step > p.muted { margin-bottom: 28px; font-size: 0.95rem; }

.ride-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
@media (max-width: 720px) { .ride-types { grid-template-columns: repeat(2, 1fr); } }
.ride-type input { position: absolute; opacity: 0; pointer-events: none; }
.ride-type label {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  padding: 18px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--ivory-dim);
  height: 100%;
}
.ride-type svg { width: 26px; height: 26px; color: var(--muted); transition: color 0.3s ease; }
.ride-type label:hover { border-color: var(--gold); transform: translateY(-2px); }
.ride-type input:checked + label {
  border-color: var(--gold); background: var(--gold-soft); color: var(--ivory);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.ride-type input:checked + label svg { color: var(--gold); }
.ride-type input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

.booking-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }
.booking-nav .btn { min-width: 150px; }
@media (max-width: 520px) { .booking-nav { flex-direction: column-reverse; } .booking-nav .btn { width: 100%; } }

.recap { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; margin-bottom: 26px; }
.recap dl { display: grid; gap: 12px; }
.recap .recap-row { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px dashed var(--line); padding-bottom: 12px; }
.recap .recap-row:last-child { border-bottom: none; padding-bottom: 0; }
.recap dt { color: var(--muted); font-size: 0.88rem; }
.recap dd { font-weight: 600; text-align: right; font-size: 0.95rem; max-width: 60%; overflow-wrap: anywhere; }

.booking-success { text-align: center; padding: clamp(30px, 5vw, 50px) 10px; }
.booking-success .success-icon {
  width: 76px; height: 76px; margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.4);
}
.booking-success .success-icon svg { width: 34px; height: 34px; }
.booking-success h2 { margin-bottom: 14px; }
.booking-success p { color: var(--muted); max-width: 480px; margin-inline: auto; }
.booking-success .hero-ctas { justify-content: center; margin-top: 30px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact-card .card-icon { margin-inline: auto; }
.contact-card .contact-value { font-size: 1.05rem; font-weight: 600; margin: 6px 0 18px; color: var(--ivory); overflow-wrap: anywhere; }
.contact-card .btn { margin-top: auto; }

.availability-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--ivory-dim);
}
.availability-dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(127, 192, 138, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 192, 138, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(127, 192, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 192, 138, 0); }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 88px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(32px, 4vw, 56px); padding-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 600; }
.footer-grid ul { display: grid; gap: 12px; }
.footer-grid a { color: var(--ivory-dim); font-size: 0.93rem; transition: color 0.3s ease; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Barre mobile fixe ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom);
  backdrop-filter: blur(14px);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px;
  font-size: 0.85rem; font-weight: 600;
  background: rgba(11, 14, 20, 0.96);
  color: var(--ivory);
}
.mobile-cta-bar a svg { width: 18px; height: 18px; color: var(--gold); }
.mobile-cta-bar a.is-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #171309; }
.mobile-cta-bar a.is-primary svg { color: #171309; }
@media (max-width: 860px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 62px; }
  .site-footer { padding-bottom: 12px; }
}

/* ---------- Page header (pages internes) ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 80% 10%, rgba(198, 161, 91, 0.08), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-top: 18px; max-width: 760px; }
.page-hero .lead { margin-top: 20px; max-width: 620px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.breadcrumbs a:hover { color: var(--gold-2); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Placeholder à personnaliser ---------- */
.ph {
  background: rgba(198, 161, 91, 0.12);
  border-bottom: 1px dashed rgba(198, 161, 91, 0.55);
  padding: 0 3px;
  border-radius: 2px;
  font-style: normal;
}

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

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

/* ---------- Divers ---------- */
.notice {
  border: 1px solid rgba(198, 161, 91, 0.35);
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem; color: var(--ivory-dim);
  display: flex; gap: 12px; align-items: flex-start;
}
.notice svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 2px; }

.prose { max-width: 720px; }
.prose h2 { margin: 2.2em 0 0.6em; }
.prose h3 { margin: 1.8em 0 0.5em; }
.prose p { margin-bottom: 1em; color: var(--ivory-dim); }
.prose ul { margin: 0 0 1em 1.1em; list-style: disc; color: var(--ivory-dim); }
.prose li { margin-bottom: 0.4em; }
