/* =====================================================================
   MINDLAB · Préparation mentale — La Réunion
   Design : premium "outerspace", cards givrées (effet brouillard)
   Approche : mobile-first
   Palette : #BCE4DB · #97B6C7 · #E1DCD0 · #EB823D · #313841
   ===================================================================== */

:root {
  /* --- Brand --- */
  --mint:   #BCE4DB;
  --blue:   #97B6C7;
  --sand:   #E1DCD0;
  --orange: #EB823D;
  --slate:  #313841;

  /* --- Outerspace background scale (dérivée du slate) --- */
  --space-900: #0c1014;
  --space-800: #11161c;
  --space-700: #161d25;
  --space-600: #1d2630;

  /* --- Text --- */
  --text:        #E9E5DB;
  --text-muted:  rgba(225, 220, 208, 0.66);
  --text-faint:  rgba(225, 220, 208, 0.42);

  /* --- Effets --- */
  --glass-border: rgba(188, 228, 219, 0.16);
  --glass-bg:     linear-gradient(158deg, rgba(225,220,208,0.07), rgba(151,182,199,0.035));
  --radius:   20px;
  --radius-l: 28px;

  /* --- Type --- */
  --font-display: "Avenir Next", "Avenir", "Montserrat", "Lato", system-ui, sans-serif;
  --font-body:    "Lato", "Avenir Next", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--space-900);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Outerspace ambient layer (nébuleuses + voile) */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 80% 12%, rgba(151,182,199,0.10), transparent 70%),
    radial-gradient(55% 45% at 12% 8%,  rgba(188,228,219,0.08), transparent 70%),
    radial-gradient(70% 60% at 65% 100%, rgba(235,130,61,0.07), transparent 70%),
    linear-gradient(180deg, var(--space-900) 0%, var(--space-800) 45%, var(--space-700) 100%);
}
.space-bg::after { /* fine grain / poussière d'étoiles */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.25), transparent);
  background-size: 480px 480px;
  opacity: 0.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --------------------------- Layout --------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; position: relative; }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

.h-section {
  font-size: clamp(1.7rem, 5.4vw, 2.5rem);
  margin: 0 0 16px;
  color: var(--text);
}
.lede { color: var(--text-muted); font-size: 1.06rem; max-width: 60ch; margin: 0; }

.accent { color: var(--orange); }
.soft   { color: var(--mint); }

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 14px 22px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--orange), #d96e28);
  color: #160d05;
  box-shadow: 0 14px 34px -12px rgba(235,130,61,0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(235,130,61,0.75); }
.btn--ghost {
  background: rgba(225,220,208,0.04);
  border-color: var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--mint); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }

/* =====================================================================
   CARD GIVRÉE — signature "brouillard / verre dépoli"
   ===================================================================== */
.card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 30px 60px -34px rgba(0,0,0,0.85);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
/* halo de brouillard interne */
.card::before {
  content: "";
  position: absolute;
  top: -45%; right: -25%;
  width: 70%; height: 150%;
  background: radial-gradient(closest-side, rgba(188,228,219,0.22), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
  opacity: 0.9;
}
/* voile givré supplémentaire en bas */
.card::after {
  content: "";
  position: absolute;
  left: -20%; bottom: -50%;
  width: 80%; height: 130%;
  background: radial-gradient(closest-side, rgba(151,182,199,0.16), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-5px); border-color: rgba(188,228,219,0.32); }

.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(235,130,61,0.18), rgba(188,228,219,0.10));
  border: 1px solid rgba(235,130,61,0.28);
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; color: var(--orange); }
.card h3 { font-size: 1.22rem; margin: 0 0 10px; }
.card p { color: var(--text-muted); margin: 0 0 14px; font-size: 0.97rem; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li {
  position: relative; padding-left: 24px; margin-bottom: 9px;
  color: var(--text-muted); font-size: 0.94rem;
}
.card li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 8px rgba(188,228,219,0.6);
}

/* =====================================================================
   POPUP DE CONFIRMATION — même habillage "verre givré" que les .card
   ===================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(12, 16, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

/* .modal-card hérite de .card : même fond givré, mêmes halos, même bordure */
.modal-card {
  width: 100%; max-width: 420px;
  text-align: center;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); opacity: 1; }
.modal-card:hover { transform: translateY(0) scale(1); } /* neutralise le hover des .card */
.modal-overlay.open .modal-card:hover { transform: translateY(0) scale(1); }

.modal-card__icon { margin: 0 auto 18px; }
.modal-card__icon svg { color: var(--mint); }
.modal-card h3 { font-size: 1.3rem; margin: 0 0 10px; }
.modal-card p { color: var(--text-muted); margin: 0 0 22px; }

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(225, 220, 208, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.modal-close:hover { background: rgba(235, 130, 61, 0.16); color: var(--orange); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }

/* Punchline réutilisable */
.punch {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3.6vw, 1.55rem);
  line-height: 1.28;
  color: var(--text);
  letter-spacing: -0.01em;
}
.punch--quote { position: relative; padding-left: 20px; }
.punch--quote::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), transparent);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,16,20,0.72);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-bottom-color: var(--glass-border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; }
.brand img { width: 34px; height: 34px; }
.brand span { font-size: 1.12rem; }
.brand small { display: block; font-size: 0.56rem; letter-spacing: 0.32em; color: var(--mint); font-weight: 600; margin-top: -2px; }
/* Logo complet fourni — utilisé en pied de page sans perturber le header compact */
.brand--footer-logo {
  display: inline-flex;
  align-items: flex-start;
}
.brand--footer-logo img {
  width: 146px;
  height: auto;
  object-fit: contain;
}


.nav__links { display: none; }
.nav__cta { display: none; }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(225,220,208,0.05); border: 1px solid var(--glass-border);
  color: var(--text); cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 99;
  background: rgba(12,16,20,0.96);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
  padding: 18px 22px 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: 13px 6px; font-family: var(--font-display); font-weight: 600;
  border-bottom: 1px solid rgba(225,220,208,0.07); color: var(--text);
}
.mobile-menu .btn { margin-top: 18px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 86svh, 780px);
  display: flex; align-items: flex-end;
  padding: 94px 0 56px;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--space-900);
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../assets/tourvoile-2025.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateZ(0);
}
.hero__media--parallax {
  background-attachment: fixed;
}
.hero__media::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.40);
  pointer-events: none;
}
.hero__media::after { /* renfort lisibilité bas */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,16,20,0.6) 100%);
  pointer-events: none;
}
.hero__content { max-width: 760px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.1rem, 8.5vw, 4.4rem);
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.hero h1 .line2 { color: var(--text-muted); font-weight: 400; }
.hero h1 .ov { color: var(--orange); }
.hero__sub { color: var(--text-muted); font-size: 1.1rem; max-width: 52ch; margin: 0 0 30px; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__trust {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 11px;
  font-size: 0.86rem; color: var(--text-muted);
  padding: 10px 16px; border-radius: 999px;
  background: rgba(225,220,208,0.05); border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.hero__trust svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; }

@media (max-width: 859px), (hover: none) {
  .hero__media--parallax {
    background-attachment: scroll;
  }
}


/* =====================================================================
   CONSTAT (manifeste)
   ===================================================================== */
.constat { text-align: left; }
.constat .punch { font-size: clamp(1.45rem, 5.2vw, 2.3rem); max-width: 22ch; margin-bottom: 18px; }
.constat__grid { display: grid; gap: 16px; margin-top: 34px; }
.stat {
  padding: 22px; border-radius: var(--radius);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.stat b { font-family: var(--font-display); font-size: 1.9rem; color: var(--mint); display: block; }
.stat span { color: var(--text-muted); font-size: 0.92rem; }

/* Grilles génériques */
.grid { display: grid; gap: 18px; }

/* =====================================================================
   MÉTHODE (étapes numérotées — séquence réelle)
   ===================================================================== */
.step { padding-top: 30px; }
.step__num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  color: rgba(188,228,219,0.16); line-height: 1;
}

/* =====================================================================
   DIAGNOSTIC (OMSAT)
   ===================================================================== */
.diag {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(235,130,61,0.10), transparent 60%),
    var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-l);
  padding: 38px 28px;
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.diag .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); padding: 6px 13px; border-radius: 999px;
  background: rgba(235,130,61,0.12); border: 1px solid rgba(235,130,61,0.3);
  margin-bottom: 18px;
}
.diag__list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 13px; }
.diag__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.diag__list svg { width: 20px; height: 20px; color: var(--mint); flex-shrink: 0; margin-top: 3px; }
.diag__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.diag__photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(180px, 24vw, 280px);
  margin: 0 0 26px;
  border-radius: calc(var(--radius-l) - 8px);
  border: 1px solid rgba(188,228,219,0.18);
  background: rgba(12,16,20,0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 26px 52px -36px rgba(0,0,0,0.88);
}
.diag__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.diag__photo + .btn {
  margin-top: 8px;
}

/* =====================================================================
   PREUVES SOCIALES
   ===================================================================== */
.proof-hero {
  display: grid; gap: 0;
  border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
}
.proof-hero__media {
  position: relative; min-height: 220px;
  background: linear-gradient(140deg, var(--space-600), var(--space-800));
  display: grid; place-items: center;
}
.proof-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}
.proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,16,20,0.10) 0%, rgba(12,16,20,0.52) 100%),
    radial-gradient(75% 65% at 20% 10%, rgba(188,228,219,0.18), transparent 70%);
  pointer-events: none;
}
.proof-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(225, 220, 208, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.75);
}
/* Encart photo réservé */
.photo-slot {
  display: grid; place-items: center; gap: 10px; text-align: center;
  color: var(--text-faint); padding: 28px;
}
.photo-slot svg { width: 34px; height: 34px; color: rgba(188,228,219,0.45); }
.photo-slot span { font-size: 0.8rem; letter-spacing: 0.08em; }
.proof-hero__body { padding: 30px 26px; }
.proof-hero__body .tag {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint); font-weight: 700;
}
.proof-hero__body h3 { font-size: 1.4rem; margin: 12px 0; }

.testi { display: flex; flex-direction: column; }
.testi__quote { font-size: 1rem; color: var(--text); margin: 0 0 18px; }
.testi__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(151,182,199,0.2), rgba(188,228,219,0.12));
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.testi__avatar svg { width: 22px; height: 22px; color: var(--blue); }
.testi__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testi__who b { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.testi__who span { color: var(--text-faint); font-size: 0.82rem; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; color: var(--orange); fill: var(--orange); }

.challenge-logos {
  display: none;
  margin-top: 24px;
  padding: 18px 14px;
  border: 1px solid rgba(225,220,208,0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12,16,20,0.78), rgba(12,16,20,0.62)),
    rgba(0,0,0,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}
.challenge-logos__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
  align-items: center;
}
.challenge-logos__item {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.challenge-logos img {
  width: auto;
  max-width: min(118px, 100%);
  max-height: 36px;
  object-fit: contain;
  opacity: 0.5;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--glass-border); border-radius: 16px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 20px; background: transparent; border: 0; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.faq__q svg { width: 20px; height: 20px; color: var(--orange); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a-inner { padding: 0 20px 20px; color: var(--text-muted); font-size: 0.96rem; }

/* =====================================================================
   CONTACT / RÉSERVATION
   ===================================================================== */
.booking { display: grid; gap: 22px; align-items: start; }

/* Illustration calendrier */
.calendar-wrap { padding: 26px; }

/* =====================================================================
   ENGAGEMENT CARD — remplace l'ancien formulaire
   ===================================================================== */
.engagement-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

/* Zone photo portrait */
.engagement-photo { width: 100%; flex-shrink: 0; }
.engagement-photo__inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(60% 70% at 50% 30%, rgba(151,182,199,0.14), transparent 70%),
    linear-gradient(160deg, rgba(29,38,48,0.9), rgba(17,22,28,0.95));
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
/* Quand un vrai portrait est inséré */
.engagement-photo__inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
/* Séparateur givré entre photo et corps */
.engagement-photo__inner::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(12,16,20,0.72), transparent);
  pointer-events: none;
}

.engagement-photo__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-faint); text-align: center; padding: 24px;
  position: relative; z-index: 1;
}
.engagement-photo__placeholder svg {
  width: 44px; height: 44px;
  color: rgba(188,228,219,0.38);
  stroke-width: 1.5;
}
.engagement-photo__placeholder span {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(225,220,208,0.32);
}

/* Corps texte */
.engagement-body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; gap: 0;
}
.engagement-body h3 {
  font-size: 1.18rem; margin: 0 0 10px; line-height: 1.25;
}
.engagement-body p.sub {
  color: var(--text-muted); font-size: 0.91rem; margin: 0 0 20px; line-height: 1.5;
}

/* Liste d'engagements */
.engagement-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 13px;
}
.engagement-list li {
  display: flex; align-items: flex-start; gap: 13px;
  color: var(--text-muted); font-size: 0.93rem;
  padding-left: 0; margin-bottom: 0;
}
/* Écrase le ::before générique des .card li */
.engagement-list li::before { display: none; }
.engagement-list li svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0; margin-top: 2px;
}
.calendar-visual {
  border: 1px solid rgba(188,228,219,0.22);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(70% 80% at 72% 20%, rgba(235,130,61,0.12), transparent 64%),
    rgba(12,16,20,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.calendar-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { border-top: 1px solid var(--glass-border); padding: 48px 0 36px; margin-top: 20px; }
.footer__grid { display: grid; gap: 30px; }
.footer .brand { margin-bottom: 14px; }
.footer p { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 8px; }
.footer a:hover { color: var(--mint); }
.footer__links { display: grid; gap: 9px; }
.footer__links a { color: var(--text-muted); font-size: 0.92rem; }
.footer__bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(225,220,208,0.07);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.82rem; color: var(--text-faint);
}
.contact-line { display: flex; align-items: center; gap: 9px; }
.contact-line svg { width: 17px; height: 17px; color: var(--orange); }

/* =====================================================================
   REVEAL on scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =====================================================================
   RESPONSIVE — tablette / desktop
   ===================================================================== */
@media (min-width: 600px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .constat__grid { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .proof-hero { grid-template-columns: 1fr 1.2fr; }
  .proof-hero__media { min-height: 100%; }
  .challenge-logos { padding: 22px 28px; }
  .challenge-logos__track { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 22px; }
  .challenge-logos__item { min-height: 52px; }
  .challenge-logos img { max-width: min(150px, 100%); max-height: 42px; }
}

@media (min-width: 860px) {
  .section { padding: 104px 0; }
  .wrap { padding: 0 32px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .challenge-logos { display: block; }
  .challenge-logos__track { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px 30px; }
  .challenge-logos img { max-width: 132px; max-height: 40px; }
  .booking { grid-template-columns: 1.1fr 1fr; align-items: start; }
  /* L'engagement-card s'adapte à la hauteur de la calendar-card */
  .engagement-card { height: 100%; }
  .engagement-photo__inner { aspect-ratio: unset; flex: 1; min-height: 200px; }
  .engagement-card { display: grid; grid-template-rows: 1fr auto; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .nav__links { display: flex; align-items: center; gap: 28px; }
  .nav__links a {
    font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
    color: var(--text-muted); position: relative; transition: color 0.25s var(--ease);
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--orange); transition: width 0.3s var(--ease);
  }
  .nav__links a:hover { color: var(--text); }
  .nav__links a:hover::after { width: 100%; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
}

@media (min-width: 1040px) {
  .diag { padding: 52px 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
  .diag__cta { align-self: center; }
}
