/* ==========================================================================
   NADÈGE INGELS — Praticienne Énergéticienne
   Design System v2 — Premium Edition
   Grille 8pt · Fluid type · WCAG AA · Accessibilité
   ========================================================================== */

/* === DESIGN TOKENS ======================================================== */
:root {
  /* Palette — neutres organiques (warmer, more amber) */
  --ink-900: #1F1B16;     /* corps de texte, titres */
  --ink-700: #4A4339;
  --ink-500: #6E6557;
  --ink-300: #A29B8F;

  --paper: #F6EFE0;          /* base plus chaude, ambre clair */
  --paper-warm: #F0E5CE;     /* sable clair */
  --paper-deep: #E8D9BA;     /* sable */
  --sand: #D9C49B;

  /* Accents */
  --gold-500: #B89968;
  --gold-400: #C5A878;
  --gold-300: #D4BE99;
  --gold-100: #EFE3CC;

  --amethyst-500: #9F8FB0;
  --amethyst-300: #C5B8D1;
  --amethyst-100: #ECE6F1;

  --sage-500: #A8B5A0;
  --sage-300: #C9D2C2;

  /* Sémantique */
  --bg: var(--paper);
  --bg-alt: var(--paper-warm);
  --bg-dark: #2C2822;
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-400);

  /* Typographie */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale (1.250 ratio) */
  --fs-xs:   clamp(0.75rem,  0.72rem + 0.15vw, 0.81rem);
  --fs-sm:   clamp(0.875rem, 0.84rem + 0.18vw, 0.95rem);
  --fs-base: clamp(1rem,     0.96rem + 0.20vw, 1.06rem);
  --fs-md:   clamp(1.125rem, 1.07rem + 0.27vw, 1.25rem);
  --fs-lg:   clamp(1.375rem, 1.28rem + 0.48vw, 1.625rem);
  --fs-xl:   clamp(1.75rem,  1.55rem + 1.00vw, 2.25rem);
  --fs-2xl:  clamp(2.25rem,  1.85rem + 2.00vw, 3.25rem);
  --fs-3xl:  clamp(2.75rem,  2.10rem + 3.25vw, 4.5rem);
  --fs-4xl:  clamp(3.5rem,   2.50rem + 5.00vw, 6.5rem);

  /* Espacements — 8pt grid */
  --s-1: 0.5rem;   /* 8 */
  --s-2: 1rem;     /* 16 */
  --s-3: 1.5rem;   /* 24 */
  --s-4: 2rem;     /* 32 */
  --s-5: 3rem;     /* 48 */
  --s-6: 4rem;     /* 64 */
  --s-7: 6rem;     /* 96 */
  --s-8: 8rem;     /* 128 */
  --s-9: 10rem;    /* 160 */

  /* Containers */
  --max: 1320px;
  --max-narrow: 980px;
  --max-text: 720px;

  /* Radius — soft minimal */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Élévations cohérentes */
  --el-1: 0 1px 2px rgba(31, 27, 22, 0.04), 0 1px 3px rgba(31, 27, 22, 0.06);
  --el-2: 0 4px 6px -2px rgba(31, 27, 22, 0.05), 0 12px 16px -4px rgba(31, 27, 22, 0.08);
  --el-3: 0 12px 20px -8px rgba(31, 27, 22, 0.10), 0 24px 40px -12px rgba(31, 27, 22, 0.12);
  --el-4: 0 24px 48px -12px rgba(31, 27, 22, 0.18);

  /* Easings & durées — calque Apple/Linear */
  --e-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --e-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --d-fast: 200ms;
  --d-base: 400ms;
  --d-slow: 800ms;

  /* Focus ring */
  --ring: 0 0 0 3px rgba(184, 153, 104, 0.4);
}

/* === RESET ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "ss01";
}

img, video, svg, picture {
  display: block;
  max-width: 100%;
}
img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--d-fast) var(--e-soft);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select, button { font: inherit; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-sm);
}

::selection {
  background: var(--gold-300);
  color: var(--ink-900);
}

/* === TYPOGRAPHIE ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: var(--fs-3xl); letter-spacing: -0.025em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { color: var(--text-soft); }

em { font-style: italic; }

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amethyst-500);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.lead {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 56ch;
}

/* === LAYOUT =============================================================== */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow {
  width: 100%;
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: var(--s-8); position: relative; }
@media (max-width: 768px) { section { padding-block: var(--s-7); } }

.stack > * + * { margin-top: var(--s-2); }
.stack-lg > * + * { margin-top: var(--s-4); }

/* === SKIP LINK (a11y) ===================================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink-900);
  color: var(--paper);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  z-index: 9999;
  font-size: 0.85rem;
}
.skip-link:focus { top: 8px; }

/* === PRÉCHARGEUR ========================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 600ms var(--e-out), visibility 600ms;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  width: 48px;
  height: 48px;
  animation: bloom 1.6s var(--e-out) infinite;
}
.preloader-mark path { fill: var(--accent); }
@keyframes bloom {
  0%, 100% { transform: scale(0.85); opacity: 0.5; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* === NAVBAR =============================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: all var(--d-base) var(--e-soft);
  background: linear-gradient(180deg, rgba(251,248,243,0.85) 0%, rgba(251,248,243,0) 100%);
}
.nav.is-scrolled {
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 rgba(31, 27, 22, 0.06);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  color: var(--text);
}
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-name { font-size: 1.15rem; line-height: 1.1; }
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  padding-block: 0.4rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-base) var(--e-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--ink-900);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  background: transparent;
  transition: all var(--d-fast) var(--e-soft);
}
.nav-cta:hover {
  background: var(--ink-900);
  color: var(--paper);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--d-base) var(--e-spring), opacity var(--d-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === BOUTONS ============================================================== */
.btn {
  --bg-btn: var(--ink-900);
  --fg-btn: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-btn);
  background: var(--bg-btn);
  border: 1px solid var(--bg-btn);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--d-fast) var(--e-out), box-shadow var(--d-fast) var(--e-out), background var(--d-fast);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--el-2);
}
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform var(--d-base) var(--e-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  --bg-btn: var(--ink-900);
  --fg-btn: var(--paper);
}
.btn-gold {
  --bg-btn: var(--gold-500);
  --fg-btn: white;
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn-outline {
  --bg-btn: transparent;
  --fg-btn: var(--ink-900);
  border-color: rgba(31, 27, 22, 0.2);
}
.btn-outline:hover {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
}

.btn-ghost {
  --bg-btn: transparent;
  --fg-btn: var(--ink-900);
  border: none;
  padding-inline: 0;
}
.btn-ghost:hover { transform: none; box-shadow: none; color: var(--accent); }

/* === HERO ================================================================= */
.hero {
  position: relative;
  padding: clamp(7rem, 12vw, 9rem) 0 var(--s-7);
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.hero-blur-1, .hero-blur-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-blur-1 {
  top: -200px;
  right: -150px;
  background: var(--amethyst-300);
}
.hero-blur-2 {
  bottom: -200px;
  left: -150px;
  background: var(--sage-300);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-eyebrow { margin-bottom: 1.25rem; }

.hero-title {
  font-size: var(--fs-4xl);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: var(--text);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 900ms var(--e-out) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.4s; }
@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 52ch;
  opacity: 0;
  animation: fadeUp 800ms var(--e-out) 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--s-4);
  opacity: 0;
  animation: fadeUp 800ms var(--e-out) 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(31, 27, 22, 0.08);
  opacity: 0;
  animation: fadeUp 800ms var(--e-out) 1.1s forwards;
}
.trust-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item .lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* Photo hero */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--amethyst-300), var(--sage-300));
  box-shadow: var(--el-4);
  opacity: 0;
  animation: fadeIn 1200ms var(--e-out) 0.3s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center; /* Favorise Nadège (gauche du cadre) sur la photo paysage */
}
.intro-photo img {
  object-position: center;
}
.hero-photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}
.hero-photo-fallback svg { width: 60px; height: 60px; margin-bottom: 1rem; opacity: 0.6; }

/* Badges flottants au-dessus de la photo */
.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: var(--paper);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-900);
  box-shadow: var(--el-3);
  white-space: nowrap;
  z-index: 3;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  position: relative;
}
.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--sage-500);
  opacity: 0.3;
  animation: pulse 2.4s var(--e-out) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(2); opacity: 0; }
}

.hero-badge-1 {
  top: 7%; left: -20px;
  animation: floatY 6s ease-in-out infinite;
}
.hero-badge-2 {
  bottom: 12%; right: -28px;
  animation: floatY 6s ease-in-out 2s infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--e-out) 1.6s forwards;
}
.scroll-cue .bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--ink-300), transparent);
  animation: cueLine 2s var(--e-out) infinite;
}
@keyframes cueLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}

/* === REVEAL ON SCROLL ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms var(--e-out), transform 1000ms var(--e-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-1 { transition-delay: 80ms; }
.reveal-2 { transition-delay: 160ms; }
.reveal-3 { transition-delay: 240ms; }
.reveal-4 { transition-delay: 320ms; }
.reveal-5 { transition-delay: 400ms; }

/* === SECTION HEADER ======================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); font-size: var(--fs-md); }

/* === INTRO SECTION ======================================================== */
.intro {
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.intro-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-warm), var(--sand));
  box-shadow: var(--el-3);
}
.intro-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.intro-photo-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold-300);
  border-radius: var(--r-md);
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }

.intro-text h2 { margin-block: 1rem 1.5rem; }
.intro-text p { font-size: var(--fs-base); line-height: 1.75; margin-block: 0.85rem; }

.quote {
  border-left: 2px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin-block: 1.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--amethyst-500);
  line-height: 1.4;
}

/* === SERVICES SECTION ===================================================== */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem 2rem;
  background: var(--paper);
  border: 1px solid rgba(31, 27, 22, 0.06);
  border-radius: var(--r-md);
  transition: transform var(--d-base) var(--e-out), box-shadow var(--d-base) var(--e-out), border-color var(--d-base);
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  box-shadow: 0 0 0 1px var(--accent);
  opacity: 0;
  transition: opacity var(--d-base) var(--e-out);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-3);
  border-color: transparent;
}
.service:hover::before { opacity: 0.3; }

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--gold-100);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all var(--d-base) var(--e-out);
}
.service:hover .service-icon {
  background: var(--gold-500);
  color: var(--paper);
}
.service-icon svg { width: 26px; height: 26px; }

.service h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.6rem;
  color: var(--text);
}
.service p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 27, 22, 0.08);
  font-size: 0.85rem;
  color: var(--text-soft);
}
.service-meta strong {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--text);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.service-link svg { transition: transform var(--d-base) var(--e-out); }
.service-link:hover svg { transform: translateX(4px); }

/* === PHILOSOPHY (dark section) ============================================ */
.philosophy {
  background: var(--bg-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -300px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.philosophy::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(159, 143, 176, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.philosophy h2 { color: var(--paper); }
.philosophy .eyebrow { color: var(--gold-300); }
.philosophy .eyebrow::before { background: var(--gold-300); }
.philosophy .section-head p { color: rgba(251, 248, 243, 0.65); }

.philosophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 2;
}
.philo-item {
  text-align: center;
  padding: 1rem;
}
.philo-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold-300);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.philo-item h4 {
  color: var(--paper);
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}
.philo-item p {
  color: rgba(251, 248, 243, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === TÉMOIGNAGES ========================================================= */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  position: relative;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid rgba(31, 27, 22, 0.06);
  border-radius: var(--r-md);
  transition: all var(--d-base) var(--e-out);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-2);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold-500);
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--amethyst-300));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text);
  flex-shrink: 0;
}
.author-name {
  font-weight: 500;
  color: var(--text);
}
.author-detail {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
}

/* === RETREATS TEASER ===================================================== */
.retreats-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.retreat-card-teaser {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
  box-shadow: var(--el-2);
  transition: all var(--d-base) var(--e-out);
}
.retreat-card-teaser:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-4);
}
.retreat-card-teaser .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1200ms var(--e-out);
}
.retreat-card-teaser:hover .bg { transform: scale(1.06); }
.retreat-card-teaser .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 27, 22, 0.85));
}
.retreat-card-teaser .content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: var(--paper);
}
.retreat-card-teaser .tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.retreat-card-teaser h3 {
  color: var(--paper);
  font-size: var(--fs-xl);
  margin-top: 0.4rem;
}
.retreat-card-teaser .desc {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  opacity: 0.85;
}

/* === CTA SECTION ========================================================= */
.cta {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.cta::before { background: var(--amethyst-100); top: -250px; left: -150px; }
.cta::after { background: var(--sage-300); bottom: -250px; right: -150px; }

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 2;
}
.cta-inner h2 { margin-block: 1rem 1.5rem; }
.cta-inner p {
  font-size: var(--fs-md);
  margin-bottom: var(--s-4);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER ============================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(251, 248, 243, 0.7);
  padding: var(--s-6) 0 var(--s-3);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(251, 248, 243, 0.1);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.footer-brand-mark { width: 32px; height: 32px; }
.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 1.5rem;
}
.footer h5 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-list { list-style: none; }
.footer-list li + li { margin-top: 0.7rem; }
.footer-list a { font-size: 0.88rem; transition: color var(--d-fast); }
.footer-list a:hover { color: var(--gold-300); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold-300); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a:hover { color: var(--gold-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  font-size: 0.78rem;
  color: rgba(251, 248, 243, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.75rem; }
.footer-bottom-links a:hover { color: var(--gold-300); }

/* === PAGE HEADER (interior) ============================================== */
.page-head {
  position: relative;
  padding: clamp(8rem, 14vw, 11rem) 0 var(--s-6);
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(197, 184, 209, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 2; }
.page-head .eyebrow { margin-bottom: 1rem; }
.page-head .eyebrow::before { display: none; }
.page-head h1 { margin-bottom: 1.25rem; }
.page-head p {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--fs-md);
  color: var(--text-soft);
}

/* === ABOUT PAGE ========================================================== */
.story-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-block.is-reverse { grid-template-columns: 1.2fr 1fr; }
.story-block.is-reverse .story-img { order: 2; }

.story-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--amethyst-300), var(--sage-300));
  box-shadow: var(--el-3);
}
.story-img-deco {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 2;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.story-text h3 { margin-bottom: 1.25rem; }
.story-text p { font-size: var(--fs-base); line-height: 1.75; margin-block: 0.85rem; }

.formations {
  background: var(--bg-alt);
}
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: var(--s-5);
}
.formation {
  padding: 1.75rem;
  background: var(--paper);
  border-radius: var(--r-md);
  border-left: 2px solid var(--accent);
  transition: all var(--d-base) var(--e-out);
}
.formation:hover {
  transform: translateX(6px);
  box-shadow: var(--el-2);
}
.formation .year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.formation h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.formation p { font-size: 0.88rem; line-height: 1.6; }

/* === ACCOMPAGNEMENTS PAGE ================================================ */
.svc-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.svc-card {
  background: var(--paper);
  border: 1px solid rgba(31, 27, 22, 0.06);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all var(--d-base) var(--e-out);
  position: relative;
  scroll-margin-top: 120px;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-3);
}
.svc-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.svc-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  color: var(--accent);
  border-radius: var(--r-md);
  transition: all var(--d-base) var(--e-out);
}
.svc-card:hover .svc-card-icon {
  background: var(--accent);
  color: var(--paper);
}
.svc-card-icon svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.2rem;
}
.svc-card .subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.svc-pricing {
  display: grid;
  gap: 0.6rem;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px dashed rgba(31, 27, 22, 0.12);
}
.svc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.svc-price-row .label { color: var(--text-soft); display: inline-flex; gap: 0.6rem; align-items: center; }
.svc-price-row .price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--accent);
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--paper-warm);
  color: var(--ink-700);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  font-weight: 500;
}

.svc-highlight {
  background: linear-gradient(135deg, var(--gold-100), var(--paper-warm));
  border-color: var(--gold-300);
}

/* === RETREATS PAGE ====================================================== */
.retreat-hero {
  position: relative;
  height: clamp(420px, 65vh, 640px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--paper);
  text-align: center;
}
.retreat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 30s var(--e-out) infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
.retreat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.4) 0%, rgba(31, 27, 22, 0.7) 100%);
}
.retreat-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 var(--s-3);
}
.retreat-hero h1 {
  color: var(--paper);
  margin-block: 1rem 1rem;
}
.retreat-hero p {
  color: rgba(251, 248, 243, 0.9);
  font-size: var(--fs-md);
}
.retreat-hero .eyebrow {
  color: var(--gold-300);
}
.retreat-hero .eyebrow::before { background: var(--gold-300); }

.retreats-list {
  display: grid;
  gap: var(--s-7);
}
.retreat-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--el-2);
  scroll-margin-top: 120px;
}
.retreat-block.is-reverse { grid-template-columns: 1fr 1.2fr; }
.retreat-block.is-reverse .retreat-block-imgs { order: 2; }

.retreat-block-imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-height: 480px;
}
.retreat-block-imgs > div {
  background-size: cover;
  background-position: center;
  transition: transform 1000ms var(--e-out);
  cursor: zoom-in;
}
.retreat-block-imgs > div:hover { transform: scale(1.04); }
.retreat-block-imgs > div:nth-child(1) { grid-row: 1 / 3; }

.retreat-block-content {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.retreat-block-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.retreat-block-content h2 { margin-bottom: 1.25rem; }
.retreat-block-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-block: 0.85rem;
}
.retreat-features {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
}
.retreat-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.retreat-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
}

.gallery-section { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: var(--s-5);
}
.gallery-tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  cursor: zoom-in;
  transition: all var(--d-base) var(--e-out);
  position: relative;
  overflow: hidden;
}
.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 27, 22, 0.4));
  opacity: 0;
  transition: opacity var(--d-base);
}
.gallery-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--el-3);
}
.gallery-tile:hover::after { opacity: 1; }

/* === CONTACT PAGE ======================================================== */
.contact-section { background: var(--bg-alt); padding-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info { position: sticky; top: 120px; }
.contact-info h2 { margin-block: 1rem 1.5rem; }
.contact-info > p { font-size: var(--fs-md); margin-bottom: var(--s-4); }

.contact-items { display: grid; gap: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-radius: var(--r-md);
  border-left: 2px solid var(--accent);
  transition: all var(--d-base) var(--e-out);
}
.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--el-2);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold-100);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-md);
  box-shadow: var(--el-2);
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.95rem; margin-bottom: 2rem; }

.field { margin-bottom: 1.25rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--paper-warm);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  transition: all var(--d-fast) var(--e-soft);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 3px var(--gold-100);
}
.field textarea { resize: vertical; min-height: 130px; }

.calendly-bar {
  background: var(--bg-dark);
  color: var(--paper);
  text-align: center;
  padding: var(--s-6) 0;
}
.calendly-bar h2 { color: var(--paper); margin-block: 0.75rem 1.25rem; }
.calendly-bar p { color: rgba(251, 248, 243, 0.65); max-width: 580px; margin: 0 auto 2rem; font-size: var(--fs-md); }

.map-wrap {
  height: 400px;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === RESPONSIVE ========================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
  .hero-content { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .scroll-cue { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-info { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(80%, 360px);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.5rem;
    gap: 1.5rem;
    transition: right 500ms var(--e-out);
    box-shadow: -10px 0 30px rgba(31, 27, 22, 0.1);
  }
  .nav-links.is-open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { width: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .retreats-teaser-grid { grid-template-columns: 1fr; }
  .svc-detailed-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

  .intro-grid, .story-block, .story-block.is-reverse, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .story-block.is-reverse .story-img { order: 0; }
  .intro-photo, .story-img { max-width: 480px; margin: 0 auto; }

  .retreat-block, .retreat-block.is-reverse {
    grid-template-columns: 1fr !important;
  }
  .retreat-block.is-reverse .retreat-block-imgs { order: 0; }
  .retreat-block-imgs { min-height: 360px; }
  .retreat-block-content { padding: 2rem 1.5rem 2.5rem; }

  .field-row { grid-template-columns: 1fr; }

  .hero-trust { gap: 1.5rem; }
  .trust-item .num { font-size: 1.4rem; }

  .hero-badge-1, .hero-badge-2 {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    margin: 0.5rem auto;
    display: none;
  }
}

@media (max-width: 480px) {
  :root { --s-8: 5rem; --s-7: 4rem; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.82rem; }
  .hero { padding-top: 6rem; }
}

/* === UTILITY ============================================================= */
.text-center { text-align: center; }
.mt-md { margin-top: var(--s-4); }
.mt-lg { margin-top: var(--s-6); }
.mb-md { margin-bottom: var(--s-4); }

/* === ANIMATION SCROLL PROGRESS BAR ======================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--amethyst-500));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

/* === LIGHTBOX ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 22, 0.96);
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 2rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 400ms var(--e-out);
}
.lightbox.is-open { opacity: 1; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: var(--el-4);
  transform: scale(0.92);
  transition: transform 500ms var(--e-out);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1200px;
  height: 800px;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: background var(--d-fast);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║                  PREMIUM ENHANCEMENTS — LAYER 2                       ║
   ║          Grain · Mesh · Botanical · Marquee · Magnetic                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* === GRAIN OVERLAY (texture papier) ====================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.nav, .preloader, .lightbox { z-index: 200; }

/* === MESH GRADIENT BACKGROUNDS =========================================== */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(197, 184, 209, 0.32), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 75%, rgba(168, 181, 160, 0.30), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 153, 104, 0.18), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.intro {
  background:
    radial-gradient(ellipse 40% 30% at 85% 15%, rgba(184, 153, 104, 0.12), transparent 60%),
    var(--paper);
}
.services {
  background:
    radial-gradient(ellipse 50% 40% at 8% 85%, rgba(197, 184, 209, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 92% 10%, rgba(168, 181, 160, 0.18), transparent 60%),
    var(--paper-warm);
}
.testimonials {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(184, 153, 104, 0.12), transparent 60%),
    var(--paper);
}

/* === BOTANICAL DECORATIONS =============================================== */
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  z-index: 1;
  color: var(--gold-500);
}
.botanical svg { width: 100%; height: 100%; }
.botanical-tl { top: -40px; left: -40px; width: 240px; height: 240px; }
.botanical-tr { top: -40px; right: -40px; width: 240px; height: 240px; transform: scaleX(-1); }
.botanical-bl { bottom: -40px; left: -40px; width: 240px; height: 240px; transform: scaleY(-1); }
.botanical-br { bottom: -40px; right: -40px; width: 240px; height: 240px; transform: scale(-1,-1); }

@keyframes botanicalSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}
.botanical.is-animated { transform-origin: bottom center; animation: botanicalSway 12s ease-in-out infinite; }

/* === FLOATING AMBIENT DOTS =============================================== */
.ambient-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ambient-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-300);
  opacity: 0;
  animation: ambientDrift 14s linear infinite;
}
@keyframes ambientDrift {
  0%   { transform: translate(0, 100vh) scale(0.5); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translate(20px, -100vh) scale(1); opacity: 0; }
}

/* === MARQUEE BAND (valeurs qui défilent) ================================= */
.marquee {
  position: relative;
  padding: 1.2rem 0;
  background: var(--ink-900);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(212, 190, 153, 0.2);
  border-bottom: 1px solid rgba(212, 190, 153, 0.2);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeRoll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--gold-300);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  display: inline-block;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === COUNTERS animated =================================================== */
.trust-item .num { transition: color 0.3s ease; }
.trust-item .num[data-counter] {
  font-variant-numeric: tabular-nums;
}

/* === ENHANCED SERVICE CARDS — glow + tilt =============================== */
.service, .svc-card, .testimonial, .formation, .retreat-card-teaser {
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
}
.service::after, .svc-card::after, .testimonial::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184, 153, 104, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--e-out);
  pointer-events: none;
  z-index: 0;
}
.service:hover::after, .svc-card:hover::after, .testimonial:hover::after { opacity: 1; }
.service > *, .svc-card > *, .testimonial > * { position: relative; z-index: 1; }

/* === MAGNETIC BUTTONS ==================================================== */
.btn[data-magnetic] {
  transition: transform 0.25s var(--e-spring), box-shadow var(--d-fast) var(--e-out), background var(--d-fast);
  will-change: transform;
}

/* === ANIMATED UNDERLINE on titles ======================================== */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  transition: transform 1s var(--e-out) 0.3s;
}
.section-head.is-visible h2::after,
.reveal.is-visible.section-head h2::after { transform: translateX(-50%) scaleX(1); }

/* === HERO PHOTO — parallax & frame ====================================== */
.hero-photo {
  will-change: transform;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold-300);
  border-radius: var(--r-md);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.hero-photo img, .hero-photo .hero-photo-fallback { position: relative; z-index: 1; }

/* === SECTION DIVIDER ornament ============================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-500);
  margin: var(--s-3) 0;
  opacity: 0.7;
}
.divider .line {
  height: 1px;
  width: 60px;
  background: currentColor;
}
.divider svg { width: 16px; height: 16px; }

/* === CTA — animated luminous background ================================= */
.cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184, 153, 104, 0.12), transparent 70%),
    var(--paper);
}
.cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(197, 184, 209, 0.35), transparent 65%);
  filter: blur(60px);
  animation: ctaBlobFloat 18s ease-in-out infinite;
  z-index: 0;
}
.cta::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  bottom: -250px; right: -150px;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.32), transparent 65%);
  filter: blur(60px);
  animation: ctaBlobFloat 22s ease-in-out -8s infinite reverse;
  z-index: 0;
}
@keyframes ctaBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* === SCROLL-INDICATOR refinement ========================================= */
.scroll-cue { z-index: 2; }

/* === Footer warmer ======================================================= */
.footer {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(184, 153, 104, 0.12), transparent 60%),
    var(--bg-dark);
}

/* === DECORATIVE QUOTE MARKS ============================================== */
.quote { position: relative; }
.quote::before {
  content: '"';
  position: absolute;
  top: -32px;
  left: -8px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
  color: var(--gold-300);
  opacity: 0.6;
}

/* === TESTIMONIALS — quote decoration ===================================== */
.testimonial { position: relative; overflow: hidden; }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  line-height: 1;
  color: var(--gold-300);
  opacity: 0.18;
  z-index: 0;
}

/* === PHILOSOPHY — connecting line ======================================= */
.philosophy-grid {
  position: relative;
}
.philosophy-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 190, 153, 0.4) 20%, rgba(212, 190, 153, 0.4) 80%, transparent);
  z-index: 0;
}
@media (max-width: 1024px) { .philosophy-grid::before { display: none; } }

/* === PAGE-HEAD ornament ================================================== */
.page-head .container::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-500);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

/* === Hero CTA — magnetic gold button shimmer ============================ */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.8s var(--e-out);
}
.btn-gold:hover::after { left: 100%; }

/* === Image reveal mask =================================================== */
.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper-deep);
  transform-origin: right center;
  transition: transform 1.2s var(--e-out);
  z-index: 2;
}
.reveal-img.is-visible::after {
  transform: scaleX(0);
}

/* === Retreat block content — warmer panel =============================== */
.retreat-block-content {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(184, 153, 104, 0.10), transparent 70%),
    var(--paper);
}

/* === Reduced motion: kill ambient continuous animations ================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .ambient-dot,
  .botanical.is-animated,
  .cta::before, .cta::after,
  .preloader-mark { animation: none !important; }
}

/* === Mobile-specific tightening ========================================== */
@media (max-width: 768px) {
  .botanical { opacity: 0.10; }
  .botanical-tl, .botanical-tr, .botanical-bl, .botanical-br { width: 140px; height: 140px; }
  .marquee-item { font-size: 1rem; }
}

