/* ============================================
   STUDIO360WELLNESS — style.css
   ============================================ */

/* Google Fonts importées dans index.html :
   Bebas Neue | Cormorant Garamond | DM Sans   */

/* ---- VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --gold-dark: #9A7030;
  --gold-glow: rgba(201,168,76,0.3);
  --black: #050505;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --gray: #888;
  --light: #F5F0E8;
  --white: #FAFAF8;
}

/* ---- RESET ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
body:hover .cursor { width: 12px; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
  text-decoration: none;
}
.logo span { color: var(--white); }
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}
nav ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav ul a:hover { color: var(--gold); }
nav ul a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #050505 0%, #0D0D0D 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.3s;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.5s;
}
.hero h1 .gold { color: var(--gold); text-shadow: 0 0 60px var(--gold-glow); }
.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}
.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.7s;
}
.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.9s;
}
.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  animation: fadeLeft 0.8s forwards 1.1s;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: fadeUp 0.8s forwards 1.3s;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   BOUTONS GLOBAUX
   ============================================ */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   SECTION BASE
   ============================================ */
section { padding: 120px 60px; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}
h2.section-title .gold { color: var(--gold); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
}

/* ============================================
   MANIFESTE
   ============================================ */
.manifeste {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.manifeste::before {
  content: '360';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 400px;
  color: rgba(201,168,76,0.03);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.manifeste-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.manifeste-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.manifeste-text p strong { color: var(--gold); font-weight: 600; }
.manifeste-visual { position: relative; }
.manifeste-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px;
  position: relative;
}
.manifeste-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--gold);
}
.manifeste-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.manifeste-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.pilier {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.pilier:hover { border-color: var(--gold); transform: translateY(-4px); }
.pilier-icon { font-size: 28px; margin-bottom: 12px; }
.pilier h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.pilier p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--black); position: relative; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--dark2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(201,168,76,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.15); }
.service-icon { font-size: 36px; margin-bottom: 24px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.service-tag {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  transition: all 0.3s;
}
.service-card:hover .service-tag { background: var(--gold); color: var(--black); }

/* ============================================
   TCM — MÉDECINE CHINOISE
   ============================================ */
.tcm { background: var(--dark); position: relative; overflow: hidden; }
.tcm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tcm-visual { position: relative; }
.tcm-circle {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 30s linear infinite;
}
.tcm-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(201,168,76,0.1);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite reverse;
}
.tcm-symbol {
  font-size: 80px;
  position: relative;
  z-index: 1;
  animation: rotateSlow 30s linear infinite reverse;
}
.tcm-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--gold);
}
.tcm-dot2 { bottom: -4px; top: auto; background: var(--gold-dark); }
.tcm-content .section-label { margin-bottom: 24px; }
.tcm-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.tcm-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
}
.tcm-content > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.tcm-services { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tcm-service {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 20px;
  transition: all 0.3s;
}
.tcm-service:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.tcm-service h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.tcm-service p { font-size: 12px; color: var(--gray); }

/* ============================================
   MÉTHODE 360°
   ============================================ */
.methode { background: var(--black); overflow: hidden; }
.methode-inner { max-width: 1200px; margin: 0 auto; }
.methode-header { text-align: center; margin-bottom: 80px; }
.methode-header .section-label { justify-content: center; }
.methode-header .section-label::before { display: none; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num { background: var(--gold); color: var(--black); box-shadow: 0 0 40px var(--gold-glow); }
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================
   COACHES
   ============================================ */
.coaches { background: var(--dark); position: relative; }
.coaches-inner { max-width: 1200px; margin: 0 auto; }
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.coach-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.coach-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-8px); }
.coach-img {
  height: 280px;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-avatar { font-size: 80px; opacity: 0.3; }
.coach-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark2) 100%);
}
.coach-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.coach-specialty-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}
.coach-body { padding: 32px; }
.coach-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 4px;
}
.coach-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.coach-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 24px; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.coach-tag {
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(201,168,76,0.7);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs { background: var(--black); position: relative; overflow: hidden; }
.tarifs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.tarifs-inner { max-width: 1200px; margin: 0 auto; }
.tarifs-header { text-align: center; margin-bottom: 60px; }
.tarifs-header .section-label { justify-content: center; }
.tarifs-header .section-label::before { display: none; }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tarif-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s;
}
.tarif-card.featured {
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(201,168,76,0.05) 100%);
  border-color: var(--gold);
}
.tarif-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 3px;
  padding: 6px 20px;
  font-weight: 500;
}
.tarif-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); }
.tarif-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.tarif-desc { font-size: 13px; color: var(--gray); margin-bottom: 32px; }
.tarif-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.tarif-price span { font-size: 28px; color: var(--gray); }
.tarif-period {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.tarif-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.tarif-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tarif-features li::before { content: '✦'; color: var(--gold); font-size: 10px; }
.tarif-btn {
  display: block;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}
.tarif-btn:hover, .tarif-card.featured .tarif-btn { background: var(--gold); color: var(--black); }

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.testimonials { background: var(--dark); position: relative; overflow: hidden; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.testimonial-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.author-name { font-weight: 500; font-size: 14px; color: var(--white); }
.author-detail { font-size: 12px; color: var(--gray); margin-top: 2px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-left: auto; }

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 160px 60px;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 90px);
  letter-spacing: 3px;
  line-height: 0.95;
  margin-bottom: 32px;
}
.cta h2 .gold { color: var(--gold); text-shadow: 0 0 60px var(--gold-glow); }
.cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--dark); position: relative; }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(201,168,76,0.3); }
.contact-item-icon { font-size: 24px; color: var(--gold); min-width: 40px; margin-top: 2px; }
.contact-item h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 0; line-height: 1.5; }
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 48px;
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  width: 100%;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.form-submit:hover { background: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .logo { display: block; margin-bottom: 20px; font-size: 22px; }
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 32px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================
   REVEAL AU SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   KEYFRAMES ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   MENU TOGGLE (MOBILE)
   ============================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}
/* ============================================
   RESPONSIVE TABLETTE  (≤ 1024 px)
   ============================================ */
@media (max-width: 1024px) {
  nav,
  nav.scrolled { padding: 20px 32px; }
 
  section { padding: 80px 32px; }
 
  .hero-content { padding: 0 32px; max-width: 100%; }
  .hero-stats   { right: 32px; }
 
  /* Manifeste */
  .manifeste-inner { grid-template-columns: 1fr; gap: 40px; }
 
  /* TCM */
  .tcm-inner { grid-template-columns: 1fr; }
  .tcm-circle { margin: 0 auto 40px; }
 
  /* Services */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
 
  /* Coachs */
  .coaches-grid { grid-template-columns: 1fr 1fr; }
 
  /* Tarifs */
  .tarifs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
 
  /* Témoignages */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
 
  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
 
  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
 
  /* Méthode 360 */
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
}
 
 
/* ============================================
   RESPONSIVE MOBILE  (≤ 768 px)
   ============================================ */
@media (max-width: 768px) {
 
  /* ── 1. Curseur custom désactivé (bugs tactile) ── */
  .cursor,
  .cursor-ring { display: none !important; }
  body { cursor: auto; }
 
  /* ── 2. Marges globales ── */
  nav,
  nav.scrolled { padding: 16px 20px; }
 
  section { padding: 60px 20px; }
 
  /* ── 3. Navigation ── */
  nav ul { display: none; }
  .menu-toggle { display: flex; }
 
  /* ── 4. Hero ── */
  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(44px, 11vw, 60px);
    margin-bottom: 20px;
    line-height: 0.95;
  }
  .hero p {
    font-size: 17px;
    margin-bottom: 36px;
  }
  .hero-stats,
  .scroll-indicator { display: none; }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
    padding: 16px 24px;
  }
 
  /* ── 5. Manifeste & Piliers ── */
  .manifeste::before {
    font-size: 160px;
    right: -10px;
    opacity: 0.04;
  }
  .manifeste-inner { gap: 32px; }
  .manifeste-card { padding: 24px 20px; }
  .manifeste-text p { font-size: 18px; }
 
  .piliers { grid-template-columns: 1fr; gap: 10px; }
  .pilier  { padding: 20px; }
 
  /* ── 6. Services ── */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card { padding: 36px 24px; }
  .service-num  { font-size: 60px; }
 
  /* ── 7. TCM ── */
  .tcm-inner { gap: 40px; }
  .tcm-circle {
    width: 260px;
    height: 260px;
    margin: 0 auto 32px;
  }
  .tcm-circle::before { inset: 10px; }
  .tcm-symbol { font-size: 48px; }
  .tcm-services { grid-template-columns: 1fr; gap: 12px; }
  .tcm-content h2 { font-size: clamp(34px, 8vw, 48px); }
 
  /* ── 8. Méthode 360° ── */
  .methode-header { text-align: left; }
  .methode-header .section-label { justify-content: flex-start; }
  .methode-header .section-label::before { display: block; }
 
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before { display: none; }
  .step { text-align: left; padding: 0; }
  .step-num { margin: 0 0 20px 0; }
 
  /* ── 9. Coachs ── */
  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .coach-img { height: 240px; }
 
  /* ── 10. Tarifs ── */
  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  .tarif-card         { padding: 32px 24px; }
  .tarif-price        { font-size: 52px; }
  .tarif-card.featured::before { font-size: 9px; }
 
  /* ── 11. Témoignages ── */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-text { font-size: 16px; }
 
  /* ── 12. CTA ── */
  .cta { padding: 80px 20px; }
  .cta h2 {
    font-size: clamp(38px, 10vw, 52px);
    letter-spacing: 2px;
  }
  .cta p { font-size: 17px; }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { width: 100%; text-align: center; }
 
  /* ── 13. Contact ── */
  .contact-inner { gap: 40px; }
  .contact-info h2 { font-size: 38px; }
  .contact-form     { padding: 28px 20px; }
  .form-row         { grid-template-columns: 1fr; gap: 0; }
 
  /* ── 14. Footer ── */
  footer { padding: 40px 20px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 20px;
  }
 
  /* ── 15. Titres de section ── */
  h2.section-title { font-size: clamp(38px, 9vw, 52px); }
 
  /* ── 16. Sections avec max-width interne ── */
  .manifeste-inner,
  .tcm-inner,
  .methode-inner,
  .coaches-inner,
  .tarifs-inner,
  .testimonials-inner,
  .contact-inner { max-width: 100%; }
}