/* =========================================================================
   CARIB ÉVASION — Système de design
   DA : bleu marine (océan) · cyan · magenta "sunset" · crème
   Typo : Fraunces (titres) · Plus Jakarta Sans (corps) · Caveat (manuscrit)
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens / variables
   ------------------------------------------------------------------------- */
:root {
  /* — Palette premium resserrée : marine + 1 accent (magenta) + neutres — */
  --blue-deep: #0c4b9c;    /* bleu profond du logo */
  --blue-bright: #1f9cd9;  /* bleu lumineux du logo */
  --navy-950: #0a3d80;     /* bleu très profond — footer, bandeaux */
  --navy-900: #0c4b9c;     /* bleu logo — titres, accents */
  --navy-800: #1573bf;     /* bleu intermédiaire */
  --royal-700: #334155;  /* slate-700 (dégradés) */
  --royal-600: #475569;  /* slate-600 */
  --azure-500: #be3a63;  /* accent unique — Deep Rose (skill-approved, désaturé) */
  --azure-400: #cf5378;
  --azure-200: #cbd5e1;  /* slate-300 — libellés sur fond sombre */
  --pink-600: #be3a63;
  --pink-500: #cf5378;
  --pink-300: #ecc2d0;
  --sunset-gold: #c79a3e;  /* doré sobre — réservé aux étoiles d'avis */
  --coral: #be3a63;

  --sand-50: #f7f8fa;     /* slate-50 — fond neutre froid */
  --sand-100: #eef1f5;
  --sand-200: #e2e8f0;

  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-muted: #64748b;
  --white: #ffffff;

  /* — Rôles sémantiques — */
  --bg: var(--sand-50);
  --bg-deep: var(--navy-900);
  --text: var(--ink-900);
  --text-muted: var(--ink-muted);
  --accent: var(--pink-600);
  --accent-2: var(--azure-500);
  --line: rgba(15, 23, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);

  /* — Dégradés signature — */
  --grad-ocean: linear-gradient(150deg, #0c4b9c 0%, #1f9cd9 100%);
  --grad-ocean-soft: linear-gradient(150deg, #0c4b9c 0%, #1573bf 100%);
  --grad-sunset: linear-gradient(135deg, #cf5378 0%, #be3a63 100%);
  --grad-pink: linear-gradient(135deg, #cf5378 0%, #be3a63 100%);
  --grad-cyan: linear-gradient(135deg, #cf5378 0%, #be3a63 100%);

  /* — Typo — */
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Outfit", system-ui, sans-serif;
  /* Police de marque brush « Hey August » (fichiers locaux, voir @font-face). */
  --font-brush: "Hey August", "Outfit", system-ui, sans-serif;

  /* — Échelle d'espacement — */
  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.8rem;
  --space-5: 2.6rem;
  --space-6: 3.6rem;
  --space-7: 5rem;
  --space-8: 7rem;
  --space-9: 9.5rem;

  /* — Rayons (courbes généreuses) — */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 46px;
  --r-pill: 999px;

  /* — Ombres (douces & diffuses) — */
  --sh-sm: 0 4px 16px rgba(15, 23, 42, 0.05);
  --sh-md: 0 20px 48px -24px rgba(15, 23, 42, 0.20);
  --sh-lg: 0 46px 92px -38px rgba(15, 23, 42, 0.30);
  --sh-glow-pink: 0 18px 40px -20px rgba(190, 58, 99, 0.32);
  --sh-glow-cyan: 0 18px 40px -20px rgba(190, 58, 99, 0.22);

  /* — Divers — */
  --container: 1200px;
  --container-wide: 1380px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--azure-400); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--pink-600); color: #fff; }

/* -------------------------------------------------------------------------
   3. Typographie
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--blue-deep);
  text-wrap: balance;
}
.h-display { font-size: clamp(2.9rem, 7.5vw, 5.6rem); font-weight: 700; letter-spacing: -0.035em; }
h1, .h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3, .h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); letter-spacing: -0.015em; }
h4, .h4 { font-size: 1.18rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
strong { font-weight: 700; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

/* Eyebrow / kicker — voix "carnet de bord" */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.kicker--center { justify-content: center; }
.kicker--light { color: rgba(255, 255, 255, 0.78); }

/* Touche manuscrite chaleureuse */
.hand {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.accent-text { color: var(--accent); }
.text-cyan { color: var(--azure-500); }

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.4rem);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(5rem, 10vw, 9.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--deep { background: var(--grad-ocean); color: #eaf2ff; }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--cream { background: var(--sand-100); }
.section--white { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* Grilles utilitaires */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
.split--wide-right { grid-template-columns: 0.85fr 1.15fr; }

/* -------------------------------------------------------------------------
   5. Boutons
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--pink-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-glow-pink); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--primary { --btn-bg: var(--grad-pink); }
.btn--cyan { --btn-bg: var(--grad-cyan); }
.btn--cyan:hover { box-shadow: var(--sh-glow-cyan); }
.btn--sunset { --btn-bg: var(--grad-sunset); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { box-shadow: none; border-color: var(--ink-900); background: var(--ink-900); --btn-fg: #fff; }
.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--navy-900);
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid var(--line-light);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.btn--glass {
  --btn-bg: rgba(255, 255, 255, 0.14);
  --btn-fg: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.24); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.btn--lg { padding: 1.15em 2em; font-size: 1.05rem; }
.btn--block { width: 100%; }

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

/* Lien fléché */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.arrow-link svg { width: 1.05em; transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 0.85em; }
.arrow-link:hover svg { transform: translateX(3px); }
.arrow-link--light { color: var(--azure-400); }

/* -------------------------------------------------------------------------
   6. Header / Navigation
   ------------------------------------------------------------------------- */
/* En-tête : transparent sur le hero, barre pleine largeur figée (flou) au scroll */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header__inner {
  pointer-events: auto;
  width: 100%;
  max-width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  transition: padding 0.4s var(--ease);
}
/* État figé au scroll : barre pleine largeur, verre dépoli (pas de capsule) */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px -20px rgba(15, 23, 42, 0.45);
}
.site-header.is-scrolled .site-header__inner { padding: 0.55rem 0; }

/* — Couleurs du menu selon le contexte —
   Par défaut (hero sombre des pages intérieures) : texte clair en transparent. */
.site-header .nav__link { color: rgba(255, 255, 255, 0.9); }
.site-header .nav__link[aria-current="page"] { color: #fff; }
.site-header .header-phone { color: #fff; }
.site-header .header-phone svg { color: #fff; }
.nav-toggle { color: #fff; }

/* Accueil (hero clair) : texte sombre en transparent. */
.theme-light-hero .site-header:not(.is-scrolled) .nav__link { color: var(--ink-700); }
.theme-light-hero .site-header:not(.is-scrolled) .nav__link[aria-current="page"] { color: var(--pink-600); }
.theme-light-hero .site-header:not(.is-scrolled) .header-phone { color: var(--ink-900); }
.theme-light-hero .site-header:not(.is-scrolled) .header-phone svg { color: var(--pink-600); }
.theme-light-hero .site-header:not(.is-scrolled) .nav-toggle { color: var(--ink-900); }

/* État figé (toutes pages) : texte sombre sur le verre clair. */
.site-header.is-scrolled .nav__link { color: var(--ink-700); }
.site-header.is-scrolled .nav__link[aria-current="page"] { color: var(--pink-600); }
.site-header.is-scrolled .header-phone { color: var(--ink-900); }
.site-header.is-scrolled .header-phone svg { color: var(--pink-600); }
.site-header.is-scrolled .nav-toggle { color: var(--ink-900); }

/* Repli si le flou de fond n'est pas supporté : verre plus opaque au scroll */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background: rgba(255, 255, 255, 0.96); }
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__logo {
  height: 56px; width: auto; display: block;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.site-header:not(.is-scrolled) .brand__logo { filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.28)); }
.is-scrolled .brand__logo { height: 46px; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
  height: 2px;
  background: var(--pink-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--pink-600); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link { cursor: default; }
.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.65rem 0.8rem; border-radius: var(--r-sm);
  color: var(--ink-900); font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s var(--ease);
}
.nav__menu a small { font-weight: 500; color: var(--text-muted); font-size: 0.8rem; }
.nav__menu a:hover { background: var(--sand-100); }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.header-phone svg { width: 1.05rem; color: var(--pink-600); }

/* Burger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; position: relative; background: rgba(255,255,255,0.12); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span { transform: translate(-50%, -50%); }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.is-scrolled .nav-toggle, .header--on-light .nav-toggle { background: rgba(8,18,39,0.06); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  background: var(--grad-ocean);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  object-fit: cover;
  object-position: center 40%;
  width: 100%; height: 100%;
  opacity: 1;
}
.hero::after { /* voile dégradé pour lisibilité, photo préservée */
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(95deg, rgba(7,17,32,0.74) 0%, rgba(7,17,32,0.42) 42%, rgba(7,17,32,0.08) 100%),
    linear-gradient(to top, rgba(7,17,32,0.55) 0%, rgba(7,17,32,0) 42%);
}
.hero__sun {
  position: absolute;
  top: -12%; right: -8%;
  width: clamp(360px, 48vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 116, 0.20) 0%, rgba(225, 29, 116, 0) 68%);
  z-index: -1;
  pointer-events: none;
}
.hero__inner { max-width: 620px; position: relative; }
.hero__content { max-width: 660px; position: relative; }
.hero--photo { min-height: min(92vh, 880px); }
.hero--photo .hero__lead { color: #e7edf6; }
.hero__title { font-size: clamp(2.7rem, 6.6vw, 5.3rem); color: #fff; font-weight: 700; letter-spacing: -0.038em; line-height: 1.06; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead { margin-top: 1.4rem; max-width: 560px; color: #cfe0f7; font-size: clamp(1.1rem, 1.8vw, 1.32rem); }
.hero__cta { margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,0.6), transparent); animation: scroll-line 2s var(--ease) infinite; }

/* -------------------------------------------------------------------------
   Hero accueil « split » — blanc à gauche, fondu vers la photo à droite
   ------------------------------------------------------------------------- */
.hero--split {
  background: #fff;
  color: var(--ink-900);
  min-height: min(90vh, 840px);
  align-items: center;
  overflow: hidden;
}
.hero--split::after { display: none; } /* neutralise le voile sombre du hero de base */

/* Panneau photo plein bord, à droite */
.hero--split .hero__media { position: absolute; inset: 0 0 0 auto; width: 58%; z-index: -2; }
.hero--split .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% 52%; opacity: 1; }
/* Fondu de la photo vers le blanc (bord gauche) + léger voile haut (lisibilité du menu) */
.hero--split .hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.82) 15%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 16%);
}

/* Contenu texte, sur fond clair */
.hero--split .hero__content { max-width: 680px; position: relative; }
.hero--split .hero__title { color: var(--navy-900); font-size: clamp(2rem, 4.4vw, 3.85rem); line-height: 1.05; }
.hero--split .hero__title em { color: var(--accent); font-style: normal; }
.hero--split .hero__lead { color: var(--ink-700); }
.hero--split .hero__scroll { color: var(--ink-500); }
.hero--split .hero__scroll span { background: linear-gradient(var(--ink-500), transparent); }

/* Eyebrow façon pastille */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1em; border-radius: var(--r-pill);
  background: rgba(190, 58, 99, 0.08); color: var(--pink-600);
  border: 1px solid rgba(190, 58, 99, 0.2);
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Police de marque « Hey August » (Khurasan) — libre usage perso + commercial.
   Fichiers locaux dans assets/fonts/ (voir Hey-August-LICENSE.txt). */
@font-face {
  font-family: "Hey August";
  src: url("../fonts/hey-august.woff2") format("woff2"),
       url("../fonts/hey-august.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Titre de marque « CARIB EVASION » (brush), arqué (dôme) et centré sur la page.
   Le texte courbé impose un SVG + textPath ; la police s'applique via --font-brush. */
.hero--split .hero__brand {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.hero__brand__svg {
  width: min(640px, 84%);
  height: auto;
  overflow: visible;
}
.hero__brand__text {
  font-family: var(--font-brush);
  font-size: 145px;          /* unités du viewBox */
  letter-spacing: -5px;       /* lettres rapprochées */
  fill: var(--navy-900);
  stroke: var(--navy-900);
  stroke-width: 2.5px;        /* léger gras (faux-bold maîtrisé) */
  paint-order: stroke;
  stroke-linejoin: round;
}

/* Ligne de réassurance sous les CTA */
/* Groupe CTA + preuve sociale : keypoints à gauche, badge avis Trustindex à droite */
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; }
.hero__proof { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(1.1rem, 3vw, 2.2rem); margin-top: 1.7rem; }
.hero__trust { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.hero__rating { flex-shrink: 0; max-width: 300px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.88rem; font-weight: 600; color: var(--ink-700); }
.hero__trust svg { width: 1.1rem; height: 1.1rem; color: var(--pink-600); flex-shrink: 0; }

/* Carte météo / marée — version claire posée sur la photo */
.hero--split .hero__weather {
  right: clamp(1.5rem, 5vw, 3.5rem); bottom: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 26px 60px -28px rgba(15, 23, 42, 0.5);
}
.hero--split .hero__weather .w-loc { color: var(--ink-500); }
.hero--split .hero__weather .w-deg { color: var(--navy-900); }
.hero--split .hero__weather .w-desc { color: var(--ink-700); }
.hero--split .hero__weather .w-temp svg { color: var(--pink-600); }
.hero--split .hero__weather .w-hr { background: rgba(15, 23, 42, 0.1); }
.hero--split .hero__weather .w-tide span { color: var(--ink-500); }
.hero--split .hero__weather .w-tide strong { color: var(--navy-900); }

/* Responsive : la photo passe en fond plein écran, voile blanc en haut
   (zone texte) qui se dissipe vers le bas pour révéler le bateau */
@media (max-width: 920px) {
  .hero--split .hero__media { width: 100%; }
  .hero--split .hero__media::after {
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.45) 68%, rgba(255, 255, 255, 0.05) 100%),
      linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 75%);
  }
  .hero--split .hero__content { max-width: none; }
  .hero--split .hero__scroll { display: none; }
}

/* Hero accueil — composition asymétrique texte + photo */
.hero--home { align-items: center; }
.hero--home .hero__inner { max-width: none; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--sh-lg);
  rotate: 0deg; transition: rotate 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero--home:hover .hero__frame { rotate: 0deg; }
.hero__frame-sm {
  position: absolute; left: -8%; bottom: -6%; width: 42%;
  aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.92); box-shadow: var(--sh-lg);
  rotate: -4deg;
}
.hero__frame-sm img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; right: -5%; top: 8%;
  background: rgba(252, 247, 239, 0.96); backdrop-filter: blur(8px);
  color: var(--ink-900); border-radius: var(--r-md);
  padding: 0.85rem 1.1rem; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__badge .stars { display: flex; }
.hero__badge strong { font-family: var(--font-display); font-size: 1.3rem; display: block; line-height: 1; }
.hero__badge span { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin: 1rem auto 0; }
}

/* Bandeau réassurance sous le hero */
.trust-strip { background: var(--navy-950); color: #cfe0f7; }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 4vw, 3.5rem); padding-block: 1.3rem; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.92rem; }
.trust-item svg { width: 1.3rem; color: var(--azure-400); flex-shrink: 0; }

/* -------------------------------------------------------------------------
   8. Carnet de bord (stats)
   ------------------------------------------------------------------------- */
.logbook { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-light); }
.logbook--on-light { background: var(--line); border-color: var(--line); }
.stat { padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem,2vw,1.6rem); background: var(--navy-900); text-align: center; }
.logbook--on-light .stat { background: var(--white); }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; color: #fff; letter-spacing: -0.03em; }
.logbook--on-light .stat__num { color: var(--navy-900); }
.stat__num .unit { color: var(--azure-400); }
.logbook--on-light .stat__num .unit { color: var(--pink-600); }
.stat__label { margin-top: 0.6rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--azure-200); }
.logbook--on-light .stat__label { color: var(--text-muted); }

/* -------------------------------------------------------------------------
   9. Cartes activités
   ------------------------------------------------------------------------- */
.cards { display: grid; gap: clamp(1.2rem, 2.4vw, 1.8rem); }

.activity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-md);
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.activity-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grad-ocean-soft);
}
.activity-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.activity-card:hover .activity-card__media img { transform: scale(1.07); }
.activity-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,22,52,0.55), transparent 55%); }
.activity-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.4em 0.9em; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92); color: var(--navy-900);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.activity-card__price {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  font-family: var(--font-display); font-weight: 600; color: #fff;
  font-size: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.activity-card__price small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; display: block; opacity: 0.85; letter-spacing: 0.05em; text-transform: uppercase; }
.activity-card__body { padding: clamp(1.4rem, 2.6vw, 2rem); display: flex; flex-direction: column; flex: 1; gap: 0.8rem; }
.activity-card__body h3 { letter-spacing: -0.02em; }
.activity-card__body p { color: var(--text-muted); font-size: 0.98rem; }
.activity-card__species { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.4rem; }
.activity-card__foot { margin-top: 1.1rem; }

/* Pills / badges */
.pill { display: inline-flex; align-items: center; gap: 0.4em; padding: 0.35em 0.8em; border-radius: var(--r-pill); font-size: 0.78rem; font-weight: 700; background: var(--sand-100); color: var(--ink-700); }
.pill--cyan { background: rgba(14,29,51,0.05); color: var(--ink-700); }
.pill--pink { background: rgba(228,24,111,0.1); color: var(--pink-600); }
.pill svg { width: 0.95em; }

/* -------------------------------------------------------------------------
   9b. Showcase activité (bloc zig-zag image/texte, une section par activité)
   ------------------------------------------------------------------------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.showcase + .showcase { margin-top: clamp(3.5rem, 7vw, 6rem); }
.showcase__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--sh-md); }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.showcase:hover .showcase__media img { transform: scale(1.04); }
.showcase__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.42), transparent 52%); }
.showcase__tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; padding: 0.45em 0.95em; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.94); color: var(--navy-900); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.showcase__price { position: absolute; bottom: 1.1rem; right: 1.25rem; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.1; text-align: right; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45); }
.showcase__price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; }
.showcase__body h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.showcase__body > p { color: var(--text-muted); margin-top: 0.9rem; font-size: 1.05rem; max-width: 46ch; }
.showcase__meta { display: flex; flex-wrap: wrap; gap: 0.35rem 1.5rem; margin-top: 1.1rem; font-size: 0.92rem; color: var(--ink-700); font-weight: 600; }
.showcase__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.showcase__meta svg { width: 1.05rem; color: var(--accent); }
.showcase__pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
.showcase__cta { margin-top: 1.6rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.showcase--reverse .showcase__media { order: 2; }
@media (max-width: 820px) {
  .showcase { grid-template-columns: 1fr; gap: 1.6rem; }
  .showcase--reverse .showcase__media { order: 0; }
}

/* -------------------------------------------------------------------------
   10. Cartes "feature" / valeurs
   ------------------------------------------------------------------------- */
.feature {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: rgba(190, 58, 99, 0.1); color: var(--accent);
}
.section--deep .feature__icon { background: rgba(255, 255, 255, 0.1); color: #fff; }
.feature__icon svg { width: 1.6rem; }
.feature--cream { background: var(--sand-50); }
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--text-muted); margin-top: 0.5rem; font-size: 0.98rem; }

/* Bloc image + texte avec cadre stylé */
.framed-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
  background: var(--grad-ocean-soft);
}
.framed-media img { width: 100%; height: 100%; object-fit: cover; }
.framed-media--wide { aspect-ratio: 3 / 2; }
.media-badge {
  position: absolute; z-index: 3;
  padding: 1rem 1.3rem; border-radius: var(--r-md);
  background: rgba(252,247,239,0.95); backdrop-filter: blur(6px);
  box-shadow: var(--sh-md); max-width: 240px;
}
.media-badge--br { bottom: 1.3rem; right: 1.3rem; }
.media-badge--bl { bottom: 1.3rem; left: 1.3rem; }
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--pink-600); line-height: 1; }
.media-badge span { font-size: 0.84rem; color: var(--text-muted); font-weight: 600; }

/* -------------------------------------------------------------------------
   11. Liste "ce qui est inclus"
   ------------------------------------------------------------------------- */
.check-list { display: grid; gap: 0.85rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; }
.check-list svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; margin-top: 0.05rem; color: var(--ink-900); }
.section--deep .check-list svg { color: rgba(255, 255, 255, 0.85); }
.check-list--grid { grid-template-columns: repeat(2, 1fr); column-gap: 1.6rem; }

/* -------------------------------------------------------------------------
   12. Étapes / déroulé d'une sortie
   ------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 1.4rem;
}
.step:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 58px; bottom: -0.4rem; width: 2px;
  background: linear-gradient(var(--azure-400), transparent);
}
.step__num {
  counter-increment: step;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: #fff;
  background: var(--grad-ocean-soft); box-shadow: var(--sh-glow-cyan);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h4 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.step p { color: var(--text-muted); font-size: 0.98rem; }
.section--deep .step p { color: #b9caea; }
.section--deep .step__num { background: var(--white); color: var(--navy-900); }

/* -------------------------------------------------------------------------
   13. Cartes tarifs
   ------------------------------------------------------------------------- */
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
}
.price-card--featured { border-color: transparent; box-shadow: var(--sh-lg); transform: translateY(-6px); }
.price-card--featured::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad-sunset); }
.price-card__flag { position: absolute; top: 1.3rem; right: -2.6rem; rotate: 45deg; background: var(--grad-sunset); color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 3rem; }
.price-card__name { font-family: var(--font-display); font-size: 1.5rem; }
.price-card__price { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,5vw,3.2rem); line-height: 1; color: var(--navy-900); }
.price-card__price small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.price-card__meta { font-size: 0.92rem; color: var(--text-muted); }

/* -------------------------------------------------------------------------
   14. Avis / témoignages
   ------------------------------------------------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
  height: 100%;
}
.stars { display: inline-flex; gap: 0.15rem; color: var(--sunset-gold); }
.stars svg { width: 1.15rem; }
.testimonial p { font-size: 1.02rem; line-height: 1.6; }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-ocean-soft); color: #fff; display: grid; place-items: center; font-weight: 800; flex-shrink: 0; }
.testimonial__author strong { display: block; font-size: 0.95rem; }
.testimonial__author span { font-size: 0.82rem; color: var(--text-muted); }
.review-source { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   15. FAQ (accordéon)
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.faq__item[open] { box-shadow: var(--sh-md); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; font-weight: 700; font-size: 1.05rem; cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--font-display); font-size: 1.6rem; color: var(--pink-600); transition: transform 0.3s var(--ease); line-height: 1; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--text-muted); }

/* -------------------------------------------------------------------------
   16. CTA bande
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.6rem, 6vw, 5rem);
  background: var(--grad-ocean);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band__sun { position: absolute; bottom: -60%; left: -8%; width: 520px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(225, 29, 116, 0.28) 0%, rgba(225, 29, 116, 0) 66%); z-index: -1; pointer-events: none; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 560px; margin: 1rem auto 2rem; color: #eef6fd; }
.cta-band .btn-row { justify-content: center; }

/* -------------------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------------------- */
.site-footer { background: linear-gradient(165deg, #0c4b9c 0%, #08366e 100%); color: #c2d4ee; padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 3vw, 2.6rem); }
.footer-brand .brand__name { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: #aebfdd; transition: color 0.25s var(--ease), padding 0.25s var(--ease); font-size: 0.96rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.96rem; }
.footer-contact svg { width: 1.15rem; color: var(--azure-400); flex-shrink: 0; margin-top: 0.15rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.footer-social a:hover { background: var(--pink-600); transform: translateY(-3px); color: #fff; }
.footer-social svg { width: 1.2rem; }
.footer-tag { font-family: var(--font-body); font-style: italic; font-weight: 500; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--accent); margin-bottom: 0.6rem; }
.footer-bottom { margin-top: clamp(2.4rem, 4vw, 3.4rem); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; color: #8094bd; }
.footer-bottom a { color: #8094bd; }
.footer-bottom a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   18. Vagues SVG (transitions de section)
   ------------------------------------------------------------------------- */
.wave { display: block; width: 100%; height: auto; }
.wave--flip { transform: scaleY(-1); }
/* Transitions nettes & minimalistes : vagues décoratives masquées */
.section-divider { display: none; }

/* -------------------------------------------------------------------------
   19. Fil d'Ariane
   ------------------------------------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink-600); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line); }
.section--deep .breadcrumb, .section--deep .breadcrumb a { color: #9db4e0; }

/* Hero secondaire (pages intérieures) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--grad-ocean);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; mix-blend-mode: luminosity; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(100deg, rgba(9,48,108,0.9), rgba(31,156,217,0.45)); }
.page-hero h1 { color: #fff; max-width: 16ch; margin-top: 1.2rem; font-weight: 700; letter-spacing: -0.035em; }
.page-hero__lead { margin-top: 1.2rem; max-width: 580px; color: #cfe0f7; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }

/* -------------------------------------------------------------------------
   20. Formulaire / réservation
   ------------------------------------------------------------------------- */
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.form-field label { font-weight: 700; font-size: 0.9rem; }
.form-field .hint { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.input, .select, .textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(225,29,116,0.14); }
.textarea { resize: vertical; min-height: 120px; }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.8rem; }
.choice {
  position: relative; display: block; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem 1.2rem; background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:hover { border-color: var(--azure-400); transform: translateY(-2px); }
.choice__title { font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.choice__price { font-family: var(--font-display); color: var(--pink-600); font-size: 1.1rem; }
.choice__desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.choice:has(input:checked) { border-color: var(--pink-600); box-shadow: 0 0 0 3px rgba(228,24,111,0.16); background: #fff; }
.choice:has(input:checked)::after { content: "✓"; position: absolute; top: 0.7rem; right: 0.9rem; color: var(--pink-600); font-weight: 800; }

.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.stepper button { width: 44px; height: 44px; font-size: 1.3rem; font-weight: 700; color: var(--navy-900); transition: background 0.2s; }
.stepper button:hover { background: var(--sand-100); }
.stepper input { width: 52px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 1.05rem; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

.summary {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); border: 1px solid var(--line);
  overflow: hidden;
}
.summary__head { padding: 1.4rem 1.6rem; background: var(--grad-ocean); color: #fff; }
.summary__head h3 { color: #fff; }
.summary__body { padding: 1.6rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: 0.96rem; }
.summary__row span:first-child { color: var(--text-muted); }
.summary__row strong { font-weight: 700; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--ink-900); }
.summary__total .amount { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy-900); line-height: 1; }
.summary__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

.payment-hint { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--r-md); background: rgba(21,166,224,0.08); border: 1px dashed var(--azure-400); font-size: 0.86rem; color: var(--ink-700); }

/* -------------------------------------------------------------------------
   21. Carte d'info pratique
   ------------------------------------------------------------------------- */
.info-card { display: flex; gap: 1rem; padding: 1.4rem; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--line); }
.info-card__icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: var(--sand-100); display: grid; place-items: center; color: var(--pink-600); }
.info-card__icon svg { width: 1.4rem; }
.info-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-card p { font-weight: 600; }

/* Note éditeur (placeholder à remplacer) */
.editor-note {
  border: 1px dashed var(--coral);
  background: rgba(255,122,89,0.07);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  color: #9a4a2f;
}

/* Galerie photos (placeholders) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.gallery__item { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; background: var(--grad-ocean-soft); position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }

/* Placeholder visuel (en attendant les vraies photos) */
.img-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 14px, transparent 14px 28px),
    var(--grad-ocean-soft);
  color: rgba(255,255,255,0.85);
}
.img-ph__inner { text-align: center; padding: 1rem; }
.img-ph svg { width: 2.6rem; margin: 0 auto 0.6rem; opacity: 0.85; }
.img-ph span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; display: block; opacity: 0.9; }

/* -------------------------------------------------------------------------
   21b. Article (prose)
   ------------------------------------------------------------------------- */
.prose { max-width: 740px; }
.prose h2 { margin-top: 2.6rem; margin-bottom: 0.8rem; }
.prose h3 { margin-top: 1.9rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1.15rem; color: var(--ink-700); font-size: 1.07rem; line-height: 1.75; }
.prose ul { margin: 0 0 1.3rem; display: grid; gap: 0.55rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--ink-700); }
.prose ul li::before { content: ""; position: absolute; left: 0.25rem; top: 0.68em; width: 0.5rem; height: 0.5rem; background: var(--azure-500); border-radius: 2px; transform: rotate(45deg); }
.prose a { color: var(--pink-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 4px solid var(--pink-500); padding: 0.3rem 0 0.3rem 1.3rem; margin: 1.8rem 0; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.3; color: var(--navy-900); }
.prose figure { margin: 1.8rem 0; }
.prose figure img { border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.prose figcaption { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; text-align: center; }

/* -------------------------------------------------------------------------
   21c. Galerie Bento (asymétrique) + widget météo (glass)
   ------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.bento__item { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.bento__item:hover img { transform: scale(1.05); }
.bento__item--media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent 55%); }
.bento__cap { position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }
.bento .b-a { grid-column: span 2; grid-row: span 2; }
.bento .b-wide { grid-column: span 2; }
.bento__card { display: flex; flex-direction: column; justify-content: space-between; padding: 1.6rem; border-radius: var(--r-md); }
.bento__card--dark { background: var(--grad-ocean); color: #fff; }
.bento__card--dark .num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.bento__card--dark .lbl { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; margin-top: 0.3rem; }
.bento__card--accent { background: var(--grad-pink); color: #fff; cursor: pointer; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.bento__card--accent:hover { transform: translateY(-4px); box-shadow: var(--sh-glow-pink); }
.bento__card--accent h3 { color: #fff; font-size: 1.4rem; }
.bento__card--accent .go { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.bento__card--accent .go svg { width: 1.1em; transition: transform 0.35s var(--ease); }
.bento__card--accent:hover .go svg { transform: translateX(5px); }
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 168px; }
  .bento .b-a { grid-column: span 2; }
  .bento .b-wide { grid-column: span 2; }
}

/* Widget météo / marée — verre dépoli sur la photo du hero */
.hero__weather {
  position: absolute; right: clamp(1.5rem, 4vw, 3rem); bottom: clamp(5.5rem, 7vw, 7rem); z-index: 2;
  width: min(78vw, 308px); color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px; padding: 1.1rem 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), var(--sh-md);
}
.hero__weather .w-loc { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.hero__weather .w-temp { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.55rem; }
.hero__weather .w-temp svg { width: 30px; height: 30px; flex-shrink: 0; }
.hero__weather .w-deg { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.hero__weather .w-desc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.85); line-height: 1.3; }
.hero__weather .w-hr { height: 1px; background: rgba(255, 255, 255, 0.22); margin: 0.85rem 0; }
.hero__weather .w-tide { display: flex; justify-content: space-between; gap: 0.5rem; }
.hero__weather .w-tide span { display: block; font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.hero__weather .w-tide strong { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 600px) { .hero__weather { display: none; } }

/* -------------------------------------------------------------------------
   Section pêche — duo de cartes dynamiques (inspiration flyer Carib Évasion)
   ------------------------------------------------------------------------- */
.peche em { color: var(--accent); font-style: normal; }
.peche-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.peche-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.peche-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.peche-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.peche-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.peche-card:hover .peche-card__media img { transform: scale(1.06); }
.peche-card__media::after { /* voile haut : lisibilité du label brush */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8, 18, 39, 0.45) 0%, rgba(8, 18, 39, 0) 40%);
}
.peche-card__cat {
  position: absolute; top: 0.6rem; left: 1.1rem; z-index: 2;
  font-family: var(--font-brush); line-height: 1;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.peche-card__price {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  display: inline-flex; align-items: baseline; gap: 0.2rem;
  background: var(--grad-pink); color: #fff;
  padding: 0.5rem 0.95rem; border-radius: var(--r-pill);
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em;
  box-shadow: 0 12px 26px -12px rgba(190, 58, 99, 0.6);
}
.peche-card__price small { font-weight: 600; font-size: 0.72rem; opacity: 0.92; }
.peche-card__body { display: flex; flex-direction: column; gap: 0.9rem; padding: clamp(1.4rem, 2.4vw, 2rem); flex: 1; }
.peche-card__body h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); color: var(--navy-900); letter-spacing: -0.02em; }
.peche-card__body > p { color: var(--ink-700); }
.peche-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.peche-points li { position: relative; padding-left: 1.6rem; color: var(--ink-700); font-weight: 600; font-size: 0.95rem; }
.peche-points li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--accent); }
.peche-card__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.4rem; margin-top: auto; padding-top: 0.4rem; }
@media (max-width: 820px) { .peche-duo { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Section excursions — tuiles immersives plein cadre (texte sur la photo)
   ------------------------------------------------------------------------- */
.excursions em { color: var(--accent); font-style: normal; }
.exc-stack { display: grid; gap: clamp(1.4rem, 3vw, 2rem); margin-top: clamp(2rem, 4vw, 3rem); }
.exc-tile {
  position: relative; isolation: isolate;
  min-height: clamp(340px, 40vw, 460px);
  display: flex; align-items: center;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.exc-tile__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.exc-tile:hover .exc-tile__bg { transform: scale(1.06); }
.exc-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(7, 17, 32, 0.9) 0%, rgba(7, 17, 32, 0.62) 40%, rgba(7, 17, 32, 0.08) 80%);
}
.exc-tile__content { max-width: 540px; padding: clamp(1.6rem, 3.5vw, 3rem); color: #fff; }
.exc-tile__content h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin: 0.35rem 0 0.6rem; }
.exc-tile__content > p { color: #d8e3f4; max-width: 46ch; }
.exc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0 1.4rem; padding: 0; list-style: none; }
.exc-tags li {
  font-size: 0.78rem; font-weight: 700; color: #fff;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35em 0.85em; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.exc-tile__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.4rem; }
.exc-price { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; white-space: nowrap; }
.exc-price small { font-size: 0.78rem; font-weight: 600; color: rgba(255, 255, 255, 0.72); }
.exc-tile .arrow-link { color: #fff; }
.exc-tile .arrow-link:hover { color: var(--pink-300); }
/* Variante alignée à droite */
.exc-tile--right { justify-content: flex-end; }
.exc-tile--right::after { background: linear-gradient(to left, rgba(7, 17, 32, 0.9) 0%, rgba(7, 17, 32, 0.62) 40%, rgba(7, 17, 32, 0.08) 80%); }
.exc-tile--right .exc-tile__content { text-align: right; }
.exc-tile--right .exc-tile__content > p { margin-left: auto; }
.exc-tile--right .exc-tags,
.exc-tile--right .exc-tile__foot { justify-content: flex-end; }
.exc-tile--right .kicker { flex-direction: row-reverse; }
@media (max-width: 720px) {
  .exc-tile { align-items: flex-end; }
  .exc-tile::after,
  .exc-tile--right::after { background: linear-gradient(to top, rgba(7, 17, 32, 0.94) 0%, rgba(7, 17, 32, 0.62) 52%, rgba(7, 17, 32, 0.25) 100%); }
  .exc-tile__content, .exc-tile--right .exc-tile__content { max-width: none; text-align: left; }
  .exc-tile--right { justify-content: flex-start; }
  .exc-tile--right .exc-tile__content > p { margin-left: 0; }
  .exc-tile--right .exc-tags, .exc-tile--right .exc-tile__foot { justify-content: flex-start; }
  .exc-tile--right .kicker { flex-direction: row; }
}

/* Mot accentué (rose) dans les titres de section */
.section-head h2 em { color: var(--accent); font-style: normal; }

/* -------------------------------------------------------------------------
   Fond accueil — dégradé doux continu (transitions adoucies, plus de coupures)
   Les sections claires deviennent transparentes : le dégradé du body se voit
   à travers, les sections sombres restent des accents posés dessus.
   ------------------------------------------------------------------------- */
body.theme-light-hero {
  background: linear-gradient(168deg, #ffffff 0%, #f2f7fc 46%, #e6eef7 100%);
  background-attachment: fixed;
}
.theme-light-hero .section--white,
.theme-light-hero .section--cream { background: transparent; }

/* -------------------------------------------------------------------------
   Section À propos / capitaine — éditorial dynamique
   ------------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 35%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.about__stat {
  position: absolute; left: -1.25rem; bottom: -1.25rem;
  background: #fff; border-radius: var(--r-lg);
  padding: 0.8rem 1.5rem 0.95rem; box-shadow: var(--sh-lg);
  text-align: center; border: 1px solid var(--line);
}
.about__stat-num { display: block; font-family: var(--font-brush); font-size: clamp(2.8rem, 5vw, 4rem); line-height: 0.9; color: var(--accent); }
.about__stat-txt { display: block; margin-top: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--ink-700); line-height: 1.3; }

.about__body .lead { margin-bottom: 1.9rem; }
.about__values { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.6rem; }
.about__values li { display: flex; gap: 0.9rem; align-items: flex-start; }
.about__values-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(190, 58, 99, 0.1); color: var(--accent);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.about__values-ic svg { width: 1.4rem; height: 1.4rem; }
.about__values li:hover .about__values-ic { background: var(--grad-pink); color: #fff; transform: translateY(-4px) rotate(-4deg); }
.about__values h3 { font-size: 1.06rem; margin-bottom: 0.25rem; color: var(--navy-900); letter-spacing: -0.01em; }
.about__values p { font-size: 0.92rem; color: var(--ink-700); line-height: 1.55; }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .about__media { max-width: 440px; }
  .about__values { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Widget d'avis Trustindex */
.reviews-embed { margin-top: clamp(1.6rem, 3vw, 2.6rem); }

/* Logo en blanc dans le footer (sur fond bleu) */
.footer-brand .brand__logo { filter: brightness(0) invert(1); }

/* -------------------------------------------------------------------------
   Bouton flottant « Réserver ma sortie pêche » (dépliable) + modal
   ------------------------------------------------------------------------- */
.fab-book {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 95;
  display: inline-flex; align-items: center;
  height: 60px; padding: 0 18px;
  border-radius: 999px;
  background: var(--grad-pink); color: #fff;
  box-shadow: 0 16px 34px -12px rgba(190, 58, 99, 0.5);
  cursor: pointer;
  transition: padding 0.4s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}
.fab-book:hover { box-shadow: 0 22px 44px -12px rgba(190, 58, 99, 0.6); }
.fab-book:active { transform: scale(0.97); }
.fab-book__ic { width: 1.65rem; height: 1.65rem; flex-shrink: 0; position: relative; z-index: 1; }
.fab-book__label {
  max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap;
  font-weight: 700; font-size: 0.96rem; margin-left: 0; position: relative; z-index: 1;
  transition: max-width 0.45s var(--ease), opacity 0.3s var(--ease), margin 0.45s var(--ease);
}
/* dépliage au survol (souris uniquement) */
@media (hover: hover) and (pointer: fine) {
  .fab-book:hover .fab-book__label,
  .fab-book:focus-visible .fab-book__label { max-width: 260px; opacity: 1; margin-left: 0.6rem; }
}
/* pulsation discrète */
.fab-book::after { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--accent); animation: fab-ping 2.4s var(--ease) infinite; pointer-events: none; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: grid; place-items: center; padding: 1.2rem; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8, 24, 56, 0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: modal-fade 0.3s var(--ease); }
.modal__box {
  position: relative; z-index: 1;
  width: min(560px, 100%); background: #fff;
  border-radius: var(--r-lg); padding: clamp(1.9rem, 4vw, 2.8rem);
  box-shadow: var(--sh-lg); text-align: center;
  animation: modal-pop 0.35s var(--ease-out);
}
.modal__close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-700);
  background: var(--sand-100); transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.modal__close:hover { background: var(--accent); color: #fff; }
.modal__close svg { width: 1.2rem; height: 1.2rem; }
.modal__title { margin-bottom: 0.6rem; }
.modal__placeholder { color: var(--ink-700); }
body.modal-open { overflow: hidden; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------------------
   22. Grain overlay
   ------------------------------------------------------------------------- */
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------------------
   23. Animations
   ------------------------------------------------------------------------- */
@keyframes sun-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(-1.5deg); } }
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes float-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Reveal au scroll */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

.float-soft { animation: float-soft 6s ease-in-out infinite; }

/* WhatsApp flottant */
.fab-wa {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(190, 58, 99, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fab-wa:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 20px 42px -12px rgba(190, 58, 99, 0.5); }
.fab-wa svg { width: 1.9rem; }
.fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--accent); animation: fab-ping 2.4s var(--ease) infinite; }
@keyframes fab-ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }

/* -------------------------------------------------------------------------
   24. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .header-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  /* menu mobile : .nav devient un tiroir (caché par transform, donc reste dans le DOM) */
  .nav {
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(252,247,239,0.98); backdrop-filter: blur(12px);
    padding: 1rem clamp(1.2rem,4vw,2.4rem) 1.6rem;
    box-shadow: var(--sh-lg);
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  .nav .nav__link { color: var(--ink-900) !important; padding: 0.9rem 0.4rem; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .nav__link::after { display: none; }
  .nav .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0.5rem 0.8rem; min-width: 0; }
  .nav .nav__item--has-menu > .nav__link { color: var(--pink-600) !important; }
  .nav .btn { margin-top: 1rem; text-align: center; }
}
@media (max-width: 760px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .logbook { grid-template-columns: repeat(2, 1fr); }
  .check-list--grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .hero { min-height: auto; }
  .summary { position: static; }
}
@media (max-width: 460px) {
  .logbook { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------------------------------
   25. Réduction de mouvement
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
