/* =========================================================
   FANY JAMES — Maison de Voyance & Bien-Être
   Design System
   ========================================================= */

:root {
  /* Couleurs — Nuit & Or */
  --night-deep: #0a0a16;
  --night: #11111e;
  --night-soft: #1a1a2e;
  --night-elevated: #22223c;

  --gold: #d4af6a;
  --gold-bright: #e8c977;
  --gold-soft: #b89456;
  --gold-dim: rgba(212, 175, 106, 0.15);

  --violet: #6b4c93;
  --violet-deep: #3c2a5b;

  --cream: #f5ecdc;
  --ivory: #faf6ee;
  --parchment: #ebe1cd;

  --text: #e8e0d0;
  --text-muted: #a8a092;
  --text-dim: #6b6557;

  /* Typo */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'EB Garamond', Georgia, serif;

  /* Espacements */
  --container: 1200px;
  --container-narrow: 880px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--night-deep);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-bright); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* =========================================================
   Background — ciel étoilé
   ========================================================= */
.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(107, 76, 147, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 175, 106, 0.08) 0%, transparent 50%),
    var(--night-deep);
}
.starfield::before, .starfield::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(232, 201, 119, 0.7), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 15% 65%, rgba(232, 201, 119, 0.5), transparent),
    radial-gradient(1px 1px at 75% 35%, rgba(255,255,255,0.4), transparent);
  background-size: 800px 600px;
  background-repeat: repeat;
  animation: drift 200s linear infinite;
}
.starfield::after {
  background-size: 600px 400px;
  opacity: 0.6;
  animation: drift 300s linear infinite reverse, twinkle 4s ease-in-out infinite;
}
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(-800px, -600px); } }
@keyframes twinkle { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.3; } }

/* =========================================================
   Layout helpers
   ========================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 120px 0; position: relative; }
.section--compact { padding: 80px 0; }

/* =========================================================
   Typographie
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 400; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
}

.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

/* Décor — symbole entre sections */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  gap: 20px;
  color: var(--gold);
  opacity: 0.6;
}
.divider::before, .divider::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.divider svg { width: 24px; height: 24px; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 22, 0);
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 22, 0.85);
  border-bottom: 1px solid rgba(212, 175, 106, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu a.active { color: var(--gold); }

.nav-cta {
  padding: 11px 26px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--night-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 22, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-cta { display: none; }
}

/* =========================================================
   Boutons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--night-deep);
  box-shadow: 0 4px 24px rgba(212, 175, 106, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 106, 0.4);
  color: var(--night-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--night-deep);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(232, 224, 208, 0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 7vw, 6rem);
}
.hero h1 .accent {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 44px;
  color: var(--text-muted);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212, 175, 106, 0.4) 0%, rgba(107, 76, 147, 0.3) 40%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  filter: blur(40px);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.constellation {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.constellation svg { width: 100%; height: 100%; }
.constellation .star-glow {
  filter: drop-shadow(0 0 8px var(--gold));
  animation: starpulse 3s ease-in-out infinite;
}
@keyframes starpulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
}

/* =========================================================
   ORACLE DU JOUR — carte interactive
   ========================================================= */
.oracle {
  background: linear-gradient(180deg, transparent 0%, rgba(60, 42, 91, 0.15) 50%, transparent 100%);
  padding: 100px 0;
  position: relative;
}
.oracle-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.oracle h2 { margin-bottom: 18px; }
.oracle p { color: var(--text-muted); margin-bottom: 50px; }

.oracle-card {
  position: relative;
  width: 240px;
  height: 380px;
  margin: 0 auto;
  perspective: 1500px;
  cursor: pointer;
}
.oracle-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.2s var(--ease);
}
.oracle-card.is-flipped .oracle-card-inner { transform: rotateY(180deg); }

.oracle-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  background: linear-gradient(140deg, var(--night-elevated) 0%, var(--night-soft) 100%);
  border: 1px solid var(--gold-dim);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 60px rgba(212, 175, 106, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.oracle-face--back { transform: rotateY(180deg); }
.oracle-face--front {
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 106, 0.1) 0%, transparent 60%),
    linear-gradient(140deg, var(--night-elevated) 0%, var(--violet-deep) 100%);
}

.oracle-pattern { width: 80%; opacity: 0.7; }
.oracle-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 20px;
  font-style: italic;
}
.oracle-card-keyword {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.oracle-symbol { font-size: 4rem; color: var(--gold); margin-bottom: 14px; line-height: 1; }
.oracle-meaning {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-top: 18px;
  line-height: 1.5;
}

.oracle-prompt {
  margin-top: 36px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.oracle-reset {
  display: none;
  margin-top: 28px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.3s var(--ease);
}
.oracle-card.is-flipped + .oracle-reset { display: inline-block; }
.oracle-reset:hover { color: var(--gold); }

/* =========================================================
   Services — grille
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 44px 32px;
  background: linear-gradient(160deg, rgba(34, 34, 60, 0.6) 0%, rgba(17, 17, 30, 0.6) 100%);
  border: 1px solid rgba(212, 175, 106, 0.15);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(60, 42, 91, 0.4) 0%, rgba(17, 17, 30, 0.6) 100%);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 0.8; }
.service-card h3 { margin-bottom: 14px; color: var(--ivory); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.service-card .service-link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.service-card:hover .service-link svg { transform: translateX(6px); }
.service-link svg { width: 14px; transition: transform 0.4s var(--ease); }

/* =========================================================
   Tarifs
   ========================================================= */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 28px;
  border: 1px solid rgba(212, 175, 106, 0.18);
  border-radius: 4px;
  background: rgba(17, 17, 30, 0.4);
  transition: all 0.4s var(--ease);
}
.pricing-item:hover { border-color: var(--gold); background: rgba(34, 34, 60, 0.6); }
.pricing-item-content { flex: 1; }
.pricing-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 4px;
  font-weight: 400;
}
.pricing-item .desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-item .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  margin-left: 20px;
  white-space: nowrap;
}
.pricing-item .price small { font-size: 0.7rem; color: var(--text-muted); margin-left: 2px; }

/* =========================================================
   Calculateur de chemin de vie
   ========================================================= */
.life-path {
  background: linear-gradient(180deg, transparent 0%, rgba(60, 42, 91, 0.2) 100%);
  padding: 100px 0;
}
.life-path-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(160deg, rgba(34, 34, 60, 0.6) 0%, rgba(17, 17, 30, 0.7) 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.life-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.life-path h2 { margin-bottom: 14px; }
.life-path-card > p { color: var(--text-muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

.life-path-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.life-path-form input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  background: rgba(10, 10, 22, 0.6);
  border: 1px solid rgba(212, 175, 106, 0.2);
  border-radius: 999px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
  outline: none;
  transition: all 0.3s var(--ease);
}
.life-path-form input:focus { border-color: var(--gold); background: rgba(10, 10, 22, 0.9); }
.life-path-form input::placeholder { color: var(--text-dim); }

.life-path-result {
  margin-top: 48px;
  display: none;
  animation: fadeUp 0.8s var(--ease);
}
.life-path-result.is-shown { display: block; }
.life-path-number {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(212, 175, 106, 0.5);
}
.life-path-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 16px;
}
.life-path-meaning {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 1rem;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   Témoignages
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.testimonial {
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(34, 34, 60, 0.4) 0%, rgba(17, 17, 30, 0.4) 100%);
  border: 1px solid rgba(212, 175, 106, 0.12);
  border-radius: 4px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* =========================================================
   À propos / portrait
   ========================================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .bio-grid { grid-template-columns: 1fr; gap: 50px; } }

.bio-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--violet-deep), var(--night));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
}
.bio-portrait::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  margin: 12px;
  pointer-events: none;
}
.bio-portrait-svg { width: 70%; opacity: 0.85; }
.bio-portrait-caption {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  z-index: 1;
}

.bio-content h2 { margin-bottom: 24px; }
.bio-content p { color: var(--text-muted); margin-bottom: 18px; }
.bio-content p strong { color: var(--ivory); font-weight: 500; }

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 106, 0.15);
}
.bio-stat {
  text-align: center;
}
.bio-stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.bio-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   Page interne — hero compact
   ========================================================= */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.breadcrumb {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }

/* =========================================================
   Process — étapes
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  padding: 32px 28px;
  background: rgba(17, 17, 30, 0.4);
  border: 1px solid rgba(212, 175, 106, 0.12);
  border-radius: 4px;
  position: relative;
}
.process-step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 300;
  display: block;
  font-style: italic;
}
.process-step h4 { margin-bottom: 10px; color: var(--ivory); }
.process-step p { font-size: 0.92rem; color: var(--text-muted); }

/* =========================================================
   Contact / Form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  padding: 40px;
  background: linear-gradient(160deg, rgba(34, 34, 60, 0.5) 0%, rgba(17, 17, 30, 0.5) 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-info-block { margin-bottom: 28px; }
.contact-info-block:last-child { margin-bottom: 0; }
.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  line-height: 1.4;
}
.contact-info-value a { color: var(--ivory); }
.contact-info-value a:hover { color: var(--gold); }

.contact-form {
  padding: 40px;
  background: rgba(17, 17, 30, 0.4);
  border: 1px solid rgba(212, 175, 106, 0.15);
  border-radius: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 22, 0.6);
  border: 1px solid rgba(212, 175, 106, 0.18);
  border-radius: 4px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s var(--ease);
}
.form-field textarea { min-height: 130px; resize: vertical; font-family: var(--font-sans); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); background: rgba(10, 10, 22, 0.85); }
.form-submit { margin-top: 8px; width: 100%; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
  padding: 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  color: var(--gold);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  color: var(--text-muted);
}
.faq-item.is-open .faq-answer { max-height: 320px; padding-bottom: 28px; }

/* =========================================================
   CTA Section
   ========================================================= */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(60, 42, 91, 0.4) 0%, transparent 70%);
}
.cta-section h2 { margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 106, 0.12);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
  font-family: var(--font-sans);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
  margin-top: 16px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 106, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* =========================================================
   Animations on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =========================================================
   Utilités
   ========================================================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-4 { margin-bottom: 32px; }

/* =========================================================
   Responsive ajustements
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 110px 0 80px; }
  .page-hero { padding: 140px 0 60px; }
  .life-path-card { padding: 40px 24px; }
  .contact-info, .contact-form { padding: 28px; }
  .life-path-number { font-size: 5rem; }
}
