/* ════════════════════════════════════════════════════
   Re-né-sens · Thérapie du Bien-être
   Design System — Luxury Premium · Espresso & Blush
   Inspired by Core Atelier identity
   Palette: blush cream · espresso · bronze · warm brown
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

:root {
  /* ── Cream base — Core Atelier blush ── */
  --cream: #FAF4ED;             /* off-white very warm */
  --cream-warm: #F7E7DE;        /* signature blush */
  --cream-soft: #F9EFE8;        /* between cream & blush */
  --cream-deep: #ECD9CD;        /* deeper blush */
  --champagne: #E5CCBC;
  --white: #FFFFFF;

  /* ── Espresso (primary dark) ── */
  --espresso: #25140C;          /* signature deep espresso */
  --espresso-soft: #3A241A;
  --teal: #25140C;              /* alias for backward compat */
  --teal-deep: #25140C;
  --teal-darker: #1A0D07;
  --teal-soft: #E5CCBC;
  --teal-mist: #F7E7DE;

  /* ── Brown (warm secondary) ── */
  --brown: #543623;
  --brown-deep: #3F2718;
  --brown-soft: #6B4830;

  /* ── Bronze (CTA tone) ── */
  --bronze: #744C32;
  --bronze-deep: #5C3B25;
  --bronze-soft: #9A6F50;

  /* ── Gold (warm metallic accent) ── */
  --gold: #B08C5F;
  --gold-soft: #DDC79C;
  --gold-mist: #F2E8D0;
  --gold-deep: #8B6F4A;
  --cyan: #B08C5F;              /* alias for components using --cyan */
  --cyan-soft: #E5CCBC;
  --cyan-mist: #F7E7DE;

  /* ── Pink (brand accent — calligraphic logo, italics, focus) ── */
  --magenta: #D63384;
  --magenta-deep: #B82A6E;
  --magenta-soft: #F5C7DD;
  --magenta-mist: #FBE5EF;
  --pink: #D63384;            /* alias */
  --pink-deep: #B82A6E;
  --pink-soft: #F5C7DD;

  /* ── Ink (espresso text) ── */
  --ink: #25140C;
  --ink-soft: #475467;
  --ink-light: #737373;
  --ink-faint: #B8A99C;
  --on-dark: #F7E7DE;
  --on-dark-soft: rgba(247, 231, 222, 0.72);

  /* ── Typography ── Albert Sans + EB Garamond (Minion Pro alternative) ── */
  --font-display: 'EB Garamond', 'Minion Pro', Georgia, serif;
  --font-serif: 'EB Garamond', 'Minion Pro', Georgia, serif;
  --font-sans: 'Albert Sans', system-ui, -apple-system, sans-serif;
  --font-italic: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;

  /* ── Titre de page (H1) — taille unifiée sur toutes les pages intérieures ──
     Calibré pour tenir confortablement sur 2 lignes max. */
  --h1-page: clamp(2.25rem, 5vw, 4.5rem);
  --h1-page-lh: 1.05;

  /* ── Spacing scale ── */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* ── Layout ── */
  --section-pad: clamp(6rem, 11vw, 9rem);
  --container-max: 1240px;
  --container-pad: clamp(1.5rem, 5vw, 3rem);
  --content-max: 720px;

  /* ── Radius ── */
  --r-xs: 0.25rem;
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-full: 9999px;

  /* ── Motion ── */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.5s var(--ease);
  --transition-fast: 0.3s var(--ease);
}


/* ════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
svg { display: inline-block; vertical-align: middle; }

/* Default sizing for inline SVGs in buttons / links */
.btn svg, .link-arrow svg, .why-us__btn svg, .signature__cta svg,
.therapy-card__link svg, .form-cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

::selection { background: var(--cream-warm); color: var(--espresso); }


/* ════════════════════════════════════════════════════
   AMBIENT BACKGROUND — Drifting glow blobs
   ════════════════════════════════════════════════════ */

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}

.ambient-blob--1 {
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle at center, var(--gold-soft) 0%, var(--cream-warm) 35%, transparent 70%);
  top: -10%;
  left: -15%;
  animation: drift1 24s ease-in-out infinite;
}

.ambient-blob--2 {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle at center, var(--bronze-soft) 0%, transparent 70%);
  top: 35%;
  right: -10%;
  opacity: 0.32;
  animation: drift2 32s ease-in-out infinite;
}

.ambient-blob--3 {
  width: 45vw;
  height: 45vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle at center, var(--champagne) 0%, transparent 70%);
  bottom: 5%;
  left: 30%;
  opacity: 0.4;
  animation: drift3 28s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15%, 8%) scale(1.08); }
  66% { transform: translate(-5%, 18%) scale(0.95); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12%, -10%) scale(1.12); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(10%, -15%) scale(1.05); }
  80% { transform: translate(-8%, 5%) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-blob { animation: none; }
}

/* Make sure body content sits above the ambient layer */
body > main, body > header, body > footer { position: relative; z-index: 1; }
.scroll-progress { z-index: 200; }


/* ════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  letter-spacing: -0.035em;
  font-weight: 350;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  font-weight: 350;
  line-height: 1;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
}

h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

em, .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.script {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--magenta);
}

p { line-height: 1.7; color: var(--ink-soft); }


/* ── Micro-labels ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--cyan);
}

.eyebrow--cream { color: var(--cream); }
.eyebrow--cream::before { background: var(--gold); }


/* ── Container & Sections ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }
.section--cream-warm { background: var(--cream-warm); }
.section--teal { background: var(--teal-deep); color: var(--on-dark); }


/* ════════════════════════════════════════════════════
   BUTTONS & LINKS
   ════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: translateY(1px); }
.btn svg { width: 0.95rem; height: 0.95rem; transition: transform var(--transition); }

.btn--primary {
  background: var(--teal-deep);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--teal-darker);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 67, 80, 0.25);
}

.btn--primary:hover svg { transform: translateX(3px); }

.btn--cream {
  background: var(--cream);
  color: var(--teal-darker);
}

.btn--cream:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 1rem 0;
  border-radius: 0;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn--ghost:hover::after { transform: scaleX(0.6); }
.btn--ghost:hover svg { transform: translateX(4px); }

.btn--full { width: 100%; }


/* ── Animated link ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.link-arrow:hover { color: var(--teal); }
.link-arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.link-arrow svg { width: 0.85rem; height: 0.85rem; transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }


/* ════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}


/* ════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(20, 34, 42, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  max-width: none;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}

/* Header-level CTA — right side, after centered nav */
.header__cta {
  justify-self: end;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

/* Brand logo PNG (Re-Né-Sens Thérapie Bien-être) */
.logo__img {
  height: 86px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition), height var(--transition);
}

.header.scrolled .logo__img { height: 68px; }

.logo:hover .logo__img { transform: rotate(-2deg) scale(1.03); }

.logo--light { color: var(--cream); }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: width 0.4s var(--ease), left 0.4s var(--ease), background 0.3s ease;
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; left: 0; }
.nav__link.active { color: var(--ink); font-weight: 500; }
.nav__link.active::after {
  width: 100% !important;
  left: 0 !important;
  background: var(--magenta) !important;
}

.nav__cta {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 500;
  transition: all var(--transition);
}

.nav__cta::after { display: none; }

.nav__cta:hover {
  color: var(--cream);
  background: var(--teal-darker);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

/* Espacement des barres sans dépendre du flex gap (non supporté sur vieux Safari) */
.burger__line + .burger__line { margin-top: 6px; }

.burger.open .burger__line:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
.burger.open .burger__line:nth-child(2) { opacity: 0; }
.burger.open .burger__line:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); }

/* ════════════════════════════════════════════════════
   SEARCH BAR — Mini loupe in header
   ════════════════════════════════════════════════════ */

/* ── Search inline (always-open compact bar in header) ── */
.search-inline {
  position: relative;
  justify-self: end;
  width: 280px;
  flex-shrink: 0;
}
.search-inline__input {
  width: 100%;
  padding: 0.55rem 2.2rem 0.55rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-md);
  outline: none;
  box-shadow: 0 2px 8px rgba(37, 20, 12, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-inline__input::placeholder {
  color: var(--ink-faint);
  font-size: 0.88rem;
}
.search-inline__input:focus {
  border-color: var(--bronze);
  box-shadow: 0 4px 20px rgba(37, 20, 12, 0.12);
}
.search-inline__icon {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--ink-light);
  opacity: 0.4;
  pointer-events: none;
}

/* Hero variant — white on dark */
body.has-hero .header:not(.scrolled) .search-inline__input {
  background: var(--white);
  border-color: var(--cream-deep);
  color: var(--espresso);
}
body.has-hero .header:not(.scrolled) .search-inline__input::placeholder {
  color: var(--ink-faint);
}
body.has-hero .header:not(.scrolled) .search-inline__input:focus {
  border-color: var(--bronze);
  box-shadow: 0 4px 20px rgba(37, 20, 12, 0.12);
}
body.has-hero .header:not(.scrolled) .search-inline__icon {
  color: var(--cream);
}

/* Results dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(37, 20, 12, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
  z-index: 100;
}
.search-results.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background var(--transition-fast);
  border-bottom: 1px solid rgba(37, 20, 12, 0.05);
}
.search__result:last-child { border-bottom: none; }
.search__result:hover { background: var(--cream-soft); }

.search__result-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--espresso);
  font-weight: 500;
}
.search__result-cat {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  white-space: nowrap;
}
.search__empty {
  padding: 1rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--ink-light);
}

@media (max-width: 768px) {
  .search-inline { display: none; }
  .logo__img { height: 64px; }
  .header.scrolled .logo__img { height: 52px; }
}

@media (max-width: 480px) {
  .logo__img { height: 54px; }
  .header.scrolled .logo__img { height: 44px; }
}


/* ════════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 2.5rem 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin: auto;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover { color: var(--magenta); }

.mobile-menu__cta {
  margin-top: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--teal-deep);
  color: var(--cream) !important;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Écrans peu hauts (petits mobiles, paysage) : réduire encore pour éviter tout débordement vertical */
@media (max-height: 620px) {
  .mobile-menu__link { font-size: 1.25rem; }
  .mobile-menu nav { gap: 0.8rem; }
  .mobile-menu__cta { padding: 0.7rem 1.7rem; font-size: 0.85rem; }
}


/* ════════════════════════════════════════════════════
   HERO — Full-bleed luxury · Editorial bottom-left
   ════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background-color: var(--espresso);
}

/* Hero background video — Agnès portrait, fullscreen cover */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  /* Subtle desaturation for editorial mood */
  filter: saturate(0.95) brightness(0.92);
}

/* Hero overlay — gradient for legibility of cream text on top of video */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(37, 20, 12, 0.35) 0%, rgba(37, 20, 12, 0.45) 55%, rgba(37, 20, 12, 0.7) 100%),
    radial-gradient(ellipse at center bottom, rgba(37, 20, 12, 0.55) 0%, transparent 65%);
  pointer-events: none;
}

.hero ~ * { position: relative; }

.hero__inner {
  max-width: 100%;
  margin: 0;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tagline — small italic kicker above main title */
.hero__tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.hero__tagline::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--cream);
  opacity: 0.5;
}

/* Bottom-left lowercase title (Core Atelier style) */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4.2vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 2rem;
  max-width: none;
}

.hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.hero h1 em.hero__h1-soins { color: var(--bronze); }
.hero h1 em.hero__h1-formations { color: var(--bronze-soft); }

/* Hero paths — two clear streams: particuliers & professionnels */
.hero__paths {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero__path {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Ink ripple effect */
.hero__path .ink-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ink-expand 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes ink-expand {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

.hero__path-label {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-right: 0.15rem;
  opacity: 0.85;
}

.hero__path svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform var(--transition);
}

.hero__path:hover svg { transform: translate(3px, -3px); }

/* — Soins (secondary) : transparent + border ── */
.hero__path--soins {
  background: transparent;
  border: 1px solid rgba(248, 242, 228, 0.55);
  color: var(--cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__path--soins .hero__path-label { color: var(--pink-soft); }

.hero__path--soins:hover {
  background: rgba(248, 242, 228, 0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* — Formations (primary) : cream fill + dark text ── */
.hero__path--formations {
  background: var(--cream);
  border: 1px solid var(--cream);
  color: var(--espresso);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero__path--formations .hero__path-label { color: var(--magenta); }

.hero__path--formations:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

/* Hero CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--espresso);
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.hero__cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

/* ── Floating Badge — Focus Formations (glassmorphism, overlap next section) ── */
.hero__floating-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.5rem 1.15rem 1.4rem;
  background: rgba(37, 20, 12, 0.55);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(248, 242, 228, 0.18);
  border-radius: var(--r-md);
  color: var(--cream);
  text-decoration: none;
  max-width: 360px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(248, 242, 228, 0.12) inset;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-sans);
}

.hero__floating-badge:hover {
  transform: translateX(-50%) translateY(-3px);
  background: rgba(37, 20, 12, 0.7);
  border-color: var(--pink-soft);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(248, 242, 228, 0.18) inset;
}

/* Pulsing dot — "live"/"new" signal */
.hero__floating-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pink-soft);
  flex-shrink: 0;
  position: relative;
  animation: badge-pulse 2.4s ease-in-out infinite;
}

.hero__floating-badge__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--pink-soft);
  opacity: 0.4;
  animation: badge-pulse-ring 2.4s ease-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes badge-pulse-ring {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__floating-badge__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero__floating-badge__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.hero__floating-badge__text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.hero__floating-badge__arrow {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--cream);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__floating-badge__arrow svg { width: 100%; height: 100%; stroke-width: 1.6; }

.hero__floating-badge:hover .hero__floating-badge__arrow {
  transform: translate(4px, -4px);
  color: var(--pink-soft);
}


/* KPIs row — Avis Google + Élèves formés, centered between H1 and CTAs */
.hero__kpis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: 0 0 1.75rem;
}

.hero__kpi-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(248, 242, 228, 0.25);
}

/* Featured / trust badge — single KPI unit */
.hero__featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__featured-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 231, 222, 0.7);
  font-weight: 500;
}

.hero__featured-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__featured-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: var(--gold-soft);
}

.hero__featured-stars svg { width: 1rem; height: 1rem; }

/* Header on hero (transparent until scroll) */
body.has-hero .header:not(.scrolled) .logo,
body.has-hero .header:not(.scrolled) .nav__link {
  color: var(--cream);
}
body.has-hero .header:not(.scrolled) .logo__sep { color: var(--pink-soft); }
body.has-hero .header:not(.scrolled) .logo__ne { color: var(--pink-soft); }
body.has-hero .header:not(.scrolled) .nav__link::after { background: var(--cream); }
body.has-hero .header:not(.scrolled) .nav__link.active { color: var(--cream); }
body.has-hero .header:not(.scrolled) .burger__line {
  background: var(--cream);
  box-shadow: 0 0 4px rgba(37, 20, 12, 0.55);
}
body.has-hero .header:not(.scrolled) .nav__cta {
  background: rgba(248, 242, 228, 0.15);
  border: 1px solid rgba(248, 242, 228, 0.4);
  color: var(--cream) !important;
  backdrop-filter: blur(8px);
}
body.has-hero .header:not(.scrolled) .nav__cta:hover {
  background: var(--cream);
  color: var(--teal-darker) !important;
  border-color: transparent;
}


/* ════════════════════════════════════════════════════
   SIGNATURE TREATMENTS — 3 image cards numbered
   ════════════════════════════════════════════════════ */

.signature {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
}

.signature__head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.signature__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1;
  color: var(--espresso);
}

.signature__head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.signature__head p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
}

/* Standalone section titles above decks */
.signature__section-head {
  text-align: center;
  width: 100%;
  padding: 0 var(--container-pad);
}

.signature__section-head .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.signature__section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--espresso);
  margin-top: 0.5rem;
}

.signature__section-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

/* Variant with a top-right CTA, in face of the section title */
.signature__section-head--with-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
}

.signature__section-head--with-cta .signature__section-head__title {
  display: flex;
  flex-direction: column;
}

.signature__section-head--with-cta .eyebrow {
  margin-left: 0;
  margin-right: 0;
}

.signature__section-head__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-full);
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
  margin-bottom: 0.6rem;
}

.signature__section-head__cta svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.35s var(--ease);
}

.signature__section-head__cta:hover {
  background: #3a2418;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 20, 12, 0.18);
}

.signature__section-head__cta:hover svg {
  transform: translate(3px, -1px);
}

@media (max-width: 768px) {
  .signature__section-head--with-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .signature__section-head__cta {
    margin-bottom: 0;
    align-self: stretch;
    justify-content: center;
  }
}

.signature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.95rem 1.85rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.signature__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.signature__cta svg { transition: transform var(--transition); }
.signature__cta:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════════════════
   SIGNATURE — Dual Tarot Card Stacks
   Two interactive decks side-by-side
   ════════════════════════════════════════════════════ */

/* Stacked layout : soins en premier, formations en dessous */
.signature__decks {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--container-pad) 2rem;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.deck {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  border-radius: var(--r-md);
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
}

/* Higher specificity to override .reveal's transition shorthand
   Includes all needed transitions: flex (slower/silky), bg, filter, opacity & transform */
.signature__decks .deck {
  transition:
    flex 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.7s ease,
    filter 0.7s ease,
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.deck--soins { background: var(--cream); }
.deck--formations { background: var(--cream-warm); }

/* Inner content wrapper — centered editorial */
.deck__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}

.deck__desc {
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Huge text reveal list — items in very large serif */
.deck__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.deck__list li {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink-light);
  padding: 0.55rem 0;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1px solid rgba(37, 20, 12, 0.08);
  position: relative;
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.deck__list li:last-child { border-bottom: none; }

.deck__list li em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  margin-left: 0.25em;
  font-size: 0.85em;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

/* When hovering an item, it activates */
.deck__list li:hover,
.deck__list li.is-active {
  color: var(--espresso);
  letter-spacing: -0.03em;
}

.deck__list li:hover em,
.deck__list li.is-active em { opacity: 1; }

/* When ANY item is hovered, dim the others (nice editorial effect) */
.deck__list:hover li:not(:hover):not(.is-active) {
  color: rgba(37, 20, 12, 0.22);
}

.deck--formations .deck__list li em { color: var(--bronze); }

/* ── Soins photo grid ── */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.soin-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(37, 20, 12, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37, 20, 12, 0.12);
}
.soin-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.soin-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.soin-card:hover .soin-card__img img {
  transform: scale(1.06);
}
.soin-card__body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.soin-card__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.55rem;
}
.soin-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.85rem;
}
.soin-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.soin-card__title a:hover {
  color: var(--bronze);
}
.soin-card__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}
.soin-card__desc {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(37, 20, 12, 0.72);
  margin: 0 0 1.4rem;
  flex: 1;
}
.soin-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}
.soin-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.soin-card__cta svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.35s var(--ease);
}
.soin-card__cta:hover svg {
  transform: translateX(3px);
}
.soin-card__cta--primary {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
}
.soin-card__cta--primary:hover {
  background: #3a2418;
  border-color: #3a2418;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 20, 12, 0.18);
}
.soin-card__cta--secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(37, 20, 12, 0.22);
}
.soin-card__cta--secondary:hover {
  background: rgba(37, 20, 12, 0.05);
  border-color: var(--espresso);
  transform: translateY(-1px);
}

/* 5 cards: 3+2 layout — last 2 items centered */
.soins-grid .soin-card:nth-child(4) { grid-column: 1 / 2; }
.soins-grid .soin-card:nth-child(5) { grid-column: 2 / 3; }

@media (max-width: 900px) {
  .soins-grid { grid-template-columns: repeat(2, 1fr); }
  .soins-grid .soin-card:nth-child(4),
  .soins-grid .soin-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 600px) {
  .soins-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .soin-card__body { padding: 1.25rem 1.35rem 1.35rem; }
  .soin-card__actions { flex-direction: column; }
  .soin-card__cta { width: 100%; }
}

/* Chevron arrow on each item — signals clickable */
.deck__list-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.7em;
  color: var(--bronze);
  vertical-align: -0.05em;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s ease;
  flex-shrink: 0;
}

.deck__list-arrow svg {
  width: 100%;
  height: 100%;
  stroke-width: 3;
}

.deck__list li:hover .deck__list-arrow,
.deck__list li.is-active .deck__list-arrow {
  transform: translateX(10px);
  color: var(--magenta);
}

/* Dim the others' arrows when one is active */
.deck__list:hover li:not(:hover):not(.is-active) .deck__list-arrow {
  color: rgba(116, 76, 50, 0.25);
}


/* ════════════════════════════════════════════════════
   MODAL — Popup with backdrop blur for soins / formations
   ════════════════════════════════════════════════════ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 20, 12, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  background: var(--cream);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  transform: scale(0.94) translateY(30px);
  transition: transform 0.55s var(--ease), opacity 0.4s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.modal-backdrop.is-open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close button */
.modal__close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(247, 231, 222, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  border: none;
  transition: all var(--transition);
}

.modal__close svg {
  width: 1rem;
  height: 1rem;
  color: var(--espresso);
  transition: color var(--transition);
}

.modal__close:hover {
  background: var(--magenta);
  transform: rotate(90deg);
}

.modal__close:hover svg { color: var(--cream); }

/* Image */
.modal__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream-warm) center / cover no-repeat;
  flex-shrink: 0;
  position: relative;
}

.modal__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,20,12,0) 60%, rgba(37,20,12,0.18) 100%);
}

/* Body */
.modal__body {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  overflow-y: auto;
}

.modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.modal__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--magenta);
  opacity: 0.6;
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--espresso);
  margin: 0 0 1.25rem;
}

.modal__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.modal__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

/* CTA button */
.modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.modal__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
}

.modal__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(116, 76, 50, 0.35);
}

.modal__cta:hover svg { transform: translateX(3px); }

/* Modal actions row */
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Secondary CTA (outline style) */
.modal__cta--secondary {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}

.modal__cta--secondary:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

/* Lock body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Mobile: smaller modal padding */
@media (max-width: 768px) {
  .modal-backdrop { padding: 1rem; }
  .modal__close { top: 0.85rem; right: 0.85rem; width: 2.2rem; height: 2.2rem; }
}

/* Hover behaviour */
.signature__decks .deck:hover { background: var(--cream-soft); }
.signature__decks .deck--formations:hover { background: var(--cream-warm); filter: brightness(1.015); }

/* CTA always visible (stacked layout) */
.deck__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.deck__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }

.deck__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.deck__cta:hover svg { transform: translateX(3px); }

.deck__header {
  text-align: center;
  max-width: 360px;
}

.deck__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.85rem;
}

.deck__eyebrow::before,
.deck__eyebrow::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--magenta);
  opacity: 0.5;
}

.deck__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--espresso);
  margin: 0;
}

.deck__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.tarot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.tarot__stack {
  position: relative;
  width: min(340px, 88vw);
  height: min(520px, calc(88vw * 1.526));
  perspective: 1200px;
  cursor: grab;
}

.tarot__stack:active { cursor: grabbing; }

/* Each card */
.tarot-card {
  position: absolute;
  inset: 0;
  background: var(--cream);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(37, 20, 12, 0.05) inset,
    0 30px 60px -20px rgba(37, 20, 12, 0.35),
    0 18px 40px -25px rgba(37, 20, 12, 0.4);
  user-select: none;
  -webkit-user-select: none;
  transform-origin: center 110%;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s var(--ease),
    opacity 0.5s var(--ease);
  will-change: transform;
}

/* Stack positions (data-position 0 = top, 2 = back) */
.tarot-card[data-position="0"] {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 3;
}

.tarot-card[data-position="1"] {
  transform: translate3d(0, 16px, 0) rotate(-3deg) scale(0.97);
  z-index: 2;
  box-shadow:
    0 1px 0 0 rgba(37, 20, 12, 0.05) inset,
    0 18px 40px -20px rgba(37, 20, 12, 0.25);
}

.tarot-card[data-position="2"] {
  transform: translate3d(0, 32px, 0) rotate(3deg) scale(0.94);
  z-index: 1;
  box-shadow:
    0 1px 0 0 rgba(37, 20, 12, 0.05) inset,
    0 12px 30px -18px rgba(37, 20, 12, 0.2);
}

/* ── Fan-out on hover — cartes du dessous s'écartent en éventail ──
   Restreint aux appareils à pointeur fin (souris) : sur tactile, le survol
   "collant" déclenché au tap ferait exploser l'éventail hors écran. */
@media (hover: hover) and (pointer: fine) {
.tarot__stack:hover .tarot-card[data-position="0"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  animation: none;
  transform: translate3d(0, -6px, 0) rotate(0deg) scale(1.02);
}

.tarot__stack:hover .tarot-card[data-position="1"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  transform: translate3d(-44px, 6px, 0) rotate(-9deg) scale(0.97);
  box-shadow:
    0 1px 0 0 rgba(37, 20, 12, 0.05) inset,
    0 22px 50px -18px rgba(37, 20, 12, 0.3);
}

.tarot__stack:hover .tarot-card[data-position="2"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  transform: translate3d(44px, 18px, 0) rotate(9deg) scale(0.94);
  box-shadow:
    0 1px 0 0 rgba(37, 20, 12, 0.05) inset,
    0 18px 40px -16px rgba(37, 20, 12, 0.28);
}
}

/* Swipe-out states */
.tarot-card.is-swiping-right {
  transform: translate3d(140%, -10%, 0) rotate(28deg) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.tarot-card.is-swiping-left {
  transform: translate3d(-140%, -10%, 0) rotate(-28deg) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.tarot-card.is-resetting {
  transition: none;
}

/* Hint wiggle for top card */
.tarot-card[data-position="0"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  animation: tarot-hint 5s ease-in-out 1.5s infinite;
}

@keyframes tarot-hint {
  0%, 88%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  92% { transform: translate3d(8px, -2px, 0) rotate(1.5deg); }
  96% { transform: translate3d(-6px, -1px, 0) rotate(-1deg); }
}

/* Inner card layout — tarot frame */
.tarot-card__frame {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(37, 20, 12, 0.12);
  border-radius: calc(var(--r-md) - 0.5rem);
  pointer-events: none;
  z-index: 4;
}

.tarot-card__frame::before,
.tarot-card__frame::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--bronze);
  opacity: 0.4;
}

.tarot-card__frame::before {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
}

.tarot-card__frame::after {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
}

/* Top roman + suit */
.tarot-card__top {
  position: absolute;
  top: 1.85rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  z-index: 3;
}

.tarot-card__top::before,
.tarot-card__top::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.5;
}

/* Roman numeral badge */
.tarot-card__roman {
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--espresso);
  letter-spacing: 0.04em;
  z-index: 3;
}

/* Image area (centered, framed) */
.tarot-card__image {
  position: absolute;
  inset: 6rem 1.5rem 12rem;
  border-radius: calc(var(--r-md) - 0.75rem);
  overflow: hidden;
  background: var(--cream-warm);
}

.tarot-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}

.tarot-card[data-position="0"]:not(.is-dragging) .tarot-card__image:hover .tarot-card__bg {
  transform: scale(1.06);
}

/* Body — title + description + meta */
.tarot-card__body {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  text-align: center;
  z-index: 3;
}

.tarot-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--espresso);
  letter-spacing: -0.015em;
  margin: 0 0 0.55rem;
}

.tarot-card__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
  display: block;
  font-size: 0.92em;
  margin-top: 0.1em;
}

.tarot-card__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto 1.1rem;
  max-width: 28ch;
}

.tarot-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid rgba(37, 20, 12, 0.08);
}

.tarot-card__meta a {
  color: var(--espresso);
  font-weight: 600;
  transition: color var(--transition-fast);
  pointer-events: auto;
}

.tarot-card__meta a:hover { color: var(--bronze); }

.tarot-card__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--bronze);
  border-radius: 50%;
  opacity: 0.5;
}

/* Hint below stack */
.tarot__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.85;
}

.tarot__hint-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--bronze);
  animation: tarot-hint-bounce 2.4s ease-in-out infinite;
}

.tarot__hint-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

@keyframes tarot-hint-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Indicator dots */
.tarot__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.tarot__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-deep);
  transition: all var(--transition);
  cursor: pointer;
}

.tarot__dot.is-active {
  background: var(--bronze);
  width: 24px;
  border-radius: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .tarot-card[data-position="0"] { animation: none; }
  .tarot__hint-icon { animation: none; }
}

/* ════════════════════════════════════════════════════
   TAROT FULL — Big cards variant for therapies page
   ════════════════════════════════════════════════════ */

.tarot--full {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.tarot--full .tarot__stack {
  width: min(480px, 85vw);
  height: min(720px, calc(85vw * 1.5));
}

.tarot--full .tarot-card__image {
  inset: 5.5rem 1.5rem 14rem;
}

.tarot--full .tarot-card__body {
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
}

.tarot--full .tarot-card__title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.7rem;
}

.tarot--full .tarot-card__desc {
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: 1.2rem;
}

.tarot--full .tarot-card__roman {
  font-size: 2.6rem;
}

/* ── Fan-out par défaut sur la version full ── */
.tarot--full .tarot-card[data-position="0"] {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 5;
}

.tarot--full .tarot-card[data-position="1"] {
  transform: translate3d(-50px, 8px, 0) rotate(-7deg) scale(0.96);
  z-index: 4;
}

.tarot--full .tarot-card[data-position="2"] {
  transform: translate3d(50px, 8px, 0) rotate(7deg) scale(0.96);
  z-index: 3;
}

.tarot--full .tarot-card[data-position="3"] {
  transform: translate3d(-28px, 20px, 0) rotate(-4deg) scale(0.92);
  z-index: 2;
}

.tarot--full .tarot-card[data-position="4"] {
  transform: translate3d(28px, 20px, 0) rotate(4deg) scale(0.92);
  z-index: 1;
}

/* Hover fan de la variante full — pointeur fin uniquement (idem ci-dessus) */
@media (hover: hover) and (pointer: fine) {
.tarot--full .tarot__stack:hover .tarot-card[data-position="0"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  transform: translate3d(0, -4px, 0) rotate(0deg) scale(1.01);
}

.tarot--full .tarot__stack:hover .tarot-card[data-position="1"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  transform: translate3d(-58px, 6px, 0) rotate(-9deg) scale(0.96);
}

.tarot--full .tarot__stack:hover .tarot-card[data-position="2"]:not(.is-swiping-left):not(.is-swiping-right):not(.is-dragging) {
  transform: translate3d(58px, 6px, 0) rotate(9deg) scale(0.96);
}
}

/* ── Arrow buttons ── */
.tarot__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--cream-deep);
  background: rgba(250, 244, 237, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: 0 4px 16px rgba(37, 20, 12, 0.08);
}

.tarot__arrow svg {
  width: 22px;
  height: 22px;
  color: var(--espresso);
  transition: color var(--transition-fast);
}

.tarot__arrow:hover {
  background: var(--white);
  border-color: var(--bronze);
  box-shadow: 0 6px 24px rgba(37, 20, 12, 0.14);
}

.tarot__arrow:hover svg {
  color: var(--bronze);
}

.tarot__arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.tarot__arrow--left {
  left: -76px;
}

.tarot__arrow--right {
  right: -76px;
}

/* ── Nav container (dots centered below) ── */
.tarot__nav {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ── Responsive arrows ── */
@media (max-width: 680px) {
  .tarot--full .tarot__stack {
    width: min(380px, 90vw);
    height: min(570px, calc(90vw * 1.5));
  }

  .tarot__arrow {
    width: 44px;
    height: 44px;
  }

  .tarot__arrow svg {
    width: 18px;
    height: 18px;
  }

  .tarot__arrow--left {
    left: -8px;
  }

  .tarot__arrow--right {
    right: -8px;
  }
}

@media (max-width: 480px) {
  .tarot--full .tarot__stack {
    width: 84vw;
    height: calc(84vw * 1.526);
  }

  /* Éventail resserré sur mobile (la carte fait ~84vw → les cartes latérales
     déborderaient hors écran avec le décalage desktop de ±50px). */
  .tarot--full .tarot-card[data-position="1"] { transform: translate3d(-16px, 8px, 0) rotate(-4deg) scale(0.95); }
  .tarot--full .tarot-card[data-position="2"] { transform: translate3d(16px, 8px, 0) rotate(4deg) scale(0.95); }
  .tarot--full .tarot-card[data-position="3"] { transform: translate3d(-9px, 18px, 0) rotate(-2.5deg) scale(0.91); }
  .tarot--full .tarot-card[data-position="4"] { transform: translate3d(9px, 18px, 0) rotate(2.5deg) scale(0.91); }

  .tarot__arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -60px;
    transform: none;
  }

  .tarot__arrow:active {
    transform: scale(0.94);
  }

  .tarot__arrow--left {
    left: calc(50% - 60px);
  }

  .tarot__arrow--right {
    right: calc(50% - 60px);
  }

  .tarot__nav {
    margin-top: 4.5rem;
  }

  .tarot--full .tarot-card__image {
    inset: 5rem 1.2rem 11.5rem;
  }

  .tarot--full .tarot-card__body {
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
  }
}

/* ════════════════════════════════════════════════════
   TAROT POPUP — Card detail overlay
   ════════════════════════════════════════════════════ */

.tarot-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tarot-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.tarot-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 20, 12, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tarot-popup__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-lg);
  width: min(480px, 90vw);
  max-height: 88vh;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(37, 20, 12, 0.45),
    0 20px 50px -25px rgba(37, 20, 12, 0.5);
  transform: scale(0.88) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tarot-popup.is-open .tarot-popup__card {
  transform: scale(1) translateY(0);
}

.tarot-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(250, 244, 237, 0.9);
  backdrop-filter: blur(6px);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.tarot-popup__close:hover {
  background: var(--white);
  transform: scale(1.08);
}

.tarot-popup__image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
}

.tarot-popup__body {
  padding: 2rem 2.2rem 2.5rem;
  text-align: center;
}

.tarot-popup__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.tarot-popup__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
  margin: 0 0 1rem;
}

.tarot-popup__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
  display: block;
  font-size: 0.88em;
  margin-top: 0.15em;
}

.tarot-popup__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto 2rem;
}

.tarot-popup__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.tarot-popup__cta svg {
  width: 18px;
  height: 18px;
}

.tarot-popup__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .tarot-popup__image { height: 200px; }
  .tarot-popup__body { padding: 1.5rem 1.5rem 2rem; }
}


/* ════════════════════════════════════════════════════
   WHY US — Split dark section with feature card
   ════════════════════════════════════════════════════ */

.why-us {
  position: relative;
  padding: var(--section-pad) 0;
  background-color: var(--teal-darker);
  background-image:
    linear-gradient(135deg, rgba(15, 54, 53, 0.92) 0%, rgba(15, 54, 53, 0.85) 100%),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  color: var(--cream);
  overflow: hidden;
}

.why-us__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why-us__copy { color: var(--cream); }

.why-us__copy .eyebrow {
  color: var(--gold-soft);
}

.why-us__copy .eyebrow::before { background: var(--gold); }

.why-us__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.why-us__copy h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
  display: block;
}

.why-us__copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-dark-soft);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.why-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--bronze);
  color: var(--cream);
  padding: 0.95rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.why-us__btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.why-us__btn:hover {
  background: var(--bronze-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(116, 76, 50, 0.35);
}

.why-us__btn:hover svg { transform: translateX(3px); }

/* Feature card — white card with checklist */
.why-us__card {
  background: transparent;
  color: var(--cream);
  padding: 0;
}

.why-us__feature {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(247, 231, 222, 0.18);
  align-items: start;
}

.why-us__feature:first-child { padding-top: 0; }
.why-us__feature:last-child { border-bottom: none; padding-bottom: 0; }

.why-us__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-mist);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.why-us__feature:hover .why-us__icon {
  background: var(--bronze);
  color: var(--gold-soft);
}

.why-us__icon svg { width: 1.1rem; height: 1.1rem; }

.why-us__feature-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.why-us__feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin: 0;
}


/* ════════════════════════════════════════════════════
   OFFERS — Bento Grid (mosaic of color/image cards)
   ════════════════════════════════════════════════════ */

.offers {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.offers__head {
  max-width: var(--container-max);
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  padding: 0 var(--container-pad);
  text-align: center;
}

.offers__title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--espresso);
}

.offers__title h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.offers__title p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 auto;
}

/* Bento mosaic */
.bento {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.5s var(--ease);
  border-radius: var(--r-sm);
}

.bento-card:hover { transform: translateY(-4px); }

/* Top stripe accent */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 4px;
  background: var(--magenta);
  z-index: 3;
  transition: width 0.5s var(--ease);
}

.bento-card:hover::before { width: 65%; }

/* Card variants */
.bento-card--bronze {
  background: var(--bronze);
  color: var(--cream);
}
.bento-card--espresso {
  background: var(--espresso);
  color: var(--cream);
}
.bento-card--cream {
  background: var(--cream-warm);
  color: var(--espresso);
}
.bento-card--cream::before { background: var(--bronze); }
.bento-card--espresso::before { background: var(--magenta); }

/* Image card — full bg, no padding inside text */
.bento-card--image {
  background-size: cover;
  background-position: center;
  cursor: default;
}

.bento-card--image::before {
  background: var(--cream-warm);
  width: 28%;
}

.bento-card--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 20, 12, 0) 60%, rgba(37, 20, 12, 0.35) 100%);
  z-index: 1;
}

/* Lead card — cream with intro question + CTA */
.bento-card--lead {
  background: var(--cream);
  color: var(--espresso);
  border: 1px solid var(--cream-deep);
  cursor: default;
}

.bento-card--lead::before { background: var(--magenta); }

.bento-card--lead .bento-card__title {
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--espresso);
  margin: 0;
  margin-top: 1.5rem;
}

.bento-card--lead .bento-card__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  display: block;
}

/* Number top-left */
.bento-card__num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0.6;
  text-transform: uppercase;
  z-index: 2;
}

.bento-card--cream .bento-card__num { opacity: 0.55; }

/* Arrow top-right */
.bento-card__arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.4s var(--ease);
}

.bento-card__arrow svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.bento-card:hover .bento-card__arrow {
  transform: translate(4px, -4px);
}

/* Header row inside card */
.bento-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Title at bottom */
.bento-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Lead CTA link */
.bento-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  transition: gap var(--transition), color var(--transition);
}

.bento-card__cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.bento-card--lead:hover .bento-card__cta {
  gap: 0.75rem;
  color: var(--magenta-deep);
}

.bento-card--lead:hover .bento-card__cta::after { transform: scaleX(1); }

.bento-card__cta svg { width: 0.9rem; height: 0.9rem; transition: transform var(--transition); }
.bento-card--lead:hover .bento-card__cta svg { transform: translateX(4px); }


/* ════════════════════════════════════════════════════
   STATS STRIP — minimal replacement for marquee
   ════════════════════════════════════════════════════ */

.stats {
  padding: 2.5rem 0;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}

.stats__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}

.stats__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
}

.stats__num {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.stats__num em {
  font-family: var(--font-italic);
  color: var(--magenta);
  font-style: italic;
}

.stats__sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}


/* ════════════════════════════════════════════════════
   SECTION HEADER (shared)
   ════════════════════════════════════════════════════ */

.section__head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 760px;
}

.section__head h2 { margin-bottom: 1.5rem; }
/* H1 utilisé comme titre de section (ex. hub Thérapies) : taille de page unifiée */
.section__head h1 { font-size: var(--h1-page); line-height: var(--h1-page-lh); margin-bottom: 1.5rem; text-wrap: balance; }
.section__head h2 ~ p {
  font-size: 1.05rem;
  max-width: 540px;
}

/* Centered variant — title block at the top, content below */
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.section__head--center h2 ~ p {
  margin-left: auto;
  margin-right: auto;
}

/* Wide variant — text block gets more breathing room */
.section__head--wide { max-width: 980px; }
.section__head--wide h2 ~ p { max-width: 820px; }


/* ════════════════════════════════════════════════════
   ABOUT — Editorial split
   ════════════════════════════════════════════════════ */

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.about__copy h2 { margin-bottom: 2rem; }

.about__copy p {
  margin-bottom: 1.25rem;
  max-width: 50ch;
  font-size: 1.02rem;
}

.about__copy h2 + p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 60;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
  margin: 2rem 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.about__credentials span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.about__credentials span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

/* Portrait */
.about__portrait {
  position: sticky;
  top: 8rem;
}

.about__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-warm);
  position: relative;
  transition: transform var(--transition);
}

.about__photo:hover { transform: translateY(-4px); }

.about__photo img,
.about__photo video,
.about__photo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 350;
  color: var(--teal);
  opacity: 0.55;
  letter-spacing: -0.04em;
}

.about__caption {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-align: center;
  font-weight: 500;
}


/* ════════════════════════════════════════════════════
   THERAPIES — Numbered editorial list
   ════════════════════════════════════════════════════ */

.therapies__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cream-deep);
}

.therapy {
  display: grid;
  grid-template-columns: 5rem 1fr 2fr auto;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--cream-deep);
  position: relative;
  cursor: pointer;
  transition: padding var(--transition);
}

.therapy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan-mist);
  opacity: 0;
  z-index: -1;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.therapy:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.therapy:hover { padding-left: 1.5rem; padding-right: 1.5rem; }

.therapy__num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--magenta);
  font-variation-settings: "opsz" 144;
}

.therapy__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 350;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}

.therapy__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 50ch;
}

.therapy__arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all var(--transition);
  flex-shrink: 0;
}

.therapy__arrow svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform var(--transition);
}

.therapy:hover .therapy__arrow {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
  transform: rotate(-45deg);
}


/* ════════════════════════════════════════════════════
   FORMATIONS — Two editorial cards
   ════════════════════════════════════════════════════ */

.formations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.formation {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  /* Effet de flottaison : ombre portée permanente, aucun mouvement */
  box-shadow: 0 26px 55px -18px rgba(37, 20, 12, 0.26);
  display: flex;
  flex-direction: column;
}

.formation--dark {
  background: var(--teal-deep);
  color: var(--on-dark);
}

.formation--dark h3 { color: var(--cream); }
.formation--dark p { color: var(--on-dark-soft); }

.formation__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2rem;
}

.formation__badge::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--cyan);
}

.formation--dark .formation__badge { color: var(--cream); }
.formation--dark .formation__badge::before { background: var(--gold); }

.formation h3 { margin-bottom: 1.25rem; }

/* Cartes formations plus compactes sur mobile (sinon > hauteur d'écran) */
@media (max-width: 600px) {
  .formation { padding: 1.6rem 1.4rem; }
  .formation h3 { margin-bottom: 0.85rem; }
  .formation p { margin-bottom: 1.1rem; }
  .formation__list { margin-bottom: 1.5rem; padding-top: 1.2rem; gap: 0.6rem; }
}

.formation p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Conteneur texte (p + liste) — préserve le flex:1 qui aligne le bouton en bas */
.formation__body { display: flex; flex-direction: column; flex: 1; }

.formation__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(20, 34, 42, 0.1);
  flex: 1;
}

.formation--dark .formation__list { border-top-color: rgba(250, 246, 238, 0.15); }

.formation__list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.formation--dark .formation__list li { color: var(--on-dark-soft); }

.formation__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(8px);
}

.formation--dark .formation__list li::before { background: var(--gold); }

.formation__patrick {
  color: var(--magenta);
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
}

.formation--dark .formation__patrick { color: var(--gold-soft); }


/* ════════════════════════════════════════════════════
   TESTIMONIALS — Typography led
   ════════════════════════════════════════════════════ */

.testimonials__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: block;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 350;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
  flex: 1;
  font-variation-settings: "opsz" 100;
  letter-spacing: -0.005em;
}

.testimonial__stars {
  display: inline-flex;
  gap: 0.1rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.testimonial__stars svg { width: 0.85rem; height: 0.85rem; }

.testimonial__author { padding-top: 1.5rem; border-top: 1px solid var(--cream-deep); }

.testimonial__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.testimonial__detail {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: start;
}

.contact__info { position: sticky; top: 8rem; }

.contact__info h2 { margin-bottom: 1.5rem; }
.contact__info h2 + p {
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
  max-width: 38ch;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact__item:hover .contact__icon {
  background: var(--teal-deep);
  color: var(--cream);
}

.contact__item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}

.contact__item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.contact__item a {
  color: inherit;
  position: relative;
  display: inline-block;
  transition: color var(--transition-fast);
}

.contact__item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.contact__item a { color: var(--magenta); }
.contact__item a:hover { color: var(--magenta-deep); }
.contact__item a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.5rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form__group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form__group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  transition: border-color var(--transition-fast);
  border-radius: 0;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-bottom-color: var(--magenta);
}

.form__group textarea { min-height: 100px; resize: vertical; }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--ink-faint); }


/* ════════════════════════════════════════════════════
   FORMATIONS PAGE — synthetic hero (formations.html)
   ════════════════════════════════════════════════════ */

.f-hero {
  padding-top: clamp(8rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Subtle ambient glow behind the hero */
.f-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 199, 221, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(176, 140, 95, 0.14) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.f-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-hero .breadcrumb {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.f-hero__eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.f-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h1-page);
  line-height: var(--h1-page-lh);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  max-width: 18ch;
  text-wrap: balance;
}

.f-hero__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.f-hero__lede {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}

/* Social proofs row */
.f-hero__proofs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
  margin-bottom: 2.75rem;
  padding: 1.25rem clamp(1rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(116, 76, 50, 0.1);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.f-hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.f-hero__proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bronze);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.f-hero__proof-stars {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}
.f-hero__proof-stars svg { width: 1.05rem; height: 1.05rem; }

.f-hero__proof-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  text-align: center;
  white-space: nowrap;
}

.f-hero__proof-divider {
  display: inline-block;
  width: 1px;
  height: 2.25rem;
  background: rgba(116, 76, 50, 0.18);
  flex-shrink: 0;
}

/* CTAs */
.f-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.f-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.f-hero__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.4s var(--ease);
}

.f-hero__cta--primary {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
}

.f-hero__cta--primary:hover {
  background: #3a2418;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 20, 12, 0.22);
}

.f-hero__cta--primary:hover svg {
  transform: translateY(3px);
}

.f-hero__cta--ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(37, 20, 12, 0.22);
}

.f-hero__cta--ghost:hover {
  background: rgba(37, 20, 12, 0.05);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.f-hero__cta--ghost:hover svg {
  transform: translateX(3px);
}

/* CTAs already aligned via .f-hero__ctas (no scroll indicator needed) */

@media (max-width: 760px) {
  .f-hero__proof-divider { display: none; }
  .f-hero__proofs {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    justify-content: space-around;
  }
  .f-hero__ctas { flex-direction: column; align-items: stretch; }
  .f-hero__cta { justify-content: center; }
}

/* ───── Hero formations.html — variante split (contenu à gauche, widget "prochaines" à droite) ───── */
.f-hero--split .f-hero__inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  text-align: center;
}
.f-hero--split .breadcrumb { grid-column: 1 / -1; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.f-hero--split .f-hero__eyebrow { justify-content: center; margin-left: auto; margin-right: auto; }
.f-hero--split .f-hero__title { max-width: none; }
.f-hero--split .f-hero__lede { margin-left: auto; margin-right: auto; }
.f-hero--split .f-hero__proofs { justify-content: center; }
.f-hero--split .f-hero__ctas { justify-content: center; margin-bottom: 0; }

.f-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

@media (max-width: 980px) {
  .f-hero--split .f-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .f-hero--split .f-hero__eyebrow { justify-content: center; margin-left: auto; margin-right: auto; }
  .f-hero--split .f-hero__lede { margin-left: auto; margin-right: auto; }
  .f-hero--split .f-hero__proofs,
  .f-hero--split .f-hero__ctas { justify-content: center; }
}

/* ───── Hero formations : vidéo background plein écran ───── */
.f-hero--has-video {
  background: var(--espresso);
}

.f-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.95) brightness(0.95);
}

.f-hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(250, 244, 237, 0.72) 0%,
      rgba(250, 244, 237, 0.55) 50%,
      rgba(250, 244, 237, 0.68) 100%),
    radial-gradient(ellipse at top right, rgba(176, 140, 95, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* L'inner du hero passe au-dessus de l'overlay */
.f-hero--has-video .f-hero__inner {
  position: relative;
  z-index: 2;
}

/* Le ::before ambient glow original devient invisible quand on a la vidéo */
.f-hero--has-video::before { display: none; }

/* ───── Widget "Prochaines formations" (glass card, rose clignotant) ───── */
.f-upcoming {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(116, 76, 50, 0.12);
  border-radius: clamp(1rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 20px 50px -20px rgba(37, 20, 12, 0.18);
}

.f-upcoming__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.9rem;
}

.f-upcoming__dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pink, #D63384);
  flex-shrink: 0;
  animation: badge-pulse 2.4s ease-in-out infinite;
}
.f-upcoming__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--pink, #D63384);
  opacity: 0.4;
  animation: badge-pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.f-upcoming__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  color: var(--espresso);
  margin: 0 0 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}
.f-upcoming__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.f-upcoming__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.f-upcoming__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(116, 76, 50, 0.08);
  border-radius: 0.6rem;
  text-decoration: none;
  color: var(--espresso);
  transition: all 0.25s ease;
  text-align: left;
}
.f-upcoming__link:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  transform: translateX(2px);
}
.f-upcoming__text { flex: 1; min-width: 0; }
.f-upcoming__date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.15rem;
  transition: color 0.25s ease;
}
.f-upcoming__link:hover .f-upcoming__date { color: var(--pink-soft); }
.f-upcoming__name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.3;
}
.f-upcoming__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.f-upcoming__link:hover .f-upcoming__arrow { transform: translateX(3px); opacity: 1; }
.f-upcoming__empty {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  padding: 0.5rem 0;
}

.f-upcoming__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--bronze);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, gap 0.25s ease;
}
.f-upcoming__footer:hover { color: var(--magenta); gap: 0.6rem; }
.f-upcoming__footer svg { width: 14px; height: 14px; }

/* ───── Pill "Prochaine date" (en bas du f-header sur chaque page formation)
   Format aligné sur le badge .hero__floating-badge de la homepage          ───── */
.f-next-date {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.5rem 1.15rem 1.4rem;
  background: var(--espresso);
  border: 1px solid rgba(248, 242, 228, 0.22);
  border-radius: var(--r-md);
  color: var(--cream);
  text-decoration: none;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(248, 242, 228, 0.12) inset;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(420px, 92%);
}
.f-next-date:hover {
  transform: translateY(-3px);
  background: var(--bronze);
  border-color: var(--pink-soft);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(248, 242, 228, 0.18) inset;
}
.f-next-date[hidden] { display: none; }

.f-next-date__dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pink-soft, #F5C7DD);
  flex-shrink: 0;
  animation: badge-pulse 2.4s ease-in-out infinite;
}
.f-next-date__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--pink-soft, #F5C7DD);
  opacity: 0.5;
  animation: badge-pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.f-next-date__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.f-next-date__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-soft, #F5C7DD);
}
.f-next-date__text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.f-next-date__arrow {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.f-next-date__arrow svg { width: 100%; height: 100%; stroke-width: 1.6; }
.f-next-date:hover .f-next-date__arrow {
  transform: translate(4px, -4px);
  color: var(--pink-soft);
}


/* ════════════════════════════════════════════════════
   FORMATION CALENDAR (formations.html · #calendrier)
   ════════════════════════════════════════════════════ */

/* Color tokens per formation — single source of truth */
:root {
  --c-sophro:            #744C32;   /* bronze */
  --c-relax:             #B08C5F;   /* gold (Praticien Relax = sous-parcours du cursus Sophro) */
  --c-m5c:               #C75D44;   /* terra cotta */
  --c-formateur-m5c:     #E8A98C;   /* peach (Formateur M5C = pendant du M5C praticien) */
  --c-expanse:           #0F5663;   /* teal deep */
  --c-formateur-expanse: #4A9CB2;   /* cyan */
  --c-6eme:              #6B7553;   /* sage (Praticien & Formateur 6ème Continent) */
  --c-lipo:              #D63384;   /* magenta */
  --c-numero:            #8B6F4A;   /* gold-deep */
}

/* ════════ AGENDA DES FORMATIONS (liste chronologique filtrable) ════════ */
.agenda { max-width: 840px; margin: 0 auto; }
.agenda__filters {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.agenda-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: var(--r-full, 999px);
  border: 1px solid rgba(116, 76, 50, 0.18); background: var(--cream);
  color: var(--ink-soft); font-family: var(--font-sans); font-size: 0.84rem;
  font-weight: 500; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.agenda-chip:hover { border-color: var(--bronze); color: var(--espresso); }
.agenda-chip.is-active { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.agenda-chip__dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--bronze); flex-shrink: 0; }

.agenda__month {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--bronze);
  margin: 1.85rem 0 0.85rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(116, 76, 50, 0.12);
}
.agenda__list > .agenda__month:first-child { margin-top: 0; }

.agenda-row {
  display: grid;
  grid-template-columns: auto minmax(6.5rem, auto) 1fr auto auto;
  grid-template-areas: "dot date name dur arrow";
  align-items: center; gap: 1rem;
  padding: 0.95rem 1.15rem; margin-bottom: 0.6rem;
  border-radius: var(--r-md); background: var(--cream);
  border: 1px solid rgba(116, 76, 50, 0.08);
  text-decoration: none; color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.agenda-row:hover {
  border-color: rgba(116, 76, 50, 0.25); transform: translateX(3px);
  box-shadow: 0 10px 26px -10px rgba(37, 20, 12, 0.16);
}
.agenda-row__dot { grid-area: dot; width: 0.72rem; height: 0.72rem; border-radius: 50%; background: var(--bronze); }
.agenda-row__date { grid-area: date; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; color: var(--espresso); }
.agenda-row__name { grid-area: name; font-family: var(--font-display); font-size: 1.08rem; color: var(--espresso); letter-spacing: -0.01em; }
.agenda-row__dur { grid-area: dur; font-family: var(--font-sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bronze); white-space: nowrap; }
.agenda-row__arrow { grid-area: arrow; width: 1.05rem; height: 1.05rem; color: var(--bronze); opacity: 0.55; transition: opacity 0.2s ease, transform 0.2s ease; }
.agenda-row:hover .agenda-row__arrow { opacity: 1; transform: translateX(2px); }
.agenda__empty { text-align: center; color: var(--ink-soft); padding: 2.5rem 1rem; font-family: var(--font-sans); }

.agenda-chip__dot[data-form="sophro"],            .agenda-row__dot[data-form="sophro"]            { background: var(--c-sophro); }
.agenda-chip__dot[data-form="relax"],             .agenda-row__dot[data-form="relax"]             { background: var(--c-relax); }
.agenda-chip__dot[data-form="m5c"],               .agenda-row__dot[data-form="m5c"]               { background: var(--c-m5c); }
.agenda-chip__dot[data-form="formateur-m5c"],     .agenda-row__dot[data-form="formateur-m5c"]     { background: var(--c-formateur-m5c); }
.agenda-chip__dot[data-form="expanse"],           .agenda-row__dot[data-form="expanse"]           { background: var(--c-expanse); }
.agenda-chip__dot[data-form="formateur-expanse"], .agenda-row__dot[data-form="formateur-expanse"] { background: var(--c-formateur-expanse); }
.agenda-chip__dot[data-form="6eme"],              .agenda-row__dot[data-form="6eme"]              { background: var(--c-6eme); }
.agenda-chip__dot[data-form="numero"],            .agenda-row__dot[data-form="numero"]            { background: var(--c-numero); }

@media (max-width: 640px) {
  .agenda-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "dot date arrow"
      "dot name dur";
    gap: 0.2rem 0.85rem; padding: 0.85rem 1rem;
  }
  .agenda-row__dot { align-self: center; }
  .agenda-row__arrow { align-self: center; }
  .agenda-row__dur { justify-self: end; }
  .agenda-row__name { font-size: 1rem; }
}

.cal {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(116, 76, 50, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow:
    0 1px 2px rgba(37, 20, 12, 0.04),
    0 12px 32px rgba(37, 20, 12, 0.06);
}

/* Header : month title + prev/next */
.cal__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.cal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: capitalize;
}

.cal__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
  margin-left: 0.4em;
}

.cal__nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(116, 76, 50, 0.18);
  background: transparent;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cal__nav-btn svg { width: 1rem; height: 1rem; }
.cal__nav-btn:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
  transform: translateY(-1px);
}
.cal__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  background: transparent;
  color: var(--ink-soft);
}

/* Weekday header */
.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  text-align: center;
}

/* Days grid */
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}

.cal__day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.45rem 0.3rem 0.4rem;
  border-radius: var(--r-sm, 8px);
  background: rgba(247, 231, 222, 0.4);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cal__day-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Out-of-month days (greyed) */
.cal__day--out { background: transparent; }
.cal__day--out .cal__day-num { color: var(--ink-faint); }

/* Day with event(s) */
.cal__day--event {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(116, 76, 50, 0.12);
  cursor: pointer;
}
.cal__day--event:hover {
  border-color: rgba(116, 76, 50, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 20, 12, 0.06);
}

/* Color bars stack at the bottom of the day cell */
.cal__day-bars {
  position: absolute;
  bottom: 0.35rem;
  left: 0.3rem;
  right: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cal__bar {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: var(--bar-color, var(--bronze));
}

.cal__bar[data-form="sophro"]            { background: var(--c-sophro); }
.cal__bar[data-form="relax"]             { background: var(--c-relax); }
.cal__bar[data-form="m5c"]               { background: var(--c-m5c); }
.cal__bar[data-form="formateur-m5c"]     { background: var(--c-formateur-m5c); }
.cal__bar[data-form="expanse"]           { background: var(--c-expanse); }
.cal__bar[data-form="formateur-expanse"] { background: var(--c-formateur-expanse); }
.cal__bar[data-form="6eme"]              { background: var(--c-6eme); }
.cal__bar[data-form="lipo"]              { background: var(--c-lipo); }
.cal__bar[data-form="numero"]            { background: var(--c-numero); }

/* Legend */
.cal__legend {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid rgba(116, 76, 50, 0.1);
}

.cal__legend-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze-soft);
  margin: 0 0 1rem;
  text-align: center;
}

.cal__legend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cal__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cal__legend-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.cal__legend-dot[data-form="sophro"]            { background: var(--c-sophro); }
.cal__legend-dot[data-form="relax"]             { background: var(--c-relax); }
.cal__legend-dot[data-form="m5c"]               { background: var(--c-m5c); }
.cal__legend-dot[data-form="formateur-m5c"]     { background: var(--c-formateur-m5c); }
.cal__legend-dot[data-form="expanse"]           { background: var(--c-expanse); }
.cal__legend-dot[data-form="formateur-expanse"] { background: var(--c-formateur-expanse); }
.cal__legend-dot[data-form="6eme"]              { background: var(--c-6eme); }
.cal__legend-dot[data-form="lipo"]              { background: var(--c-lipo); }
.cal__legend-dot[data-form="numero"]            { background: var(--c-numero); }

@media (max-width: 600px) {
  .cal__day { padding: 0.35rem 0.2rem; }
  .cal__day-num { font-size: 0.85rem; }
  .cal__bar { height: 3px; }
  .cal__legend-list { grid-template-columns: 1fr; }
}

.cal__day--event:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

/* ── Modale "sessions du jour" (clic sur une case du calendrier) ── */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.cal-modal.is-open { opacity: 1; visibility: visible; }

.cal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 20, 12, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.cal-modal__panel {
  position: relative;
  width: min(30rem, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 24px 60px -12px rgba(37, 20, 12, 0.4);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.cal-modal.is-open .cal-modal__panel { transform: translateY(0) scale(1); }

.cal-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(116, 76, 50, 0.08);
  color: var(--espresso);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cal-modal__close:hover { background: rgba(116, 76, 50, 0.16); }

.cal-modal__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}

.cal-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--espresso);
  margin: 0 0 1.4rem;
}

.cal-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cal-modal__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: rgba(247, 231, 222, 0.5);
  border: 1px solid rgba(116, 76, 50, 0.1);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cal-modal__link:hover {
  background: rgba(247, 231, 222, 0.95);
  border-color: rgba(116, 76, 50, 0.25);
  transform: translateX(2px);
}

.cal-modal__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bronze);
}
.cal-modal__dot[data-form="sophro"]            { background: var(--c-sophro); }
.cal-modal__dot[data-form="relax"]             { background: var(--c-relax); }
.cal-modal__dot[data-form="m5c"]               { background: var(--c-m5c); }
.cal-modal__dot[data-form="formateur-m5c"]     { background: var(--c-formateur-m5c); }
.cal-modal__dot[data-form="expanse"]           { background: var(--c-expanse); }
.cal-modal__dot[data-form="formateur-expanse"] { background: var(--c-formateur-expanse); }
.cal-modal__dot[data-form="6eme"]              { background: var(--c-6eme); }
.cal-modal__dot[data-form="lipo"]              { background: var(--c-lipo); }
.cal-modal__dot[data-form="numero"]            { background: var(--c-numero); }

.cal-modal__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.cal-modal__name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.25;
}
.cal-modal__meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.cal-modal__arrow {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--bronze);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cal-modal__link:hover .cal-modal__arrow { opacity: 1; transform: translateX(2px); }


/* ════════════════════════════════════════════════════
   ANNUAIRE HERO (annuaire.html)
   ════════════════════════════════════════════════════ */

.ann-hero {
  padding-top: clamp(7rem, 11vw, 9rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* No ambient blobs — hero shares the plain cream background with the
   praticiens section right below for visual continuity. */

.ann-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(2rem, 6vw, 5rem);
}

.ann-hero__breadcrumb { margin-bottom: clamp(2rem, 4vw, 3rem); }

.ann-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* ── Left column : title + lede ── */
.ann-hero__copy {
  display: flex;
  flex-direction: column;
}

.ann-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h1-page);
  line-height: var(--h1-page-lh);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.ann-hero__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.ann-hero__lede {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0;
}

/* ── Right column : KPIs + CTAs ── */
.ann-hero__side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ann-hero__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.ann-hero__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.5rem 0.25rem;
  border-right: 1px solid rgba(116, 76, 50, 0.18);
}
.ann-hero__kpi:last-child { border-right: 0; }

.ann-hero__kpi-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: var(--bronze);
  line-height: 1;
}

.ann-hero__kpi-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  line-height: 1.3;
}

.ann-hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.ann-hero__cta { flex: 1 1 0; min-width: 0; }

.ann-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: all 0.35s var(--ease);
}
.ann-hero__cta svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.35s var(--ease);
}

.ann-hero__cta--primary {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
}
.ann-hero__cta--primary:hover {
  background: #3a2418;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 20, 12, 0.22);
}
.ann-hero__cta--primary:hover svg { transform: translateY(3px); }

.ann-hero__cta--ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(37, 20, 12, 0.22);
}
.ann-hero__cta--ghost:hover {
  background: rgba(37, 20, 12, 0.05);
  border-color: var(--espresso);
  transform: translateY(-2px);
}
.ann-hero__cta--ghost:hover svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .ann-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ann-hero__kpis { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ann-hero__kpis { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem; }
  .ann-hero__kpi { border-right: 0; border-bottom: 1px solid rgba(116, 76, 50, 0.12); padding-bottom: 0.85rem; }
  .ann-hero__kpi:last-child { border-bottom: 0; padding-bottom: 0; }
}
.form__group select { cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 1.5rem; }


/* ════════════════════════════════════════════════════
   FOOTER LUXE — Massive wordmark over espresso
   ════════════════════════════════════════════════════ */

.footer-luxe {
  background: var(--espresso);
  color: var(--cream-warm);
  position: relative;
  overflow: hidden;
  padding: 1.5rem var(--container-pad) 0;
}

.footer-luxe__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(247, 231, 222, 0.7);
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid rgba(247, 231, 222, 0.08);
}

.footer-luxe__top p {
  color: rgba(247, 231, 222, 0.7);
  margin: 0;
}

.footer-luxe__credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(247, 231, 222, 0.35);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.footer-luxe__credit::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: rgba(247, 231, 222, 0.2);
  flex-shrink: 0;
}
.footer-luxe__credit a {
  color: rgba(247, 231, 222, 0.5);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-luxe__credit a:hover {
  color: var(--gold);
}

.footer-luxe__legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-luxe__legal a {
  color: rgba(247, 231, 222, 0.7);
  transition: color var(--transition-fast);
}

.footer-luxe__legal a:hover { color: var(--cream-warm); }

/* Mid-section: useful info before the wordmark */
.footer-luxe__info {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2rem;
  font-family: var(--font-sans);
  align-items: start;
}

.footer-luxe__brand p {
  font-size: 0.92rem;
  color: rgba(247, 231, 222, 0.7);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-luxe__social {
  display: flex;
  gap: 0.6rem;
}

.footer-luxe__social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(247, 231, 222, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-warm);
  transition: all var(--transition);
}

.footer-luxe__social a:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.footer-luxe__social svg { width: 0.95rem; height: 0.95rem; }

.footer-luxe__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 1.1rem;
}

.footer-luxe__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-luxe__col li, .footer-luxe__col a {
  font-size: 0.88rem;
  color: rgba(247, 231, 222, 0.65);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer-luxe__col a:hover { color: var(--cream-warm); }

/* Massive wordmark */
.footer-luxe__wordmark {
  font-family: var(--font-display);
  font-size: clamp(7rem, 24vw, 24rem);
  font-weight: 500;
  color: var(--cream-warm);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-align: center;
  margin: 2rem -1rem -3vw;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  text-transform: lowercase;
}

.footer-luxe__wordmark span {
  display: inline-block;
}

.footer-luxe__wordmark .dot {
  color: var(--bronze-soft);
  font-weight: 400;
  margin: 0 -0.05em;
}


/* ════════════════════════════════════════════════════
   FOOTER (legacy, used on secondary pages)
   ════════════════════════════════════════════════════ */

.footer {
  background: var(--teal-darker);
  color: var(--on-dark);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand .logo { font-size: 1.5rem; margin-bottom: 1.25rem; display: inline-flex; }
.footer__brand .logo__sep { color: rgba(250, 246, 238, 0.3); }
.footer__brand .logo__ne { color: var(--gold); }

.footer__brand p {
  font-size: 0.9rem;
  color: var(--on-dark-soft);
  max-width: 280px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.footer__social { display: flex; gap: 0.75rem; }

.footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--cream);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--teal-darker);
  transform: translateY(-2px);
}

.footer__social svg { width: 1rem; height: 1rem; }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col a {
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer__col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.footer__col a:hover { color: var(--cream); }
.footer__col a:hover::after { width: 100%; }

.footer__contact li {
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  line-height: 1.5;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 238, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.4);
}

.footer__legal { display: flex; gap: 2rem; }

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.4);
  transition: color var(--transition-fast);
}

.footer__legal a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════
   WHATSAPP — minimal & elegant
   ════════════════════════════════════════════════════ */

.whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 0;
  border-radius: var(--r-full);
  box-shadow: 0 10px 30px rgba(10, 67, 80, 0.25);
  transition: all var(--transition);
  overflow: hidden;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 67, 80, 0.35);
  padding-right: 1.25rem;
  gap: 0.65rem;
}

.whatsapp__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
}

.whatsapp__icon svg { width: 1.5rem; height: 1.5rem; }

.whatsapp__label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s var(--ease);
}

.whatsapp:hover .whatsapp__label { max-width: 200px; }


/* ════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════ */

/* Apparition au scroll — masqué UNIQUEMENT si le JS s'exécute (html.js-anim).
   Si le JS échoue (erreur de parsing/exécution), .js-anim est absent, donc
   le contenu reste visible : pas de page blanche. Anti-fragile. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js-anim .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }


/* ════════════════════════════════════════════════════
   SECONDARY PAGES — Page hero, breadcrumb
   ════════════════════════════════════════════════════ */

.page-hero {
  padding-top: 9rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}
/* Si le bandeau e-book est affiché, le header fixe est décalé de sa hauteur :
   on dégage les héros des pages secondaires (base 9rem + hauteur du bandeau)
   pour que le titre/fil d'Ariane ne passe pas sous le header à aucune largeur. */
body.has-ebook-banner .page-hero { padding-top: calc(9rem + var(--ebook-banner-h, 46px)); }

/* Minimal variant — only the breadcrumb (no H1, no lede) */
.page-hero--minimal {
  padding-top: 7rem;
  padding-bottom: 0;
}
.page-hero--minimal .page-hero__inner {
  display: block;
}
.page-hero--minimal .breadcrumb {
  margin-bottom: 0;
}
/* Reduce gap with the next section (default section padding is huge) */
.page-hero--minimal + .section { padding-top: clamp(2rem, 4vw, 3rem); }

/* Centered variant — H1 + lede stacked vertically, centered horizontally */
.page-hero--centered .page-hero__inner {
  display: block;
  text-align: center;
  max-width: 780px;
}
.page-hero--centered .breadcrumb {
  margin-left: auto;
  margin-right: auto;
}
.page-hero--centered h1 {
  margin-left: auto;
  margin-right: auto;
}
.page-hero--centered .page-hero__lede {
  max-width: 56ch;
  margin: 1.5rem auto 0;
}

.page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.breadcrumb a { color: var(--ink-light); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep {
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--ink-faint);
}
.breadcrumb__current { color: var(--ink); }

.page-hero h1 {
  font-size: var(--h1-page);
  letter-spacing: -0.03em;
  font-weight: 350;
  line-height: var(--h1-page-lh);
  margin-bottom: 0;
  max-width: none;
}

.page-hero h1 em {
  display: block;
  color: var(--ink);
}

.page-hero__lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════
   CONTENT BLOCKS
   ════════════════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.split--reverse { grid-template-columns: 1.2fr 1fr; }
.split--reverse .split__media { order: 1; }

.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  position: sticky;
  top: 8rem;
  background: var(--cream-warm);
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Variante portrait élancée (pour collages Canva ~1414/2000) */
.split__media--portrait { aspect-ratio: 1414 / 2000; }

.split__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 350;
  color: var(--teal);
  opacity: 0.55;
}

.split__copy h2 { margin-bottom: 1.5rem; }
.split__copy p { margin-bottom: 1.25rem; max-width: 56ch; font-size: 1.02rem; }
.split__copy h2 + p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 60;
}


/* ════════════════════════════════════════════════════
   TEAM CARDS (Agnès, Patrick)
   ════════════════════════════════════════════════════ */

.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.team__member {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-warm);
  transition: transform var(--transition);
}

.team__photo:hover { transform: translateY(-4px); }

.team__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 350;
  color: var(--teal);
  opacity: 0.55;
  letter-spacing: -0.04em;
}

.team__photo img { width: 100%; height: 100%; object-fit: cover; }

.team__info { display: flex; flex-direction: column; gap: 0.85rem; }

.team__name {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.team__role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.team__role::before {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: var(--magenta);
}

.team__bio { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); max-width: 50ch; }

.team__creds {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-deep);
}

.team__creds li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.team__creds li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(7px);
}


/* ════════════════════════════════════════════════════
   FORMATION ROW (detailed list)
   ════════════════════════════════════════════════════ */

.formation-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-deep);
  transition: background var(--transition);
}

.formation-row:first-of-type { border-top: 1px solid var(--cream-deep); }

.formation-row:hover { background: var(--cream-soft); padding-left: 1rem; padding-right: 1rem; }

/* ── Card variant : same grid layout, with relief over the cream-warm bg ── */
.formation-row--card {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(116, 76, 50, 0.08);
  border-bottom: 1px solid rgba(116, 76, 50, 0.08);
  border-radius: var(--r-lg);
  box-shadow:
    0 1px 2px rgba(37, 20, 12, 0.04),
    0 12px 32px rgba(37, 20, 12, 0.06);
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.formation-row--card:first-of-type { border-top: 1px solid rgba(116, 76, 50, 0.08); }

.formation-row--featured {
  border-color: var(--gold);
  box-shadow:
    0 1px 2px rgba(37, 20, 12, 0.04),
    0 18px 44px -10px rgba(176, 140, 95, 0.42);
}
.formation-row--featured .formation-row__num,
.formation-row--featured .formation-row__cert { color: var(--gold); }

.formation-row--card:hover {
  background: var(--cream);
  padding-left: clamp(1.75rem, 3vw, 2.5rem);
  padding-right: clamp(1.75rem, 3vw, 2.5rem);
  transform: translateY(-4px);
  border-color: rgba(116, 76, 50, 0.18);
  box-shadow:
    0 2px 4px rgba(37, 20, 12, 0.05),
    0 20px 44px rgba(37, 20, 12, 0.1);
}

.formation-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.formation-row__num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
}

.formation-row__duration {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.formation-row__cert {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}

.formation-row__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  line-height: 1.05;
}

.formation-row__desc { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); max-width: 56ch; }

.formation-row__cta {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all var(--transition);
  flex-shrink: 0;
}

.formation-row__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }

.formation-row:hover .formation-row__cta {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
}

.formation-row:hover .formation-row__cta svg { transform: rotate(-45deg); }


/* ════════════════════════════════════════════════════
   PROCESS / STEPS
   ════════════════════════════════════════════════════ */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.process__step {
  position: relative;
  padding-top: 0;
  text-align: center;
}

/* Step number — bronze circle centered, replaces the old kicker label */
.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(116, 76, 50, 0.22);
}

.process__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.process__desc { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }

/* Quote sitting below the process steps, same section background */
.process__quote {
  max-width: 780px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 var(--container-pad);
  text-align: center;
  position: relative;
}
.process__quote::before {
  content: '“';
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.6;
  color: var(--bronze-soft);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.process__quote-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.6rem;
}
.process__quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.process__quote-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 0.005em;
}
.process__quote-role {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-light);
}


/* ════════════════════════════════════════════════════
   THERAPY DETAIL BLOCK (used in therapies.html)
   ════════════════════════════════════════════════════ */

.therapy-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: start;
}

.therapy-detail:first-of-type { border-top: 1px solid var(--cream-deep); padding-top: clamp(3rem, 6vw, 4.5rem); }

.therapy-detail__head {
  position: sticky;
  top: 8rem;
}

.therapy-detail__num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: block;
}

.therapy-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.therapy-detail__title em {
  display: block;
  color: var(--ink);
  margin-top: 0.25rem;
}

.therapy-detail__body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.therapy-detail__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 2rem 0 0.85rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.therapy-detail__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 1.5rem;
}

.therapy-detail__body ul li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.therapy-detail__body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(7px);
}


/* ════════════════════════════════════════════════════
   NEXT-PAGE CTA (footer of secondary pages)
   ════════════════════════════════════════════════════ */

.next-cta {
  background: var(--teal-deep);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Floating variant — adds relief over a colored section (e.g. cream-warm) */
.next-cta--floating {
  box-shadow:
    0 1px 2px rgba(37, 20, 12, 0.06),
    0 18px 44px rgba(37, 20, 12, 0.14);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.next-cta--floating:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(37, 20, 12, 0.08),
    0 26px 56px rgba(37, 20, 12, 0.18);
}

.next-cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 350;
  letter-spacing: -0.025em;
  margin: 0;
}

.next-cta h2 em {
  color: var(--gold-soft);
  display: block;
}

.next-cta p {
  color: var(--on-dark-soft);
  margin-top: 1rem;
  max-width: 36ch;
}

.next-cta__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════
   CABINET INFO BLOCK (used in contact.html)
   ════════════════════════════════════════════════════ */

.cabinet-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cabinet-block__visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-warm);
}

.cabinet-block__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabinet-block__visual-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--teal);
  opacity: 0.4;
}

.cabinet-block h2 { margin-bottom: 1.5rem; }
.cabinet-block p { margin-bottom: 1rem; max-width: 50ch; font-size: 1.02rem; }


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hero__trust { position: static; justify-content: flex-start; margin-top: 2.5rem; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__portrait { position: static; max-width: 460px; }

  .therapy { grid-template-columns: 4rem 1fr auto; gap: 1.5rem; }
  .therapy__desc { grid-column: 2; }

  .formations__grid { grid-template-columns: 1fr; }
  .testimonials__list { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__info { position: static; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Secondary pages */
  .page-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse .split__media { order: 0; }
  .split__media { position: static; max-width: 460px; }
  .team { grid-template-columns: 1fr; gap: 4rem; }
  .therapy-detail { grid-template-columns: 1fr; gap: 2rem; }
  .therapy-detail__head { position: static; }
  .process { grid-template-columns: 1fr 1fr; }
  .next-cta { grid-template-columns: 1fr; gap: 2rem; }
  .next-cta__actions { justify-content: flex-start; }
  .cabinet-block { grid-template-columns: 1fr; }

  /* New homepage sections */
  .signature__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  /* Stacked deck: mobile tweaks */
  .signature__decks { gap: 2rem; }
  .deck { padding: 2rem 1.5rem; }
  /* Mobile: hide floating cursor + always show items normally */
  .reveal-cursor { display: none; }
  .deck__list li { color: var(--espresso); font-size: 1.5rem; }
  .deck__list:hover li:not(:hover):not(.is-active) { color: var(--espresso); }
  .why-us__grid { grid-template-columns: 1fr; gap: 3rem; }
  .offer-card { flex: 0 0 50%; }
  .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__list { display: none; }
  .header__cta { display: none; }
  .burger { display: block; }

  .hero__top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .stats__list { gap: 1.25rem; }
  .stats__num { font-size: 1.5rem; }

  .therapy { grid-template-columns: 3rem 1fr 2.25rem; gap: 1rem; padding: 1.75rem 0; }
  .therapy:hover { padding-left: 0.5rem; padding-right: 0.5rem; }
  .therapy__desc { grid-column: 1 / -1; }
  .therapy__arrow { width: 2.25rem; height: 2.25rem; }

  .testimonials__list { grid-template-columns: 1fr; gap: 3rem; }

  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; flex-wrap: wrap; }

  .whatsapp { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp:hover { padding-right: 0; gap: 0; }
  .whatsapp__icon { width: 3rem; height: 3rem; }

  /* Secondary pages */
  .formation-row { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .formation-row__cta { justify-self: start; }
  .process { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero {
    align-items: flex-start;
    padding-top: 6rem;    /* dégage le header fixe */
    padding-bottom: 6rem; /* room for floating badge */
  }
  /* Si le bandeau e-book est présent, on ajoute sa hauteur (header décalé d'autant) */
  body.has-ebook-banner .hero { padding-top: calc(6rem + var(--ebook-banner-h, 0px)); }
  .hero__inner { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .hero__video {
    /* Mobile portrait — center the subject vertically */
    object-position: center 30%;
  }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 0.95; max-width: 100%; }
  /* Floating badge stays absolute but full-width at the bottom (no overlap, no overflow) */
  .hero__floating-badge {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    max-width: none;
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }
  .hero__floating-badge:hover { transform: translateY(-3px); }
  .hero__floating-badge__text { font-size: 0.88rem; }
  /* Asymmetric CTAs stack on mobile but keep contrast */
  .hero__paths { flex-direction: column; align-items: stretch; }
  .hero__path { width: 100%; justify-content: center; }

  /* Signature rows mobile */
  .sig-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .sig-row--reverse .sig-row__media { order: 0; }
  .sig-row--reverse .sig-row__copy { order: 0; }
  .sig-row__ghost { font-size: clamp(6rem, 22vw, 10rem); }
  .sig-row__title { font-size: clamp(1.85rem, 8vw, 2.5rem); }

  /* Footer luxe mobile */
  .footer-luxe__info { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-luxe__brand { grid-column: 1 / -1; }
  .footer-luxe__top { font-size: 0.75rem; }
  .footer-luxe__legal { gap: 1.25rem; }

  /* Signature mobile */
  .signature__grid { grid-template-columns: 1fr; }

  /* Why-us mobile */
  .why-us__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Offers mobile */
  .offers__head { flex-direction: column; align-items: flex-start; }
  .offer-card { flex: 0 0 80%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ════════════════════════════════════════════════════
   HEADER DROPDOWN — Thérapies / Formations submenus
   ════════════════════════════════════════════════════ */

.nav__item {
  position: relative;
}

.nav__item--has-dropdown > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__item--has-dropdown > .nav__link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
  margin-left: 0.25rem;
  order: 2;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}

.nav__item--has-dropdown:hover > .nav__link::before {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 0.75rem;
  box-shadow:
    0 1px 0 rgba(248, 242, 228, 0.6) inset,
    0 30px 60px rgba(37, 20, 12, 0.18),
    0 10px 30px rgba(37, 20, 12, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 110;
  margin-top: 0.8rem;
}

/* Hover bridge: prevent gap-induced flicker */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown__title {
  display: block;
  padding: 0.6rem 0.85rem 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  border-bottom: 1px solid rgba(37, 20, 12, 0.08);
  margin-bottom: 0.35rem;
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--espresso);
  border-radius: var(--r-sm);
  transition: background 0.25s ease, padding 0.25s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav__dropdown a em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.85em;
  margin-left: 0.25em;
}

.nav__dropdown a small {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  flex-shrink: 0;
}

.nav__dropdown a:hover {
  background: var(--cream-warm);
  padding-left: 1.25rem;
}

.nav__dropdown a:hover small { color: var(--magenta); }

.nav__dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(37, 20, 12, 0.08);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav__dropdown__footer:hover {
  background: var(--magenta-mist);
  color: var(--magenta-deep);
}

.nav__dropdown__footer svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.3s ease;
}

.nav__dropdown__footer:hover svg { transform: translateX(3px); }

/* When header is on the hero (transparent), dropdown remains light */
body.has-hero .header:not(.scrolled) .nav__dropdown {
  /* keep light cream bg regardless */
}


/* ════════════════════════════════════════════════════
   THERAPY DETAIL PAGE — Hero + sections
   ════════════════════════════════════════════════════ */

/* Therapy hero — full-bleed image with editorial overlay */
.t-hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
  color: var(--cream);
  background-color: var(--espresso);
}

.t-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.t-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 20, 12, 0.3) 0%, rgba(37, 20, 12, 0.45) 50%, rgba(37, 20, 12, 0.75) 100%);
}

.t-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.t-hero .breadcrumb {
  color: rgba(248, 242, 228, 0.7);
  margin-bottom: 2rem;
}

.t-hero .breadcrumb a { color: var(--pink-soft); }
.t-hero .breadcrumb a:hover { color: var(--cream); }
.t-hero .breadcrumb__sep { background: rgba(248, 242, 228, 0.3); }
.t-hero .breadcrumb__current { color: var(--cream); }

.t-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.25rem;
}

/* Force le breadcrumb à occuper sa propre ligne dans les hero de page,
   pour que l'eyebrow ne s'inline pas avec selon la longueur du texte. */
.t-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.t-hero__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--pink-soft);
}

.t-hero h1 {
  font-family: var(--font-display);
  font-size: var(--h1-page);
  font-weight: 400;
  line-height: var(--h1-page-lh);
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 1.5rem;
}

.t-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  display: block;
  font-weight: 500;
}

.t-hero__lede {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  color: var(--cream);
  max-width: 42ch;
  opacity: 0.92;
}

.t-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
  padding-bottom: 0.5rem;
}

.t-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 2rem;
  background: var(--cream);
  color: var(--espresso);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.t-hero__cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.t-hero__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }
.t-hero__cta:hover svg { transform: translateX(3px); }

.t-hero__trust {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  text-align: right;
  line-height: 1.5;
}

.t-hero__trust strong { color: var(--cream); font-weight: 600; }


/* Therapy intro section */
.t-intro {
  padding: var(--section-pad) 0;
  text-align: center;
}

.t-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.t-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--espresso);
}

.t-intro h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-intro p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 56ch;
}


/* Pour qui — audience checklist (large) */
.t-audience {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
}

.t-audience__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.t-audience__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.t-audience__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-audience__head p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.t-audience__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.t-audience__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--espresso);
}

.t-audience__list li::before {
  content: '';
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--magenta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF4ED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
  flex-shrink: 0;
  margin-top: 0.15rem;
}


/* Benefits grid */
.t-benefits {
  padding: var(--section-pad) 0;
}

.t-benefits__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--container-pad);
}

.t-benefits__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

.t-benefits__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-benefits__head p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto;
}

.t-benefits__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.t-benefits__subhead {
  max-width: var(--container-max);
  margin: clamp(3rem, 5vw, 4.5rem) auto 1.75rem;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--espresso);
}

.t-benefits__subhead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.55;
}

.t-benefits__subhead:first-of-type {
  margin-top: 0;
}

.benefit {
  background: var(--cream-warm);
  padding: 2rem 1.75rem;
  border-radius: var(--r-md);
  position: relative;
  transition: transform var(--transition), background var(--transition);
}

.benefit:hover {
  transform: translateY(-4px);
  background: var(--cream-soft);
}

.benefit__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: block;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.benefit p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Link variant — clickable benefit card */
.benefit--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.benefit--link:hover { color: inherit; }

.benefit__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit__cta svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.benefit--link:hover .benefit__cta {
  opacity: 1;
  transform: translateX(0);
}

.benefit--link:hover h3 { color: var(--magenta); }


/* Process — 4 steps numbered */
.t-process {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
}

.t-process__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--container-pad);
}

.t-process__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

.t-process__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-process__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
}

.process-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.process-step p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}


/* Trust — Agnès credentials block */
.t-trust {
  padding: var(--section-pad) 0;
}

.t-trust__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.t-trust__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-warm) center / cover;
}

.t-trust__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--bronze);
  opacity: 0.5;
}

.t-trust__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.t-trust__copy h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-trust__copy p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 55ch;
}

.t-trust__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 1.75rem;
}

.t-trust__credentials span {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: var(--magenta-mist);
  color: var(--magenta-deep);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
}


/* Testimonial section */
.t-testimonial {
  padding: var(--section-pad) 0;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.t-testimonial__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.t-testimonial__quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  margin: 0 0 2rem;
  position: relative;
  padding-top: 3rem;
}

.t-testimonial__quote::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-italic);
  font-size: 5rem;
  font-style: italic;
  color: var(--pink-soft);
  line-height: 1;
  opacity: 0.85;
}

.t-testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.t-testimonial__author cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.t-testimonial__author span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(248, 242, 228, 0.6);
  letter-spacing: 0.04em;
}

.t-testimonial__stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-top: 0.25rem;
  color: var(--gold-soft);
}

.t-testimonial__stars svg { width: 0.95rem; height: 0.95rem; }


/* Pricing card — simple */
.t-pricing {
  padding: var(--section-pad) 0;
}

.t-pricing__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}

.t-pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 0.85rem;
}

.t-pricing h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-pricing > p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid var(--cream-deep);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-card__price small {
  font-size: 0.4em;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.pricing-card__duration {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.pricing-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-card__includes li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pricing-card__includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--magenta);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(7px);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  justify-content: center;
  padding: 1.05rem 2rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.pricing-card__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(116, 76, 50, 0.35);
}

.pricing-card__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }
.pricing-card__cta:hover svg { transform: translateX(3px); }

.t-pricing__note {
  margin-top: 1.5rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-light);
}

/* Programme « Surcharge → Stabilité » : suit directement les tarifs standard */
.t-pricing--program { padding-top: 0; }

.pricing-card--program {
  border-color: var(--gold);
  box-shadow: 0 18px 44px -20px rgba(176, 140, 95, 0.45);
}

.pricing-card--program .t-pricing__note strong { color: var(--espresso); font-style: normal; }


/* Related therapies / formations */
.t-related {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
}

.t-related__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  padding: 0 var(--container-pad);
}

.t-related__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 0.85rem;
}

.t-related__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.t-related__head p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.t-related__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--espresso);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 20, 12, 0.12);
}

.related-card__media {
  aspect-ratio: 4/3;
  background: var(--cream-deep) center / cover;
}

.related-card__body {
  padding: 1.5rem 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}

.related-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--espresso);
  margin: 0;
}

.related-card__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
}

.related-card__arrow {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--magenta);
  font-weight: 500;
  transition: gap var(--transition), color var(--transition);
}

.related-card:hover .related-card__arrow {
  gap: 0.65rem;
  color: var(--magenta-deep);
}

.related-card__arrow svg { width: 0.9rem; height: 0.9rem; }


/* ════════════════════════════════════════════════════
   FORMATION DETAIL PAGE — Compact, no hero
   ════════════════════════════════════════════════════ */

.f-header {
  padding: 8rem 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--cream-warm);
  border-bottom: 1px solid var(--cream-deep);
}

.f-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.f-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.25rem;
}

.f-header__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--magenta);
}

.f-header h1 {
  font-family: var(--font-display);
  font-size: var(--h1-page);
  font-weight: 400;
  line-height: var(--h1-page-lh);
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin: 0;
}

.f-header h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  display: block;
}

.f-header__lede {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ───────── Hero formation avec vidéo (variante 2 colonnes : titre+lede / vidéo) ───────── */
.f-header--with-video .f-header__inner {
  align-items: center;
}

.f-header--with-video .f-header__lede {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

.f-header__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 18px 40px -18px rgba(37, 20, 12, 0.35),
    0 2px 8px -2px rgba(37, 20, 12, 0.12);
  background: var(--espresso);
}

.f-header__video iframe,
.f-header__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* Variante "thumbnail cliquable" — vidéo non embarquable, ouvre YouTube dans un nouvel onglet */
a.f-header__video {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease;
}

a.f-header__video:hover,
a.f-header__video:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 26px 54px -20px rgba(37, 20, 12, 0.5),
    0 4px 12px -2px rgba(37, 20, 12, 0.18);
}

a.f-header__video:focus-visible {
  outline: 2px solid var(--bronze, #b08a5b);
  outline-offset: 4px;
}

.f-header__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 9vw, 92px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  transition: transform .28s ease;
  z-index: 1;
}

a.f-header__video:hover .f-header__video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.f-header__video-play svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .f-header--with-video .f-header__lede {
    margin-top: 1rem;
  }
}

/* ───────── Logo M5C en arrière-plan (formation Massage des 5 Continents) ───────── */
.f-header--bg-m5c {
  position: relative;
  overflow: hidden;
}

.f-header--bg-m5c::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4%;
  transform: translateY(-50%);
  width: clamp(320px, 38vw, 560px);
  aspect-ratio: 1;
  background: url('../img/logo-m5c-rond.webp') center/contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.f-header--bg-m5c .f-header__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .f-header--bg-m5c::before {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    opacity: 0.07;
  }
}


/* Formation info grid (durée, format, niveau, certif) */
.f-info {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--cream-deep);
}

.f-info__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.f-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.f-info__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.f-info__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--espresso);
  line-height: 1.1;
}

.f-info__value em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.85em;
  margin-left: 0.25em;
}


/* Formation sections (programme, pédagogie, pour qui) */
.f-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.f-section--cream-warm { background: var(--cream-warm); }

.f-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.f-section__inner--full { grid-template-columns: 1fr; max-width: 820px; }

.f-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--espresso);
  margin: 0;
}

.f-section__title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  display: block;
}

.f-section__content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.f-section__content p strong { color: var(--espresso); font-weight: 600; }

.f-section__content p em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
}

/* Programme modules list */
.f-modules {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.f-module {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-deep);
}

.f-module:last-child { border-bottom: none; }

.f-module__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--magenta);
  line-height: 1;
}

.f-module h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 0.4rem;
}

.f-module p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Pour qui — ideal candidate */
.f-audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-audience-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--espresso);
}

.f-audience-list li::before {
  content: '';
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--magenta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF4ED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
  flex-shrink: 0;
  margin-top: 0.15rem;
}


/* Formation pricing & CTA — simple */
.f-pricing {
  padding: var(--section-pad) 0;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.f-pricing__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.f-pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.25rem;
  justify-content: center;
}

.f-pricing__eyebrow::before,
.f-pricing__eyebrow::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--pink-soft);
  opacity: 0.6;
}

.f-pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.f-pricing h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--pink-soft);
}

.f-pricing__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-soft);
  margin: 1.5rem 0 0.4rem;
  letter-spacing: -0.025em;
}

.f-pricing__price small {
  font-size: 0.4em;
  color: var(--on-dark-soft);
  letter-spacing: 0.02em;
}

.f-pricing__note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
  margin-bottom: 2rem;
}

.f-pricing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.f-pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.f-pricing__cta--primary {
  background: var(--cream);
  color: var(--espresso);
}

.f-pricing__cta--primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.f-pricing__cta--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 242, 228, 0.5);
}

.f-pricing__cta--ghost:hover {
  background: rgba(248, 242, 228, 0.1);
  border-color: var(--cream);
}

.f-pricing__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }
.f-pricing__cta:hover svg { transform: translateX(3px); }

/* ── Sticky CTA bar for formation pages ── */
.f-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--espresso);
  padding: 0.85rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.f-sticky-cta__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}

.f-sticky-cta__text em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--pink-soft);
}

.f-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--cream);
  color: var(--espresso);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.f-sticky-cta__btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.f-sticky-cta__btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
}

.f-sticky-cta__btn:hover svg { transform: translateX(3px); }

/* Hide sticky CTA when near the f-pricing section (JS adds this) */
.f-sticky-cta.is-hidden { transform: translateY(100%); opacity: 0; }

@media (max-width: 600px) {
  .f-sticky-cta__text { display: none; }
  .f-sticky-cta__btn { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }
}


/* Mobile responsive for therapy/formation pages */
@media (max-width: 1024px) {
  .t-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .t-hero__aside { align-items: flex-start; }
  .t-hero__trust { text-align: left; }
  .t-audience__grid { grid-template-columns: 1fr; gap: 2rem; }
  .t-benefits__grid { grid-template-columns: 1fr 1fr; }
  .t-process__grid { grid-template-columns: 1fr 1fr; }
  .t-trust__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .t-trust__photo { max-width: 360px; }
  .t-related__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .f-header__inner { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .f-info__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .f-section__inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .nav__dropdown { min-width: 240px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FORMATION ACCRÉDITATIONS — Cas A (Fédération M5C + IPHM + CMA)
   Style éditorial cream/bronze sur fond espresso très sombre
   ═══════════════════════════════════════════════════════════════════════ */
.f-accreditations {
  background-color: #1a0e08;
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.f-accreditations::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(176, 140, 95, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(116, 76, 50, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.f-accreditations__inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.f-accreditations__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.f-accreditations__eyebrow::before,
.f-accreditations__eyebrow::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.f-accreditations__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 1.5rem;
}

.f-accreditations__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.f-accreditations__lede {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto 2.75rem;
  color: rgba(250, 244, 237, 0.85);
}

.f-accreditations__partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1rem 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 44rem;
}

.f-accreditations__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(176, 140, 95, 0.32);
  border-radius: 4px;
  background: rgba(176, 140, 95, 0.04);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.f-accreditations__partner:hover {
  background: rgba(176, 140, 95, 0.10);
  border-color: rgba(176, 140, 95, 0.55);
}

.f-accreditations__partner-acronym {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.f-accreditations__partner-name {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(250, 244, 237, 0.7);
  line-height: 1.35;
  max-width: 9.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   FORMATION CERTIFICATION — Cas B (Re-Né-Sens privée + badge sophro/relax)
   ═══════════════════════════════════════════════════════════════════════ */
.f-certification {
  background-color: var(--cream);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.f-certification__inner {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.f-certification--no-badge .f-certification__inner {
  grid-template-columns: 1fr;
  max-width: 52rem;
  text-align: center;
}

.f-certification__badge {
  display: flex;
  justify-content: center;
}

.f-certification__badge img {
  width: 100%;
  max-width: 22rem;
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(37, 20, 12, 0.18));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.f-certification__badge img:hover {
  transform: rotate(-2deg) scale(1.02);
}

.f-certification__copy {
  color: var(--espresso);
}

.f-certification__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.f-certification__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
}

.f-certification--no-badge .f-certification__eyebrow {
  align-self: center;
}

.f-certification__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 1.25rem;
}

.f-certification__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.f-certification__body {
  font-size: clamp(1rem, 1.1vw, 1.075rem);
  line-height: 1.7;
  color: rgba(37, 20, 12, 0.78);
  margin: 0 0 1rem;
}

.f-certification__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--espresso);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.f-certification__cta:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.f-certification__cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER LEGAL STRIP — N° Déclaration d'Activité + Datadock
   ═══════════════════════════════════════════════════════════════════════ */
.footer-luxe__compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(176, 140, 95, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(250, 244, 237, 0.6);
  text-align: center;
}

.footer-luxe__compliance strong {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-luxe__compliance-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(176, 140, 95, 0.4);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════
   INTERVENTIONS — Hub (interventions.html)
   ═══════════════════════════════════════════════════════════════════════ */
.interventions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 3rem;
}

.intervention-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--r-md);
  background: var(--cream);
  border: 1px solid rgba(116, 76, 50, 0.12);
  color: var(--espresso);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}

.intervention-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(circle at top right, rgba(176, 140, 95, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.intervention-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -25px rgba(37, 20, 12, 0.35);
  border-color: rgba(176, 140, 95, 0.45);
}

.intervention-card:hover::after { opacity: 1; }

.intervention-card__icon {
  width: 3rem;
  height: 3rem;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.intervention-card__icon svg {
  width: 100%;
  height: 100%;
}

.intervention-card__eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.intervention-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0;
}

.intervention-card__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.intervention-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(37, 20, 12, 0.75);
  margin: 0;
}

.intervention-card__refs,
.intervention-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin-top: 0.5rem;
}

.intervention-card__refs span,
.intervention-card__tags span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(176, 140, 95, 0.3);
  border-radius: 999px;
  color: var(--bronze);
}

.intervention-card__refs span { font-weight: 500; }

.intervention-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  border-top: 1px solid rgba(176, 140, 95, 0.15);
}

.intervention-card__cta svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.intervention-card:hover .intervention-card__cta svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════
   CLIENTS BAR — Références d'entreprises (intervention-entreprise.html)
   ═══════════════════════════════════════════════════════════════════════ */
.clients-bar {
  background: var(--cream-warm);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(176, 140, 95, 0.12);
  border-bottom: 1px solid rgba(176, 140, 95, 0.12);
}

.clients-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.clients-bar__label {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--bronze);
}

.clients-bar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 3rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.04em;
  color: var(--espresso);
  opacity: 0.78;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

.client-logo em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
  margin-left: 0.3rem;
}

.client-logo img {
  max-height: 3rem;
  width: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.client-logo:hover img { filter: grayscale(0%); }

/* ═══════════════════════════════════════════════════════════════════════
   CNV BLOCK — Communication NonViolente (intervention-entreprise.html)
   ═══════════════════════════════════════════════════════════════════════ */
.cnv-block {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.cnv-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(176, 140, 95, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(214, 51, 132, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.cnv-block__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.cnv-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.cnv-block__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.cnv-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 1.5rem;
}

.cnv-block h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.cnv-block__copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(250, 244, 237, 0.82);
  margin: 0 0 1.5rem;
}

.cnv-block__copy p em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--gold);
}

.cnv-block__benefits {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.75rem;
}

.cnv-block__benefits li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(250, 244, 237, 0.85);
}

.cnv-block__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  border-radius: 50%;
}

.cnv-block__formats {
  background: rgba(250, 244, 237, 0.04);
  border: 1px solid rgba(176, 140, 95, 0.25);
  border-radius: var(--r-md);
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cnv-block__formats h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 0 0 0.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(176, 140, 95, 0.18);
}

.cnv-block__format-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.cnv-block__format-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 0.15rem;
}

.cnv-block__format-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  margin: 0 0 0.2rem;
}

.cnv-block__format-item p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250, 244, 237, 0.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   CATALOGUE — 8 thématiques courtes (intervention-entreprise.html)
   ═══════════════════════════════════════════════════════════════════════ */
.catalogue {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.catalogue__head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.catalogue__head .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.catalogue__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0.75rem 0 1rem;
}

.catalogue__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.catalogue__head p {
  font-size: 1rem;
  color: rgba(37, 20, 12, 0.7);
  margin: 0;
}

.catalogue__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.catalogue-card {
  background: var(--cream-warm);
  border: 1px solid rgba(116, 76, 50, 0.08);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--espresso);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease,
              border-color 0.4s ease;
}

.catalogue-card:hover {
  transform: translateY(-4px);
  background: var(--cream-soft);
  border-color: rgba(176, 140, 95, 0.4);
}

.catalogue-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--magenta);
}

.catalogue-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0;
}

.catalogue-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(37, 20, 12, 0.7);
  margin: 0;
  flex-grow: 1;
}

.catalogue-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalogue-card__cta svg {
  width: 0.85rem;
  height: 0.85rem;
}

.catalogue-card:hover .catalogue-card__cta {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   SPLIT AUDIENCE — 2 publics côte à côte (scolaire, handicap)
   ═══════════════════════════════════════════════════════════════════════ */
.split-audience {
  background: var(--cream-warm);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.split-audience__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.audience-card {
  background: var(--cream);
  border: 1px solid rgba(116, 76, 50, 0.1);
  border-radius: var(--r-md);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px -25px rgba(37, 20, 12, 0.3);
}

.audience-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--bronze);
  margin-bottom: 0.25rem;
}

.audience-card__icon svg { width: 100%; height: 100%; }

.audience-card--teachers .audience-card__icon { color: var(--magenta); }
.audience-card--soft { background: linear-gradient(160deg, var(--cream), var(--cream-warm)); }

.audience-card__eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0;
}

.audience-card h3 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.audience-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(37, 20, 12, 0.75);
  margin: 0 0 0.5rem;
}

.audience-card__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.audience-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--espresso);
}

.audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.85rem;
  height: 1px;
  background: var(--bronze);
}

/* ═══════════════════════════════════════════════════════════════════════
   SCHOOL YEAR — Timeline « 1 année scolaire » (intervention-scolaire.html)
   ═══════════════════════════════════════════════════════════════════════ */
.school-year {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.school-year__head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.school-year__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0.75rem 0 1rem;
}

.school-year__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.school-year__head p {
  font-size: 1rem;
  color: rgba(37, 20, 12, 0.7);
  margin: 0;
}

.school-year__timeline {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.school-year__timeline::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(176, 140, 95, 0.1) 0%,
    rgba(176, 140, 95, 0.45) 30%,
    rgba(176, 140, 95, 0.45) 70%,
    rgba(176, 140, 95, 0.1) 100%);
}

.school-year__step {
  background: var(--cream-warm);
  border: 1px solid rgba(116, 76, 50, 0.08);
  border-radius: var(--r-md);
  padding: 2.5rem 1.25rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}

.school-year__step:hover {
  transform: translateY(-4px);
  background: var(--cream-soft);
}

.school-year__when {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bronze);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.school-year__step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0.5rem 0 0.3rem;
  text-align: center;
}

.school-year__step p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(37, 20, 12, 0.7);
  margin: 0;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   PARTNERS GRID — IME, ESAT, foyers de vie (intervention-handicap.html)
   ═══════════════════════════════════════════════════════════════════════ */
.partners-grid {
  background: var(--cream-warm);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.partners-grid__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.partners-grid__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--espresso);
  margin: 0.75rem 0 0;
}

.partners-grid__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
}

.partners-grid__list {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.partner-card {
  background: var(--cream);
  border: 1px solid rgba(116, 76, 50, 0.1);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 140, 95, 0.4);
}

.partner-card__acronym {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--bronze);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(176, 140, 95, 0.2);
  margin-bottom: 0.5rem;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin: 0;
}

.partner-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(37, 20, 12, 0.7);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   AGNÈS QUOTE — Citation manuscrite (intervention-handicap.html)
   ═══════════════════════════════════════════════════════════════════════ */
.agnes-quote {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.agnes-quote__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.agnes-quote__mark {
  width: 3rem;
  height: 3rem;
  color: var(--bronze);
  opacity: 0.35;
  margin-bottom: 1rem;
}

.agnes-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--espresso);
  margin: 0 0 2rem;
}

.agnes-quote__text em {
  font-family: var(--font-italic);
  font-weight: 500;
  color: var(--bronze);
}

.agnes-quote__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}

.agnes-quote__name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
}

.agnes-quote__role {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--bronze);
}

/* T-hero doux variant pour la page handicap */
.t-hero--doux .t-hero__bg {
  filter: saturate(0.85) brightness(1.05);
}

/* t-process--5 columns (entreprise + handicap) */
.t-process__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 768px) {
  .t-benefits__grid, .t-process__grid, .f-info__grid { grid-template-columns: 1fr; }
  .f-pricing__actions { flex-direction: column; align-items: stretch; }
  .f-pricing__cta { width: 100%; justify-content: center; }
  .nav__dropdown { display: none; }

  .f-certification__inner { grid-template-columns: 1fr; text-align: center; }
  .f-certification__badge img { max-width: 16rem; }
  .f-certification__eyebrow,
  .f-certification__cta { align-self: center; }
  .f-accreditations__partners { grid-template-columns: 1fr 1fr; }

  /* Interventions mobile */
  .interventions-grid { grid-template-columns: 1fr; }
  .cnv-block__inner { grid-template-columns: 1fr; }
  .cnv-block__benefits { grid-template-columns: 1fr; }
  .split-audience__inner { grid-template-columns: 1fr; }
  .school-year__timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .school-year__timeline::before { display: none; }
  .t-process__grid--5 { grid-template-columns: 1fr; }
  .clients-bar__list { gap: 1rem 1.75rem; }
  .client-logo { font-size: 1rem; }
}

@media (max-width: 480px) {
  .school-year__timeline { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   CONSENTEMENT COOKIES — bannière, modale, interrupteurs, placeholders
   ════════════════════════════════════════════════════════════════════ */

/* ── Repli affiché quand un contenu tiers est bloqué faute de consentement ── */
.consent-fallback {
  display: none;
  margin: 0;
  padding: 1.75rem 1.5rem;
  border: 1px dashed var(--champagne);
  border-radius: 1rem;
  background: var(--cream-soft);
  color: var(--brown);
  font-size: 0.95rem;
  text-align: center;
}
[data-consent-wrapper][data-consent-blocked] .consent-fallback { display: block; }
.consent-fallback__btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.55rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--bronze);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}
.consent-fallback__btn:hover { background: var(--bronze-deep); }

/* ── Bannière ── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  transform: translateX(-50%) translateY(150%);
  width: min(960px, calc(100% - 1.5rem));
  background: var(--espresso);
  color: var(--on-dark);
  border: 1px solid rgba(247, 231, 222, 0.14);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: transform .45s cubic-bezier(.16,.84,.44,1), opacity .35s ease, visibility .35s;
}
.cookie-banner.is-open { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 320px; }
.cookie-banner__title { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 .35rem; color: var(--gold-soft); }
.cookie-banner__text p { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--on-dark-soft); }
.cookie-banner__text a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

/* ── Boutons ── */
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.cookie-btn:active { transform: translateY(1px); }
.cookie-btn--solid { background: var(--gold); color: var(--espresso); }
.cookie-btn--solid:hover { background: var(--gold-soft); }
.cookie-btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(247,231,222,0.28); }
.cookie-btn--ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ── Modale ── */
.cookie-modal { position: fixed; inset: 0; z-index: 9100; display: none; }
.cookie-modal.is-open { display: block; }
.cookie-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 10, 5, 0.6);
  backdrop-filter: blur(4px);
  animation: cookieFade .3s ease;
}
.cookie-modal__panel {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, calc(100% - 2rem));
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  animation: cookiePop .35s cubic-bezier(.16,.84,.44,1);
}
@keyframes cookieFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cookiePop { from { opacity: 0; transform: translateY(-46%) scale(.96); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
.cookie-modal__close {
  position: absolute; top: 0.9rem; right: 1.1rem;
  width: 2.25rem; height: 2.25rem;
  border: none; background: transparent;
  font-size: 1.8rem; line-height: 1; color: var(--ink-light);
  cursor: pointer; border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.cookie-modal__close:hover { background: var(--cream-deep); color: var(--ink); }
.cookie-modal__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 0.5rem; }
.cookie-modal__intro { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 1.5rem; }
.cookie-modal__list { display: flex; flex-direction: column; gap: 0.9rem; }
.cookie-modal__actions {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--cream-deep);
}
.cookie-modal__actions .cookie-btn--ghost { color: var(--bronze); border-color: var(--cream-deep); }
.cookie-modal__actions .cookie-btn--ghost:hover { border-color: var(--bronze); color: var(--bronze-deep); }
.cookie-modal-open { overflow: hidden; }

/* ── Lignes de préférence + interrupteurs ── */
.cookie-pref { background: var(--white); border: 1px solid var(--cream-deep); border-radius: var(--r-md); padding: 1rem 1.15rem; }
.cookie-pref__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-pref__name { font-weight: 600; font-size: 0.98rem; }
.cookie-pref__desc { margin: 0.5rem 0 0; font-size: 0.84rem; line-height: 1.55; color: var(--ink-soft); }
.cookie-switch { display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; user-select: none; flex-shrink: 0; }
.cookie-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-switch__slider { position: relative; width: 42px; height: 24px; background: var(--ink-faint); border-radius: 100px; transition: background .25s ease; flex-shrink: 0; }
.cookie-switch__slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .25s ease; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.cookie-switch input:checked + .cookie-switch__slider { background: var(--bronze); }
.cookie-switch input:checked + .cookie-switch__slider::after { transform: translateX(18px); }
.cookie-switch__label { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-light); min-width: 5.5rem; text-align: right; }
.cookie-switch.is-locked { cursor: not-allowed; }
.cookie-switch.is-locked .cookie-switch__slider { background: var(--bronze-soft); opacity: 0.7; }

/* ── Placeholder pour contenu tiers bloqué (vignette YouTube) ── */
[data-consent-wrapper][data-consent-blocked] {
  position: relative;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(116,76,50,0.35), transparent 60%),
    linear-gradient(135deg, var(--espresso), var(--bronze-deep));
}
[data-consent-wrapper][data-consent-blocked] img { opacity: 0; }
[data-consent-wrapper][data-consent-blocked]::after {
  content: 'Aperçu vidéo masqué pour votre vie privée — cliquez pour l\'ouvrir sur YouTube, ou activez les contenus tiers via le bandeau cookies.';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--on-dark-soft);
  background: linear-gradient(to top, rgba(20,10,5,0.78), transparent 70%);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .cookie-btn { flex: 1 1 auto; text-align: center; }
  .cookie-pref__head { flex-wrap: wrap; }
  .cookie-switch__label { min-width: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   PAGES LÉGALES — typographie lisible
   ════════════════════════════════════════════════════════════════════ */
.legal-prose { max-width: var(--content-max); margin: 0 auto; }
.legal-prose > p:first-child { margin-top: 0; }
.legal-prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 2.75rem 0 0.85rem;
  color: var(--ink);
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; margin: 1.5rem 0 0.4rem; color: var(--ink); }
.legal-prose p, .legal-prose li { font-size: 0.97rem; line-height: 1.75; color: var(--ink-soft); }
.legal-prose ul { margin: 0.5rem 0 1rem; padding-left: 1.3rem; }
.legal-prose li { margin-bottom: 0.4rem; }
.legal-prose a { color: var(--bronze); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: var(--bronze-deep); }
.legal-prose strong { color: var(--ink); font-weight: 600; }
.legal-prose__updated { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 2.5rem; }
.legal-prose__todo { background: var(--gold-mist); border-left: 3px solid var(--gold); padding: 0.15rem 0.5rem; border-radius: 3px; font-style: italic; color: var(--gold-deep); }
.legal-prose__card { background: var(--cream-soft); border: 1px solid var(--cream-deep); border-radius: var(--r-md); padding: 1.25rem 1.5rem; margin: 1.25rem 0; }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.9rem; }
.legal-prose th, .legal-prose td { text-align: left; padding: 0.7rem 0.85rem; border-bottom: 1px solid var(--cream-deep); vertical-align: top; }
.legal-prose th { font-family: var(--font-sans); font-weight: 600; color: var(--ink); background: var(--cream-soft); }
.legal-prose td { color: var(--ink-soft); line-height: 1.55; }
.legal-prose .btn { margin-top: 0.5rem; }
@media (max-width: 600px) {
  .legal-prose table, .legal-prose thead, .legal-prose tbody, .legal-prose tr, .legal-prose th, .legal-prose td { display: block; }
  .legal-prose thead { display: none; }
  .legal-prose tr { border: 1px solid var(--cream-deep); border-radius: var(--r-sm); margin-bottom: 0.85rem; padding: 0.5rem 0.75rem; }
  .legal-prose td { border: none; padding: 0.3rem 0; }
  .legal-prose td::before { content: attr(data-label); display: block; font-weight: 600; color: var(--ink); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }
}

/* ════════════════════════════════════════════════════
   T-INTRO — variante 2 colonnes (texte + image thématique)
   ════════════════════════════════════════════════════ */
.t-intro--split { text-align: left; }
.t-intro--split .t-intro__inner {
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.t-intro--split .t-intro p { margin: 0; }
.t-intro__media {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px -24px rgba(37, 20, 12, 0.28);
}
.t-intro__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 760px) {
  .t-intro--split { text-align: center; }
  .t-intro--split .t-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
  .t-intro--split .t-intro p { margin: 0 auto; }
  .t-intro__media { aspect-ratio: 16 / 10; order: -1; }
}

/* ════════════════════════════════════════════════════
   T-GALLERY — grille de photos (galerie thérapies/interventions)
   ════════════════════════════════════════════════════ */
.t-gallery { padding: 0 0 var(--section-pad); }
.t-gallery__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.t-gallery__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.t-gallery__head h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; letter-spacing: -0.025em; color: var(--espresso); margin-bottom: 0.75rem; }
.t-gallery__head h2 em { font-family: var(--font-italic); font-style: italic; color: var(--bronze); }
.t-gallery__head p { font-family: var(--font-sans); font-size: 1.02rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.t-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.t-gallery__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.t-gallery__grid figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: 0 24px 50px -22px rgba(37, 20, 12, 0.28); background: var(--cream-deep); }
.t-gallery__grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .t-gallery__grid figure:hover img { transform: scale(1.05); }
}
@media (max-width: 760px) {
  .t-gallery__grid { grid-template-columns: 1fr 1fr; }
  .t-gallery__grid--2 { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 480px) {
  .t-gallery__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

.t-gallery__grid--tall figure { aspect-ratio: 4 / 5; }

/* ════════════════════════════════════════════════════
   F-PROOF — photo de certification (pages formation)
   ════════════════════════════════════════════════════ */
.f-proof { padding: 0 var(--container-pad) var(--section-pad); }
.f-proof__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.f-proof figure { margin: 0 auto; max-width: 560px; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px -24px rgba(37, 20, 12, 0.3); }
.f-proof img { width: 100%; height: auto; display: block; }
.f-proof figcaption { margin-top: 1rem; font-family: var(--font-italic); font-style: italic; font-size: 1rem; color: var(--bronze); }

.cabinet-block__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.benefit__meta { display: block; margin: 0.15rem 0 0.6rem; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--bronze); }

/* ════════════════════════════════════════════════════
   M-CLAMP — « Voir plus » mobile (troncature textes longs)
   Activé par JS (classe .m-clamp) — mobile ≤ 768px uniquement.
   Sur desktop ces règles ne s'appliquent pas → texte intégral.
   ════════════════════════════════════════════════════ */
/* Par défaut (desktop) le bouton est masqué : il ne s'affiche qu'en mobile.
   Protège le cas d'un redimensionnement mobile → desktop après création. */
.m-clamp__btn { display: none; }

@media (max-width: 768px) {
  .m-clamp {
    --clamp-bg: var(--cream);
    position: relative;
    max-height: var(--clamp-h, 10em);
    overflow: hidden;
    /* on conserve la transition de reveal (opacity/transform) + max-height */
    transition: max-height 0.45s var(--ease),
                opacity 0.9s var(--ease),
                transform 0.9s var(--ease);
  }
  .m-clamp.is-open { max-height: none; }

  .m-clamp::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4em;
    background: linear-gradient(to bottom, var(--clamp-fade-from, rgba(255, 255, 255, 0)) 0%, var(--clamp-bg) 88%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .m-clamp.is-open::after { opacity: 0; }

  .m-clamp__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0.9rem 0 0;
    padding: 0.5rem 1.15rem;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--bronze);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .m-clamp__btn:hover,
  .m-clamp__btn:focus-visible { background: var(--gold); color: var(--cream); }
  .m-clamp__btn-icon {
    width: 0.95em; height: 0.95em;
    transition: transform 0.35s var(--ease);
  }
  .m-clamp__btn.is-open .m-clamp__btn-icon { transform: rotate(180deg); }

  /* Hauteur repliée + couleur de dégradé par bloc ciblé */
  .about__copy.m-clamp { --clamp-h: 11em; --clamp-bg: var(--cream); }

  /* Cartes formations (accueil) : fond clair vs fond sombre */
  .formation__body.m-clamp { --clamp-h: 8em; }
  .formation:not(.formation--dark) .formation__body.m-clamp { --clamp-bg: var(--cream-soft); }
  .formation--dark .formation__body.m-clamp {
    --clamp-bg: var(--teal-deep);
    --clamp-fade-from: rgba(37, 20, 12, 0);  /* teal-deep transparent (pas de voile blanc) */
  }
  /* Dans la carte (flex column) : bouton compact aligné à gauche,
     visuellement distinct du CTA pleine largeur en dessous. */
  .formation .m-clamp__btn { align-self: flex-start; margin-bottom: 1.4rem; }
  .formation--dark .m-clamp__btn { color: var(--gold-soft); border-color: var(--gold-soft); }

  /* Intro des pages thérapie (centrée, fond crème) — le titre reste visible */
  .t-intro__inner.m-clamp { --clamp-h: 12em; --clamp-bg: var(--cream); }

  /* Accréditations des pages formation (fond très sombre) */
  .f-acc-clamp.m-clamp {
    --clamp-h: 8em;
    --clamp-bg: #1a0e08;
    --clamp-fade-from: rgba(26, 14, 8, 0);  /* pas de voile clair */
  }
  .f-accreditations .m-clamp__btn { color: var(--gold-soft); border-color: var(--gold-soft); }
}

/* ════════════════════════════════════════════════════
   NEWSLETTER POPUP — capture « formations » (Brevo)
   Injectée par main.js, affichée après 10s (1× / visiteur).
   ════════════════════════════════════════════════════ */
.nl-pop {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nl-pop.is-open { opacity: 1; visibility: visible; }

.nl-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 20, 12, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.nl-pop__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -30px rgba(37, 20, 12, 0.5);
  padding: clamp(1.85rem, 4vw, 2.6rem);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
}
.nl-pop.is-open .nl-pop__dialog { transform: none; }
.nl-pop__dialog::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--bronze));
}

.nl-pop__close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 2rem; height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(37, 20, 12, 0.06);
  color: var(--espresso);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.nl-pop__close:hover { background: rgba(37, 20, 12, 0.14); }

.nl-pop__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.55rem;
}
.nl-pop__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 4.5vw, 1.95rem);
  line-height: 1.15;
  color: var(--espresso);
  margin: 0 0 0.6rem;
}
.nl-pop__title em { font-family: var(--font-italic); font-style: italic; color: var(--bronze); }
.nl-pop__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.nl-pop__text strong { color: var(--espresso); font-weight: 600; }

.nl-pop__form { display: flex; flex-direction: column; gap: 0.65rem; }
/* l'attribut [hidden] doit l'emporter sur display:flex (sinon le form reste visible) */
.nl-pop__form[hidden] { display: none; }
.nl-pop__row { display: flex; gap: 0.65rem; }
.nl-pop__row .nl-pop__input { flex: 1; min-width: 0; }
.nl-pop__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--cream-deep);
  border-radius: 999px;
  background: #fff;
  color: var(--espresso);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nl-pop__input::placeholder { color: var(--ink-faint); }
.nl-pop__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 140, 95, 0.18);
}

.nl-pop__submit {
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}
.nl-pop__submit:hover { background: var(--bronze); }
.nl-pop__submit:active { transform: translateY(1px); }

.nl-pop__legal {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-light);
  margin: 0.65rem 0 0;
}
.nl-pop__legal a { color: var(--bronze); text-decoration: underline; }

/* Case de consentement (obligatoire) */
.nl-pop__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0.3rem 0 0;
}
.nl-pop__consent-box {
  margin: 0.12rem 0 0;
  width: 1.05rem; height: 1.05rem;
  flex: 0 0 auto;
  accent-color: var(--bronze);
  cursor: pointer;
}
.nl-pop__consent a { color: var(--bronze); text-decoration: underline; }
.nl-pop__consent.is-error { color: #b3261e; }
.nl-pop__consent.is-error .nl-pop__consent-box { outline: 2px solid #b3261e; outline-offset: 2px; }
.nl-pop__error {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: #b3261e;
  text-align: left;
  margin: 0.45rem 0 0;
}
.nl-pop__error[hidden] { display: none; }

/* honeypot anti-bot — invisible aux humains */
.nl-pop__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}
.nl-pop__frame { display: none; }

.nl-pop__success {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--espresso);
  padding: 1.25rem 0 0.5rem;
}
.nl-pop__success strong { font-family: var(--font-display); color: var(--bronze); }

@media (max-width: 480px) {
  .nl-pop__row { flex-direction: column; }
  .nl-pop__dialog { padding: 1.7rem 1.3rem; }
}

/* ════════════════════════════════════════════════════
   NEWSLETTER — bande dans le footer (toutes les pages)
   Envoi Brevo via iframe cachée, même logique que la pop-up.
   ════════════════════════════════════════════════════ */
.footer-luxe__newsletter {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem 3rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(247, 231, 222, 0.08);
}
.footer-nl__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}
.footer-nl__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
  max-width: 24ch;
}
.footer-nl__title em { font-family: var(--font-italic); font-style: italic; color: var(--gold-soft); }

.footer-nl__form { width: 100%; }
.footer-nl__form[hidden] { display: none; }
.footer-nl__row { display: flex; gap: 0.6rem; }
.footer-nl__input {
  flex: 1; min-width: 0;
  font-family: var(--font-sans); font-size: 0.95rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(247, 231, 222, 0.25);
  border-radius: 999px;
  background: rgba(250, 244, 237, 0.06);
  color: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-nl__input::placeholder { color: rgba(247, 231, 222, 0.5); }
.footer-nl__input:focus { outline: none; border-color: var(--gold); background: rgba(250, 244, 237, 0.1); }
.footer-nl__btn {
  flex: 0 0 auto;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border: none; border-radius: 999px;
  background: var(--gold); color: var(--espresso);
  cursor: pointer; transition: background 0.25s ease;
}
.footer-nl__btn:hover { background: var(--gold-soft); }

.footer-nl__consent {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-top: 0.8rem;
  font-family: var(--font-sans); font-size: 0.72rem; line-height: 1.4;
  color: rgba(247, 231, 222, 0.65);
  cursor: pointer;
}
.footer-nl__consent-box { margin-top: 0.1rem; flex: 0 0 auto; accent-color: var(--gold); cursor: pointer; }
.footer-nl__consent a { color: var(--gold-soft); text-decoration: underline; }
.footer-nl__consent.is-error { color: #ffb4a8; }
.footer-nl__consent.is-error .footer-nl__consent-box { outline: 2px solid #ffb4a8; outline-offset: 2px; }
.footer-nl__error {
  font-family: var(--font-sans); font-size: 0.74rem; font-weight: 600;
  color: #ffb4a8; margin: 0.5rem 0 0;
}
.footer-nl__error[hidden] { display: none; }
.footer-nl__success {
  font-family: var(--font-italic); font-style: italic; font-size: 1.05rem;
  color: var(--gold-soft); margin: 0; line-height: 1.5;
}
.footer-nl__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.footer-nl__frame { display: none; }

@media (max-width: 760px) {
  .footer-luxe__newsletter { grid-template-columns: 1fr; gap: 1.1rem; padding: 2rem 0; }
  .footer-nl__row { flex-direction: column; }
  .footer-nl__btn { width: 100%; }
}

/* Carte "related" affichant un logo (M5C) : logo entier sur fond, pas de crop */
.related-card__media--logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--cream);
}

/* ── Badge « lieu » d'une session (ex. Marie-Galante) ── */
.rns-lieu {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-left: 0.5em;
  padding: 0.15em 0.6em;
  border-radius: 999px;
  background: var(--gold-mist);
  color: var(--bronze-deep);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  vertical-align: middle;
}
.rns-lieu svg { width: 0.95em; height: 0.95em; flex-shrink: 0; }

/* ── Note « sessions délocalisées » sur les pages formation ── */
.f-mg-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--gold-soft);
  border-radius: 0.8rem;
  background: var(--gold-mist);
  color: var(--bronze-deep);
  font-size: 0.95rem;
  line-height: 1.45;
}
.f-mg-note__icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }

/* Vignette soin-card affichant un logo (M5C) : logo entier, pas de crop */
.soin-card__img--logo { background: var(--cream); }
.soin-card__img--logo img { object-fit: contain; padding: 1.5rem; }
.soin-card:hover .soin-card__img--logo img { transform: none; }

/* ════════ Carte Google Maps (section contact accueil) ════════ */
.contact__map { display: flex; flex-direction: column; }
.contact__map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
}
.contact__map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact__map-embed .consent-fallback {
  position: absolute; inset: 0; margin: 0; border: 0; border-radius: 0;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.contact__map-embed[data-consent-blocked] .consent-fallback { display: flex; }

/* ════════ Pop-up de réservation ════════ */
html.booking-open { overflow: hidden; }
.booking-pop {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.booking-pop[hidden] { display: none; }
.booking-pop__backdrop { position: absolute; inset: 0; background: rgba(37, 20, 12, 0.55); backdrop-filter: blur(3px); }
.booking-pop__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 780px; max-height: 88vh;
  display: flex; flex-direction: column;
  background: var(--cream); border-radius: 1.25rem;
  box-shadow: 0 30px 80px rgba(37, 20, 12, 0.35); overflow: hidden;
}
.booking-pop__close {
  position: absolute; top: 0.6rem; right: 0.85rem; z-index: 2;
  width: 2.2rem; height: 2.2rem; border: 0; border-radius: 50%;
  background: transparent; color: var(--espresso);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.booking-pop__close:hover { background: rgba(37, 20, 12, 0.06); }
.booking-pop__head { padding: 1.9rem 2rem 0.6rem; }
.booking-pop__title { font-family: var(--font-display); font-weight: 400; font-size: 1.75rem; color: var(--espresso); margin: 0.3rem 0 0; }
.booking-pop__sub { color: var(--brown); font-size: 0.95rem; line-height: 1.5; margin: 0.5rem 0 0; }
.booking-pop__scroll { overflow-y: auto; padding: 0.5rem 2rem 2rem; }
.booking-pop__group { margin-top: 1.5rem; }
.booking-pop__group-title { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin: 0 0 0.75rem; font-weight: 600; }
.booking-pop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.booking-card {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.85rem 1rem; background: var(--white);
  border: 1px solid var(--champagne); border-radius: 0.7rem;
  color: var(--espresso); font-size: 0.95rem; line-height: 1.3;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.booking-card:hover { border-color: var(--bronze); background: var(--cream-soft); transform: translateY(-1px); }
.booking-card__arrow { width: 1rem; height: 1rem; color: var(--bronze); flex-shrink: 0; }
@media (max-width: 560px) {
  .booking-pop { padding: 0; }
  .booking-pop__panel { max-width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .booking-pop__grid { grid-template-columns: 1fr; }
  .booking-pop__head, .booking-pop__scroll { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ════════ FAQ (accordéon) ════════ */
.faq-section .section__sub {
  max-width: 46ch; margin: 0.75rem auto 0;
  color: var(--brown); font-size: 1rem; line-height: 1.6;
}
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item {
  border: 1px solid var(--champagne);
  border-radius: 0.85rem;
  background: var(--white);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: var(--bronze); box-shadow: 0 12px 30px rgba(37, 20, 12, 0.07); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--espresso);
  cursor: pointer; list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--bronze); }
.faq-item__chevron {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--bronze);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding: 0 1.4rem 1.25rem; }
.faq-item__a p { margin: 0; color: var(--brown); line-height: 1.65; font-size: 0.98rem; }
@media (max-width: 560px) {
  .faq-item__q { font-size: 1rem; padding: 1rem 1.1rem; }
  .faq-item__a { padding: 0 1.1rem 1.1rem; }
}

/* ════════ "Pour qui ?" — grille de besoins ════════ */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 940px;
  margin: 2.75rem auto 0;
}
.need {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 1.1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--champagne);
  border-radius: 0.8rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.need:hover { border-color: var(--bronze); transform: translateY(-2px); }
.need__icon { width: 1.15rem; height: 1.15rem; color: var(--bronze); flex-shrink: 0; margin-top: 0.1rem; }
.need__label { font-size: 0.92rem; line-height: 1.4; color: var(--espresso); }
@media (max-width: 900px) { .needs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .needs-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════
   E-BOOK — bandeau haut + section + modale de capture
   ════════════════════════════════════════════════════ */

/* ── Bandeau haut (rose) ── */
.ebook-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 6px 2.6rem 6px 1rem;
  background: var(--magenta);
  color: #fff; text-align: center;
}
.ebook-banner__cta {
  background: none; border: 0; color: #fff; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.92rem; line-height: 1.35;
  display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
}
.ebook-banner__cta strong { font-weight: 700; letter-spacing: 0.02em; }
.ebook-banner__arrow { transition: transform 0.2s ease; }
.ebook-banner__cta:hover .ebook-banner__arrow { transform: translateX(3px); }
.ebook-banner__close {
  position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; opacity: 0.9; padding: 0 0.3rem;
}
.ebook-banner__close:hover { opacity: 1; }
/* Décale le header fixe sous le bandeau (hauteur mesurée en JS) */
body.has-ebook-banner .header { top: var(--ebook-banner-h, 46px); }
@media (max-width: 560px) { .ebook-banner__cta { font-size: 0.82rem; } }

/* ── Section e-book (accueil) ── */
.ebook-grid {
  display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ebook-copy .eyebrow { color: var(--magenta); }
.ebook-copy h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--espresso); margin: 0.5rem 0 0; letter-spacing: -0.02em; }
.ebook-copy h2 em { font-family: var(--font-italic); font-style: italic; color: var(--bronze); }
.ebook-copy > p { color: var(--ink-soft); line-height: 1.7; margin: 1.1rem 0 0; max-width: 46ch; }
.ebook-list { list-style: none; margin: 1.3rem 0 1.8rem; padding: 0; }
.ebook-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem; color: var(--espresso); font-size: 0.98rem; }
.ebook-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 0.85rem; height: 0.45rem; border-left: 2px solid var(--magenta); border-bottom: 2px solid var(--magenta);
  transform: rotate(-45deg);
}
/* Couverture — mockup (remplaçable par une <img>) */
.ebook-cover { display: flex; justify-content: center; }
.ebook-cover__book {
  width: 240px; aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: center; gap: 0.6rem;
  padding: 2rem 1.6rem; text-align: center;
  background: linear-gradient(155deg, var(--magenta) 0%, var(--bronze) 100%);
  color: #fff; border-radius: 6px 12px 12px 6px;
  box-shadow: -6px 0 0 rgba(0,0,0,0.12), 0 26px 50px rgba(37,20,12,0.28);
}
.ebook-cover__kicker { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.9; }
.ebook-cover__title { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; }
.ebook-cover__title em { font-family: var(--font-italic); font-style: italic; }
.ebook-cover__brand { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; margin-top: 0.4rem; }
.ebook-cover__img { width: 240px; height: auto; border-radius: 6px 12px 12px 6px; box-shadow: -6px 0 0 rgba(0,0,0,0.12), 0 26px 50px rgba(37,20,12,0.28); }
@media (max-width: 780px) {
  .ebook-grid { grid-template-columns: 1fr; text-align: center; }
  .ebook-copy > p { margin-left: auto; margin-right: auto; }
  .ebook-list { display: inline-block; text-align: left; }
  .ebook-cover { order: -1; }
}

/* ── Modale de capture ── */
html.ebook-open { overflow: hidden; }
.ebook-pop { position: fixed; inset: 0; z-index: 2100; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.ebook-pop[hidden] { display: none; }
.ebook-pop__backdrop { position: absolute; inset: 0; background: rgba(37,20,12,0.55); backdrop-filter: blur(3px); }
.ebook-pop__panel {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--cream); border-radius: 1.25rem; padding: 2.2rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(37,20,12,0.35);
}
.ebook-pop__close { position: absolute; top: 0.6rem; right: 0.85rem; width: 2.2rem; height: 2.2rem; border: 0; border-radius: 50%; background: transparent; color: var(--espresso); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.ebook-pop__close:hover { background: rgba(37,20,12,0.06); }
.ebook-pop__head .eyebrow { color: var(--magenta); }
.ebook-pop__title { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: var(--espresso); margin: 0.3rem 0 0; }
.ebook-pop__text { color: var(--brown); font-size: 0.95rem; line-height: 1.55; margin: 0.5rem 0 1.3rem; }
.ebook-pop__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.ebook-pop__input { width: 100%; padding: 0.85rem 1rem; margin-bottom: 0.7rem; border: 1px solid var(--champagne); border-radius: 0.6rem; background: var(--white); font-family: var(--font-sans); font-size: 0.95rem; color: var(--espresso); }
.ebook-pop__input:focus { outline: none; border-color: var(--magenta); }
.ebook-pop__row .ebook-pop__input { margin-bottom: 0; }
.ebook-pop__row { margin-bottom: 0.7rem; }
.ebook-pop__hp { position: absolute; left: -9999px; }
.ebook-pop__consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; line-height: 1.45; color: var(--brown); margin: 0.4rem 0 0.2rem; }
.ebook-pop__consent.is-error { color: var(--magenta-deep); }
.ebook-pop__consent input { margin-top: 0.2rem; flex-shrink: 0; }
.ebook-pop__error { color: var(--magenta-deep); font-size: 0.8rem; margin: 0.3rem 0 0; }
.ebook-pop__submit {
  width: 100%; margin-top: 1rem; padding: 0.95rem; border: 0; border-radius: 0.7rem;
  background: var(--magenta); color: #fff; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s ease;
}
.ebook-pop__submit:hover { background: var(--magenta-deep); }
.ebook-pop__success { text-align: center; padding: 1rem 0 0.5rem; }
.ebook-pop__success h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; color: var(--espresso); margin: 0 0 0.4rem; }
.ebook-pop__success p { color: var(--brown); margin: 0 0 1.3rem; }
.ebook-pop__download { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.8rem; background: var(--espresso); color: var(--cream); border-radius: var(--r-full); font-weight: 600; font-size: 0.95rem; }
.ebook-pop__frame { display: none; }
