/*!
 * Theme Name:        Life Addict
 * Theme URI:         https://lifeaddict.fr
 * Description:       Site vitrine pour le cabinet d'hypnose Ericksonienne Life Addict.
 *                    Thème sombre vert & or, typographie Cormorant Garamond / Josefin Sans.
 *                    Header et footer injectés dynamiquement via script.js.
 * Version:           1.0.0
 * Author:            Frédéric Roger
 * Author URI:        https://lifeaddict.fr
 * License:           Proprietary
 * Text Domain:       lifeaddict
 *
 * Palette :
 *   --vert-fonce   #0a1f14   Fond principal
 *   --vert-moyen   #112b1a   Fond secondaire
 *   --vert-clair   #1a3d26   Accents verts
 *   --or           #c9a84c   Or principal
 *   --or-clair     #e2c97e   Or clair / hover
 *   --blanc        #f5f0e8   Texte titres
 *   --texte        #d4cfc4   Texte courant
 *
 * Typographie :
 *   Cormorant Garamond — titres, citations, numéros
 *   Josefin Sans       — navigation, labels, corps de texte
 *
 * Structure des fichiers :
 *   style.css    — Ce fichier, CSS global
 *   script.js    — JavaScript + injection header & footer
 *   index.html   — Page d'accueil
 *   lifeaddict-*.html — Pages de spécialités
 *   mentions-legales.html / confidentialite.html
 */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --vert-fonce:  #0a1f14;
  --vert-moyen:  #112b1a;
  --vert-clair:  #1a3d26;
  --or:          #c9a84c;
  --or-clair:    #e2c97e;
  --blanc:       #f5f0e8;
  --texte:       #d4cfc4;
}

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

/* Règle globale liens — neutralise le bleu navigateur */
a { color: var(--texte); text-decoration: none; }
a:hover { color: var(--or); }
html { scroll-behavior: smooth; }
body {
  background: var(--vert-fonce);
  color: var(--texte);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Texture de fond */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

section { position: relative; z-index: 1; }

/* ── Typographie commune ────────────────────────────────── */
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em { color: var(--or); font-style: italic; }

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--or);
  margin: 0 auto 32px;
}
.gold-line.left   { margin: 0 0 32px; }
.gold-line.center { margin: 0 auto 36px; }

/* ── Boutons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--or);
  color: var(--vert-fonce);
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.45);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--or-clair);
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--or);
  background: rgba(201,168,76,0.08);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-up {
  0%   { opacity: 0; transform: translateY(60px) scale(0); bottom: 10%; }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.5); bottom: 80%; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(10,31,20,0.97), transparent);
  transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
  padding: 14px 48px;
  background: rgba(10,31,20,0.98);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 201;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.logo img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--or);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--texte);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--texte);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active { color: var(--or); opacity: 1; }

.nav-cta {
  background: var(--or) !important;
  color: var(--vert-fonce) !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  opacity: 1 !important;
  font-weight: 400 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--or-clair) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 201;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--or);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,20,0.98);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--blanc);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--or); }
.mobile-cta {
  background: var(--or) !important;
  color: var(--vert-fonce) !important;
  border-radius: 40px !important;
  border-bottom: none !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 400;
  padding: 14px 36px !important;
  width: auto !important;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 64px 48px 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 32px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--or);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.8;
  opacity: 0.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
  display: block;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.75rem;
  color: var(--texte);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.3s, color 0.3s;
  letter-spacing: 0.05em;
}
.footer-nav a:hover { opacity: 1; color: var(--or); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.75rem;
  opacity: 0.65;
  line-height: 1.5;
}
.footer-contact-list li .ico { color: var(--or); flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: var(--texte); text-decoration: none; transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--or); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.62rem; opacity: 0.35; letter-spacing: 0.08em; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 0.62rem;
  color: var(--or);
  text-decoration: none;
  opacity: 0.5;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.footer-legal a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   PAGE ACCUEIL — index.html
   ═══════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,61,38,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--or);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 6s infinite;
}
.particle:nth-child(1) { left: 15%; animation-delay: 0s;   animation-duration: 7s; }
.particle:nth-child(2) { left: 30%; animation-delay: 1.5s; animation-duration: 5s; }
.particle:nth-child(3) { left: 50%; animation-delay: 0.8s; animation-duration: 8s; }
.particle:nth-child(4) { left: 65%; animation-delay: 2.2s; animation-duration: 6s; }
.particle:nth-child(5) { left: 80%; animation-delay: 0.3s; animation-duration: 7s; }
.particle:nth-child(6) { left: 42%; animation-delay: 3s;   animation-duration: 5s; }
.particle:nth-child(7) { left: 72%; animation-delay: 1.1s; animation-duration: 9s; }
.particle:nth-child(8) { left: 8%;  animation-delay: 2.7s; animation-duration: 6s; }

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.3s;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--blanc);
  margin-bottom: 8px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.5s;
}
.hero-title em { color: var(--or); font-style: italic; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--or-clair);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.7s;
}
.hero-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--texte);
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.9s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 1.1s;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 1.5s;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.6;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* Stats band */
.stats-band {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--or);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
  display: block;
}

/* Section problèmes */
.pain-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pain-text .section-title { text-align: left; }
.pain-intro { font-size: 0.85rem; line-height: 1.9; opacity: 0.8; margin-bottom: 32px; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.82rem; line-height: 1.6; opacity: 0.85; }
.pain-list li::before { content: '\25C6'; color: var(--or); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0; }
.pain-card {
  background: linear-gradient(135deg, rgba(26,61,38,0.8), rgba(17,43,26,0.9));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.pain-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--or-clair);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pain-quote::before { content: '\00AB\00A0'; }
.pain-quote::after  { content: '\00A0\00BB'; }
.pain-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }

/* Section hypnose */
.hypnose-section {
  padding: 100px 48px;
  background: linear-gradient(to bottom, transparent, rgba(26,61,38,0.25), transparent);
}
.hypnose-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

/* Carte gauche */
.hypnose-badge {
  background: linear-gradient(160deg, rgba(26,61,38,0.95), rgba(10,31,20,0.98));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.hypnose-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--or), transparent);
}
.hypnose-badge::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.hypnose-icon { font-size: 4rem; margin-bottom: 24px; display: block; line-height: 1; }
.hypnose-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--or-clair);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.35;
}
.hypnose-badge-desc { font-size: 0.78rem; line-height: 1.85; opacity: 0.65; max-width: 300px; }

/* Texte droite */
.hypnose-text .section-title { text-align: left; }
.hypnose-text p { font-size: 0.83rem; line-height: 1.9; opacity: 0.8; margin-bottom: 16px; }

/* Piliers — 3 colonnes */
.hypnose-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 16px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.07);
}
.pillar-icon { font-size: 1.4rem; line-height: 1; }
.pillar-title { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--or-clair); line-height: 1.3; }
.pillar-desc { font-size: 0.72rem; opacity: 0.6; line-height: 1.6; }

/* Grille spécialités */
.specialites-section { padding: 100px 48px; }
.specialites-header { text-align: center; margin-bottom: 64px; }
.specialites-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.specialite-card {
  background: linear-gradient(135deg, rgba(26,61,38,0.5), rgba(10,31,20,0.75));
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px;
  padding: 36px 30px;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.specialite-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.specialite-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.specialite-card:hover::after { transform: scaleX(1); }
.specialite-emoji { font-size: 2rem; margin-bottom: 16px; display: block; }
.specialite-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--blanc); font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.specialite-desc { font-size: 0.75rem; line-height: 1.7; opacity: 0.65; margin-bottom: 20px; }
.specialite-link { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--or); opacity: 0.8; transition: opacity 0.3s, letter-spacing 0.3s; }
.specialite-card:hover .specialite-link { opacity: 1; letter-spacing: 0.3em; }

/* Processus */
.process-section {
  padding: 100px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(26,61,38,0.2), transparent);
}
.process-steps { display: flex; flex-direction: column; margin-top: 64px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  left: 35px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--or), transparent);
  opacity: 0.3;
}
.process-step { display: flex; gap: 40px; align-items: flex-start; text-align: left; padding: 32px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.process-step:last-child { border-bottom: none; }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--or); opacity: 0.3; line-height: 1; flex-shrink: 0; width: 70px; text-align: center; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--blanc); margin-bottom: 8px; font-weight: 400; }
.step-desc { font-size: 0.8rem; line-height: 1.8; opacity: 0.7; }

/* Témoignages */
.temoignages-section { padding: 100px 48px; background: linear-gradient(135deg, rgba(17,43,26,0.5), rgba(10,31,20,0.8)); }
.temoignages-header { text-align: center; margin-bottom: 64px; }
.temoignages-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.temoignage-card {
  background: rgba(26,61,38,0.4);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.temoignage-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.stars { color: var(--or); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.temoignage-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--blanc); margin-bottom: 24px; opacity: 0.9; }
.temoignage-author { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--or); }
.author-detail { font-size: 0.65rem; opacity: 0.5; }

/* À propos */
.about-section { padding: 100px 48px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center; }
.about-card { background: linear-gradient(135deg, rgba(26,61,38,0.7), rgba(10,31,20,0.9)); border: 1px solid rgba(201,168,76,0.2); border-radius: 16px; padding: 48px 36px; text-align: center; }
.about-avatar { width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.about-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--or-clair); margin-bottom: 4px; font-weight: 400; }
.about-title-small { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; margin-bottom: 24px; display: block; }
.about-creds { list-style: none; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.about-creds li { font-size: 0.73rem; opacity: 0.7; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.about-creds li::before { content: '\25C6'; color: var(--or); font-size: 0.45rem; margin-top: 5px; flex-shrink: 0; }
.about-text .section-title { text-align: left; }
.about-text p { font-size: 0.83rem; line-height: 1.95; opacity: 0.8; margin-bottom: 18px; }

/* CTA final */
.cta-section { padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26,61,38,0.5) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--blanc); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.cta-title em { color: var(--or); font-style: italic; }
.cta-desc { font-size: 0.82rem; line-height: 1.9; opacity: 0.7; margin-bottom: 48px; }
.cta-price { display: inline-flex; align-items: center; gap: 16px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; padding: 16px 32px; margin-bottom: 40px; font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.8; }
.price-highlight { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--or); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   PAGES SPÉCIALITÉS (structure commune)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,61,38,0.55) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; max-width: 740px; }
.breadcrumb { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.5; margin-bottom: 24px; display: flex; justify-content: center; gap: 12px; align-items: center; }
.breadcrumb a { color: var(--texte); text-decoration: none; }
.breadcrumb a:hover { color: var(--or); }
.breadcrumb span { color: var(--or); }
.hero-emoji { font-size: 3.5rem; margin-bottom: 20px; display: block; opacity: 0; animation: fade-up 0.6s ease forwards 0.1s; }
.page-hero-label { font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--or); margin-bottom: 20px; display: block; opacity: 0; animation: fade-up 0.8s ease forwards 0.2s; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; color: var(--blanc); line-height: 1.1; margin-bottom: 24px; opacity: 0; animation: fade-up 0.8s ease forwards 0.4s; }
.page-hero-title em { color: var(--or); font-style: italic; }
.page-hero-desc { font-size: 0.88rem; line-height: 1.9; color: var(--texte); max-width: 580px; margin: 0 auto 40px; opacity: 0; animation: fade-up 0.8s ease forwards 0.6s; }
.hero-cta { opacity: 0; animation: fade-up 0.8s ease forwards 0.8s; display: block; }

/* Sections communes aux pages spécialités */
.signes-section { padding: 100px 48px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.signes-intro { font-size: 0.83rem; line-height: 1.9; opacity: 0.8; margin-bottom: 28px; }
.signes-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.signes-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.81rem; line-height: 1.6; opacity: 0.85; }
.signes-list li::before { content: '\25C6'; color: var(--or); font-size: 0.45rem; margin-top: 6px; flex-shrink: 0; }
.signes-card { background: linear-gradient(135deg, rgba(26,61,38,0.8), rgba(17,43,26,0.9)); border: 1px solid rgba(201,168,76,0.2); border-radius: 16px; padding: 44px 36px; text-align: center; position: relative; overflow: hidden; }
.signes-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--or), transparent); }
.signes-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--or-clair); line-height: 1.65; margin-bottom: 20px; }
.signes-quote::before { content: '\00AB\00A0'; }
.signes-quote::after  { content: '\00A0\00BB'; }
.signes-author { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; }

.pourquoi-section { padding: 100px 48px; background: linear-gradient(to bottom, transparent, rgba(26,61,38,0.2), transparent); }
.pourquoi-inner { max-width: 1100px; margin: 0 auto; }
.pourquoi-header { text-align: center; margin-bottom: 52px; }
.pourquoi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pourquoi-card { background: linear-gradient(135deg, rgba(26,61,38,0.45), rgba(10,31,20,0.7)); border: 1px solid rgba(201,168,76,0.12); border-radius: 14px; padding: 32px 26px; transition: all 0.3s; }
.pourquoi-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.pourquoi-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.pourquoi-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--blanc); margin-bottom: 10px; font-weight: 400; }
.pourquoi-desc { font-size: 0.75rem; line-height: 1.75; opacity: 0.65; }

.travail-section { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.travail-header { margin-bottom: 52px; }
.travail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.travail-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: rgba(201,168,76,0.03); border: 1px solid rgba(201,168,76,0.1); border-radius: 10px; transition: border-color 0.3s; }
.travail-item:hover { border-color: rgba(201,168,76,0.25); }
.travail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.travail-title { font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--or-clair); margin-bottom: 6px; }
.travail-desc { font-size: 0.75rem; line-height: 1.65; opacity: 0.65; }

.temoignage-section { padding: 80px 48px; background: linear-gradient(135deg, rgba(17,43,26,0.5), rgba(10,31,20,0.8)); }
.temoignage-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.temoignage-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; line-height: 1.75; color: var(--blanc); margin-bottom: 24px; opacity: 0.92; }
.temoignage-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; }

.deroulement-section { padding: 100px 48px; max-width: 900px; margin: 0 auto; }
.deroulement-header { text-align: center; margin-bottom: 56px; }
.deroulement-steps { display: flex; flex-direction: column; position: relative; }
.deroulement-steps::before { content: ''; position: absolute; left: 35px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--or), transparent); opacity: 0.25; }
.dstep { display: flex; gap: 36px; align-items: flex-start; text-align: left; padding: 28px 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
.dstep-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--or); opacity: 0.3; line-height: 1; flex-shrink: 0; width: 70px; text-align: center; }
.dstep-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--blanc); margin-bottom: 6px; font-weight: 400; }
.dstep-desc { font-size: 0.78rem; line-height: 1.8; opacity: 0.68; }

.faq-section { padding: 100px 48px; background: linear-gradient(to bottom, transparent, rgba(26,61,38,0.15), transparent); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.1); }
.faq-question { width: 100%; background: none; border: none; color: var(--blanc); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; text-align: left; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.3s; }
.faq-question:hover { color: var(--or-clair); }
.faq-toggle { color: var(--or); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { font-size: 0.78rem; line-height: 1.85; opacity: 0.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }

.autres-section { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
.autres-header { text-align: center; margin-bottom: 40px; }
.autres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.autre-card { background: rgba(26,61,38,0.3); border: 1px solid rgba(201,168,76,0.1); border-radius: 12px; padding: 24px 20px; text-decoration: none; display: block; transition: all 0.3s; text-align: center; }
.autre-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.autre-emoji { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.autre-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--blanc); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hypnose-pillars { grid-template-columns: 1fr; }
  .pain-section,
  .hypnose-inner,
  .about-section,
  .signes-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }

  .specialites-section,
  .process-section,
  .temoignages-section,
  .cta-section { padding: 60px 24px; }

  .specialites-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: 1fr; }
  .stats-band { gap: 40px; padding: 32px 24px; }
  .pourquoi-grid,
  .travail-grid { grid-template-columns: 1fr; }
  .autres-grid { grid-template-columns: repeat(2, 1fr); }

  .pourquoi-section,
  .travail-section,
  .deroulement-section,
  .faq-section,
  .autres-section { padding: 60px 24px; }

  .site-footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .cta-price { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .specialites-grid { grid-template-columns: 1fr; }
}
