/* ==========================================================
Accueil — Styles complets (sobre, moderne, accessible)
(patch: forçage couleur boutons, avis Google, overlay hero, scrollbars, tilt, etc.)
========================================================== */

/* ---------- Variables & reset légers ---------- */
:root{
  --font: var(--codex-body-font, 'Nunito','Segoe UI','Helvetica Neue',Arial,sans-serif);
  --ink: #0f172a;
  --muted: #4a5568; /* WCAG AA compliant */
  --accent: var(--season-primary, var(--codex-accent, #60a5fa));
  --accent-2: var(--season-secondary, var(--codex-accent-strong, #2563eb));
  --accent-3: var(--season-accent, #38bdf8);
  --amber: #a855f7;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-1: 0 12px 32px rgba(15,23,42,.08);
  --shadow-2: 0 18px 46px rgba(15,23,42,.12);
  --shadow-3: 0 28px 70px rgba(15,23,42,.18); /* maj en JS */
}

/* Base */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family:var(--font);
  color:var(--ink);
  background: linear-gradient(180deg, rgba(248,251,255,1) 0%, rgba(236,244,255,1) 100%);
  line-height:1.5;
  scroll-behavior:smooth;
}
img{ max-width:100%; display:block; }
svg{ display:block; }

/* Liens & focus
   NOTE: on scope la couleur des liens à .home-wrap pour ne PAS teinter le footer */
.home-wrap a:not(.btn){ color:var(--accent); text-decoration:none; }
.home-wrap a:not(.btn):hover{ opacity:.95; }
.home-wrap .btn{ text-decoration:none; }

/* ✅ Forçage : les boutons restent lisibles (blanc) même si <a> est coloré globalement */
.home-wrap .btn.btn-gradient,
.home-wrap .btn.btn-ghost,
.home-wrap .btn.btn-primary{ color:#fff; }

/* ✅ Forçages CTA en noir (ne touche qu'aux 3 cas demandés) */
.home-wrap .catalogues .catalogue-card__actions a.btn.btn-secondary,
.home-wrap .catalogues__grid .catalogue-card__actions a.btn.btn-secondary,
.home-wrap #avis-google a.btn.btn-white,
.home-wrap .cta .cta__actions a.btn.btn-white{
  color: var(--ink);
}
.home-wrap #avis-google a.btn.btn-white:visited,
.home-wrap .cta .cta__actions a.btn.btn-white:visited,
.home-wrap .catalogues__grid .catalogue-card__actions a.btn.btn-secondary:visited{
  color: var(--ink);
}
/* ✅ HOVER : garantir lisibilité - texte encore plus foncé */
.home-wrap .catalogues .catalogue-card__actions a.btn.btn-secondary:hover,
.home-wrap .catalogues__grid .catalogue-card__actions a.btn.btn-secondary:hover{
  color: #0b1220; /* Noir intense pour maximum lisibilité */
}
.home-wrap #avis-google a.btn.btn-white:hover,
.home-wrap .cta .cta__actions a.btn.btn-white:hover{
  color: #0b1220; /* Noir intense pour maximum lisibilité */
}

/* Utilitaires généraux */
.home-wrap{ isolation:isolate; }
/* .top-spacer supprimé : offset géré par .page-has-hero .hero dans custom.css */

/* ---------- Sections & alternances ---------- */
.section-pad{
  padding: clamp(52px, 9vw, 96px) 4vw;
  position: relative; /* évite recouvrements */
  z-index: 0;
}
.alt-a{ background: linear-gradient(180deg, rgba(248,251,255,1) 0%, rgba(231,243,255,.92) 100%); }
.alt-b{ background: linear-gradient(180deg, rgba(231,243,255,1) 0%, rgba(223,234,255,.94) 100%); }

/* ---------- HERO ---------- */
.hero{
  position:relative;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  min-height:clamp(480px, 62vh, 760px); /* ✅ Reserve space to prevent CLS */
  display:grid;
  place-items:center;
  overflow:hidden;
  z-index: 0;
  contain: layout; /* ✅ Contain layout shifts */
}
.hero__media{
  position:absolute;
  inset:0;
  min-height:clamp(480px, 62vh, 760px); /* ✅ Match hero height */
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.04) saturate(1.02);
  transform: scale(1.02);
  will-change: transform;
  animation: hero-image-zoom 20s ease-in-out infinite alternate;
  aspect-ratio: 16/9; /* ✅ Prevent aspect ratio shifts */
}
@keyframes hero-image-zoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
/* Hero slider dots */
.hero__dots{
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; gap:10px; align-items:center;
}
.hero__dots button{
  width:10px; height:10px; border-radius:var(--radius-pill); border:2px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.2); cursor:pointer;
  transition: all .3s ease;
  padding:0;
}
.hero__dots button:hover{
  background:rgba(255,255,255,.5); transform:scale(1.15);
  border-color:rgba(255,255,255,.9);
}
.hero__dots button.is-active{
  background:rgba(255,255,255,.95); transform:scale(1.25);
  border-color:rgba(255,255,255,1);
  box-shadow:0 0 12px rgba(255,255,255,.4);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.25) 0%, rgba(15,23,42,.5) 55%, rgba(12,19,34,.7) 100%),
              linear-gradient(120deg, rgba(37,99,235,.2) 0%, rgba(125,211,252,.12) 100%);
  pointer-events: none; /* ✅ ne bloque pas les clics en dessous */
  animation: hero-gradient-shift 8s ease-in-out infinite alternate;
}
@keyframes hero-gradient-shift {
  0% { opacity: 0.95; }
  100% { opacity: 1; }
}
.hero__content{
  position:relative; z-index:1; text-align:center; color:#fff;
  padding: 6vh 4vw;
  max-width: 1100px;
  min-height: 200px; /* ✅ Reserve vertical space for content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Badge générique dans hero */
.hero__content .badge{
  display:inline-flex; align-items:center; gap:.6em;
  background: rgba(255,255,255,0.16);
  backdrop-filter: saturate(150%) blur(10px);
  padding:.5em 1.2em; border-radius:var(--radius-pill);
  font-size:.95rem; letter-spacing:.5px; font-weight:800;
  margin-bottom:1.4em; box-shadow:var(--shadow-accent-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.hero__content .badge::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  background: var(--season-accent, var(--accent-3)); /* Use dynamic season accent color */
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.hero__content .badge:hover{
  transform: scale(1.05);
  box-shadow:var(--shadow-accent-lg);
}
.hero__content .badge--new{
  background: linear-gradient(135deg, var(--accent, rgba(139,92,246,0.92)) 0%, var(--accent-3, rgba(168,85,247,0.88)) 100%);
  box-shadow:0 12px 36px color-mix(in srgb, var(--accent, #8b5cf6) 35%, transparent);
  animation: badge-pulse 3s ease-in-out infinite;
}
.hero__content .badge--new:hover{
  box-shadow:0 16px 48px color-mix(in srgb, var(--accent, #8b5cf6) 50%, transparent);
  animation: none;
}
@keyframes badge-pulse {
  0%, 100% {
    box-shadow:0 12px 36px color-mix(in srgb, var(--accent, #8b5cf6) 35%, transparent);
    transform: scale(1);
  }
  50% {
    box-shadow:0 16px 42px color-mix(in srgb, var(--accent, #8b5cf6) 45%, transparent);
    transform: scale(1.02);
  }
}
.hero__title{
  margin:0 0 .35em 0; font-weight:900; line-height:1.05; letter-spacing:.5px; color:#fff;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  text-shadow:0 18px 46px rgba(12,19,34,.45);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}
.hero__title:hover{
  transform: scale(1.03);
  text-shadow: 0 24px 58px rgba(12,19,34,.65), 0 0 80px rgba(96,165,250,.35);
}
.hero__subtitle{
  margin:0 0 1.8em 0; font-weight:500; color:#e2f0ff; opacity:.96;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-shadow:0 14px 38px rgba(12,19,34,.4);
  max-width: 880px; margin-inline:auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.hero__subtitle:hover{
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 18px 46px rgba(12,19,34,.55);
}
.hero__ctas{ display:flex; gap:.8em; flex-wrap:wrap; justify-content:center; }

/* ---------- Boutons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding: .9em 1.6em; border-radius:var(--radius-md); font-weight:800; font-size:1.03rem;
  position:relative; overflow:hidden; cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  will-change: transform; pointer-events:auto;
  text-decoration: none;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gradient{
  background: linear-gradient(115deg, var(--accent), var(--accent-2)); color:#fff;
  box-shadow:var(--shadow-accent-md);
}
.btn-gradient:hover{ 
  box-shadow:var(--shadow-accent-lg);
  color:#fff; /* ✅ Garantir texte blanc au hover */ 
}
.btn-ghost{
  background: rgba(255,255,255,.24); color:#fff;
  border:2px solid rgba(255,255,255,.6);
  box-shadow:0 12px 32px rgba(12,19,34,.45);
  backdrop-filter: blur(12px);
  font-weight: 800;
}
.btn-ghost:hover{ 
  background: rgba(255,255,255,.32);
  box-shadow:0 16px 40px rgba(12,19,34,.55); 
  border-color: rgba(255,255,255,.8);
  color:#fff; /* ✅ Garantir texte blanc au hover */
}
.btn-primary{
  background: linear-gradient(115deg, var(--accent), #818cf8); color:#fff;
  box-shadow:var(--shadow-accent-md);
}
.btn-primary:hover{ 
  box-shadow:var(--shadow-accent-lg);
  color:#fff; /* ✅ Garantir texte blanc au hover */ 
}
.btn-secondary{
  color: var(--accent);
  border:1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  background:#fff;
}
.btn-secondary:hover{ 
  background:#eef6ff; 
  border-color: var(--accent);
  color: #1d4ed8; /* ✅ Bleu plus foncé pour lisibilité */ 
}
.btn-white{
  background:#fff; color:var(--ink);
  border:1px solid rgba(2,6,23,.10);
  box-shadow:0 12px 26px rgba(12,19,34,.12);
}
.btn-white:hover{ 
  box-shadow:0 16px 32px rgba(12,19,34,.18);
  color:var(--ink); /* ✅ Garantir texte noir au hover */ 
}
/* ✅ Forçage supplémentaire : cas précis des cartes catalogue */
.catalogue-card__actions .btn-primary{ color:#fff; }

/* Ripple (créé en JS) */
.btn .ripple{
  position:absolute; border-radius:var(--radius-circle);
  transform:scale(0); pointer-events:none;
  background: color-mix(in srgb, #fff 60%, transparent); opacity:.5;
  animation: ripple .6s ease-out forwards;
}
@keyframes ripple{ to{ transform:scale(2.6); opacity:0; } }

/* ---------- Entêtes de sections ---------- */
.section-head{ text-align:center; max-width: 900px; margin: 0 auto 28px; }
.section-title{
  margin:0 0 .35em 0; font-weight:900; letter-spacing:.4px;
  font-size:clamp(1.6rem, 2.6vw, 2.1rem); color: var(--ink);
}
.section-sub{ margin:0; color:#334155; font-size:clamp(.98rem,1.7vw,1.05rem); }

/* ---------- Reveal on scroll ---------- */
.reveal-up{ opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.is-visible{ opacity:1; transform: translateY(0); }

/* ---------- Mission (KPIs) ---------- */
.mission__grid{
  max-width: 1100px; margin: 10px auto 0;
  display:grid; grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 28px);
}
@media (max-width: 768px){ .mission__grid{ grid-template-columns: 1fr; } }
.kpi-card{
  background: linear-gradient(145deg, rgba(255,255,255,.85) 0%, rgba(240,246,255,.95) 100%);
  backdrop-filter: blur(12px);
  border:1px solid rgba(148,186,255,.28); border-radius:var(--radius-xl);
  box-shadow: var(--shadow-1);
  padding: clamp(18px, 4vw, 26px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(96,165,250,.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.kpi-card:hover::before { opacity: 1; }
.kpi-card:hover{ 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: var(--shadow-2), 0 0 40px rgba(96,165,250,.2); 
}
.kpi__value-wrap{ display:flex; align-items:baseline; gap:.25em; position: relative; z-index: 1; }
.kpi__value{
  font-weight: 900; letter-spacing: .5px; line-height:1;
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(37,99,235,.15));
}
.kpi-card:hover .kpi__value {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 18px rgba(37,99,235,.25));
}
.kpi__label{ 
  margin-top:.35em; color: var(--muted); font-weight:700; 
  font-size: clamp(1rem, 2.2vw, 1.06rem);
  position: relative;
  z-index: 1;
}
.kpi-card.is-counting .kpi__value{ animation: kpi-pop .5s ease-out; }
@keyframes kpi-pop{
  0%{ transform: scale(0.98); opacity: .9; }
  60%{ transform: scale(1.03); opacity: 1; }
  100%{ transform: scale(1); }
}

/* ---------- Catalogues ---------- */
.catalogues__grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
  gap: 32px; justify-content:center; align-items:stretch;
}
.catalogue-card{
  position:relative; background: linear-gradient(150deg, rgba(255,255,255,.92) 0%, rgba(241,247,255,.98) 100%);
  border:1px solid rgba(148,186,255,.28); border-radius:var(--radius-2xl);
  padding:36px 26px; box-shadow: var(--shadow-1);
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.catalogue-card:hover{ transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-2); }
.catalogue-card h3{ margin:.6em 0 .35em 0; font-size:1.2rem; color:var(--ink); }
.catalogue-card p{ margin:0 0 16px 0; color:#334155; font-size:.98rem; }
.catalogue-card__icon{
  position:relative; width:58px; height:58px; display:grid; place-items:center;
  border-radius:var(--radius-lg); background: color-mix(in srgb, var(--accent) 18%, transparent);
  margin-bottom:10px;
  transition: transform 0.3s ease;
}
.catalogue-card:hover .catalogue-card__icon {
  transform: rotate(5deg) scale(1.08);
}
.catalogue-card--purple .catalogue-card__icon{
  background: color-mix(in srgb, #818cf8 18%, transparent);
}
.icon-halo{
  position:absolute; width:82px; height:82px; border-radius:var(--radius-circle);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%);
  animation: pulse 3s infinite; z-index:0; pointer-events:none; /* ✅ ne capte pas les clics */
}
.catalogue-card--purple .icon-halo{
  background: radial-gradient(circle, color-mix(in srgb, #818cf8 32%, transparent), transparent 70%);
}
.catalogue-card__icon svg{ 
  position:relative; z-index:1;
  transition: transform 0.4s ease;
}
.catalogue-card:hover .catalogue-card__icon svg {
  transform: rotate(-10deg) scale(1.1);
}
.catalogue-card__actions{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center; width:100%;
  margin-top:auto; position: relative; z-index: 2; /* ✅ au-dessus d'éventuels overlays */
}
.catalogue-card__actions .btn{ 
  pointer-events:auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.catalogue-card__actions .btn:hover {
  transform: translateY(-3px) scale(1.03);
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:.6; }
  50%{ transform: scale(1.2); opacity:0; }
}

/* ---------- Valeurs ---------- */
.valeurs__grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 360px));
  gap: 22px; justify-content:center; align-items:stretch;
}
.valeur-card{
  position:relative; background: linear-gradient(150deg, rgba(255,255,255,.94) 0%, rgba(237,244,255,.98) 100%);
  border:1px solid rgba(148,186,255,.28); border-radius:var(--radius-xl);
  padding:26px; box-shadow: var(--shadow-1);
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.valeur-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(96,165,250,.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.valeur-card:hover::before { opacity: 1; }
.valeur-card:hover{ 
  transform: translateY(-3px); 
  box-shadow: var(--shadow-2), 0 0 30px rgba(96,165,250,.15); 
}
.valeur-card__icon{
  width:58px; height:58px; display:grid; place-items:center; border-radius:var(--radius-lg); margin-bottom:10px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.valeur-card:hover .valeur-card__icon {
  transform: translateY(-4px) rotate(5deg) scale(1.1);
  animation: icon-bounce 0.6s ease;
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(-4px) rotate(5deg) scale(1.1); }
  50% { transform: translateY(-8px) rotate(-5deg) scale(1.15); }
}
.valeur-card__icon.bg-blue{ background: color-mix(in srgb, var(--accent) 18%, transparent); }
.valeur-card__icon.bg-green{ background: color-mix(in srgb, var(--accent-3) 20%, transparent); }
.valeur-card__icon.bg-amber{ background: color-mix(in srgb, var(--amber) 20%, transparent); }
.valeur-card__icon svg {
  transition: transform 0.3s ease;
}
.valeur-card:hover .valeur-card__icon svg {
  transform: rotate(10deg);
}
.valeur-card h3{ 
  margin:12px 0 6px 0; font-size:1.18rem; color:var(--ink);
  position: relative;
  z-index: 1;
}
.valeur-card p{ 
  margin:0; color:#334155; font-size:.98rem;
  position: relative;
  z-index: 1;
}

/* ---------- Carrousels génériques ---------- */
.carousel{ position:relative; } /* ← slider simple */ /* ← slider simple */

/* Dots */
.carousel__dots{ display:flex; gap:8px; justify-content:center; margin-top:14px; }
.carousel__dots button{
  width:8px; height:8px; border-radius:var(--radius-pill); border:none; background:#cbd5e1;
  cursor:pointer; transition: transform .2s ease, background .2s ease;
}
.carousel__dots button.is-active{ transform: scale(1.4); background: var(--accent); }

/* Flèches (masquées sur mobile) */

/* Cacher scrollbar proprement quand demandé (via classe JS OU data-attr) */

/* ---------- Cartes Séjours ---------- */
.sejours .card{
  background: linear-gradient(150deg, rgba(255,255,255,.94) 0%, rgba(237,244,255,.98) 100%);
  border:1px solid rgba(148,186,255,.28); border-radius:var(--radius-xl); overflow:hidden;
  box-shadow: var(--shadow-1); transition: transform .18s ease, box-shadow .18s ease;
}
.sejours .card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-2); }
.sejours .card__body{ padding:16px 16px 18px; }
.sejours .card__body h3{ margin:.2em 0 .3em 0; font-size:1.15rem; color:var(--ink); }
.sejours .card__body p{ margin:0 0 14px 0; color:#334155; font-size:.96rem; }

/* ---------- Avis Google (Option B) ---------- */
.reviews-grid{
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:16px;
}
.reviews-grid__loading{ text-align:center; color:#334155; padding:16px; }
.review-card{
  background: linear-gradient(150deg, rgba(255,255,255,.94) 0%, rgba(235,243,255,.98) 100%);
  border:1px solid rgba(148,186,255,.28); border-radius:var(--radius-lg); padding:18px;
  box-shadow:var(--shadow-md);
}
.review-card__head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.review-card__avatar{
  width:36px; height:36px; border-radius:var(--radius-pill); background:color-mix(in srgb, var(--accent) 18%, transparent);
  display:grid; place-items:center; font-weight:800; color:#1d4ed8;
}
.review-card__name{ font-weight:800; color:#0f172a; }
.review-card__date{ margin-left:auto; font-size:.85rem; color:#334155; }
.review-card__stars{ display:flex; gap:2px; margin-bottom:6px; }
.review-card__text{ color:#0f172a; font-size:.98rem; }
.review-card__src{ margin-top:10px; font-size:.85rem; color:#334155; }
.review-card__src a{ color:var(--accent); text-decoration:none; }

/* ---------- Témoignages (conservé au cas où) ---------- */

/* ---------- CTA ---------- */
.cta .cta__inner{
  max-width:1000px; margin:0 auto; text-align:center;
  background: linear-gradient(130deg, rgba(231,243,255,1) 0%, rgba(199,228,255,.92) 60%, rgba(212,216,255,.9) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 42px); box-shadow: var(--shadow-1);
}
.cta .badge{
  display:inline-flex; align-items:center; gap:.6em;
  background: color-mix(in srgb, var(--accent, #60a5fa) 16%, transparent);
  padding:.45em .9em; border-radius:var(--radius-pill);
  font-size:.95rem; font-weight:800;
  color: color-mix(in srgb, var(--accent-2, #1d4ed8) 100%, transparent);
  margin-bottom:14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent, #60a5fa) 15%, transparent);
  animation: cta-badge-pulse 3s ease-in-out infinite;
}
@keyframes cta-badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent, #60a5fa) 15%, transparent);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 18px color-mix(in srgb, var(--accent, #60a5fa) 25%, transparent);
    transform: scale(1.02);
  }
}
.cta .badge:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent, #60a5fa) 30%, transparent);
}
.cta h2{
  margin:.1em 0 .35em 0; font-weight:900; letter-spacing:.4px;
  font-size:clamp(1.6rem, 2.6vw, 2.1rem); color:var(--ink);
}
.cta__sub{
  margin:0 auto 20px auto; color:#334155; font-size:clamp(.98rem,1.7vw,1.05rem); max-width:760px;
}
.cta__actions{ 
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:10px;
}
.cta__actions .btn {
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  will-change: transform;
}
.cta__actions .btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ---------- Effets avancés (tilt/parallaxe) ---------- */
.tiltable{ will-change: transform; transform-style: preserve-3d; transition: transform .12s ease, box-shadow .2s ease; }
.tiltable.is-tilting{ box-shadow: var(--shadow-3); }
.tiltable.suspend-tilt,
.catalogue-card.suspend-tilt,
.catalogue-card.suspend-tilt:hover{
  transform:none; box-shadow: var(--shadow-1);
}
.parallax{ will-change: transform; }

/* ---------- Back-to-top & progress ---------- */
.back-to-top{
  position:fixed; right:16px; bottom:16px; z-index:60; opacity:0; pointer-events:none;
  width:42px; height:42px; border-radius:var(--radius-pill);
  border:1px solid rgba(2,6,23,.12); background:#fff; color:var(--ink);
  box-shadow: var(--shadow-1); display:grid; place-items:center;
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform: translateY(-4px); }
.back-to-top:hover{ transform: translateY(-6px); }
.read-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index:80;
}

/* ---------- Footer (neutraliser la teinte des liens) ---------- */
footer, .gh-foot{ color:#e2e8f0; }
footer a, .gh-foot a{ color:#e5e7eb; text-decoration:none; }
footer a:hover, .gh-foot a:hover{ text-decoration:underline; }
footer svg, .gh-foot svg{ fill:#e5e7eb; stroke:#e5e7eb; }

/* ---------- Responsive & carrousel sizing ---------- */
/* Desktop par défaut : 4 cartes */
/* Tablette : 2 cartes */
/* Mobile : 1 carte + snap */
/* Petits ajustements mobiles */
@media (max-width: 768px){
  .hero__title{ font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero__subtitle{ font-size: 1rem; }
}

/* ================= SÉJOURS À LA UNE (dynamique) ================= */
.featured-sejours {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.l-grid.centered {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.m-featured-article {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius:var(--radius-lg);
  overflow: hidden;
  box-shadow:var(--shadow-lg);
  transition: transform .3s ease, box-shadow .3s ease;
}

.m-featured-article:hover {
  transform: translateY(-4px);
  box-shadow:var(--shadow-xl);
}

.m-featured-article__picture {
  display: block;
  position: relative;
  padding-top: 62.5%; /* 16:10 ratio */
  overflow: hidden;
  background: #f3f5f8;
}

.m-featured-article__picture > div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.m-featured-article:hover .m-featured-article__picture > div {
  transform: scale(1.08);
}

.m-featured-article__meta {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.m-featured-article__content {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.m-featured-article__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  color: #0f172a;
  transition: color .2s ease;
}

.m-featured-article:hover .m-featured-article__title {
  color: #2563eb;
}

.m-featured-article__meta-info {
  font-size: .88rem;
  color: #334155;
  line-height: 1.6;
}

.m-featured-article__meta .le-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: calc(100% - 24px);
  pointer-events: auto;
}

.m-featured-article__meta .le-card__badges--right {
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
  justify-content: flex-end;
}

.m-featured-article__meta .le-card__badges--bottom {
  top: auto;
  bottom: 12px;
  left: 12px;
  right: auto;
  justify-content: flex-start;
}

.le-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius:var(--radius-sm);
  font-size: 22px;
  line-height: 1;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(148,186,255,.28);
  color: #0f172a;
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow:var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.le-badge:hover {
  transform: scale(1.08);
  box-shadow:var(--shadow-md);
}

.le-badge--new {
  background: color-mix(in srgb, var(--accent, #60a5fa) 95%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-2, #3b82f6) 40%, transparent);
  animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
.le-badge--new:hover {
  animation: none;
  transform: scale(1.08) translateY(-2px);
}

.le-badge--theme {
  background: rgba(255,255,255,.92);
  border:1px solid rgba(148,186,255,.28);
}

.le-badge--theme-decouverte {
  border-color: rgba(16,185,129,.4);
}
.le-badge--theme-decouverte::before {
  content: "🔍";
}

.le-badge--theme-initiation {
  border-color: rgba(245,158,11,.4);
}
.le-badge--theme-initiation::before {
  content: "🌱";
}

.le-badge--theme-passion {
  border-color: rgba(139,92,246,.4);
}
.le-badge--theme-passion::before {
  content: "🔥";
}

.le-badge--new {
  background: rgba(96,165,250,.95);
  border: 1px solid rgba(59,130,246,.4);
}
.le-badge--new::before {
  content: "✨";
}

.le-badge--soldout {
  background: rgba(239,68,68,.95);
  border: 1px solid rgba(239,68,68,.4);
  min-width: 40px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}
.le-badge--soldout::before {
  content: "🚫";
  margin-right: 6px;
}
.le-badge--soldout::after {
  content: "Complet";
}

.m-featured-article.no-picture .m-featured-article__picture {
  display: none;
}

@media (max-width: 768px) {
  .l-grid.centered {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================= SLIDER - Indicateurs améliorés ================= */

/* Pagination Swiper améliorée */

/* Amélioration dots carousel simple */
.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

/* Boutons de navigation améliorés */
