/* ADIL Private Driver: noir & or, d'apres la maquette client */

:root {
  --noir: #0a0a0b;
  --noir-2: #131316;
  --panel: #1b1b1f;
  --or: #d4af37;
  --or-doux: #e6c968;
  --or-grad: linear-gradient(135deg, #ecca6e 0%, #c9a22f 100%);
  --blanc: #ffffff;
  --creme: #f7f5f0;
  --encre: #17181a;
  --gris: #6f6f75;
  --gris-clair: #a4a4ab;
  --ligne: rgba(23, 24, 26, 0.1);
  --ligne-or: rgba(212, 175, 55, 0.32);
  --ligne-nuit: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--blanc);
  color: var(--encre);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* Typographie */
.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--or); margin-bottom: 1rem;
}
.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.12;
  margin-bottom: 1.6rem;
}
.headline em { color: var(--or); }
.section-noir .headline { color: var(--blanc); }
.lead { max-width: 720px; color: var(--gris); margin-bottom: 1.4rem; font-size: 1.02rem; }
.section-noir .lead { color: var(--gris-clair); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.93rem; letter-spacing: 0.01em;
  padding: 0.78rem 1.7rem; border-radius: 12px; border: none; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.btn-lg { padding: 0.95rem 2.1rem; font-size: 1rem; }
.btn-or { background: var(--or-grad); color: #241c07; box-shadow: 0 10px 28px rgba(201, 162, 47, 0.28); }
.btn-or:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(201, 162, 47, 0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--or); color: var(--or-doux); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb857; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

/* Navigation */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: rgba(212, 175, 55, 0.18);
}
.nav-inner {
  width: min(1180px, 92vw); margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 4px 14px rgba(0,0,0,0.45);
}
.brand-logo-lg { width: 64px; height: 64px; border-radius: 50%; }
.brand-name {
  font-weight: 800; letter-spacing: 0.16em; color: var(--blanc);
  font-size: 1rem; line-height: 1.1; text-transform: uppercase;
}
.brand-name small {
  display: block; font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.34em; color: var(--or); text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--or-doux); }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.lang-switch {
  display: flex; border: 1px solid var(--ligne-or); border-radius: 999px;
  overflow: hidden; background: rgba(10, 10, 11, 0.4);
}
.lang-switch button {
  font: inherit; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); background: none; border: none;
  padding: 0.38rem 0.75rem; cursor: pointer; transition: color 0.3s, background 0.3s;
}
.lang-switch button.active { background: var(--or-grad); color: #241c07; }
.nav-burger {
  display: none; background: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 7px;
  border: none; cursor: pointer;
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--blanc); border-radius: 2px;
  transition: transform 0.35s var(--ease);
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 0.4rem;
  padding: 1rem 4vw 1.4rem;
  background: rgba(10, 10, 11, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.55rem 0; font-weight: 600; color: var(--blanc); }
.nav-mobile .btn { margin-top: 0.5rem; }

/* Hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--noir);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 60%, rgba(212, 175, 55, 0.1), transparent 55%),
    linear-gradient(100deg, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.82) 38%, rgba(10,10,11,0.45) 70%, rgba(10,10,11,0.62) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.1) 40%, rgba(10,10,11,0.9) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem;
  align-items: end;
  padding-top: calc(var(--nav-h) + 6vh);
}
.hero-content {
  text-align: left; padding-bottom: 11vh;
  will-change: transform, opacity;
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--or); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.04;
  color: var(--blanc); margin-bottom: 1.3rem;
}
.hero-title em { color: var(--or-doux); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 1.9rem;
}
.hero-chips { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero-chips li { display: flex; align-items: center; gap: 0.65rem; }
.hero-chips svg {
  flex: 0 0 auto; width: 42px; height: 42px; padding: 9px;
  color: var(--or-doux); border: 1px solid var(--ligne-or); border-radius: 50%;
  background: rgba(10, 10, 11, 0.35);
}
.hero-chips span {
  font-size: 0.82rem; font-weight: 600; line-height: 1.3;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-gos { margin-top: 2rem; font-size: 0.85rem; color: rgba(255,255,255,0.62); }
.hero-gos strong { color: var(--or); letter-spacing: 0.1em; }

/* Hero: portrait d'Adil */
.hero-side {
  position: relative; align-self: end;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 6vh;
}
.hero-quote {
  align-self: flex-end;
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.02rem; line-height: 1.45; text-align: right;
  color: rgba(255,255,255,0.85); margin-bottom: 1.4rem;
}
.hero-portrait {
  width: clamp(240px, 26vw, 400px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.55), 0 0 0 10px rgba(212, 175, 55, 0.08), 0 30px 90px rgba(0,0,0,0.6);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-sign { margin-top: 1.3rem; text-align: center; }
.hero-sign-script {
  display: block; font-family: 'Great Vibes', cursive;
  font-size: 2.8rem; line-height: 1; color: var(--or-doux);
}
.hero-sign-caps {
  display: block; margin-top: 0.35rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.hero-scroll {
  position: absolute; bottom: 3.6vh; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px; z-index: 2;
}
.hero-scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px;
  background: var(--or); border-radius: 2px; transform: translateX(-50%);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 7px; }
}

/* Animations d'entree */
.reveal-load { opacity: 0; transform: translateY(28px); }
body.loaded .reveal-load { animation: rise 1s var(--ease) forwards; }
body.loaded .reveal-load:nth-child(1) { animation-delay: 0.08s; }
body.loaded .reveal-load:nth-child(2) { animation-delay: 0.2s; }
body.loaded .reveal-load:nth-child(3) { animation-delay: 0.32s; }
body.loaded .reveal-load:nth-child(4) { animation-delay: 0.44s; }
body.loaded .reveal-load:nth-child(5) { animation-delay: 0.56s; }
body.loaded .reveal-load:nth-child(6) { animation-delay: 0.68s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Sections */
.section { padding: 7rem 0; }
.section-noir { background: var(--noir); color: var(--gris-clair); }
.section-creme { background: var(--creme); }

/* Intro */
.intro-inner { text-align: center; }
.intro-inner .lead { margin-left: auto; margin-right: auto; }
.intro-values { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.intro-values li {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--encre); padding: 0.5rem 1.2rem;
  border: 1px solid var(--ligne-or); border-radius: 999px; background: #fbf8f1;
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.4s, background 0.4s, opacity 0.9s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: var(--noir); border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 28px 64px rgba(10, 10, 11, 0.35);
}
.card.reveal { transform: translateY(34px); }
.card.reveal.in { transform: translateY(0); }
.card.reveal.in:hover { transform: translateY(-6px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05));
  color: #a9813d;
  border: 1px solid var(--ligne-or);
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease);
}
.card-icon svg { display: block; }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 0.35rem;
  transition: color 0.4s;
}
.card-tag { font-size: 0.82rem; font-weight: 700; color: var(--or); margin-bottom: 0.7rem; }
.card p { font-size: 0.93rem; color: var(--gris); transition: color 0.4s; }
.card-list { margin: 0.8rem 0 0.4rem; }
.card-list li {
  font-size: 0.88rem; color: var(--encre); padding: 0.28rem 0 0.28rem 1.4rem; position: relative;
  transition: color 0.4s;
}
.card-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--or); font-weight: 700; }
.card-cta {
  margin-top: auto; padding-top: 1.1rem;
  font-size: 0.9rem; font-weight: 700; color: var(--encre);
  transition: color 0.4s;
}
.card-cta span { transition: transform 0.3s var(--ease), color 0.4s; display: inline-block; }
.card-cta span[aria-hidden] { color: var(--or); }
.card-cta:hover span { transform: translateX(4px); }
.card:hover .card-icon {
  background: var(--or-grad); color: #241c07; border-color: transparent;
  transform: scale(1.06);
}
.card:hover h3 { color: var(--blanc); }
.card:hover p { color: var(--gris-clair); }
.card:hover .card-tag { color: var(--or-doux); }
.card:hover .card-list li { color: rgba(255, 255, 255, 0.88); }
.card:hover .card-cta { color: var(--or-doux); }

/* Vehicule + split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.8rem 0 2.2rem; }
.spec {
  border: 1px solid var(--ligne-nuit); border-radius: 14px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.9rem; background: var(--noir-2);
}
.spec strong {
  color: var(--or); min-width: 2rem;
  display: grid; place-items: center;
}
.spec strong svg { display: block; }
.spec span { font-size: 0.88rem; color: var(--gris-clair); }
.split-media { position: relative; }
.split-img-main { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.split-img-float {
  position: absolute; right: -8%; bottom: -10%; width: 55%;
  border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover;
  border: 5px solid var(--noir);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Pourquoi */
.pourquoi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.atout {
  border: 1px solid var(--ligne); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  background: var(--blanc);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease), opacity 0.9s var(--ease);
}
.atout:hover {
  background: var(--noir); border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px); box-shadow: 0 24px 56px rgba(10, 10, 11, 0.3);
}
.atout-ic {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border-radius: 50%; border: 1px solid var(--ligne-or);
  color: #a9813d; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), transparent);
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease);
}
.atout-ic svg { display: block; }
.atout h3 { font-size: 1.02rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 0.4rem; transition: color 0.4s; }
.atout p { font-size: 0.9rem; color: var(--gris); transition: color 0.4s; }
.atout:hover .atout-ic { background: var(--or-grad); color: #241c07; border-color: transparent; transform: scale(1.08); }
.atout:hover h3 { color: var(--blanc); }
.atout:hover p { color: var(--gris-clair); }

/* GOS */
.gos { background: radial-gradient(ellipse at 50% 0%, #1c1707 0%, var(--noir) 62%); }
.gos-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.gos-inner .lead { margin-left: auto; margin-right: auto; }
.gos-motto {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem); color: var(--blanc);
  margin: 2rem 0 2.2rem;
}
.gos-motto em { color: var(--or); }

/* Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  display: block;
}
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dest:hover img { transform: scale(1.06); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 40%, rgba(10,10,11,0.82) 100%);
}
.dest-label { position: absolute; left: 1.4rem; right: 1.2rem; bottom: 1.15rem; z-index: 2; color: var(--blanc); }
.dest-label h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em;
}
.dest-label p { font-size: 0.8rem; opacity: 0.85; }
.dest-more { margin-top: 2rem; text-align: center; color: var(--gris); font-size: 0.95rem; }
.dest-more a { color: var(--or); font-weight: 700; }
.dest-more a:hover { text-decoration: underline; }

/* Avis */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote {
  background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.stars { color: var(--or); letter-spacing: 0.2em; font-size: 0.9rem; display: block; margin-bottom: 0.9rem; }
.quote p { font-size: 0.95rem; color: var(--encre); margin-bottom: 1.3rem; }
.quote footer { font-weight: 800; font-size: 0.9rem; }
.quote footer span { display: block; font-weight: 500; color: var(--gris); font-size: 0.8rem; }

/* Etapes */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step {
  background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease), opacity 0.9s var(--ease);
}
.step:hover {
  background: var(--noir); border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px); box-shadow: 0 24px 56px rgba(10, 10, 11, 0.3);
}
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  display: block; color: var(--or); font-size: 1.9rem; font-weight: 600; margin-bottom: 0.9rem;
  transition: color 0.4s;
}
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.45rem; transition: color 0.4s; }
.step p { font-size: 0.9rem; color: var(--gris); transition: color 0.4s; }
.step:hover .step-num { color: var(--or-doux); }
.step:hover h3 { color: var(--blanc); }
.step:hover p { color: var(--gris-clair); }

/* Reservation */
.reservation { background: radial-gradient(ellipse at 85% 15%, #1c1707 0%, var(--noir) 55%); }
.resa-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.resa-phone {
  font-family: 'Playfair Display', Georgia, serif;
  display: block; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--blanc);
  margin-bottom: 0.3rem;
}
.resa-phone:hover { color: var(--or-doux); }
.resa-direct p { color: var(--gris-clair); font-size: 0.92rem; }
.resa-btns { display: flex; gap: 0.9rem; margin-top: 1.4rem; flex-wrap: wrap; }
.resa-form {
  background: var(--blanc); border-radius: 18px; padding: 2.1rem 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.resa-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 600; margin-bottom: 1.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.resa-form label {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--gris);
  margin-bottom: 0.9rem; letter-spacing: 0.02em;
}
.resa-form input, .resa-form select, .resa-form textarea {
  display: block; width: 100%; margin-top: 0.35rem;
  font: inherit; font-size: 0.92rem; color: var(--encre);
  padding: 0.68rem 0.85rem; border: 1px solid #ddd8cc; border-radius: 10px;
  background: #fdfcf9; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.resa-form input:focus, .resa-form select:focus, .resa-form textarea:focus {
  border-color: var(--or); box-shadow: 0 0 0 3px rgba(212,175,55,0.16);
}
.resa-form textarea { resize: vertical; }
.btn-submit { width: 100%; margin-top: 0.4rem; }
.form-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--gris); text-align: center; }

/* Footer */
.footer { background: var(--noir); border-top: 1px solid rgba(212, 175, 55, 0.18); padding: 4rem 0 2rem; color: var(--gris-clair); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-brand strong { color: var(--blanc); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand p { font-size: 0.85rem; }
.footer-gos { margin-top: 0.8rem; }
.footer-gos strong { color: var(--or); font-size: 0.82rem; letter-spacing: 0.1em; }
.footer-col h4 {
  color: var(--blanc); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-col p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--or-doux); }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.1rem; }
.footer-social a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--ligne-nuit);
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.footer-social a:hover { transform: translateY(-4px); border-color: var(--ligne-or); }
.footer-social a.soon { opacity: 0.4; pointer-events: none; }
.footer-bottom {
  border-top: 1px solid var(--ligne-nuit); padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem;
}

/* FAB WhatsApp */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease);
}
.fab:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 980px) {
  .hero { align-items: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; align-items: start; }
  .hero-content { padding-bottom: 0; }
  .hero-side { padding: 2.4rem 0 12vh; }
  .hero-quote { align-self: center; text-align: center; }
  .services-grid, .pourquoi-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .resa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-img-float { right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .nav-cta .btn-nav { display: none; }
  .services-grid, .pourquoi-grid, .quotes-grid, .dest-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .section { padding: 4.6rem 0; }
  .resa-form { padding: 1.7rem 1.3rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Accessibilite: mouvement reduit */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-load, .card.reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero-scroll span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
