/* =========================================================================
   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; }
picture { display: contents; }
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;
  padding: 0.5rem 0.95rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--pink-600);
  transition: background 0.25s var(--ease), color 0.2s var(--ease), border-color 0.25s var(--ease);
}
.header-phone svg { width: 1.05rem; color: var(--pink-600); }
.site-header .header-phone:hover { background: var(--pink-600); border-color: var(--pink-600); color: #fff; }
.site-header .header-phone:hover svg { color: #fff; }

/* 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: translate(-50%, -50%) translateY(-6px); }
.nav-toggle span::after { transform: translate(-50%, -50%) 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: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translate(-50%, -50%) 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);
}
.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; }

/* Engagements éditoriaux (à propos) — numéro brush en chevauchement, sans carte blanche */
.pledges { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.2rem, 4.5vw, 3.6rem); margin-top: clamp(3.4rem, 6vw, 4.6rem); }
.pledge { position: relative; padding-top: clamp(2.4rem, 4vw, 3.2rem); }
.pledge__num {
  position: absolute; top: 0; left: -0.5rem; z-index: 0; pointer-events: none;
  font-family: var(--font-brush); font-weight: 400; line-height: 0.7;
  font-size: clamp(4.4rem, 8vw, 6.6rem); color: var(--pink-300);
}
.pledge__head { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.75rem; }
.pledge__ic {
  width: 2.8rem; height: 2.8rem; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 50%; background: var(--grad-ocean); color: #fff;
  box-shadow: 0 10px 20px -10px rgba(12, 75, 156, 0.55);
}
.pledge__ic svg { width: 1.4rem; }
.pledge h3 { font-size: 1.3rem; color: var(--blue-deep); }
.pledge p { position: relative; z-index: 1; color: var(--text-muted); margin-top: 0.8rem; font-size: 0.99rem; line-height: 1.6; }
@media (max-width: 760px) { .pledges { grid-template-columns: 1fr; gap: 1.2rem; } .pledge { padding-top: 2.8rem; } }

/* Pages légales (mentions légales, confidentialité) — prose sobre */
.legal { max-width: 760px; }
.legal > h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--blue-deep); margin-top: 2.6rem; }
.legal > h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; }
.legal p { color: var(--ink-700); margin-top: 0.85rem; line-height: 1.7; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-top: 0.85rem; color: var(--ink-700); }
.legal li { margin-top: 0.35rem; line-height: 1.6; }
.legal a { color: var(--pink-600); font-weight: 600; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.9rem; }
.legal th, .legal td { text-align: left; padding: 0.6rem 0.75rem; border: 1px solid var(--line); vertical-align: top; }
.legal thead th { background: var(--sand-100); color: var(--blue-deep); font-weight: 700; }
.legal td { color: var(--ink-700); }
.legal .cc-manage { color: var(--pink-600); font-weight: 700; }
.legal__updated { display: inline-block; color: var(--ink-500); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.6rem; }

/* Formulaire de contact */
.form { display: grid; gap: 1.1rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; font: inherit;
  color: var(--ink-900); background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(190, 58, 99, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-top: 0.3rem; }
.form__note { font-size: 0.85rem; color: var(--text-muted); }
.form__status { margin-top: 0.5rem; font-weight: 600; font-size: 0.95rem; }
.form__status--pending { color: var(--ink-500); }
.form__status--ok { color: #1a8f4c; }
.form__status--error { color: var(--pink-600); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* 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-brush); font-weight: 400; font-size: 2.1rem; color: var(--pink-600); line-height: 0.95; }
.media-badge span { font-size: 0.84rem; color: var(--text-muted); font-weight: 600; }
/* Variante badge "à cheval" + police brush (style home) */
.framed-media--pop { overflow: visible; }
.framed-media--pop img { border-radius: var(--r-xl); }
.media-badge--feature { left: auto; top: auto; right: -1.25rem; bottom: -1.25rem; max-width: 230px; text-align: center; padding: 0.8rem 1.5rem 0.95rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.media-badge--feature strong { font-family: var(--font-brush); font-weight: 400; font-size: clamp(2.4rem, 4.2vw, 3.4rem); line-height: 0.9; color: var(--pink-600); margin-bottom: 0.2rem; }
.media-badge--feature span { color: var(--ink-700); }

/* -------------------------------------------------------------------------
   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); }

/* -------------------------------------------------------------------------
   13b. Bloc tarif "pêche au gros" (carte unique dynamique)
   ------------------------------------------------------------------------- */
.tarif {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: #fff;                 /* explicite : ressort sur le body bg-soft */
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}

/* — Panneau prix (dégradé océan) — */
.tarif__price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: var(--grad-ocean);
  color: #fff;
  overflow: hidden;
}
.tarif__price::after {            /* halo lumineux discret */
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 320px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.tarif__flag {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: var(--r-pill);
  background: var(--grad-pink);
  color: #fff; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  box-shadow: var(--sh-glow-pink);
}
.tarif__price-label {
  margin-top: 0.4rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.tarif__amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; line-height: 1; }
.tarif__amount-num {
  font-family: var(--font-brush); font-weight: 400;
  font-size: clamp(3.4rem, 7vw, 4.8rem); line-height: 0.85;
  color: #fff;
}
.tarif__amount-unit { font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.tarif__price-note { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }
.tarif__addon {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: 0.2rem; padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.tarif__addon svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; color: rgba(255, 255, 255, 0.92); }
.tarif__addon span { font-size: 0.92rem; font-weight: 600; line-height: 1.25; }
.tarif__addon small { display: block; font-size: 0.74rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); }
.tarif__addon strong { margin-left: auto; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.tarif__price .btn--light { margin-top: 0.3rem; color: var(--blue-deep); }
.tarif__priv { font-size: 0.8rem; text-align: center; color: rgba(255, 255, 255, 0.7); }

/* — Corps (infos pratiques) — */
.tarif__body {
  display: flex; flex-direction: column; gap: clamp(1.4rem, 2.6vw, 2rem);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}

/* Mini-tuiles d'infos */
.tarif__facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.tarif-fact {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--sand-50);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tarif-fact:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--pink-300); }
.tarif-fact__icon {
  width: 44px; height: 44px; margin-bottom: 0.35rem;
  border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-ocean-soft); color: #fff;
  box-shadow: var(--sh-glow-cyan);
}
.tarif-fact__icon svg { width: 1.45rem; height: 1.45rem; }
.tarif-fact__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-500); }
.tarif-fact__value { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--blue-deep); line-height: 1.2; }
.tarif-fact__value small { display: block; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }

/* Créneaux horaires */
.tarif__slots-title {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 700; color: var(--blue-deep); margin-bottom: 0.85rem;
}
.tarif__slots-title svg { width: 1.25rem; height: 1.25rem; color: var(--pink-600); }
.tarif__slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tarif-slot {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.tarif-slot:hover { border-color: var(--blue-bright); box-shadow: var(--sh-glow-cyan); transform: translateY(-3px); }
.tarif-slot__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(31, 156, 217, 0.12); color: var(--blue-deep);
}
.tarif-slot__icon svg { width: 1.4rem; height: 1.4rem; }
.tarif-slot__info { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.tarif-slot__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); line-height: 1.15; }
.tarif-slot__time { font-weight: 600; font-size: 0.95rem; color: var(--blue-deep); white-space: nowrap; }

/* Liste "inclus" */
.tarif__included { padding-top: 0.4rem; border-top: 1px solid var(--line); }
.tarif__included-title,
.tarif__slots-title { font-size: 1rem; }
.tarif__included-title { font-weight: 700; color: var(--blue-deep); margin: 0.6rem 0 1.1rem; }
.tarif__included-list li { font-size: 0.96rem; }
.tarif__included-list svg { color: var(--pink-600); }
.tarif__bring {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 1.2rem; padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  background: rgba(31, 156, 217, 0.07);
  border: 1px dashed var(--blue-bright);
  font-size: 0.88rem; color: var(--ink-700); line-height: 1.5;
}
.tarif__bring svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.05rem; color: var(--blue-deep); }

@media (max-width: 880px) {
  .tarif { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tarif__facts { grid-template-columns: 1fr; }
  .tarif__slots-grid { grid-template-columns: 1fr; }
  .check-list--grid.tarif__included-list { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   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; }
/* Crédit agence (Click My Site) — shimmer léger */
.footer-credit { margin-top: 1.5rem; text-align: center; font-size: 0.76rem; letter-spacing: 0.04em; color: #6f83ac; }
.footer-credit__brand { font-weight: 700; text-decoration: none; background: linear-gradient(90deg, #f0a9bf, #7cc6f0, #f0a9bf); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: cmsShimmer 6s linear infinite; transition: filter .25s ease; }
.footer-credit__brand:hover { filter: brightness(1.15) drop-shadow(0 0 7px rgba(124,198,240,0.45)); }
@keyframes cmsShimmer { to { background-position: 200% center; } }
@media (prefers-reduced-motion: reduce) { .footer-credit__brand { animation: none; } }

/* -------------------------------------------------------------------------
   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; }
.page-hero__trust { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: clamp(0.7rem, 2vw, 1rem) clamp(1.4rem, 4vw, 2.8rem); margin: 1.9rem 0 0; padding: 0; list-style: none; }
.page-hero__trust li { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.92rem; font-weight: 600; color: #eaf2ff; }
.page-hero__trust svg { width: 1.15rem; height: 1.15rem; color: var(--pink-300); flex-shrink: 0; }

/* -------------------------------------------------------------------------
   21. Carte d'info pratique
   ------------------------------------------------------------------------- */
.info-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.5rem 1.4rem; background: var(--white);
  border-radius: var(--r-lg); border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
a.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.info-card__icon {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%;
  background: var(--grad-ocean); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 20px -10px rgba(12, 75, 156, 0.5);
}
.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(--ink-500); margin-bottom: 0.3rem; }
.info-card p { font-weight: 700; color: var(--ink-900); }

/* Bon à savoir (contact) — notes sur fond sombre, icône visible, sans carte blanche */
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.8rem, 3.5vw, 3rem); margin-top: clamp(2.4rem, 4vw, 3.2rem); }
.note { text-align: center; }
.note__ic {
  width: 3.4rem; height: 3.4rem; margin: 0 auto 1rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); color: #fff;
}
.note__ic svg { width: 1.5rem; }
.note h3 { color: #fff; font-size: 1.2rem; }
.note p { color: #bcd0f2; margin-top: 0.5rem; font-size: 0.98rem; line-height: 1.6; }
@media (max-width: 760px) { .notes { grid-template-columns: 1fr; gap: 1.9rem; } }

/* Croisières — occasions : cartes "verre" sur fond sombre, icône rose visible */
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.occasion {
  text-align: center; padding: clamp(2rem, 3.5vw, 2.7rem) clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.occasion:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.occasion__ic {
  width: 3.6rem; height: 3.6rem; margin: 0 auto 1.2rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--grad-pink); color: #fff;
  box-shadow: 0 12px 26px -10px rgba(190, 58, 99, 0.6);
}
.occasion__ic svg { width: 1.6rem; }
.occasion h3 { color: #fff; font-size: 1.2rem; }
.occasion p { color: #cfe0f5; margin-top: 0.55rem; font-size: 0.97rem; line-height: 1.6; }
@media (max-width: 760px) { .occasion-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Blog — filtres par thématique + grille éditoriale (non linéaire)
   ------------------------------------------------------------------------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.blog-filter {
  padding: 0.55rem 1.25rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--white);
  font: inherit; font-weight: 700; font-size: 0.92rem; color: var(--ink-700); cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.blog-filter:hover { border-color: var(--pink-600); color: var(--pink-600); }
.blog-filter.is-active { background: var(--grad-pink); border-color: transparent; color: #fff; box-shadow: var(--sh-sm); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2rem); grid-auto-flow: dense; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.blog-card--wide { grid-column: span 2; }
.blog-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__media .img-ph { position: absolute; inset: 0; }
.blog-card__cat {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 1;
  background: rgba(255, 255, 255, 0.92); color: var(--blue-deep);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.blog-card__soon {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 1;
  background: var(--grad-pink); color: #fff; font-weight: 700; font-size: 0.7rem;
  padding: 0.3rem 0.65rem; border-radius: var(--r-pill);
}
.blog-card__body { display: flex; flex-direction: column; gap: 0.55rem; padding: 1.3rem 1.4rem 1.5rem; flex: 1; }
.blog-card__date { font-size: 0.8rem; color: var(--ink-500); font-weight: 600; }
.blog-card__body h3 { font-size: 1.2rem; line-height: 1.25; }
.blog-card__body h3 a { color: inherit; }
.blog-card--wide .blog-card__body h3 { font-size: clamp(1.4rem, 2.2vw, 1.95rem); }
.blog-card__excerpt { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.blog-card__body .arrow-link { margin-top: auto; padding-top: 0.3rem; }
.blog-card.is-hidden { display: none; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-card--wide { grid-column: span 2; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } .blog-card--wide { grid-column: auto; } }

/* -------------------------------------------------------------------------
   Article — mise en page 2 colonnes + sidebar sticky (articles récents)
   ------------------------------------------------------------------------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2rem, 4vw, 3.6rem); align-items: start; }
.article-main { min-width: 0; }
.article-main .prose { margin-inline: 0; }
.article-aside { position: sticky; top: calc(var(--header-h) + 1.2rem); display: flex; flex-direction: column; gap: 1.6rem; }
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } }

.widget { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.4rem 1.5rem; box-shadow: var(--sh-sm); }
.widget__title { font-size: 1.15rem; margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--line); }
.recent-post { display: flex; gap: 0.85rem; align-items: center; padding: 0.8rem 0; }
.recent-post + .recent-post { border-top: 1px solid var(--line); }
.recent-post__thumb { width: 66px; height: 66px; flex-shrink: 0; border-radius: var(--r-sm); overflow: hidden; position: relative; }
.recent-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post__thumb .img-ph { position: absolute; inset: 0; }
.recent-post__title { display: block; font-weight: 700; font-size: 0.92rem; line-height: 1.3; color: var(--ink-900); }
.recent-post a.recent-post__title:hover { color: var(--pink-600); }
.recent-post__date { font-size: 0.78rem; color: var(--ink-500); margin-top: 0.25rem; }
.recent-post--lead { display: block; padding-top: 0; }
.recent-post--lead .recent-post__title { font-size: 1.1rem; line-height: 1.25; }
.recent-post--lead .recent-post__date { margin-top: 0.35rem; }

/* 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; }
/* Tuile icône (carte sans photo, rendu intentionnel) */
.media-glyph { position: absolute; inset: 0; display: grid; place-items: center; background: var(--grad-ocean); color: rgba(255, 255, 255, 0.9); }
.media-glyph svg { width: 3.2rem; height: 3.2rem; opacity: 0.92; }
.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,
body.bg-soft {
  background: linear-gradient(168deg, #ffffff 0%, #f2f7fc 46%, #e6eef7 100%);
  background-attachment: fixed;
}
.theme-light-hero .section--white,
.theme-light-hero .section--cream,
.bg-soft .section--white,
.bg-soft .section--cream { background: transparent; }

/* -------------------------------------------------------------------------
   Espèces (pêche au gros) — poissons « flottants » (3 + 2)
   ------------------------------------------------------------------------- */
.species-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 3vw, 2.8rem); margin-top: clamp(2rem, 4vw, 3rem); }
.species { flex: 0 1 300px; max-width: 330px; text-align: center; }
.species__name { font-family: var(--font-brush); font-weight: 400; font-size: clamp(1.75rem, 2.6vw, 2.2rem); line-height: 1; color: var(--blue-deep); margin-bottom: 0.35rem; }
.species__img { height: clamp(120px, 15vw, 158px); margin-bottom: 1rem; }
.species__img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 14px 11px rgba(12, 75, 156, 0.3));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.species:hover .species__img img { transform: translateY(-9px); filter: drop-shadow(0 24px 15px rgba(12, 75, 156, 0.34)); }
.species__stats { display: flex; list-style: none; padding: 0; margin: 0 0 0.9rem; border-block: 1px solid var(--line); }
.species__stats li { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; padding: 0.55rem 0.25rem; }
.species__stats li + li { border-left: 1px solid var(--line); }
.species__stats span { font-size: 0.6rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.species__stats strong { font-size: 0.8rem; color: var(--blue-deep); font-weight: 700; line-height: 1.2; }
.species__desc { font-size: 0.9rem; color: var(--ink-700); line-height: 1.5; }
@media (max-width: 620px) { .species { flex-basis: 100%; max-width: 360px; } }

/* ---- Calendrier de pêche (heatmap saisonnier) ---- */
.fishcal { margin-top: clamp(2.6rem, 5vw, 4rem); }
.fishcal__intro { text-align: center; max-width: 620px; margin: 0 auto clamp(1.5rem, 3vw, 2.1rem); }
.fishcal__intro h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-top: 0.25rem; }
.fishcal__lead { color: var(--ink-700); margin-top: 0.55rem; line-height: 1.55; }
.fishcal__panel { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(0.85rem, 2.4vw, 1.5rem); box-shadow: 0 18px 44px -30px rgba(12, 75, 156, 0.38); }
.fishcal__cap { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.fishcal__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fishcal__table { width: 100%; min-width: 540px; border-collapse: separate; border-spacing: 5px; }
.fishcal__table td { padding: 0; }
.fishcal__table thead th { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-500); padding: 0 0 0.5rem; }
.fishcal__corner { text-align: left; }
.fishcal__sp { text-align: left; white-space: nowrap; padding-right: 0.9rem; position: sticky; left: 0; background: #fff; z-index: 2; box-shadow: 8px 0 8px -6px rgba(15, 23, 42, 0.08); }
.fishcal__sp span { font-weight: 700; font-size: 0.86rem; color: var(--blue-deep); vertical-align: middle; }
.fishcal .cal { display: flex; align-items: center; justify-content: center; height: 30px; border-radius: 7px; font-size: 0.56rem; letter-spacing: 0.05em; color: #fff; background: #eef2f7; }
.fishcal td .cal { width: 100%; }
.fishcal .cal--3 { background: #1f9d6b; }
.fishcal .cal--2 { background: #f0a92e; }
.fishcal .cal--1 { background: #d7dee9; color: #8593a8; }
.fishcal .cal--0 { background: #f1f5f9; color: #c2ccda; }
.fishcal__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.4rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.fishcal__legend li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); }
.fishcal__legend .cal { width: 18px; height: 18px; font-size: 0; border-radius: 5px; }
.fishcal__note { text-align: center; margin: 1.3rem auto 0; max-width: 620px; color: var(--ink-700); font-size: 0.92rem; line-height: 1.55; }
.fishcal__note strong { color: var(--blue-deep); }
@media (max-width: 600px) {
  .fishcal__sp span { font-size: 0.8rem; }
  .fishcal .cal { height: 27px; }
}

/* ---- Maillage interne : tuiles "autres sorties" ---- */
.linktiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.linktile { position: relative; display: block; overflow: hidden; border-radius: 20px; min-height: clamp(310px, 34vw, 410px); isolation: isolate; box-shadow: 0 20px 44px -26px rgba(12, 75, 156, 0.45); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.linktile:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -26px rgba(12, 75, 156, 0.5); }
.linktile__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.linktile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8, 40, 90, 0.94) 8%, rgba(8, 40, 90, 0.5) 46%, rgba(8, 40, 90, 0.05) 100%); }
.linktile:hover .linktile__bg { transform: scale(1.07); }
.linktile__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(1.3rem, 2.5vw, 1.9rem); }
.linktile__tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #fff; padding: 0.32rem 0.75rem; border-radius: 999px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); margin-bottom: 0.8rem; }
.linktile__title { color: #fff; font-size: clamp(1.3rem, 1.7vw, 1.5rem); margin: 0 0 0.45rem; line-height: 1.15; }
.linktile__desc { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; line-height: 1.5; margin: 0 0 1rem; }
.linktile__cta { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 700; font-size: 0.92rem; color: #fff; }
.linktile__cta svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.linktile:hover .linktile__cta svg { transform: translateX(5px); }
@media (max-width: 760px) {
  .linktiles { grid-template-columns: 1fr; gap: 1.1rem; }
  .linktile { min-height: 250px; }
}

/* -------------------------------------------------------------------------
   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); }

/* -------------------------------------------------------------------------
   Boutons flottants : WhatsApp (au-dessus) + « Réserver ma sortie pêche »
   ------------------------------------------------------------------------- */
.fab-stack { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem; }
.fab-book {
  position: relative;
  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; }

/* Section réservation (widget Bookeo) */
.bookeo-widget { margin-top: 1.2rem; min-height: 320px; text-align: left; }

/* -------------------------------------------------------------------------
   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 (vert) — au-dessus du bouton réservation */
.fab-wa {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fab-wa:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 18px 38px -10px rgba(37, 211, 102, 0.65); }
.fab-wa svg { width: 1.75rem; }
@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; }
  /* Pas de fond circulaire (« rond ») sur le bouton burger / croix en mobile */
  .nav-toggle,
  .is-scrolled .nav-toggle,
  .header--on-light .nav-toggle { background: transparent; box-shadow: none; }
  /* 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);
    height: calc(100dvh - var(--header-h)); overflow-y: auto; overscroll-behavior: contain;
  }
  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; }
  /* Empêche la règle desktop :hover/:focus-within (translateX(-50%)) de décaler le sous-menu vers la gauche au tap sur mobile */
  .nav .nav__item--has-menu:hover .nav__menu,
  .nav .nav__item--has-menu:focus-within .nav__menu { transform: none; }
  .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-4 { 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; }
}
@media (max-width: 460px) {
  .logbook { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  /* Boutons flottants plus compacts sur mobile : limite le chevauchement avec le contenu en bas à droite */
  .fab-stack { bottom: 1rem; right: 1rem; gap: 0.7rem; }
  .fab-book { height: 52px; padding: 0 15px; }
  .fab-book__ic { width: 1.45rem; height: 1.45rem; }
  .fab-wa { width: 48px; height: 48px; }
  .fab-wa svg { width: 1.5rem; }

  /* Carte d'avis Trustindex du héros : pleine largeur, centrée et réduite sur mobile */
  .hero__proof { width: 100%; }
  .hero__rating { flex-basis: 100%; max-width: none; display: flex; justify-content: center; margin-top: 0.5rem; transform: scale(0.82); transform-origin: top center; }

  /* CTA des cartes centrés sur mobile (ex. « Réserver » / « En savoir plus ») */
  .peche-card__cta,
  .exc-tile__foot,
  .exc-tile--right .exc-tile__foot { justify-content: center; }
}

/* -------------------------------------------------------------------------
   24b. Galerie de pêche — double carrousel (marquee) à sens inversés
   ------------------------------------------------------------------------- */
.fish-gallery { overflow: hidden; }
.fish-gallery__rows { display: flex; flex-direction: column; gap: clamp(0.7rem, 1.6vw, 1.1rem); }
.gallery-row {
  display: flex;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
  will-change: transform;
}
.gallery-row--reverse { animation-name: gallery-scroll-rev; }
.gallery-row img {
  flex: 0 0 auto;
  height: clamp(140px, 20vw, 230px); width: auto; max-width: none;
  margin-right: clamp(0.7rem, 1.6vw, 1.1rem);
  border-radius: var(--r-md); object-fit: cover; display: block;
  box-shadow: var(--sh-md);
}
@keyframes gallery-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gallery-scroll-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* -------------------------------------------------------------------------
   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; }
  .gallery-row { animation: none !important; transform: none !important; }
}

/* -------------------------------------------------------------------------
   26. Consentement cookies (RGPD)
   ------------------------------------------------------------------------- */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; padding: 1rem;
  transform: translateY(130%); transition: transform 0.45s var(--ease);
}
.cc-banner.is-visible { transform: none; }
.cc-banner__inner {
  max-width: 1080px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 1.1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.6rem;
}
.cc-banner__txt { flex: 1 1 260px; margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--ink-700); }
.cc-banner__txt a { color: var(--pink-600); font-weight: 700; }
.cc-banner__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cc-banner__actions .btn { padding: 0.65em 1.4em; }
.cc-manage {
  background: none; border: none; padding: 0; margin: 0; font: inherit; color: inherit;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px; opacity: 0.85;
}
.cc-manage:hover { opacity: 1; }
.footer-bottom .cc-manage { color: rgba(255, 255, 255, 0.75); }
.footer-bottom .cc-manage:hover { color: #fff; }

/* Placeholders des contenus tiers tant que non consentis */
.cc-embed:not(.is-loaded) .cc-note { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.cc-iframe-wrap { position: relative; height: 100%; min-height: 340px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.cc-iframe-wrap .cc-iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }
.cc-iframe-ph { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 0.9rem; text-align: center; padding: 1.6rem; background: var(--grad-ocean-soft); color: #fff; }
.cc-iframe-ph p { margin: 0; max-width: 32ch; color: #eaf2ff; font-size: 0.92rem; line-height: 1.5; }
.cc-iframe-wrap.is-loaded .cc-iframe-ph { display: none; }
@media (max-width: 560px) { .cc-banner__actions { width: 100%; } .cc-banner__actions .btn { flex: 1; } }

/* -------------------------------------------------------------------------
   27. Pop-up promo (réservation) — déclenché après 10 s, 1×/session
       z-index 1100 : sous la bannière cookies (1200) pour rester RGPD-OK
   ------------------------------------------------------------------------- */
.promo { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.promo.is-open { opacity: 1; visibility: visible; }
.promo__backdrop { position: absolute; inset: 0; background: rgba(8, 18, 39, 0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.promo__card {
  position: relative; z-index: 1; width: min(100%, 460px);
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: clamp(1.9rem, 4vw, 2.7rem); text-align: center; overflow: hidden;
  transform: translateY(18px) scale(0.97); transition: transform 0.35s var(--ease-out);
}
.promo.is-open .promo__card { transform: none; }
.promo__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--grad-pink); }
.promo__close { position: absolute; top: 0.7rem; right: 0.9rem; width: 2rem; height: 2rem; border-radius: 50%; font-size: 1.5rem; line-height: 1; color: var(--text-muted); display: grid; place-items: center; }
.promo__close:hover { background: var(--sand-100); color: var(--ink-900); }
.promo__icon { width: 64px; height: 64px; margin: 0.2rem auto 1.1rem; border-radius: 50%; display: grid; place-items: center; background: rgba(190, 58, 99, 0.1); color: var(--accent); }
.promo__icon svg { width: 2rem; height: 2rem; }
.promo__kicker { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.5rem; }
.promo__title { font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.2; margin: 0 0 0.7rem; }
.promo__text { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 0 0 1.5rem; }
.promo__actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.promo__actions .btn { width: 100%; justify-content: center; }
.promo__later { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); padding: 0.4rem; }
.promo__later:hover { color: var(--ink-900); }
@media (prefers-reduced-motion: reduce) { .promo, .promo__card { transition: opacity 0.2s linear; transform: none; } }
