/* ============================================================
   COACH DE LUMIÈRE — style.css
   Extrait directement depuis index.html (coachdelumiere.vercel.app)
   Source de vérité unique. À importer dans TOUTES les pages.
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --cream:        #F7EFE0;
  --cream-dark:   #EDE0C8;
  --gold:         #C4921E;
  --gold-light:   #D4A843;
  --gold-pale:    #E8C97A;
  --gold-muted:   rgba(196, 146, 30, 0.13);
  --gold-bg:      rgba(196, 146, 30, 0.10);
  --gold-border:  rgba(196, 146, 30, 0.14);
  --gold-border2: rgba(196, 146, 30, 0.40);
  --ink:          #3D2E1A;
  --ink-mid:      #7A6548;
  --ink-muted:    #7A6548;
  --white:        #ffffff;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196,146,30,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(rgba(247,239,224,0.96) 0%, rgba(247,239,224,0) 100%);
  backdrop-filter: blur(6px);
}
.nav-logo img {
  height: 48px;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid rgba(196,146,30,0.4) !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  text-decoration: none;
  transition: 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: white !important;
  border-color: var(--gold) !important;
}

/* Hamburger mobile */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-mid); transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--ink-mid);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
  border: 1px solid rgba(196,146,30,0.4);
  padding: 12px 32px; border-radius: 100px;
  margin-top: 12px; color: var(--gold) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 72px 80px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-tag::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 4.8vw, 74px);
  font-weight: 300; line-height: 1.07; color: var(--ink);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 15.5px; line-height: 1.78; color: var(--ink-mid);
  max-width: 430px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-cta-zone {
  display: flex; flex-direction: column; gap: 16px;
  opacity: 0; animation: fadeUp 0.8s ease 0.65s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: white; text-decoration: none;
  padding: 17px 38px; border-radius: 100px;
  font-size: 14px; letter-spacing: 0.05em;
  font-family: 'Jost', sans-serif; font-weight: 400;
  transition: 0.3s;
  box-shadow: rgba(196,146,30,0.28) 0px 8px 32px;
  align-self: flex-start;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: rgba(196,146,30,0.32) 0px 14px 40px;
}
.btn-primary svg {
  width: 18px; height: 18px; flex-shrink: 0;
}
.hero-proof {
  display: flex; align-items: center; gap: 20px;
}
.proof-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-mid); letter-spacing: 0.06em;
}
.proof-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-light); flex-shrink: 0;
}
.proof-sep {
  width: 1px; height: 14px; background: rgba(196,146,30,0.25);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 36px; border-top: 1px solid rgba(196,146,30,0.18);
  opacity: 0; animation: fadeUp 0.8s ease 0.85s forwards;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mid); margin-top: 6px; line-height: 1.4;
}
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo-wrap {
  position: absolute; inset: 0;
  opacity: 0; animation: fadeIn 1.1s ease 0.3s forwards;
}
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(247,239,224,.25) 28%, rgba(247,239,224,0) 55%),
              linear-gradient(to top, rgba(196,146,30,.12) 0%, transparent 45%);
}
/* Orbs décoratifs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.orb-1 {
  width: 420px; height: 420px;
  background: rgba(212,168,67,0.1);
  top: -120px; right: -80px;
}
.orb-2 {
  width: 280px; height: 280px;
  background: rgba(196,146,30,0.07);
  bottom: 80px; left: 60px;
}

/* ── SECTION HOW ── */
.section-how {
  padding: 120px 80px; position: relative;
}
.section-how::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
}
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 300; line-height: 1.1; max-width: 560px; margin-bottom: 72px;
}
.section-title em { font-style: italic; color: var(--gold); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(196,146,30,0.1); border-radius: 24px; overflow: hidden;
}
.step {
  background: var(--cream); padding: 44px 36px; transition: background 0.35s;
}
.step:hover { background: var(--cream-dark); }
.step.step-privacy { background: var(--cream); }
.step.step-privacy:hover { background: var(--cream-dark); }
.privacy-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(196,146,30,0.1);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 300;
  color: rgba(196,146,30,0.13); line-height: 1; margin-bottom: 18px;
}
.step-icon {
  width: 40px; height: 40px; margin-bottom: 16px; color: var(--gold);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; margin-bottom: 11px;
}
.step-desc {
  font-size: 13.5px; line-height: 1.72; color: var(--ink-mid);
}

/* ── SECTION TESTIMONIALS ── */
.section-testimonials {
  padding: 120px 80px; position: relative;
  background: linear-gradient(135deg, rgba(196,146,30,0.05) 0%, transparent 60%);
}
.section-testimonials::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
}
.testimonials-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; margin-top: 60px;
}
.testimonial {
  background: white; border-radius: 20px; padding: 36px;
  box-shadow: rgba(122,92,46,0.06) 0px 4px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: rgba(122,92,46,0.11) 0px 12px 36px;
}
.testimonial.featured { background: var(--gold); }
.testimonial-stars {
  font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; color: var(--gold-light);
}
.testimonial.featured .testimonial-stars { color: rgba(255,255,255,0.7); }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; line-height: 1.62;
  margin-bottom: 24px; color: var(--ink);
}
.testimonial.featured .testimonial-quote { color: white; }
.testimonial-author {
  font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: 0.03em;
}
.testimonial.featured .testimonial-author { color: rgba(255,255,255,0.92); }
.testimonial-role {
  font-size: 11px; color: var(--ink-mid);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px;
}
.testimonial.featured .testimonial-role { color: rgba(255,255,255,0.55); }

/* ── SECTION CTA ── */
.section-cta {
  padding: 140px 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(75% 75%, rgba(196,146,30,0.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 2; max-width: 680px; margin: 0 auto;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 3.8vw, 64px);
  font-weight: 300; line-height: 1.1; margin-bottom: 22px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 15px; color: var(--ink-mid); line-height: 1.75;
  margin-bottom: 44px; max-width: 480px;
}
.cta-proof {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  padding: 44px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(196,146,30,0.14);
}
.footer-logo img { height: 34px; opacity: 0.55; }
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  text-decoration: none; font-size: 12px; letter-spacing: 0.09em;
  color: var(--ink-mid); opacity: 0.55; transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-size: 12px; color: var(--ink-mid); opacity: 0.45;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 110px 28px 56px; }
  .hero-right { height: 52vh; }
  .hero-stats { gap: 28px; }
  .section-how,
  .section-testimonials,
  .section-cta { padding: 80px 28px; }
  .steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer {
    flex-direction: column; gap: 20px;
    text-align: center; padding: 36px 28px;
  }
}
