/*
 * Saraswati — surcharges et utilitaires CSS.
 * Tailwind est chargé via CDN dans le header. Ce fichier complète
 * ce qui n'est pas pratique à faire en classes utilitaires inline :
 * variables de palette, polices, et composants réutilisés.
 */

:root {
  --ivoire: #EFE9DD;
  --nuit: #1A2238;
  --or: #C9A961;
  --or-clair: #E8D5A4;
  --terracotta: #B5654A;
  --terracotta-fonce: #99523B;
  --gris: #6B6558;
  --gris-clair: #B9B3A6;

  /* Rayons arrondis cohérents. */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ============================================================
   ANCIEN PARAMÉTRAGE TYPO — sauvegardé pour retour rapide.
   ------------------------------------------------------------
   body {
     font-family: 'Lora', Georgia, serif;
     font-weight: 400;
     line-height: 1.75;
   }
   body h1, body h2, body h3, body h4, .font-display {
     font-family: 'Fraunces', Georgia, serif;
     font-weight: 500;
     line-height: 1.18;
   }
   body h1 {
     font-size: clamp(2.4rem, 5vw, 4rem);
     line-height: 1.12;
     font-variation-settings: "opsz" 144;
   }
   ============================================================ */

body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  line-height: 1.75;
  font-size: 17px;
  color: var(--nuit);
  background-color: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Titres : Cormorant Garamond 700 romain — autorité et présence,
   sans tomber dans l'italique « roman antique ». */
body h1, body h2, body h3, body h4, .font-display {
  font-family: 'Cormorant Garamond', Garamond, serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--nuit);
}

body h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

/* H1 du hero de l'accueil — exception : taille augmentée jusqu'à 72px
   parce que le titre tient sur 2 lignes au lieu de 3 et peut respirer plus.
   Spécificité supérieure à `body h1` grâce à la classe. */
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
}
body h2 { font-size: clamp(1.95rem, 3.6vw, 2.85rem); line-height: 1.18; }
body h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.3; }

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--terracotta-fonce); }

/* Petits caps espacés pour labels et catégories. */
.eyebrow {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
}

/* Filet doré horizontal. */
.rule-or {
  display: block;
  width: 64px;
  height: 1px;
  background-color: var(--or);
  border: none;
  margin: 1.25rem 0;
}
.rule-or-center { margin-left: auto; margin-right: auto; }

/* Boutons — arrondis "pill" pour adoucir. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background-color: var(--terracotta);
  color: var(--ivoire);
  box-shadow: 0 2px 14px -6px rgba(181, 101, 74, 0.4);
}
.btn-primary:hover {
  background-color: var(--terracotta-fonce);
  color: var(--ivoire);
  transform: translateY(-1px);
}
.btn-ghost {
  background-color: transparent;
  color: var(--nuit);
  border-color: var(--nuit);
}
.btn-ghost:hover {
  background-color: var(--nuit);
  color: var(--ivoire);
}

/* Cards thématiques — arrondis généreux, transitions douces. */
.card-theme {
  display: block;
  padding: 2.25rem 2rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: var(--r-md);
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--nuit);
  height: 100%;
}
.card-theme:hover {
  background-color: rgba(232, 213, 164, 0.45);
  border-color: var(--or);
  color: var(--nuit);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(26, 34, 56, 0.25);
}
.card-theme h3 { margin-bottom: 0.5rem; }
.card-theme p { color: var(--gris); font-size: 0.95rem; margin-bottom: 1rem; }
.card-theme .link-more {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.card-theme:hover .link-more { color: var(--terracotta-fonce); }

/* Encadré méthode / parampara — arrondis grand format. */
.encadre {
  background-color: rgba(232, 213, 164, 0.28);
  border: 1px solid var(--or);
  border-left: 3px solid var(--or);
  padding: 2.25rem 2.5rem;
  border-radius: var(--r-lg);
}

/* Bandeau d'avertissement (utilisé pour l'heure de naissance). */
.bandeau-alerte {
  background-color: rgba(181, 101, 74, 0.08);
  border-left: 3px solid var(--terracotta);
  padding: 0.95rem 1.25rem;
  font-size: 0.875rem;
  color: var(--terracotta-fonce);
  font-weight: 500;
  margin-top: 0.5rem;
  border-radius: var(--r-sm);
}

/* Formulaire — inputs arrondis. */
.label-form {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.label-form .req { color: var(--or); }
.input-form,
.select-form,
.textarea-form {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background-color: #fff;
  border: 1px solid var(--gris-clair);
  border-radius: var(--r-sm);
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--nuit);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-form:focus,
.select-form:focus,
.textarea-form:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}
.textarea-form { min-height: 170px; resize: vertical; line-height: 1.6; }
.help-text {
  font-size: 0.875rem;
  color: var(--gris);
  margin-top: 0.4rem;
}

/* Liens utilitaires. */
.link-or {
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-or:hover { border-bottom-color: var(--terracotta); }

/* Navigation. */
.nav-link {
  font-size: 0.9375rem;
  color: var(--nuit);
  padding: 0.5rem 0;
  position: relative;
  font-weight: 400;
}
.nav-link:hover { color: var(--terracotta); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--or);
}

/* Dropdown des consultations (desktop). */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: #fff;
  border: 1px solid rgba(201, 169, 97, 0.6);
  border-radius: var(--r-md);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
  box-shadow: 0 12px 40px -20px rgba(26, 34, 56, 0.18);
  overflow: hidden;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.9375rem;
  color: var(--nuit);
}
.dropdown a:hover {
  background-color: var(--ivoire);
  color: var(--terracotta);
}

/* Mobile menu. */
.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; }

/* Section spacing. */
section { padding-top: clamp(4rem, 8vw, 7.5rem); padding-bottom: clamp(4rem, 8vw, 7.5rem); }

/* Conteneur principal. */
.container-x {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container-x { padding-left: 2rem; padding-right: 2rem; }
}

/* Bandeau status (formulaire). */
.bandeau-status {
  padding: 1.1rem 1.5rem;
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  border-left: 3px solid;
}
.bandeau-status.ok {
  background-color: rgba(201, 169, 97, 0.12);
  border-left-color: var(--or);
  color: var(--nuit);
}
.bandeau-status.error {
  background-color: rgba(181, 101, 74, 0.1);
  border-left-color: var(--terracotta);
  color: var(--terracotta-fonce);
}

/* === Photo hero — forme d'arche (torana subtil), sans folklore. === */
.photo-arche {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* Arche : top-left + top-right très arrondis, bas légèrement adouci.
     L'arc occupe environ 40% de la hauteur. */
  border-radius: 50% 50% var(--r-md) var(--r-md) / 38% 38% var(--r-md) var(--r-md);
  filter: saturate(0.88) contrast(1.02) brightness(1.02);
}
.photo-arche img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Filet doré qui suit la silhouette de l'arche, comme un cadre subtil. */
.photo-arche-cadre {
  position: relative;
  padding: 8px;
  border-radius: 50% 50% calc(var(--r-md) + 8px) calc(var(--r-md) + 8px) / 38% 38% calc(var(--r-md) + 8px) calc(var(--r-md) + 8px);
  background: linear-gradient(160deg, var(--or-clair) 0%, var(--or) 60%, var(--or-clair) 100%);
}

/* Compatibilité ascendante — anciens noms conservés au cas où. */
.photo-elianora {
  filter: saturate(0.88) contrast(1.02) brightness(1.02);
  border-radius: var(--r-md);
}

/* Témoignages cards arrondis. */
.card-temoignage {
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--r-md);
  padding: 2.25rem;
  background-color: rgba(255, 255, 255, 0.4);
}

/* === HERO — arcs orbitaux émergeant de la base, planètes en gravitation === */

/* La section coupe les arcs qui dépassent en bas. */
.hero {
  position: relative;
  overflow: hidden;
}

/* Conteneur 2400×2400 ancré au centre-bas du hero (seule la moitié sup. est visible). */
.hero-bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2400px;
  height: 2400px;
  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 1;
}

/* Cercles concentriques, tracés complets — la partie basse sera masquée par overflow. */
.orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #D4A95B;
  border-radius: 50%;
}
.o1 { width: 400px;  height: 400px;  opacity: 0.50; }
.o2 { width: 800px;  height: 800px;  opacity: 0.38; }
.o3 { width: 1300px; height: 1300px; opacity: 0.28; }
.o4 { width: 1800px; height: 1800px; opacity: 0.20; }
.o5 { width: 2300px; height: 2300px; opacity: 0.13; }

/* Conteneurs tournants des planètes — mêmes diamètres que les orbites. */
.planet-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

/* Planète positionnée pile sur le tracé de l'orbite (top: -4px sur planète 7px). */
.planet {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #E8C97F;
  box-shadow:
    0 0 8px rgba(232, 201, 127, 0.9),
    0 0 16px rgba(212, 169, 91, 0.6),
    0 0 28px rgba(212, 169, 91, 0.3);
}
.planet.small {
  width: 5px;
  height: 5px;
  top: -3px;
  margin-left: -2.5px;
}

/* Rotation autour du centre, vitesse croissante avec le rayon. */
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.po1 { width: 400px;  height: 400px;  animation: orbit-spin 42s  linear infinite; }
.po2 { width: 800px;  height: 800px;  animation: orbit-spin 76s  linear infinite; }
.po3 { width: 1300px; height: 1300px; animation: orbit-spin 118s linear infinite; }
.po4 { width: 1800px; height: 1800px; animation: orbit-spin 170s linear infinite; }
.po5 { width: 2300px; height: 2300px; animation: orbit-spin 240s linear infinite; }

/* Respect prefers-reduced-motion : on coupe la rotation, planètes fixes. */
@media (prefers-reduced-motion: reduce) {
  .po1, .po2, .po3, .po4, .po5 { animation: none; }
}

/* Le contenu du hero passe au-dessus de l'animation. */
.hero .container-x {
  position: relative;
  z-index: 5;
}

/* === Diagramme orbital cosmique (inspiré Circle.so) ===
   Utilisé sur la section CTA final et autres moments clés. */
.cosmos-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(60, 70, 100, 0.4) 0%, rgba(26, 34, 56, 0) 60%),
    linear-gradient(180deg, #141a2e 0%, #1A2238 50%, #141a2e 100%);
}
/* Tiny glittering particles in the deep field. */
.cosmos-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.18) 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.15) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.12) 50%, transparent 100%),
    radial-gradient(1px 1px at 35% 70%, rgba(255,255,255,0.18) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.14) 50%, transparent 100%);
  pointer-events: none;
  opacity: 0.8;
}

.cosmos-orbits {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.cosmos-orbits svg {
  width: min(1200px, 130%);
  height: auto;
  max-height: 130%;
}
.cosmos-orbit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}
/* Une orbite légèrement plus lumineuse pour donner du relief. */
.cosmos-orbit.bright {
  stroke: rgba(232, 213, 164, 0.22);
}

/* Points lumineux en orbite — chacun a son orbite et sa durée. */
.cosmos-particle {
  fill: #E8D5A4;
  filter: drop-shadow(0 0 4px rgba(232, 213, 164, 0.85)) drop-shadow(0 0 12px rgba(232, 213, 164, 0.4));
}
.cosmos-orb-1 { animation: cosmos-spin-1 38s linear infinite; transform-origin: 400px 300px; }
.cosmos-orb-2 { animation: cosmos-spin-2 52s linear infinite; transform-origin: 400px 300px; }
.cosmos-orb-3 { animation: cosmos-spin-3 70s linear infinite; transform-origin: 400px 300px; }
.cosmos-orb-4 { animation: cosmos-spin-4 92s linear infinite reverse; transform-origin: 400px 300px; }
.cosmos-orb-5 { animation: cosmos-spin-5 120s linear infinite; transform-origin: 400px 300px; }

@keyframes cosmos-spin-1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes cosmos-spin-2 { from { transform: rotate(40deg); } to { transform: rotate(400deg); } }
@keyframes cosmos-spin-3 { from { transform: rotate(180deg); } to { transform: rotate(540deg); } }
@keyframes cosmos-spin-4 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes cosmos-spin-5 { from { transform: rotate(260deg); } to { transform: rotate(620deg); } }

/* Respect prefers-reduced-motion : on coupe les rotations, points restent fixes. */
@media (prefers-reduced-motion: reduce) {
  .cosmos-orb-1, .cosmos-orb-2, .cosmos-orb-3, .cosmos-orb-4, .cosmos-orb-5 {
    animation: none;
  }
}

/* Contenu au-dessus du diagramme. */
.cosmos-content {
  position: relative;
  z-index: 2;
}

/* Séparateur orbital fin entre certaines sections.
   Un demi-cercle stylisé qui évoque le motif sans le crier. */
.orbit-divider {
  display: flex;
  justify-content: center;
  padding: 1rem 0 0;
}
.orbit-divider svg { width: 120px; height: 18px; opacity: 0.6; }

/* === Logo (header + footer) ===
   Symbole SVG à gauche, wordmark en HTML pour profiter des Google Fonts. */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.logo-symbol {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}
.logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
/* Wordmark logo — EXCEPTION : reste en Cormorant Garamond italique 600
   (identité de marque, non négociable, ne pas modifier). */
.logo-name {
  font-family: 'Cormorant Garamond', Garamond, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  color: var(--nuit);
  line-height: 1;
}
.logo-divider {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--or);
  margin: 6px 0;
}
.logo-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gris);
  font-weight: 500;
}
/* Mobile : pour gagner de la place sans casser la marque. */
@media (max-width: 640px) {
  .logo-link { gap: 10px; }
  .logo-symbol { width: 40px; height: 40px; }
  .logo-name { font-size: 22px; }
  .logo-divider { width: 38px; margin: 4px 0; }
  .logo-subtitle { font-size: 8px; letter-spacing: 0.25em; }
}

/* Stat / Trust badge style Circle (pour future utilisation). */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  color: rgba(247, 241, 229, 0.9);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ============================================================
   REFONTE HERO IMMERSIF — Navagraha + étoiles défilantes
   ============================================================ */

/* Variables supplémentaires (les --nuit, --or, --or-clair, --gris existants
   restent inchangés et conservent leur usage actuel ailleurs sur le site). */
:root {
  --creme: #F0E7D2;
  --creme-warm: #EFE9DD;
  --or-faible: rgba(212, 169, 91, 0.4);
  --texte-creme: rgba(240, 231, 210, 0.88);
  --texte-creme-faible: rgba(240, 231, 210, 0.5);
  --vermillon: #C72C26;
}

/* ============================================
   HERO IMMERSIF — pleine fenêtre, fond nuit, étoiles défilantes
   ============================================ */
.hero-immersive {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: var(--nuit);
  overflow: hidden;
}

.star-layer {
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  z-index: 1;
  animation: drift 280s linear infinite;
}
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .star-layer { animation: none; }
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(240, 231, 210, 0.55);
  border-radius: 50%;
}
.star.medium { width: 2.5px; height: 2.5px; background: rgba(240, 231, 210, 0.8); }
.star.bright {
  width: 3px;
  height: 3px;
  background: var(--or-clair);
  box-shadow: 0 0 6px var(--or-clair);
}

/* Couronne des 9 Navagraha */
.planet-fixed {
  position: absolute;
  z-index: 4;
  text-align: center;
  pointer-events: none;
}
.planet-dot {
  width: 11px;
  height: 11px;
  background: currentColor;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}
.planet-dot.small {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 6px currentColor, 0 0 14px currentColor;
}
.planet-name {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte-creme);
  margin-top: 7px;
  white-space: nowrap;
}
.planet-french {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 9px;
  color: var(--texte-creme-faible);
  margin-top: 2px;
  letter-spacing: 0.03em;
}
.planet-position {
  font-family: 'Lora', serif;
  font-size: 9px;
  color: var(--texte-creme-faible);
  margin-top: 3px;
  letter-spacing: 0.06em;
}

/* Couleurs spécifiques des 9 grahas. */
.c-surya   { color: #E8C97F; }
.c-chandra { color: #F5F1E3; }
.c-mangala { color: #D88A6C; }
.c-budha   { color: #C9C58A; }
.c-guru    { color: #E8B848; }
.c-shukra  { color: #F0E8D8; }
.c-shani   { color: #8A92B3; }
.c-rahu    { color: #8B7D9C; }
.c-ketu    { color: #A66B5C; }

/* Logo discret en haut à gauche. */
.immersive-logo {
  position: absolute;
  z-index: 6;
  top: 36px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.immersive-logo svg { opacity: 0.85; }
.immersive-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--creme);
  line-height: 1;
}

/* Texte central minimaliste. */
.immersive-content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  width: 90%;
  max-width: 800px;
  padding: 20px;
}
.immersive-content .eyebrow {
  font-family: 'Lora', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--or-clair);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}
.immersive-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.06;
  color: var(--creme);
  text-shadow: 0 0 50px rgba(10, 17, 40, 0.95);
  margin-bottom: 32px;
}
.immersive-content .subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--texte-creme);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  /* Sur mobile : couronne visible mais réduite, halo radial sous le texte
     pour garder la lisibilité par-dessus les planètes. */
  .planet-fixed { display: block; }
  .planet-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 6px currentColor, 0 0 12px currentColor;
  }
  .planet-dot.small {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 4px currentColor, 0 0 9px currentColor;
  }
  .planet-name {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .planet-french { display: none; }
  .planet-position { font-size: 7px; }

  .immersive-content {
    background: radial-gradient(ellipse at center,
      rgba(10, 17, 40, 0.85) 0%,
      rgba(10, 17, 40, 0.7) 40%,
      rgba(10, 17, 40, 0.3) 75%,
      transparent 100%);
    padding: 40px 24px;
  }
  .immersive-content .eyebrow { font-size: 10px; margin-bottom: 24px; }
  .immersive-content h1 { font-size: 38px; margin-bottom: 24px; }
  .immersive-content .subtitle { font-size: 13px; }
  .immersive-logo { top: 22px; left: 22px; }
  .immersive-wordmark { font-size: 19px; }
}

/* Phrase technique en bas à droite. */
.tech-credit {
  position: absolute;
  z-index: 6;
  bottom: 28px;
  right: 36px;
  font-family: 'Lora', serif;
  font-size: 9px;
  color: var(--texte-creme-faible);
  letter-spacing: 0.04em;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tech-credit {
    white-space: normal;
    bottom: 100px;
    right: 16px;
    left: 16px;
    text-align: center;
    font-size: 8px;
  }
}

/* Flèche "Commencer" au pied du hero. */
.scroll-arrow {
  position: absolute;
  z-index: 6;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--or-clair);
  transition: opacity 0.3s;
}
.scroll-arrow:hover { opacity: 0.7; }
.scroll-arrow-label {
  font-family: 'Lora', serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}
.scroll-arrow-chevron {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  animation: bounce-arrow 2.5s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(10px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-arrow-chevron { animation: none; }
}

/* ============================================
   STICKY HEADER (caché pendant le hero, glisse au scroll)
   ============================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--creme-warm);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.sticky-header.visible {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ============================================
   HERO SUBNAV — barre en flux normal sous le hero, sticky au scroll
   ============================================ */
.hero-subnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(239, 233, 221, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

/* ============================================
   SECTION CLASSIQUE SOUS LE HERO (post-hero-main)
   ============================================ */
.post-hero-main {
  background: var(--creme-warm);
  padding: 90px 60px 110px;
}
.post-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.post-hero-main .eyebrow {
  font-family: 'Lora', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--or);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.post-hero-main .eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--or);
}
.post-hero-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 1.06;
  color: #1A1F2E;
  letter-spacing: -0.005em;
}
.post-hero-main .divider {
  width: 90px;
  height: 1px;
  background: var(--or);
  margin: 32px 0 28px;
}
.praticienne-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--or);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}
.post-hero-main p.lead {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.75;
  color: #1A1F2E;
  max-width: 540px;
  margin-bottom: 36px;
}
.post-hero-main .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.post-hero-main .btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  font-family: 'Lora', serif;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.post-hero-main .btn-primary {
  background: var(--vermillon);
  color: var(--creme-warm);
}
.post-hero-main .btn-primary:hover {
  background: #A52521;
  color: var(--creme-warm);
}
.post-hero-main .btn-secondary {
  background: transparent;
  color: #1A1F2E;
  border: 1px solid var(--or);
}
.post-hero-main .btn-secondary:hover {
  background: var(--or);
  color: var(--creme-warm);
}
/* Photo ronde avec masque radial — les bords fondent vers transparent
   pour donner un effet halo / présence diffuse. */
.photo-circle {
  width: 320px;
  height: 320px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at center 42%,
    black 32%,
    rgba(0,0,0,0.92) 48%,
    rgba(0,0,0,0.68) 63%,
    rgba(0,0,0,0.3) 78%,
    rgba(0,0,0,0.06) 90%,
    transparent 100%);
          mask-image: radial-gradient(circle at center 42%,
    black 32%,
    rgba(0,0,0,0.92) 48%,
    rgba(0,0,0,0.68) 63%,
    rgba(0,0,0,0.3) 78%,
    rgba(0,0,0,0.06) 90%,
    transparent 100%);
}
.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .photo-circle { width: 240px; height: 240px; }
}

@media (max-width: 768px) {
  .post-hero-main { padding: 50px 24px 70px; }
  .post-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .post-hero-main h2 { font-size: 38px; }
}
