/* ════════════════════════════════════════════════════
   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;

  /* ── 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; }
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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: lowercase;
}

/* Image badge — actual brand logo */
.logo__img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover .logo__img { transform: rotate(-3deg) scale(1.04); }

.logo__re, .logo__sens { font-weight: 400; }
.logo__ne {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--magenta);
  margin: 0 0.05em;
}

.logo__sep {
  color: var(--magenta);
  margin: 0 0.08em;
  font-weight: 300;
  opacity: 0.7;
}

.logo--light { color: var(--cream); }

/* Nav */
.nav__list {
  display: flex;
  align-items: 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.15rem;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; left: 0; }
.nav__link.active { color: var(--ink); }
.nav__link.active::after { width: 100%; left: 0; background: var(--magenta); }

.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;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}

.burger__line {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.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); }


/* ════════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  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.5rem;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 350;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover { color: var(--magenta); }

.mobile-menu__cta {
  margin-top: 1rem;
  padding: 0.95rem 2.2rem;
  background: var(--teal-deep);
  color: var(--cream) !important;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
}


/* ════════════════════════════════════════════════════
   HERO — Full-bleed luxury · Editorial bottom-left
   ════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background-color: var(--espresso);
  background-image:
    linear-gradient(180deg, rgba(37, 20, 12, 0.15) 0%, rgba(37, 20, 12, 0.35) 60%, rgba(37, 20, 12, 0.6) 100%),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2000&q=90');
  background-size: cover;
  background-position: center;
}

.hero ~ * { position: relative; }

.hero__inner {
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 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(2.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 2.25rem;
  max-width: 18ch;
}

.hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}

/* Hero paths — two clear streams: particuliers & professionnels */
.hero__paths {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  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;
}

.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: -3.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  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: 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);
}


/* Featured / trust badge — bottom right (above floating badge) */
.hero__featured {
  position: absolute;
  bottom: clamp(7rem, 11vw, 9rem);
  right: var(--container-pad);
  text-align: right;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.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) .burger__line { background: var(--cream); }
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);
}

.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
   ════════════════════════════════════════════════════ */

/* Split-section : 50/50 → 70/30 au hover */
.signature__decks {
  display: flex;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--container-pad) 2rem;
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: stretch;
}

.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); }

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

/* 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 : expanded panel grows to ~60%, sibling shrinks to ~40% (subtler & smoother) */
.signature__decks:hover .deck:not(:hover) { flex: 4; }
.signature__decks .deck:hover { flex: 6; background: var(--cream-soft); }
.signature__decks .deck--formations:hover { background: var(--cream-warm); filter: brightness(1.015); }

/* CTA reveal on panel hover */
.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;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  max-height: 0;
  margin: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1), margin 0.7s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.deck__cta svg { width: 1rem; height: 1rem; transition: transform var(--transition); }

.deck:hover .deck__cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 4rem;
  margin-top: 0.5rem;
}

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


/* ════════════════════════════════════════════════════
   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: var(--cream);
  color: var(--ink);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.why-us__feature {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream-deep);
  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(--ink);
  margin-bottom: 0.35rem;
}

.why-us__feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-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; }
.section__head h2 ~ p {
  font-size: 1.05rem;
  max-width: 540px;
}


/* ════════════════════════════════════════════════════
   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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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);
}

.formation {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

.formation:hover { transform: translateY(-4px); }

.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; }

.formation > p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.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); }
.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.82rem;
  color: rgba(247, 231, 222, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid rgba(247, 231, 222, 0.08);
}

.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.4fr 1fr 1fr 1fr;
  gap: 3rem;
  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-style: italic;
  font-weight: 400;
  margin: 0 -0.05em;
  transform: translateY(-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
   ════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.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;
}

.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;
  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: clamp(2.5rem, 6.5vw, 5rem);
  letter-spacing: -0.03em;
  font-weight: 350;
  line-height: 1;
  margin-bottom: 0;
  max-width: 14ch;
}

.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; }

.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; }

.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: 2.5rem;
  border-top: 1px solid var(--cream-deep);
}

.process__num {
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  background: var(--cream);
  padding-right: 0.85rem;
}

.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); }


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

.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; }
  /* Split-section becomes vertical on tablet/mobile */
  .signature__decks { flex-direction: column; gap: 2rem; }
  .deck { flex: 1 1 auto !important; padding: 2rem 1.5rem; }
  .signature__decks:hover .deck:not(:hover) { flex: 1 1 auto; }
  .signature__decks .deck:hover { flex: 1 1 auto; }
  .deck__cta { opacity: 1; transform: none; pointer-events: auto; max-height: none; margin-top: 1rem; }
  /* 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; }
  .burger { display: flex; }

  .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 {
    background-attachment: scroll;
    align-items: flex-end;
    padding-bottom: 7rem; /* room for floating badge */
  }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 0.95; max-width: 100%; }
  .hero__featured { display: none; }
  /* Floating badge stays absolute but at the bottom (no overlap, no overflow) */
  .hero__floating-badge {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }
  .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.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  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;
}

.t-hero__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--pink-soft);
}

.t-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  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;
}

.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;
}


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


/* 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: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  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;
}


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


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

@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; }
}
