/* =====================================================================
   GKML TRAVEL AGENCY — Feuille de style publique
   Direction artistique : « Carnet de vol »
   Bleu nuit #051D3F · Or #C2A76B · Crème #F6F4EF · Encre #1A2433
   Typographie : Cormorant Garamond (display) + Manrope (texte)
   ===================================================================== */

/* ------------------------------ 1. Jetons ------------------------------ */
:root {
  --navy: #051D3F;
  --navy-700: #0A2A56;
  --navy-500: #16385F;
  --gold: #C2A76B;
  --gold-dark: #A48B4D;
  --gold-soft: #E4D7B8;
  --bordeaux: #AA3F44;
  --cream: #F6F4EF;
  --cream-deep: #EDE9E0;
  --white: #FFFFFF;
  --ink: #1A2433;
  --ink-soft: #5A6478;
  --ink-mute: #8A93A3;
  --line: rgba(26, 36, 51, .12);
  --line-gold: rgba(194, 167, 107, .42);
  --line-light: rgba(255, 255, 255, .18);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --pad-y: clamp(72px, 10vw, 150px);

  --r-sm: 4px;
  --r: 8px;
  --r-lg: 12px;

  --sh-sm: 0 1px 2px rgba(5, 29, 63, .04), 0 8px 24px rgba(5, 29, 63, .06);
  --sh: 0 2px 6px rgba(5, 29, 63, .05), 0 22px 60px rgba(5, 29, 63, .09);
  --sh-lg: 0 30px 90px rgba(5, 29, 63, .16);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --t: .5s var(--ease);
  --header-h: 84px;
}

/* ------------------------------ 2. Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-weight: 500; line-height: 1.18; letter-spacing: -.01em; }
h1, h2, h3 { font-family: var(--serif); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
strong, b { font-weight: 700; }
s { color: var(--ink-mute); }
::selection { background: var(--gold); color: var(--navy); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 2000;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: var(--r);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

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

.section { padding-block: var(--pad-y); position: relative; }
.section--flush { padding-block: 0; }
.section--tinted { background: var(--cream); }
.section--dark { background: var(--navy); color: rgba(255, 255, 255, .84); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--pull { margin-top: calc(var(--pad-y) * -.5); }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1080px) { .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px)  { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------ 4. Typographie ------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 44px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--light { color: var(--gold); }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::after {
  content: ""; width: 44px; height: 1px; background: var(--gold); flex: none;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--navy);
  margin: 0 0 .45em;
  max-width: 20ch;
}
.section--dark .section__title, .section--testimonials .section__title { color: #fff; }
.section__head--center .section__title { max-width: 22ch; margin-inline: auto; }

.section__lead {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.section--dark .section__lead { color: rgba(255, 255, 255, .7); }

.section__head { margin-bottom: clamp(40px, 5vw, 72px); }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-inline: auto; }
.section__head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.section__head--split > div { flex: 1 1 460px; }

.section__foot { margin-top: clamp(36px, 4vw, 56px); color: var(--ink-soft); }
.section__foot--center, .section__head--center + * + .section__foot { text-align: center; }
.section__foot a { color: var(--gold-dark); border-bottom: 1px solid var(--line-gold); }
.section__foot a:hover { color: var(--navy); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .45s var(--ease); }
a:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(6px); }
.section--dark .link-arrow { color: var(--gold); }

/* Texte riche (articles, FAQ, contenus HTML) */
.rich-text { font-size: 1.0625rem; line-height: 1.85; color: var(--ink-soft); }
.rich-text > :first-child { margin-top: 0; }
.rich-text h2, .rich-text h3, .rich-text h4 {
  color: var(--navy); font-family: var(--serif); font-weight: 600;
  margin: 2em 0 .6em; line-height: 1.2;
}
.rich-text h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.rich-text h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }
.rich-text h4 { font-size: 1.2rem; font-family: var(--sans); font-weight: 700; letter-spacing: -.01em; }
.rich-text p { margin: 0 0 1.35em; }
.rich-text a { color: var(--gold-dark); border-bottom: 1px solid var(--line-gold); }
.rich-text a:hover { color: var(--navy); border-color: var(--navy); }
.rich-text ul, .rich-text ol { margin: 0 0 1.5em; padding-left: 0; }
.rich-text li { position: relative; padding-left: 26px; margin-bottom: .6em; }
.rich-text ul li::before {
  content: ""; position: absolute; left: 4px; top: .78em;
  width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg);
}
.rich-text ol { counter-reset: ol; }
.rich-text ol li { counter-increment: ol; }
.rich-text ol li::before {
  content: counter(ol, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--serif); font-size: 1rem; color: var(--gold-dark); font-weight: 600;
}
.rich-text blockquote {
  margin: 2em 0; padding: 4px 0 4px 32px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.45; color: var(--navy);
}
.rich-text blockquote p { margin: 0; }
.rich-text img { border-radius: var(--r); margin: 2em 0; width: 100%; }
.rich-text strong { color: var(--navy); }
.rich-text table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: .95rem; }
.rich-text th, .rich-text td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.rich-text th { background: var(--cream); color: var(--navy); font-weight: 700; }

/* ------------------------------ 5. Boutons ------------------------------ */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy);
  --btn-bd: var(--gold);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: 2px;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  line-height: 1; text-align: center; white-space: nowrap;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--gold, .btn--primary { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }
.btn--gold:hover, .btn--primary:hover { --btn-bg: var(--gold-dark); --btn-bd: var(--gold-dark); --btn-fg: #fff; }

.btn--navy { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }
.btn--navy:hover { --btn-bg: var(--navy-700); --btn-bd: var(--navy-700); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: rgba(5, 29, 63, .28); }
.btn--outline:hover { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: transparent; padding-inline: 14px; }
.btn--ghost:hover { --btn-fg: var(--gold-dark); transform: none; }

/* WhatsApp : jamais vert — or / bleu nuit, conforme à la charte */
.btn--wa { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }
.btn--wa:hover { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }

.btn--sm { padding: 12px 20px; font-size: 10.5px; letter-spacing: .14em; }
.btn--lg { padding: 20px 42px; font-size: 12px; }
.btn--block { display: flex; width: 100%; }

.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn__spinner { display: none; width: 15px; height: 15px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.is-loading .btn__spinner { display: block; }
.btn.is-loading .btn__label { opacity: .5; }
@keyframes spin { to { transform: rotate(360deg); } }

.badge {
  display: inline-block; padding: 6px 13px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px;
}
.badge--gold { background: var(--gold); color: var(--navy); }
.badge--soft { background: var(--cream-deep); color: var(--navy); }
.badge--promo { background: var(--bordeaux); color: #fff; }

/* ------------------------------ 6. Révélations ------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible, .reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.reveal-img.is-visible, .reveal-img.is-in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ------------------------------ 7. Barre d'annonce ------------------------------ */
.announce {
  background: var(--navy); color: rgba(255, 255, 255, .9);
  font-size: 12.5px; letter-spacing: .04em;
  position: relative; z-index: 950;
  border-bottom: 1px solid rgba(194, 167, 107, .2);
}
.announce__inner {
  max-width: var(--max); margin-inline: auto; padding: 11px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
}
.announce__icon { width: 16px; height: 16px; color: var(--gold); flex: none; }
.announce__close {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  color: rgba(255, 255, 255, .6); font-size: 22px; line-height: 1;
}
.announce__close:hover { color: var(--gold); }
.announce.is-hidden { display: none; }

/* ------------------------------ 8. En-tête ------------------------------ */
.read-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 999; pointer-events: none; }
.read-progress__bar { display: block; height: 100%; width: 0; background: var(--gold); transition: width .12s linear; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 900;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header--offset { top: var(--announce-h, 42px); }
.site-header--offset.is-stuck { top: 0; }
.site-header__inner {
  display: flex; align-items: center; gap: clamp(16px, 2.5vw, 40px);
  height: var(--header-h);
}
.brand { flex: none; display: block; }
.brand img { width: auto; height: 46px; object-fit: contain; transition: height .4s var(--ease); }
.is-home .site-header:not(.is-stuck) .brand, .is-inner .site-header:not(.is-stuck) .brand { filter: drop-shadow(0 2px 14px rgba(0,0,0,.45)); }

/* Home : header transparent sur le héros, logo en blanc */
.is-home .site-header:not(.is-stuck) .nav__link,
.is-home .site-header:not(.is-stuck) .btn--ghost { color: #fff; }
.is-home .site-header:not(.is-stuck) .burger span { background: #fff; }
.is-home .site-header:not(.is-stuck) .btn--wa { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .5); }
.is-home .site-header:not(.is-stuck) .btn--wa:hover { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }

/* Pages intérieures : bandeau sombre en haut */
.is-inner .site-header:not(.is-stuck) { background: rgba(5, 29, 63, .35); backdrop-filter: blur(6px); }
.is-inner .site-header:not(.is-stuck) .nav__link,
.is-inner .site-header:not(.is-stuck) .btn--ghost { color: #fff; }
.is-inner .site-header:not(.is-stuck) .burger span { background: #fff; }
.is-inner .site-header:not(.is-stuck) .btn--wa { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .5); }

.site-header.is-stuck {
  background: var(--cream);
  border-bottom-color: var(--line-gold);
  box-shadow: 0 1px 30px rgba(5, 29, 63, .07);
  --header-h: 72px;
}
.site-header.is-stuck .brand img { height: 40px; }
.site-header.is-hidden { transform: translateY(-110%); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 0;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy);
  transition: color .35s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .45s var(--ease);
}
.nav__item:hover .nav__link::after, .nav__link.is-active::after { width: 100%; }
.nav__link:hover, .nav__link.is-active { color: var(--gold-dark); }
.is-home .site-header:not(.is-stuck) .nav__link:hover,
.is-home .site-header:not(.is-stuck) .nav__link.is-active,
.is-inner .site-header:not(.is-stuck) .nav__link:hover,
.is-inner .site-header:not(.is-stuck) .nav__link.is-active { color: var(--gold); }
.nav__caret { width: 13px; height: 13px; transition: transform .35s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: -24px;
  min-width: 330px; padding: 12px;
  background: var(--white); border: 1px solid var(--line-gold); border-radius: var(--r);
  box-shadow: var(--sh);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.dropdown__link { display: block; padding: 12px 16px; border-radius: var(--r-sm); transition: background .3s var(--ease); }
.dropdown__link:hover { background: var(--cream); }
.dropdown__label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); }
.dropdown__desc { display: block; font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }
.dropdown__all {
  display: block; margin-top: 6px; padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark);
}
.dropdown__all:hover { color: var(--navy); }

.site-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform .4s var(--ease), opacity .3s var(--ease); }
body.is-locked .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.is-locked .burger span:nth-child(2) { opacity: 0; }
body.is-locked .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .header-rdv { display: none; }
  .burger { display: flex; }
  .nav { margin-left: 0; }
  .site-header__actions { margin-left: auto; }
}
@media (max-width: 560px) {
  .site-header__actions .btn--wa { display: none; }
}

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 34px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu[hidden] { display: flex; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu__head .brand img { height: 42px; }
.mobile-menu__close { font-size: 34px; line-height: 1; color: var(--gold); }
.mobile-menu__nav { flex: 1; }
.mobile-menu__nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-menu__nav > ul > li > a {
  display: block; padding: 18px 0;
  font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1.2;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s var(--ease);
  transition-delay: calc(.06s * var(--i, 0) + .12s);
}
.mobile-menu.is-open .mobile-menu__nav > ul > li > a { opacity: 1; transform: none; }
.mobile-menu__nav a:hover { color: var(--gold); }
.mobile-menu__sub { padding: 0 0 16px 2px; }
.mobile-menu__sub a {
  display: block; padding: 7px 0; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .62);
}
.mobile-menu__foot { display: grid; gap: 12px; padding-top: 26px; }
.mobile-menu__phone {
  text-align: center; font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-top: 6px;
}
body.is-locked { overflow: hidden; }

/* ------------------------------ 9. Héros d'accueil ------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: clamp(36px, 5vw, 64px);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 29, 63, .74) 0%, rgba(5, 29, 63, .5) 34%, rgba(5, 29, 63, .82) 74%, rgba(5, 29, 63, .96) 100%),
    linear-gradient(94deg, rgba(5, 29, 63, .78) 0%, rgba(5, 29, 63, .22) 62%);
}
.hero__layers { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__clouds {
  position: absolute; left: -6%; width: 112%; height: auto; opacity: .3;
  mix-blend-mode: screen;
}
.hero__clouds--back { top: 6%; opacity: .2; animation: cloudA 90s linear infinite; }
.hero__clouds--front { bottom: -4%; opacity: .26; animation: cloudB 130s linear infinite; }
@keyframes cloudA { from { transform: translate3d(-4%, 0, 0); } to { transform: translate3d(4%, 0, 0); } }
@keyframes cloudB { from { transform: translate3d(5%, 0, 0); } to { transform: translate3d(-5%, 0, 0); } }
.hero__sun { display: none; }
.hero__plane {
  position: absolute; top: 11%; left: -22%;
  width: clamp(150px, 20vw, 300px); opacity: .85;
  animation: heroPlane 42s linear infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
}
@keyframes heroPlane {
  0%   { transform: translate3d(0, 0, 0) rotate(-3deg); opacity: 0; }
  8%   { opacity: .9; }
  85%  { opacity: .9; }
  100% { transform: translate3d(calc(100vw + 30vw), -14vh, 0) rotate(-3deg); opacity: 0; }
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 48px; height: 1px; background: var(--gold); }
.hero__dot { display: none; }

.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.7rem, 7.4vw, 5.8rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 24px; max-width: 16ch;
  text-shadow: 0 2px 40px rgba(5, 29, 63, .35);
}
.hero__title .word { display: inline-block; overflow: hidden; }
.js .hero__title .word > span,
.js .hero__title .word {
  animation: heroWord 1.1s var(--ease) both;
  animation-delay: calc(.08s * var(--w, 0) + .15s);
}
@keyframes heroWord { from { opacity: 0; transform: translateY(.5em); } to { opacity: 1; transform: none; } }
.hero__title em { font-style: italic; color: var(--gold-soft); }

.hero__subtitle {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: rgba(255, 255, 255, .82);
  max-width: 54ch; margin: 0 0 34px;
  animation: heroWord 1.1s var(--ease) both .55s;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(40px, 5vw, 64px);
  animation: heroWord 1.1s var(--ease) both .7s;
}

/* Barre de recherche */
.searchbar {
  position: relative;
  background: rgba(246, 244, 239, .93);
  backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(194, 167, 107, .5);
  border-radius: var(--r);
  padding: clamp(16px, 1.8vw, 22px);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(5, 29, 63, .3);
  animation: heroWord 1.1s var(--ease) both .85s;
}
.searchbar__grid {
  display: grid; gap: 0;
  grid-template-columns: 1.1fr 1fr 1fr 1.05fr auto;
  align-items: end;
}
.searchbar__field { padding: 4px 18px; border-left: 1px solid var(--line-gold); min-width: 0; }
.searchbar__field:first-child { border-left: 0; padding-left: 6px; }
.searchbar__field label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px;
}
.searchbar__field input, .searchbar__field select {
  width: 100%; border: 0; background: transparent; padding: 4px 0;
  font-size: 15px; font-weight: 600; color: var(--navy);
  appearance: none;
}
.searchbar__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A48B4D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; background-size: 15px;
  padding-right: 20px; cursor: pointer;
}
.searchbar__field input::placeholder { color: var(--ink-mute); font-weight: 400; }
.searchbar__field input:focus, .searchbar__field select:focus { outline: none; }
.searchbar__field:focus-within label { color: var(--navy); }
.searchbar__submit { margin-left: 18px; padding-inline: 28px; height: 52px; }
.searchbar__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-gold);
  font-size: 12.5px; color: var(--ink-soft);
}
.searchbar__wa { color: var(--gold-dark); font-weight: 600; border-bottom: 1px solid var(--line-gold); }
.searchbar__wa:hover { color: var(--navy); }

@media (max-width: 1080px) {
  .searchbar__grid { grid-template-columns: 1fr 1fr; gap: 12px 0; }
  .searchbar__field:nth-child(odd) { border-left: 0; padding-left: 6px; }
  .searchbar__submit { grid-column: 1 / -1; margin: 6px 0 0; width: 100%; }
}
@media (max-width: 620px) {
  .searchbar__grid { grid-template-columns: 1fr; }
  .searchbar__field { border-left: 0; padding-left: 6px; padding-block: 8px; border-top: 1px solid var(--line-gold); }
  .searchbar__field:first-child { border-top: 0; }
  .searchbar__foot { flex-direction: column; align-items: flex-start; }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: 1px; height: 46px; background: rgba(255, 255, 255, .22); overflow: hidden; z-index: 3;
}
.hero__scroll span { position: absolute; inset: 0; background: var(--gold); animation: scrollLine 2.6s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }
@media (max-width: 860px) { .hero__scroll { display: none; } }

.hero__poster, .hero__video { }
.hero__video { display: none !important; }

@media (max-width: 860px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 72px); }
  .hero__title { max-width: 14ch; }
}

/* ------------------------------ 10. Bandeau de confiance ------------------------------ */
.trust {
  background: var(--navy); color: #fff;
  padding-block: clamp(42px, 5vw, 66px);
  border-top: 1px solid rgba(194, 167, 107, .22);
}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 6px 18px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}
.trust__item:first-child { border-left: 0; }
.trust__icon { width: 22px; height: 22px; color: var(--gold); margin-bottom: 8px; opacity: .9; }
.trust__value {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1; color: #fff;
  letter-spacing: -.02em;
}
.trust__label {
  display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: rgba(255, 255, 255, .58);
}
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 28px; }
}

/* ------------------------------ 11. Cartes services ------------------------------ */
.svc-card { position: relative; background: var(--white); }
.svc-card__link { display: block; height: 100%; }
.svc-card__media {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  aspect-ratio: 4 / 5; background: var(--cream-deep);
}
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
}
.svc-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, .05) 30%, rgba(5, 29, 63, .72) 100%);
}
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__icon {
  position: absolute; z-index: 2; left: 20px; top: 20px;
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .34); border-radius: 50%;
  background: rgba(5, 29, 63, .3); backdrop-filter: blur(4px);
  color: var(--gold);
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card__tag {
  position: absolute; z-index: 2; left: 20px; bottom: 20px; right: 20px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.svc-card__tag--promo {
  left: auto; right: 16px; bottom: auto; top: 16px; width: auto;
  background: var(--bordeaux); color: #fff; padding: 6px 12px; border-radius: 2px; letter-spacing: .1em;
}
.svc-card__body { padding: 24px 2px 0; }
.svc-card__title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); margin: 0 0 10px;
}
.svc-card__text { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 18px; }
.svc-card__price {
  display: flex; align-items: baseline; gap: 10px; margin: 0 0 16px;
  font-family: var(--serif);
}
.svc-card__price strong { font-size: 1.55rem; color: var(--gold-dark); font-weight: 600; }
.svc-card__price s { font-size: 1rem; color: var(--ink-mute); font-family: var(--sans); }
.svc-card::after {
  content: ""; display: block; height: 1px; width: 0; background: var(--gold);
  margin-top: 20px; transition: width .7s var(--ease);
}
.svc-card:hover::after { width: 100%; }

/* ------------------------------ 12. Mosaïque destinations ------------------------------ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 15vw, 220px);
  gap: clamp(10px, 1.1vw, 16px);
}
.mosaic__item {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  background: var(--navy); display: block;
}
.mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic__item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.mosaic__item:nth-child(3), .mosaic__item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.mosaic__item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.mosaic__item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
.mosaic__item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 1.2s var(--ease); opacity: .9;
}
.mosaic__item:hover img { transform: scale(1.05); opacity: 1; }
.mosaic__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, 0) 34%, rgba(5, 29, 63, .8) 100%);
}
.mosaic__cap {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 1.6vw, 26px);
}
.mosaic__country {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.mosaic__name {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.1vw, 2.1rem); line-height: 1.05; color: #fff;
}
.mosaic__rule {
  display: block; height: 1px; width: 0; background: var(--gold); margin-top: 12px;
  transition: width .8s var(--ease);
}
.mosaic__item:hover .mosaic__rule { width: 64px; }
@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .mosaic__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .mosaic__item:nth-child(1) { grid-column: span 2; }
  .mosaic__item:nth-child(6) { grid-column: span 2; }
}

/* Marquee destinations */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line-gold);
  padding-block: 22px; margin-top: clamp(40px, 5vw, 64px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 30px;
  padding-inline: 30px;
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500; color: var(--navy); white-space: nowrap;
}
.marquee__item::after { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.section--dark .marquee__item { color: rgba(255, 255, 255, .85); }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ------------------------------ 13. Filtres (chips) ------------------------------ */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.chip {
  padding: 10px 20px; border: 1px solid var(--line);
  border-radius: 40px; background: transparent;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  transition: all .35s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip__count { opacity: .55; margin-left: 6px; }
.section--dark .chip { border-color: rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .7); }
.section--dark .chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ------------------------------ 14. Cartes circuits ------------------------------ */
.pkg-card { position: relative; background: transparent; }
.pkg-card.is-hidden, .pkg-card.is-filtered-out { display: none; }
.pkg-card__link { display: flex; flex-direction: column; height: 100%; }
.pkg-card__media {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  aspect-ratio: 4 / 5; background: var(--navy);
}
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pkg-card:hover .pkg-card__media img { transform: scale(1.04); }
.pkg-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, .2) 0%, rgba(5, 29, 63, 0) 40%, rgba(5, 29, 63, .55) 100%);
}
.pkg-card__region {
  position: absolute; z-index: 2; top: 16px; left: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 10px rgba(5, 29, 63, .6);
}
.pkg-card__flag {
  position: absolute; z-index: 2; top: 14px; right: 14px;
  background: var(--bordeaux); color: #fff; padding: 6px 11px; border-radius: 2px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.pkg-card__duration {
  position: absolute; z-index: 2; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.pkg-card__duration svg { width: 14px; height: 14px; color: var(--gold); }
.pkg-card__body { padding: 20px 2px 0; display: flex; flex-direction: column; flex: 1; }
.pkg-card__title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.15;
  color: var(--navy); margin: 0 0 8px;
}
.pkg-card__place {
  display: flex; align-items: center; gap: 6px; margin: 0 0 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute);
}
.pkg-card__place svg { width: 13px; height: 13px; color: var(--gold-dark); }
.pkg-card__excerpt { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; }
.pkg-card__dates {
  display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
  padding: 12px 0; border-block: 1px solid var(--line);
}
.pkg-card__date { display: flex; flex-direction: column; gap: 2px; }
.pkg-card__date em {
  font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.pkg-card__date strong { font-size: 13.5px; color: var(--navy); font-weight: 700; }
.pkg-card__trail { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 9px); }
.pkg-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.pkg-card__price small {
  display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2px;
}
.pkg-card__price strong {
  display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--gold-dark); line-height: 1;
}
.pkg-card__price em { font-style: normal; font-size: 11.5px; color: var(--ink-mute); }
.pkg-card__cta {
  display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--navy);
}
.pkg-card__cta svg { width: 15px; height: 15px; transition: transform .45s var(--ease); }
.pkg-card:hover .pkg-card__cta svg { transform: translateX(5px); }
.pkg-card::after {
  content: ""; display: block; height: 1px; width: 0; background: var(--gold);
  margin-top: 18px; transition: width .7s var(--ease);
}
.pkg-card:hover::after { width: 100%; }

/* ------------------------------ 15. Carte d'embarquement ------------------------------ */
.boarding-grid { align-items: stretch; }
.boarding {
  display: grid; grid-template-columns: 1fr 190px;
  background: var(--cream); color: var(--ink);
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-sm);
  position: relative;
}
.boarding__main { padding: 26px 28px; }
.boarding__head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--line-gold);
}
.boarding__label { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.boarding__airline { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.boarding__route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-bottom: 20px; }
.boarding__city strong {
  display: block; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600; line-height: 1; color: var(--navy); letter-spacing: .02em;
}
.boarding__city span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.boarding__city--to { text-align: right; }
.boarding__path { position: relative; color: var(--gold); height: 24px; }
.boarding__path svg:first-child { width: 100%; height: 24px; }
.boarding__plane {
  position: absolute; top: 50%; left: 50%; width: 19px; height: 19px;
  transform: translate(-50%, -50%) rotate(90deg); color: var(--navy);
  background: var(--cream); padding: 0 2px;
}
.boarding__meta { display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 0; }
.boarding__meta dt { font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.boarding__meta dd { margin: 2px 0 0; font-size: 13px; font-weight: 600; color: var(--navy); }
.boarding__note { margin: 16px 0 0; font-size: 12.5px; color: var(--ink-mute); }
.boarding__stub {
  position: relative;
  background: var(--navy-700); color: #fff;
  padding: 26px 20px; display: flex; flex-direction: column; justify-content: center; gap: 16px;
  border-left: 2px dashed rgba(194, 167, 107, .45);
}
.boarding__stub::before, .boarding__stub::after {
  content: ""; position: absolute; left: -11px; width: 20px; height: 20px;
  background: var(--navy); border-radius: 50%;
}
.section--dark .boarding__stub::before, .section--dark .boarding__stub::after { background: var(--navy); }
.boarding__stub::before { top: -10px; }
.boarding__stub::after { bottom: -10px; }
.boarding__price { text-align: center; }
.boarding__price s { display: block; font-size: 12px; color: rgba(255, 255, 255, .45); }
.boarding__price strong {
  display: block; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 600; color: var(--gold); line-height: 1.15;
}
.boarding__price small { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-top: 4px; }
.boarding__barcode { display: flex; gap: 2px; height: 30px; align-items: stretch; justify-content: center; opacity: .55; }
.boarding__barcode span { display: block; width: 2px; background: var(--gold-soft); }
.boarding__stub .btn { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }
.boarding__stub .btn:hover { --btn-bg: #fff; --btn-bd: #fff; }
@media (max-width: 620px) {
  .boarding { grid-template-columns: 1fr; }
  .boarding__stub { border-left: 0; border-top: 2px dashed rgba(194, 167, 107, .45); flex-direction: row; align-items: center; justify-content: space-between; }
  .boarding__stub::before { top: -10px; left: -10px; }
  .boarding__stub::after { bottom: auto; top: -10px; left: auto; right: -10px; }
  .boarding__price { text-align: left; }
  .boarding__stub .btn { width: auto; }
}

/* ------------------------------ 16. Pourquoi GKML ------------------------------ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.why__media { position: relative; }
.why__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  border-radius: var(--r-sm);
}
.why__media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-gold); border-radius: var(--r-sm); z-index: -1;
}
.why__intro .why__figure { display: none; }
.why__grid { display: grid; gap: 4px; }
.why__card {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.why__card:last-child { border-bottom: 0; }
.why__icon { grid-column: 1; grid-row: 1 / -1; }
.why__card > :not(.why__icon) { grid-column: 2; }
.why__icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold-dark);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.why__card:hover .why__icon { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.why__icon svg { width: 21px; height: 21px; }
.why__card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.why__card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 860px) { .why { grid-template-columns: 1fr; } .why__media::after { display: none; } }

/* ------------------------------ 17. Carte du monde ------------------------------ */
.flightpath {
  background: var(--navy); color: rgba(255, 255, 255, .8);
  padding-block: var(--pad-y); position: relative; overflow: hidden;
}
.flightpath .section__title { color: #fff; }
.flightpath .section__lead { color: rgba(255, 255, 255, .68); }
.flightpath__stage { position: relative; aspect-ratio: 2 / 1; max-width: 1100px; margin-inline: auto; }
.flightpath__map {
  width: 100%; height: 100%; object-fit: contain;
  opacity: .28; filter: brightness(0) invert(1);
}
.flightpath__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flightpath__svg path { stroke-dasharray: 8 10; }
.js .flightpath__svg path { stroke-dashoffset: 0; }
.flightpath__plane {
  position: absolute; top: 0; left: 0; width: clamp(80px, 9vw, 130px);
  opacity: 0; transition: opacity .6s var(--ease);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .4));
  transform-origin: center;
}
.flightpath__plane.is-visible { opacity: 1; }
.flightpath__point { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); }
.flightpath__ping {
  display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(194, 167, 107, .55);
  animation: ping 2.6s var(--ease) infinite; animation-delay: var(--d, 0s);
}
@keyframes ping { 70% { box-shadow: 0 0 0 16px rgba(194, 167, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(194, 167, 107, 0); } }
.flightpath__label {
  position: absolute; left: 50%; top: -24px; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .8); white-space: nowrap;
}
@media (max-width: 720px) { .flightpath__label { display: none; } }

/* ------------------------------ 18. Témoignages ------------------------------ */
.section--testimonials {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  position: relative; overflow: hidden;
}
.section--testimonials .section__head { text-align: center; }
.section--testimonials .eyebrow { color: var(--gold); justify-content: center; }
.section--testimonials .eyebrow::after { content: ""; width: 44px; height: 1px; background: var(--gold); }
.section--testimonials .section__title { margin-inline: auto; }
.section--testimonials .section__lead { color: rgba(255, 255, 255, .66); margin-inline: auto; text-align: center; }

.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 0;
  scroll-snap-type: x mandatory; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 100%; scroll-snap-align: center; margin: 0;
  text-align: center; padding-inline: clamp(8px, 4vw, 70px);
}
.quote__stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 26px; color: var(--gold); }
.quote__stars svg { width: 16px; height: 16px; }
.quote blockquote { margin: 0 0 30px; }
.quote blockquote p {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3.1vw, 2.5rem); line-height: 1.42;
  color: #fff; margin: 0; max-width: 24ch; margin-inline: auto;
}
.quote figcaption { display: inline-flex; align-items: center; gap: 14px; }
.quote figcaption img, .quote__initial {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none;
}
.quote__initial {
  display: grid; place-items: center;
  border: 1px solid var(--line-gold); color: var(--gold);
  font-family: var(--serif); font-size: 1.25rem;
}
.quote figcaption span { text-align: left; }
.quote figcaption strong { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.quote figcaption em { font-style: normal; font-size: 12.5px; color: var(--gold); }
.carousel__controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.carousel__btn {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: #fff;
  transition: all .4s var(--ease);
}
.carousel__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.carousel__btn svg { width: 18px; height: 18px; }

/* ------------------------------ 19. Accordéon ------------------------------ */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__heading { margin: 0; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; text-align: left;
  font-family: var(--serif); font-size: clamp(1.12rem, 1.7vw, 1.4rem); font-weight: 600;
  color: var(--navy); line-height: 1.3;
  transition: color .3s var(--ease);
}
.accordion__trigger:hover { color: var(--gold-dark); }
.accordion__icon { width: 20px; height: 20px; flex: none; color: var(--gold-dark); transition: transform .45s var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(135deg); }
.accordion__panel { overflow: hidden; }
.accordion__content { padding: 0 60px 28px 0; font-size: 15.5px; }
.accordion__content > :last-child { margin-bottom: 0; }
.section--dark .accordion, .section--dark .accordion__item { border-color: rgba(255, 255, 255, .13); }
.section--dark .accordion__trigger { color: #fff; }

/* ------------------------------ 20. Cartes blog ------------------------------ */
.post-card { display: flex; flex-direction: column; }
.post-card__media {
  display: block; overflow: hidden; border-radius: var(--r-sm);
  aspect-ratio: 3 / 2; background: var(--cream-deep);
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 22px 2px 0; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute);
}
.post-card__title { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.22; margin: 0 0 10px; }
.post-card__title a { color: var(--navy); transition: color .3s var(--ease); }
.post-card__title a:hover { color: var(--gold-dark); }
.post-card__excerpt { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 18px; }
.post-card .link-arrow { margin-top: auto; }

.post-feature { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-bottom: clamp(48px, 6vw, 80px); }
.post-feature__media { overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 16 / 10; }
.post-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post-feature:hover .post-feature__media img { transform: scale(1.04); }
.post-feature__title { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; color: var(--navy); margin: 0 0 14px; }
.post-feature__excerpt { color: var(--ink-soft); margin-bottom: 22px; }
@media (max-width: 860px) { .post-feature { grid-template-columns: 1fr; } }

/* ------------------------------ 21. CTA final ------------------------------ */
.cta-final {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
  padding-block: clamp(80px, 11vw, 160px);
  text-align: center;
}
.cta-final__sky { position: absolute; inset: 0; pointer-events: none; opacity: .1; overflow: hidden; }
.cta-final__clouds { position: absolute; bottom: -30%; left: -5%; width: 110%; max-width: none; mix-blend-mode: screen; -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%); mask-image: linear-gradient(180deg, transparent, #000 60%); }
.cta-final__plane {
  position: absolute; top: 18%; left: -20%; width: clamp(140px, 18vw, 260px);
  animation: heroPlane 50s linear infinite;
}
.cta-final__inner { position: relative; z-index: 2; }
.cta-final__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.14; color: #fff;
  margin: 0 0 20px; max-width: 18ch; margin-inline: auto;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__text { color: rgba(255, 255, 255, .76); max-width: 58ch; margin: 0 auto 36px; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-final__reassure {
  margin: 28px 0 0; font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 255, 255, .45);
}
.cta-final .btn--wa { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }
.cta-final .btn--wa:hover { --btn-bg: #fff; --btn-bd: #fff; }

/* ------------------------------ 22. Héros de page intérieure ------------------------------ */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
  padding-top: calc(var(--header-h) + clamp(70px, 9vw, 130px));
  padding-bottom: clamp(60px, 8vw, 118px);
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, .84) 0%, rgba(5, 29, 63, .62) 50%, rgba(5, 29, 63, .9) 100%);
}
.page-hero__clouds { position: absolute; inset: auto 0 -2% 0; z-index: -1; opacity: .16; mix-blend-mode: screen; pointer-events: none; }
.page-hero__clouds img { width: 112%; max-width: none; margin-left: -6%; animation: cloudA 110s linear infinite; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.9rem); line-height: 1.14; letter-spacing: -.018em;
  color: #fff; margin: 0 0 18px; max-width: 18ch;
}
.page-hero__subtitle { font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255, 255, 255, .8); max-width: 60ch; margin: 0; }

.crumbs { margin-bottom: 26px; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.crumbs li { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.crumbs li + li::before { content: ""; width: 12px; height: 1px; background: rgba(255, 255, 255, .3); }
.crumbs a { color: rgba(255, 255, 255, .8); }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current] { color: var(--gold); }

/* ------------------------------ 23. Blocs communs ------------------------------ */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(26px, 3vw, 42px);
}
.section--tinted .card { border-color: transparent; box-shadow: var(--sh-sm); }
.card--form { border-top: 2px solid var(--gold); }
.card__head { margin-bottom: 26px; }
.card__title { font-family: var(--serif); font-size: clamp(1.5rem, 2.3vw, 2rem); font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.card__subtitle { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 10px; }
.card__lead { color: var(--ink-soft); margin: 0; font-size: 15px; }
.card__note { font-size: 12.5px; color: var(--ink-mute); margin: 16px 0 0; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; overflow: hidden; border-radius: var(--r-sm); }
.feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__title { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 500; color: var(--navy); margin: 0 0 18px; }
.feature__lead { color: var(--ink-soft); }
.feature__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.feature__price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px; font-family: var(--serif); }
.feature__price strong { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--gold-dark); font-weight: 600; line-height: 1.2; }
.feature__price s { font-family: var(--sans); font-size: 1.05rem; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
}

.split-cta {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: var(--navy); color: #fff; border-radius: var(--r); overflow: hidden;
}
.split-cta__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-cta__body { padding: clamp(32px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.split-cta__body h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); color: #fff; }
.split-cta__body p { color: rgba(255, 255, 255, .74); }
@media (max-width: 800px) { .split-cta { grid-template-columns: 1fr; } }

.perks-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
@media (max-width: 900px) { .perks-grid, .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .perks-grid, .values-grid { grid-template-columns: 1fr; } }
.perk-card { padding: 30px 0 0; border-top: 1px solid var(--line-gold); }
.perk-card__icon {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px;
  border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold-dark);
}
.perk-card__icon svg { width: 20px; height: 20px; }
.perk-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.perk-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.section--dark .perk-card h3 { color: #fff; }
.section--dark .perk-card p { color: rgba(255, 255, 255, .68); }

.perks { display: grid; gap: 2px; }
.perks li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.perks__icon { grid-column: 1; grid-row: 1 / -1; }
.perks li > :not(.perks__icon) { grid-column: 2; }
.perks li:last-child { border-bottom: 0; }
.perks__icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold-dark);
}
.perks__icon svg { width: 19px; height: 19px; }
.perks strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.perks p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.steps { counter-reset: step; display: grid; gap: 0; }
.steps__item {
  display: grid; grid-template-columns: 74px 1fr; gap: 22px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--line); position: relative;
}
.steps__item:last-child { border-bottom: 0; }
.steps__n { grid-column: 1; grid-row: 1 / span 2; }
.steps__item > :not(.steps__n) { grid-column: 2; }
.steps__n {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: 1;
  color: var(--gold); opacity: .9;
}
.steps__item h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.steps__item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.section--dark .steps__item { border-color: rgba(255, 255, 255, .13); }
.section--dark .steps__item h3 { color: #fff; }
.section--dark .steps__item p { color: rgba(255, 255, 255, .68); }

.ticks { display: grid; gap: 12px; }
.ticks--2 { grid-template-columns: 1fr 1fr; gap: 12px 30px; }
@media (max-width: 680px) { .ticks--2 { grid-template-columns: 1fr; } }
.ticks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 3px; top: .52em;
  width: 11px; height: 6px; border-left: 1.5px solid var(--gold-dark); border-bottom: 1.5px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.section--dark .ticks li { color: rgba(255, 255, 255, .78); }
.section--dark .ticks li::before { border-color: var(--gold); }

.crosses { display: grid; gap: 12px; }
.crosses li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-mute); }
.crosses li::before, .crosses li::after {
  content: ""; position: absolute; left: 6px; top: .72em; width: 11px; height: 1.5px; background: var(--ink-mute);
}
.crosses li::before { transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }

.incl { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
@media (max-width: 720px) { .incl { grid-template-columns: 1fr; } }
.incl__title { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 16px; }
.incl__title--yes { color: var(--gold-dark); }
.incl__title--no { color: var(--ink-mute); }

.notice {
  padding: 18px 22px; border-left: 2px solid var(--gold);
  background: var(--cream); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 14.5px; color: var(--ink-soft);
}
.notice--warn { border-left-color: var(--bordeaux); }
.notice p:last-child { margin-bottom: 0; }

.empty {
  text-align: center; padding: clamp(50px, 8vw, 90px) 20px;
  color: var(--ink-mute); border: 1px dashed var(--line); border-radius: var(--r);
}

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.price-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 620px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  background: var(--navy); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.price-table tbody tr:hover { background: var(--cream); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .is-price { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--gold-dark); white-space: nowrap; }

.pricebox {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px, 3vw, 38px); background: var(--navy); color: #fff; border-radius: var(--r);
}
.pricebox__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); color: #fff; margin: 0 0 6px; }
.pricebox__text { color: rgba(255, 255, 255, .7); margin: 0; font-size: 14.5px; }
.pricebox__amounts { display: flex; align-items: baseline; gap: 14px; }
.pricebox__amounts strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--gold); line-height: 1; }
.pricebox__amounts s { color: rgba(255, 255, 255, .4); font-size: 1.1rem; }
.pricebox__right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.aside-cta {
  background: var(--navy); color: #fff; border-radius: var(--r);
  padding: clamp(26px, 3vw, 36px);
}
.aside-cta h3 { font-family: var(--serif); font-size: 1.45rem; color: #fff; margin: 0 0 10px; }
.aside-cta p { color: rgba(255, 255, 255, .72); font-size: 14.5px; }
.aside-cta .btn { margin-top: 6px; }
.aside-cta--wide { display: grid; gap: 14px; }

.hours { display: grid; gap: 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.hours li:last-child { border-bottom: 0; }
.hours strong { color: var(--navy); font-weight: 700; }
.hours .is-closed { color: var(--bordeaux); }

.contact-list { display: grid; gap: 22px; }
.contact-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.contact-list__icon { grid-column: 1; grid-row: 1 / -1; }
.contact-list li > :not(.contact-list__icon) { grid-column: 2; }
.contact-list__icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold-dark);
}
.contact-list__icon svg { width: 18px; height: 18px; }
.contact-list strong { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; }
.contact-list a, .contact-list span { color: var(--navy); font-size: 15px; }
.contact-list a:hover { color: var(--gold-dark); }

.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.4) contrast(1.05); }
.map__link { display: inline-flex; margin-top: 16px; }

.contact-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.quote-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .quote-layout { grid-template-columns: 1fr; } }

/* ------------------------------ 24. Formulaires ------------------------------ */
.form { display: grid; gap: 18px; }
.form--compact { gap: 14px; }
.form__row { display: grid; gap: 18px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.form__row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .form__row--2, .form__row--3 { grid-template-columns: 1fr; } }
.form__fieldset { border: 0; padding: 0; margin: 0 0 6px; display: grid; gap: 18px; }
.form__fieldset legend {
  padding: 0; margin-bottom: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark);
}
.form__field { display: grid; gap: 7px; }
.form__field > label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.form__optional { color: var(--ink-mute); font-weight: 500; letter-spacing: .06em; text-transform: none; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 15px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.section--tinted .form__field input, .section--tinted .form__field select, .section--tinted .form__field textarea { background: #fff; }
.form__field textarea { min-height: 140px; resize: vertical; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194, 167, 107, .16);
}
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--ink-mute); }
.form__field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A48B4D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
.form__field input.is-error, .form__field textarea.is-error, .form__field select.is-error { border-color: var(--bordeaux); }
.form__note { font-size: 12.5px; color: var(--ink-mute); margin: 0; }
.form__note a { color: var(--gold-dark); border-bottom: 1px solid var(--line-gold); }
.form__feedback { margin: 0; font-size: 14px; min-height: 0; }
.form__feedback.is-ok { color: var(--gold-dark); font-weight: 600; }
.form__feedback.is-error { color: var(--bordeaux); font-weight: 600; }

.radio-switch { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-switch__opt { position: relative; }
.radio-switch__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-switch__opt span {
  display: block; padding: 11px 20px; border: 1px solid var(--line); border-radius: 40px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  transition: all .3s var(--ease); cursor: pointer;
}
.radio-switch__opt input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.radio-switch__opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.newsletter__row { display: flex; gap: 8px; margin-bottom: 12px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 14px 16px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-sm); color: #fff; font-size: 14.5px;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .4); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter .btn { flex: none; }
@media (max-width: 420px) { .newsletter__row { flex-direction: column; } .newsletter .btn { width: 100%; } }

/* ------------------------------ 25. Messages flash ------------------------------ */
.flashes { position: fixed; top: calc(var(--header-h) + 16px); right: 20px; z-index: 950; display: grid; gap: 10px; max-width: 360px; }
.flashes .flash, .flashes > div {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border-radius: var(--r); background: var(--navy); color: #fff;
  box-shadow: var(--sh); font-size: 14px;
  border-left: 2px solid var(--gold);
}
.flash__close { color: rgba(255, 255, 255, .6); font-size: 20px; line-height: 1; margin-left: auto; }

/* ------------------------------ 26. Fiche circuit ------------------------------ */
.pkg__hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding-top: calc(var(--header-h) + clamp(80px, 10vw, 150px)); padding-bottom: clamp(50px, 7vw, 100px); isolation: isolate; }
.pkg__hero-bg { position: absolute; inset: 0; z-index: -1; }
.pkg__hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.pkg__hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 29, 63, .8) 0%, rgba(5, 29, 63, .5) 45%, rgba(5, 29, 63, .95) 100%); }
.pkg__hero-inner { position: relative; z-index: 2; }
.pkg__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.8vw, 3.7rem); line-height: 1.14; color: #fff; margin: 0 0 16px; max-width: 18ch; }
.pkg__excerpt { color: rgba(255, 255, 255, .8); max-width: 62ch; }
.pkg__facts { display: flex; flex-wrap: wrap; gap: 0; margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .18); padding-top: 22px; }
.pkg__facts > li, .pkg__facts > div {
  padding-right: clamp(20px, 2.6vw, 36px); margin-right: clamp(20px, 2.6vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, .14); margin-bottom: 14px;
}
.pkg__facts > li:last-child, .pkg__facts > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.pkg__facts em, .pkg__facts dt {
  display: block; font-style: normal; font-size: 9.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.pkg__facts strong, .pkg__facts dd, .pkg__facts span {
  display: block; margin: 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600; color: #fff; white-space: nowrap;
}
@media (max-width: 720px) {
  .pkg__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .pkg__facts > li, .pkg__facts > div { border-right: 0; margin: 0; padding: 0; }
  .pkg__facts strong, .pkg__facts dd, .pkg__facts span { white-space: normal; }
}

.pkg__layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(36px, 4.5vw, 70px); align-items: start; }
@media (max-width: 980px) { .pkg__layout { grid-template-columns: 1fr; } }
.pkg__block { margin-bottom: clamp(44px, 5vw, 70px); }
.pkg__h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 600; color: var(--navy); margin: 0 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line-gold); }
.pkg__aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.pkg__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pkg__gallery a { display: block; overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 1; }
.pkg__gallery-item--lead { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 !important; }
@media (max-width: 560px) { .pkg__gallery { grid-template-columns: repeat(2, 1fr); } }
.pkg__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.pkg__gallery a:hover img { transform: scale(1.06); }

.booking { background: var(--cream); border: 1px solid var(--line-gold); border-radius: var(--r); padding: clamp(24px, 3vw, 32px); }
.booking__price { text-align: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line-gold); }
.booking__price small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.booking__price strong { display: block; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 2.7rem); font-weight: 600; color: var(--gold-dark); line-height: 1; }
.booking__price em { font-style: normal; font-size: 12.5px; color: var(--ink-mute); }
.booking__reassure { margin: 18px 0 0; font-size: 12px; color: var(--ink-mute); text-align: center; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line-gold); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute; left: -34px; top: 5px; width: 15px; height: 15px;
  border: 1px solid var(--gold); border-radius: 50%; background: #fff;
}
.timeline__marker::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--gold); }
.timeline__day { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 4px; }
.timeline__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.timeline__body { color: var(--ink-soft); font-size: 14.5px; }
.timeline__body p:last-child { margin-bottom: 0; }

/* ------------------------------ 27. Article de blog ------------------------------ */
.article__hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding-top: calc(var(--header-h) + clamp(70px, 9vw, 130px)); padding-bottom: clamp(50px, 7vw, 96px); isolation: isolate; }
.article__hero-bg { position: absolute; inset: 0; z-index: -1; }
.article__hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.article__hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 29, 63, .82) 0%, rgba(5, 29, 63, .6) 45%, rgba(5, 29, 63, .95) 100%); }
.article__hero-inner { position: relative; z-index: 2; }
.article__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.95rem, 4.2vw, 3.3rem); line-height: 1.16; color: #fff; margin: 0 0 18px; max-width: 24ch; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.article__meta .badge { background: transparent; border: 1px solid var(--line-gold); color: var(--gold); }
.article__layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(36px, 4.5vw, 70px); align-items: start; }
.article__layout > .article__aside { grid-column: 2; grid-row: 1; }
.article__layout > .article__body { grid-column: 1; grid-row: 1; }
@media (max-width: 980px) {
  .article__layout { grid-template-columns: 1fr; }
  .article__layout > .article__body { grid-column: 1; grid-row: 1; }
  .article__layout > .article__aside { grid-column: 1; grid-row: 2; position: static; }
}
.article__body { font-size: 1.08rem; }
.article__aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 24px; }
.article__foot { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); }

.toc { background: var(--cream); border-radius: var(--r); padding: 24px 26px; }
.toc__title { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 14px; }
.toc ol { counter-reset: toc; }
.toc__item { counter-increment: toc; }
.toc a { display: block; padding: 7px 0 7px 26px; position: relative; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.toc a::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 7px; font-family: var(--serif); font-size: 12px; color: var(--gold-dark); }
.toc__item--h3 a { padding-left: 42px; font-size: 13.5px; }
.toc__item--h3 a::before { left: 18px; }
.toc a:hover, .toc a.is-active { color: var(--navy); }

.share { display: grid; gap: 12px; }
.share__title { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin: 0; }
.share__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.share__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; min-height: 40px;
  border: 1px solid var(--line); border-radius: 40px; color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; transition: all .35s var(--ease);
}
.share__btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.share__btn svg { width: 16px; height: 16px; flex: none; }

/* ------------------------------ 28. Galerie ------------------------------ */
.masonry { columns: 3; column-gap: clamp(12px, 1.4vw, 18px); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry__item {
  position: relative; display: block; break-inside: avoid;
  margin-bottom: clamp(12px, 1.4vw, 18px); overflow: hidden; border-radius: var(--r-sm);
  background: var(--cream-deep);
}
.masonry__item img { width: 100%; height: auto; transition: transform 1s var(--ease); }
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, 0) 45%, rgba(5, 29, 63, .78) 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__caption {
  position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px;
  color: #fff; font-family: var(--serif); font-size: 1.1rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.masonry__item:hover .masonry__caption { opacity: 1; transform: none; }
.masonry__zoom {
  position: absolute; z-index: 2; top: 16px; right: 16px;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; color: #fff;
  opacity: 0; transition: opacity .5s var(--ease);
}
.masonry__item:hover .masonry__zoom { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(5, 29, 63, .96);
  display: grid; place-items: center; padding: 40px 20px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: 92vw; max-height: 84vh; text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 78vh; width: auto; margin-inline: auto; border-radius: var(--r-sm); }
.lightbox__caption, .lightbox figcaption { color: rgba(255, 255, 255, .8); font-size: 14px; margin-top: 16px; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; color: #fff; font-size: 24px;
  transition: all .35s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .55); font-size: 12px; letter-spacing: .16em; }

/* ------------------------------ 29. Pagination & filtres ------------------------------ */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: clamp(44px, 5vw, 70px); }
.pagination__link {
  min-width: 44px; height: 44px; padding-inline: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.pagination__link:hover { border-color: var(--gold); color: var(--navy); }
.pagination__link.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.filters { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: clamp(30px, 3.5vw, 48px); }
.filters__sort { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-mute); }
.filters__sort select { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; font-size: 13px; }

.faq-group { margin-bottom: clamp(40px, 5vw, 64px); }
.faq-group__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; color: var(--navy); margin: 0 0 12px; }

/* ------------------------------ 30. Popup ------------------------------ */
.popup { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.popup.is-open { opacity: 1; visibility: visible; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(5, 29, 63, .8); backdrop-filter: blur(3px); }
.popup__body {
  position: relative; z-index: 2; width: min(760px, 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-lg);
  transform: translateY(20px) scale(.98); transition: transform .6s var(--ease);
}
.popup.is-open .popup__body { transform: none; }
.popup__media { background: var(--navy); }
.popup__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.popup__text { padding: clamp(26px, 3vw, 40px); }
.popup__title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.popup__text p { font-size: 14.5px; color: var(--ink-soft); }
.popup__form { display: grid; gap: 10px; margin-top: 18px; }
.popup__form input { padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 14.5px; }
.popup__form input:focus { outline: none; border-color: var(--gold); }
.popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .92); border-radius: 50%; color: var(--navy); font-size: 22px;
}
.popup__close:hover { background: var(--gold); }
.popup__dismiss { margin-top: 12px; font-size: 12px; color: var(--ink-mute); text-decoration: underline; }
@media (max-width: 680px) { .popup__body { grid-template-columns: 1fr; } .popup__media { display: none; } }

/* ------------------------------ 31. WhatsApp flottant & barre mobile ------------------------------ */
.wa-float { position: fixed; right: 20px; bottom: 24px; z-index: 880; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-float__bubble {
  position: relative; max-width: 250px; padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line-gold); border-radius: var(--r);
  box-shadow: var(--sh); font-size: 13px; color: var(--ink-soft);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.wa-float__bubble.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float__bubble strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 3px; }
.wa-float__bubble-close { position: absolute; top: 5px; right: 9px; color: var(--ink-mute); font-size: 17px; line-height: 1; }
.wa-float__btn {
  position: relative; width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--navy); color: #fff; border-radius: 50%;
  box-shadow: 0 14px 34px rgba(5, 29, 63, .3);
  border: 1px solid var(--gold);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.wa-float__btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.wa-float__btn svg { width: 27px; height: 27px; }
.wa-float__pulse { position: absolute; inset: -1px; border-radius: 50%; border: 1px solid var(--gold); animation: waPulse 2.8s var(--ease) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }

.mobile-bar { display: none; }
@media (max-width: 860px) {
  .mobile-bar {
    position: fixed; inset: auto 0 0 0; z-index: 890;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--navy); border-top: 1px solid rgba(194, 167, 107, .35);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 11px 6px; color: rgba(255, 255, 255, .82);
    font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    border-left: 1px solid rgba(255, 255, 255, .1);
  }
  .mobile-bar__item:first-child { border-left: 0; }
  .mobile-bar__item svg { width: 19px; height: 19px; }
  .mobile-bar__item--wa { background: var(--gold); color: var(--navy); border-left-color: var(--gold); }
  body { padding-bottom: 66px; }
  .wa-float { bottom: 82px; right: 16px; }
  .wa-float__btn { width: 50px; height: 50px; }
  .wa-float__btn svg { width: 23px; height: 23px; }
  .wa-float__bubble { display: none; }
}

/* ------------------------------ 32. Pied de page ------------------------------ */
.footer { position: relative; background: var(--navy); color: rgba(255, 255, 255, .66); padding-top: clamp(64px, 8vw, 110px); overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer__plane { position: absolute; top: 6%; right: -6%; width: clamp(180px, 22vw, 330px); opacity: .05; pointer-events: none; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: clamp(28px, 3vw, 50px);
  padding-bottom: clamp(48px, 6vw, 76px); position: relative;
}
.footer__col--news {
  grid-column: 1 / -1; padding-top: 42px; margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  column-gap: clamp(30px, 5vw, 70px); row-gap: 6px; align-items: start;
}
.footer__col--news .footer__title { grid-column: 1; grid-row: 1; margin-bottom: 14px; }
.footer__col--news .footer__news-text { grid-column: 1; grid-row: 2; }
.footer__col--news .newsletter { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
@media (max-width: 900px) {
  .footer__col--news { grid-template-columns: 1fr; }
  .footer__col--news .footer__title, .footer__col--news .footer__news-text, .footer__col--news .newsletter { grid-column: 1; grid-row: auto; }
  .footer__col--news .newsletter { margin-top: 18px; }
}
@media (max-width: 1080px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .footer__grid { grid-template-columns: 1fr; } .footer__col--news { grid-template-columns: 1fr; } }

.footer__logo { height: 54px; width: auto; margin-bottom: 20px; }
.footer__about { font-size: 14px; line-height: 1.75; max-width: 42ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; color: rgba(255, 255, 255, .8);
  transition: all .35s var(--ease);
}
.footer__socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer__title {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 20px; padding-bottom: 12px; position: relative;
}
.footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 1px; background: var(--gold); }
.footer__title--mt { margin-top: 34px; }

.footer__links li, .footer__contact li, .footer__hours li { font-size: 14px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: rgba(255, 255, 255, .68); transition: color .3s var(--ease), padding .3s var(--ease); display: inline-block; }
.footer__links a:hover { color: var(--gold); padding-left: 5px; }

.footer__contact li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-bottom: 16px; align-items: start; }
.footer__contact li > svg { grid-column: 1; grid-row: 1 / -1; }
.footer__contact li > :not(svg) { grid-column: 2; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); margin-top: 3px; }
.footer__contact a { color: rgba(255, 255, 255, .82); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact small { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .45); margin-top: 3px; line-height: 1.5; }

.footer__hours li { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 13.5px; }
.footer__hours li:last-child { border-bottom: 0; }
.footer__hours strong { color: #fff; font-weight: 600; }
.footer__hours .is-closed { color: var(--gold); opacity: .7; }

.footer__news-text { font-size: 14px; margin: 0; max-width: 46ch; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 24px; font-size: 12.5px; color: rgba(255, 255, 255, .45);
}
.footer__bottom-inner p { margin: 0; }
.footer__bottom a { color: rgba(255, 255, 255, .7); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }

/* ------------------------------ 33. Merci / 404 ------------------------------ */
.thanks, .errorpage {
  position: relative; overflow: hidden;
  background: var(--navy); color: rgba(255, 255, 255, .78);
  min-height: 82svh; display: grid; place-items: center; text-align: center;
  padding: calc(var(--header-h) + 80px) 0 100px;
}
.thanks__sky, .errorpage__sky { position: absolute; inset: 0; opacity: .16; pointer-events: none; }
.thanks__clouds, .errorpage__clouds { position: absolute; bottom: -8%; left: -5%; width: 110%; mix-blend-mode: screen; }
.thanks__plane, .errorpage__plane { position: absolute; top: 20%; left: -20%; width: clamp(140px, 18vw, 250px); animation: heroPlane 46s linear infinite; }
.thanks__inner, .errorpage__inner { position: relative; z-index: 2; }
.thanks__circle, .thanks__check {
  width: 82px; height: 82px; margin: 0 auto 30px;
  display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%; color: var(--gold);
}
.thanks__tick { width: 34px; height: 34px; }
.thanks__title, .errorpage__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.16; color: #fff; margin: 0 0 16px; }
.thanks__text, .errorpage__text { max-width: 56ch; margin: 0 auto 32px; color: rgba(255, 255, 255, .76); }
.thanks__actions, .errorpage__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.thanks__hint { margin-top: 26px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .4); }
.errorpage__code { font-family: var(--serif); font-size: clamp(5rem, 14vw, 10rem); line-height: 1; color: var(--gold); opacity: .28; margin: 0 0 -.1em; }
.errorpage__links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; margin-top: 36px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.errorpage__links a { color: rgba(255, 255, 255, .65); }
.errorpage__links a:hover { color: var(--gold); }

/* ------------------------------ 34. Divers ------------------------------ */
.video-cta { position: relative; border-radius: var(--r); overflow: hidden; background: var(--navy); }
.video-cta__poster { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: .55; }
.video-cta__body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 24px; }
.video-cta__body h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.2rem); color: #fff; }
.video-cta__play {
  width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--gold); border-radius: 50%; color: var(--gold);
  transition: all .4s var(--ease);
}
.video-cta__play:hover { background: var(--gold); color: var(--navy); }
.video-cta__play svg { width: 26px; height: 26px; }

.pkg { position: relative; }
.services-grid { align-items: start; }

/* Carrousel mobile scroll-snap pour les grilles de cartes */
@media (max-width: 720px) {
  .grid.is-snap {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 6px;
  }
  .grid.is-snap::-webkit-scrollbar { display: none; }
  .grid.is-snap > * { scroll-snap-align: start; }
}

@media print {
  .site-header, .footer, .wa-float, .mobile-bar, .popup, .announce, .mobile-menu { display: none !important; }
  body { color: #000; }
}

/* Correctifs DA : nuages sans bord dur (masque dégradé), masqués sur mobile */
.hero__clouds {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
@media (max-width: 767px) {
  .hero__clouds--back { display: none; }
  .hero__clouds--front { opacity: .18; }
  .wa-float { display: none; }
}

/* ==================================================================
   23. Direction artistique — visuels de marque (assets/img/brand)
   ================================================================== */

/* --- Héros d'accueil : hero-main.webp / hero-mobile.webp --- */
.hero__media picture { display: block; position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 66%;
}
/* Le haut du visuel est déjà bleu nuit : voile plus doux, renforcé bas pour le texte. */
.hero__scrim {
  background:
    linear-gradient(180deg, rgba(5, 29, 63, .30) 0%, rgba(5, 29, 63, .12) 28%, rgba(5, 29, 63, .62) 66%, rgba(5, 29, 63, .93) 100%),
    linear-gradient(94deg, rgba(5, 29, 63, .70) 0%, rgba(5, 29, 63, .16) 62%);
}
.hero__clouds { opacity: .34; mix-blend-mode: normal; }
.hero__clouds--back { top: 2%; width: 122%; left: -11%; opacity: .26; }
.hero__clouds--front { bottom: -10%; width: 130%; left: -15%; opacity: .5; }

/* Avion latéral : translation lente de gauche à droite pilotée par le scroll. */
.hero__plane {
  top: 14%; left: -14%;
  width: clamp(240px, 34vw, 560px);
  height: auto; opacity: .9;
  animation: none;
  will-change: transform;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .38));
}
@media (prefers-reduced-motion: reduce) { .hero__plane { left: 8%; } }
@media (max-width: 767px) {
  .hero__media img { object-position: center 52%; }
  .hero__plane { top: 10%; width: 62vw; opacity: .78; }
}

/* --- Cartes services 4:5 : cadrage sur le sujet --- */
.svc-card__media img { object-position: center 42%; }

/* --- Pourquoi GKML : why-gkml.webp + tampon de passeport --- */
.why__media { position: relative; }
.why__media img:not(.why__stamp) { object-position: center 45%; }
.why__stamp {
  position: absolute; z-index: 2; right: -18px; bottom: -22px;
  width: clamp(92px, 11vw, 140px); height: auto;
  opacity: .14; transform: rotate(-12deg); pointer-events: none;
}
@media (max-width: 860px) { .why__stamp { right: 4px; bottom: 4px; width: 88px; } }

/* --- Bandeau de confiance : texture de lignes dorées très discrète --- */
.trust { position: relative; isolation: isolate; }
.trust::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("../img/brand/pattern-gold-lines.webp");
  background-size: 600px auto; background-repeat: repeat; background-position: center;
  opacity: .07;
}
.trust > * { position: relative; z-index: 1; }

/* --- Carte du monde dorée + avion vu de dessus --- */
.flightpath__map { opacity: .58; filter: none; object-fit: contain; }
.flightpath__plane {
  width: clamp(54px, 6vw, 86px); height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .5));
}

/* --- Témoignages : fond photo sous voile bleu nuit 78 % --- */
.section--testimonials { isolation: isolate; }
.testimonials__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.testimonials__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.testimonials__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, .90) 0%, rgba(5, 29, 63, .78) 45%, rgba(5, 29, 63, .93) 100%);
}

/* --- CTA final : fond cta-final.webp sous voile bleu nuit --- */
.cta-final__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-final__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.cta-final__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 63, .90) 0%, rgba(5, 29, 63, .80) 48%, rgba(5, 29, 63, .94) 100%);
}
.cta-final__sky { z-index: 1; opacity: .16; }
/* Le fond porte déjà un avion : le calque décoratif reste un simple écho. */
.cta-final .cta-final__reassure { color: rgba(255, 255, 255, .62); }
.cta-final__clouds { bottom: -16%; opacity: .55; mix-blend-mode: normal; }
.cta-final__plane {
  width: clamp(200px, 26vw, 420px); height: auto; opacity: .55;
}

/* --- Héros de page intérieure --- */
.page-hero__bg img { object-position: center 50%; }
.page-hero--low .page-hero__bg img { object-position: center 78%; }
.page-hero--center .page-hero__bg img { object-position: center 44%; }
/* Voile bleu nuit dégradé : dense côté texte, plus léger à droite
   pour que le visuel reste lisible sans perdre le contraste du titre. */
.page-hero__bg::after {
  background:
    linear-gradient(180deg, rgba(5, 29, 63, .70) 0%, rgba(5, 29, 63, .40) 46%, rgba(5, 29, 63, .88) 100%),
    linear-gradient(96deg, rgba(5, 29, 63, .88) 0%, rgba(5, 29, 63, .34) 56%, rgba(5, 29, 63, .10) 100%);
}
@media (max-width: 860px) {
  .page-hero__bg::after {
    background: linear-gradient(180deg, rgba(5, 29, 63, .80) 0%, rgba(5, 29, 63, .62) 45%, rgba(5, 29, 63, .92) 100%);
  }
}
.page-hero__clouds { opacity: .26; mix-blend-mode: normal; }
.page-hero__clouds img {
  /* Fondu haut ET bas : aucun bord dur à la coupe de la section. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 46%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 46%, transparent 100%);
}

/* Calques nuages de secours (404, merci) : pas de bord dur. */
.errorpage__clouds, .thanks__clouds {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, #000 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, #000 72%, transparent 100%);
}
.errorpage__plane, .thanks__plane { height: auto; }
.footer__plane img, .empty > img { width: 100%; height: auto; }
.empty > img { max-width: 180px; opacity: .45; }

/* ==================================================================
   24. Héros — animation des calques (vidéo d'ambiance, nuages, avion)
   ================================================================== */

/* Vidéo d'ambiance : nuages dorés qui dérivent, derrière les calques PNG. */
.hero__ambiance {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  opacity: .62; mix-blend-mode: screen; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) { .hero__ambiance { display: none; } }

/* Nuages : défilement horizontal infini (deux copies côte à côte). */
.hero__clouds {
  position: absolute; height: auto; overflow: hidden;
  mix-blend-mode: normal; will-change: transform;
  -webkit-mask-image: none; mask-image: none;
}
.hero__clouds-track {
  display: flex; width: 200%; will-change: transform;
}
.hero__clouds-track img {
  width: 50%; height: auto; flex: none; max-width: none;
  /* Double masque : plus aucun bord dur, ni en bas ni à la jonction des copies. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 26%, #000 72%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to bottom, transparent 0%, #000 26%, #000 72%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-composite: intersect;
}
@keyframes cloudLoop {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.hero__clouds--back {
  top: 2%; left: -11%; width: 122%; opacity: .3; animation: none;
}
.hero__clouds--back .hero__clouds-track { animation: cloudLoop 45s linear infinite; }
.hero__clouds--front {
  bottom: -10%; top: auto; left: -15%; width: 130%; opacity: .45; animation: none;
}
.hero__clouds--front .hero__clouds-track { animation: cloudLoop 28s linear infinite; }

/* Avion : avance au scroll (wrapper) + dérive douce continue (image). */
.hero__plane {
  position: absolute; top: 14%; left: -14%;
  width: clamp(240px, 34vw, 560px); height: auto;
  opacity: .9; animation: none; will-change: transform; pointer-events: none;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .38));
}
.hero__plane img { display: block; width: 100%; height: auto; animation: planeDrift 11s ease-in-out infinite alternate; }
@keyframes planeDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(3%, -2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__clouds-track, .hero__plane img { animation: none !important; }
  .hero__plane { left: 6%; }
}
@media (max-width: 767px) {
  .hero__clouds--back { display: none; }
  .hero__clouds--front { opacity: .38; bottom: -6%; }
  /* L'avion reste au-dessus du titre, sans gêner la lecture de l'eyebrow. */
  .hero__plane { top: 3%; left: -20%; width: 58vw; opacity: .6; }
  .hero__ambiance { opacity: .5; }
}

/* ============ Menu déroulant stylé (ui-select.js) ============ */
.uisel { position: relative; display: block; width: 100%; }
.uisel > select { width: 100%; }
.uisel__panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 60;
  background: #fff; border: 1px solid var(--line-gold, #E4D7B8); border-radius: 8px;
  box-shadow: 0 18px 40px rgba(5, 29, 63, .18); padding: 6px;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; min-width: 220px;
}
.uisel__panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.searchbar__field .uisel__panel { top: calc(100% + 18px); left: -18px; }
.uisel__search {
  width: 100%; border: 1px solid var(--line, #E5E1D6); border-radius: 6px; padding: 9px 12px;
  font: inherit; font-size: 14px; color: var(--navy); margin-bottom: 6px; background: var(--cream, #F6F4EF);
}
.uisel__search:focus { outline: none; border-color: var(--gold); }
.uisel__list { list-style: none; margin: 0; padding: 0; max-height: 260px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.uisel__opt {
  padding: 10px 12px; border-radius: 6px; font-size: 14.5px; font-weight: 500; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background .12s ease, color .12s ease;
}
.uisel__opt:hover { background: var(--cream, #F6F4EF); color: var(--gold-dark, #A48B4D); }
.uisel__opt.is-selected { background: var(--navy); color: #fff; }
.uisel__opt.is-selected::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.uisel__opt.is-disabled { opacity: .45; cursor: default; }
@media (max-width: 767px) { .uisel__list { max-height: 220px; } .searchbar__field .uisel__panel { left: 0; } }
.uisel__panel { position: fixed; left: auto; right: auto; top: auto; z-index: 1200; }
.searchbar__field .uisel__panel { top: auto; left: auto; }
/* Barre d'annonce déjà fermée : masquée avant le premier rendu (pas de flash) */
.announce-closed .announce { display: none; }
.announce-closed .site-header--offset { top: 0; }

/* ------------------------------ Cartes d'embarquement : version mobile ------------------------------ */
@media (max-width: 720px) {
  .boarding-grid.is-snap {
    grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: minmax(0, 1fr);
    overflow: visible; margin-inline: 0; padding-inline: 0; scroll-snap-type: none;
  }
  .boarding { grid-template-columns: 1fr; min-width: 0; }
  .boarding__main { padding: 18px 18px 16px; }
  .boarding__head { padding-bottom: 10px; margin-bottom: 14px; }
  .boarding__airline { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 55%; }
  .boarding__route { gap: 10px; margin-bottom: 14px; }
  .boarding__city { min-width: 0; }
  .boarding__city strong { font-size: 1.9rem; }
  .boarding__city span { font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .boarding__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .boarding__meta dd { font-size: 12.5px; }
  .boarding__note { margin-top: 12px; font-size: 12px; }
  .boarding__stub {
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 14px;
    padding: 14px 18px; border-left: 0; border-top: 2px dashed rgba(194, 167, 107, .45);
  }
  .boarding__stub::before { top: -10px; left: -10px; }
  .boarding__stub::after { bottom: auto; top: -10px; left: auto; right: -10px; }
  .boarding__price { text-align: left; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
  .boarding__price s { display: inline; font-size: 12px; order: 2; }
  .boarding__price strong { display: inline; font-size: 1.45rem; white-space: nowrap; order: 1; }
  .boarding__price small { flex-basis: 100%; order: 3; margin-top: 0; }
  .boarding__barcode { display: none; }
  .boarding__stub .btn { width: auto; padding-inline: 16px; white-space: nowrap; }
}
@media (max-width: 720px) {
  .boarding__route { grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr); }
  .boarding__city, .boarding__city--to { overflow: hidden; }
  .boarding__meta > div { min-width: 0; }
  .boarding__meta dd { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .boarding__stub::before, .boarding__stub::after { display: none; }
  .boarding__stub .btn { font-size: 12px; padding: 10px 14px; }
}
/* Vidéo d'ambiance : aucun contrôle natif (iOS/Android) */
.hero__ambiance::-webkit-media-controls, .hero__ambiance::-webkit-media-controls-start-playback-button,
.hero__ambiance::-webkit-media-controls-panel, .hero__ambiance::-webkit-media-controls-play-button { display: none !important; -webkit-appearance: none; opacity: 0; pointer-events: none; }
.hero__ambiance { pointer-events: none; }
/* Signature en fin de pied de page */
.footer__signature { border-top: 1px solid rgba(255, 255, 255, .06); padding-block: 14px 18px; text-align: center; font-size: 11.5px; letter-spacing: .06em; color: rgba(255, 255, 255, .35); }
.footer__signature p { margin: 0; }
.footer__signature a { color: rgba(255, 255, 255, .6); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer__signature a:hover { color: var(--gold); }
@media (max-width: 767px) { .footer__signature { padding-bottom: 22px; } }

/* ------------------------------ Stabilité horizontale (mobile) ------------------------------ */
html { overflow-x: hidden; overflow-x: clip; }
body { overflow-x: hidden; overflow-x: clip; position: relative; }
.hero, .hero__layers, .page-hero, .flightpath, .why, .trust, .marquee, .cta-final, .testimonials { overflow-x: clip; }
@media (max-width: 767px) {
  .grid.is-snap { scroll-snap-type: x proximity; overscroll-behavior-x: contain; touch-action: pan-x pan-y; }
  .hero__plane, .hero__plane-wrap, [data-parallax-x] { transform: none !important; animation: none !important; }
  .hero__clouds-track { animation-duration: 90s; }
}
/* Mobile : boutons larges toujours contenus, tampon décoratif à l'intérieur */
@media (max-width: 767px) {
  .btn--lg { padding: 18px 26px; max-width: 100%; white-space: normal; text-align: center; }
  .hero__ctas .btn, .cta-final .btn { width: 100%; }
  .why__stamp { right: 8px; }
  .why__media { overflow: hidden; }
}
.cta-final, .footer, .why__media { overflow: hidden; }
/* iOS : aucun zoom automatique au focus des champs (police >= 16px) */
@media (max-width: 767px) {
  input, select, textarea, .searchbar__field input, .searchbar__field select, .form__field input, .form__field select, .form__field textarea, .newsletter input { font-size: 16px !important; }
}
