/*
 * idealaurore-custom.css
 * CSS du thème Idéal'aurore — à placer dans votre thème enfant WordPress
 * Chemin : wp-content/themes/VOTRE-THEME-ENFANT/idealaurore-custom.css
 */

/* ══ RESET & VARIABLES ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #ffffff; --ivory: #faf5ef; --cream: #f2e8dc;
  --beige: #e6d5c3; --beige-dk: #d4bfa8;
  --terra: #c0633a; --terra-lt: #d4815e; --terra-dk: #8b3e20;
  --sienna: #a0522d; --brown: #6b3a28;
  --text: #2d1a0f; --muted: #7a5c48; --warm-dark: #3d2213;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Raleway', sans-serif; font-weight: 300; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ══ MENU MOBILE 100% CSS ══ */
#nav-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; cursor: pointer;
  padding: 8px; position: relative; z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.nav-mobile {
  visibility: hidden; opacity: 0;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--warm-dark);
  z-index: 9998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 400;
  color: #ffffff; text-decoration: none;
  padding: 16px 60px; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
}
.nav-mobile a:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.nav-mobile .nm-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--terra); padding: 16px 44px;
  border: none !important; margin-top: 20px; width: auto;
}
.nm-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 2.2rem; color: rgba(255,255,255,0.5);
  cursor: pointer; line-height: 1;
  font-family: sans-serif; text-decoration: none;
  padding: 8px;
}
#nav-toggle:checked ~ .nav-mobile { visibility: visible; opacity: 1; }
#nav-toggle:checked ~ nav .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #fff; }
#nav-toggle:checked ~ nav .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ nav .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #fff; }

/* ══ NAV ══ */
/* ══ NAV — 3 colonnes : liens gauche | logo centre | bouton droite ══ */
#main-nav {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 9999 !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 18px 60px !important;
  transition: background 0.5s, padding 0.3s, box-shadow 0.3s;
  background: transparent !important;
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
}
#main-nav.nav-scrolled {
  background: rgba(250,245,239,0.97) !important;
  padding: 14px 60px !important;
  box-shadow: 0 1px 24px rgba(45,26,15,0.1) !important;
  backdrop-filter: blur(12px);
}
#main-nav .nav-links {
  display: flex !important; gap: 28px !important; list-style: none !important;
  justify-content: flex-start !important; align-items: center !important;
  margin: 0 !important; padding: 0 !important;
}
#main-nav .logo-wrap {
  justify-self: center !important; display: flex !important;
  flex-direction: column !important; align-items: center !important;
  gap: 3px !important; text-decoration: none !important;
}
#main-nav .nav-right {
  display: flex !important; align-items: center !important;
  justify-content: flex-end !important; gap: 16px !important;
}
.logo-name { font-family: 'Playfair Display', serif !important; font-size: 1.1rem !important; font-weight: 500 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: #fff !important; line-height: 1 !important; }
.logo-sub { font-size: 0.56rem !important; letter-spacing: 0.26em !important; text-transform: uppercase !important; color: rgba(255,255,255,0.6) !important; margin-top: 2px !important; }
#main-nav.nav-scrolled .logo-name { color: var(--text) !important; }
#main-nav.nav-scrolled .logo-sub { color: var(--muted) !important; }
.nav-links a { font-size: 0.72rem !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; font-weight: 500 !important; text-decoration: none !important; color: rgba(255,255,255,0.9) !important; position: relative !important; padding-bottom: 3px !important; transition: color 0.3s !important; }
#main-nav.nav-scrolled .nav-links a { color: var(--text) !important; }
.nav-links a::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; width: 0 !important; height: 1px !important; background: var(--terra) !important; transition: width 0.3s !important; }
.nav-links a:hover::after { width: 100% !important; }
.nav-links a.active { color: var(--terra) !important; }
.nav-boutique { color: var(--terra) !important; font-weight: 600 !important; }
.btn-nav { font-family: 'Raleway', sans-serif !important; font-size: 0.71rem !important; font-weight: 600 !important; letter-spacing: 0.13em !important; text-transform: uppercase !important; background: var(--terra) !important; color: #fff !important; border: none !important; padding: 11px 22px !important; text-decoration: none !important; cursor: pointer !important; white-space: nowrap !important; display: inline-block !important; }
.btn-nav:hover { background: var(--terra-dk) !important; }
.hamburger span { background: #fff !important; }
#main-nav.nav-scrolled .hamburger span { background: var(--text) !important; }

/* ══ HERO ══ */
#hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://idealaurore.com/hero-sejour.png');
  background-size: cover; background-position: center 45%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(45,26,15,0.32) 0%, rgba(45,26,15,0.1) 40%, rgba(45,26,15,0.62) 100%);
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 700; line-height: 1.12; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; max-width: 900px; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-sub { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.8); letter-spacing: 0.06em; margin-bottom: 44px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-sub span { margin: 0 10px; color: #e8c9a8; }
.btn-hero { font-family: 'Raleway', sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: rgba(192,99,58,0.88); border: 1px solid rgba(255,255,255,0.35); padding: 16px 48px; text-decoration: none; transition: background 0.3s; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.btn-hero:hover { background: var(--terra); border-color: var(--terra); }
.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp 1s 1.4s forwards; }
.scroll-hint span { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.52); }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: pulse 2s ease-in-out infinite; }

/* ══ STATS BAR ══ */
.stats-bar { background: var(--warm-dark); padding: 28px 60px; display: flex; align-items: center; justify-content: center; gap: 70px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--terra-lt); font-weight: 400; line-height: 1; }
.stat-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.1); }

/* ══ SHARED ══ */
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; flex: 0 0 26px; height: 1px; background: var(--terra); }
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::before { display: none; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--text); line-height: 1.25; }
.section-title em { font-style: italic; color: var(--terra); }
.section-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.85; max-width: 560px; margin: 14px auto 0; }
.btn-primary { display: inline-block; background: var(--terra); color: #fff; padding: 14px 38px; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: background 0.3s, transform 0.2s; }
.btn-primary:hover { background: var(--terra-dk); transform: translateY(-2px); }

/* ══ ABOUT ══ */
#about { padding: 110px 60px; }
.about-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-imgs { position: relative; height: 640px; }
.about-img-main {
  position: absolute; inset: 0;
  background-image: url('https://idealaurore.com/about-chambre.png');
  background-size: cover; background-position: center center;
}
.about-imgs::after {
  content: '';
  position: absolute; bottom: -14px; left: 30px; right: -14px;
  height: 100%; border: 2px solid var(--terra);
  opacity: 0.25; z-index: -1;
}
.about-badge { position: absolute; bottom: 28px; right: 28px; background: var(--warm-dark); color: var(--terra-lt); padding: 22px 28px; text-align: center; z-index: 2; }
.about-badge p:first-child { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; line-height: 1; }
.about-badge p:last-child { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 5px; }
.about-text .section-title { text-align: left; margin-bottom: 26px; }
.about-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-signature { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-style: italic; color: var(--terra); margin-top: 32px; }

/* ══ PRESTATIONS ══ */
#prestations { background: var(--ivory); padding: 110px 60px; text-align: center; }
#prestations .section-sub { margin-bottom: 68px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.presta-card { background: var(--white); border: 1px solid var(--beige); padding: 50px 36px 44px; text-align: center; position: relative; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; }
.presta-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.presta-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(192,99,58,0.12); }
.presta-card:hover::after { transform: scaleX(1); }
.presta-card.featured { background: var(--warm-dark); border-color: var(--warm-dark); }
.presta-card.featured::after { transform: scaleX(1); background: var(--terra-lt); }
.card-badge { position: absolute; top: 16px; right: 16px; background: var(--terra); color: #fff; font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.card-icon { width: 62px; height: 62px; margin: 0 auto 26px; border: 1px solid var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.presta-card.featured .card-icon { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.card-icon svg { width: 26px; height: 26px; stroke: var(--terra); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card-tier { font-size: 0.59rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.presta-card.featured .card-tier { color: rgba(255,255,255,0.38); }
.presta-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.presta-card.featured h3 { color: #fff; }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--terra); margin-bottom: 18px; font-style: italic; }
.presta-card.featured .card-price { color: var(--terra-lt); }
.card-divider { width: 32px; height: 1px; background: var(--terra); margin: 0 auto 22px; opacity: 0.5; }
.card-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.card-features li { font-size: 0.83rem; color: var(--brown); display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.presta-card.featured .card-features li { color: rgba(255,255,255,0.62); }
.card-features li::before { content: ''; display: block; flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; border: 1px solid var(--terra); border-radius: 50%; background: radial-gradient(circle, var(--terra) 35%, transparent 36%); }
.card-features li.plus { color: var(--sienna); font-weight: 500; }
.presta-card.featured .card-features li.plus { color: var(--terra-lt); }
.btn-card { display: inline-block; font-size: 0.71rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 3px; text-decoration: none; transition: letter-spacing 0.3s; }
.btn-card:hover { letter-spacing: 0.28em; color: var(--terra-dk); }
.presta-card.featured .btn-card { color: var(--terra-lt); border-color: var(--terra-lt); }

/* ══ AVANT / APRÈS ══ */
#avant-apres { background: var(--cream); padding: 110px 60px; }
.aa-inner { max-width: 1100px; margin: 0 auto; }
.aa-header { text-align: center; margin-bottom: 60px; }
.aa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; border-radius: 2px; overflow: hidden; box-shadow: 0 20px 60px rgba(45,26,15,0.15); position: relative; }
.aa-side { position: relative; height: 520px; overflow: hidden; }
.aa-photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.aa-side:hover .aa-photo { transform: scale(1.03); }
.aa-before .aa-photo {
  background-image: linear-gradient(rgba(80,50,30,0.35), rgba(80,50,30,0.35)), url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=800&q=80');
}
.aa-after .aa-photo {
  background-image: linear-gradient(rgba(45,26,15,0.15), rgba(45,26,15,0.15)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=800&q=80');
}
.aa-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; background: linear-gradient(to top, rgba(45,26,15,0.85), transparent); display: flex; align-items: flex-end; justify-content: space-between; }
.aa-tag { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-style: italic; color: #fff; font-weight: 400; }
.aa-before .aa-tag { color: rgba(255,255,255,0.75); }
.aa-after .aa-tag { color: var(--terra-lt); }
.aa-desc { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.aa-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; width: 48px; height: 48px; background: var(--terra); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.aa-arrow svg { width: 22px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ══ COACHING ══ */
#coaching { padding: 110px 60px; background: var(--ivory); }
.coaching-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coaching-images { position: relative; height: 560px; }
.coaching-img-main { position: absolute; top: 0; left: 0; width: 74%; height: 80%; background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80'); background-size: cover; background-position: center; }
.coaching-img-accent { position: absolute; bottom: 0; right: 0; width: 50%; height: 46%; background-image: url('https://idealaurore.com/kobu-agency-7okkFhxrxNw-unsplash.jpg'); background-size: cover; background-position: center; border: 6px solid var(--white); }
.coaching-price-badge { position: absolute; top: 46%; left: 54%; transform: translate(-50%,-50%); background: var(--white); border: 1px solid var(--beige); padding: 20px 26px; text-align: center; box-shadow: 0 12px 44px rgba(45,26,15,0.18); }
.coaching-price-badge .price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--terra); font-weight: 400; line-height: 1; }
.coaching-price-badge .price-sub { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.coaching-text .section-title { text-align: left; margin-bottom: 22px; }
.coaching-text > p { font-size: 0.9rem; color: var(--muted); line-height: 1.88; margin-bottom: 14px; }
.coaching-opts { display: flex; flex-direction: column; gap: 16px; margin: 30px 0 18px; }
.coaching-opt { background: var(--white); border: 1px solid var(--beige); border-left: 3px solid transparent; padding: 22px 22px 18px; transition: border-color 0.3s, transform 0.3s; }
.coaching-opt:hover { border-left-color: var(--terra); transform: translateX(5px); }
.opt-header { display: flex; gap: 16px; align-items: center; margin-bottom: 10px; }
.opt-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.opt-info h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--text); }
.opt-info .opt-price { font-size: 0.82rem; color: var(--terra); font-weight: 600; margin-top: 2px; }
.opt-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.opt-option { background: var(--cream); border-left: 2px solid var(--terra); padding: 10px 14px; font-size: 0.8rem; color: var(--brown); display: flex; align-items: flex-start; gap: 8px; }
.opt-option strong { color: var(--terra); white-space: nowrap; }

/* ══ PROCESS ══ */
#process { padding: 110px 60px; background: var(--white); text-align: center; }
#process .section-sub { margin-bottom: 70px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px; background: var(--beige); }
.step { padding: 0 20px; text-align: center; }
.step-circle { width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--beige); background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; position: relative; z-index: 1; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--terra); transition: background 0.3s, border-color 0.3s, color 0.3s; }
.step:hover .step-circle { background: var(--terra); color: #fff; border-color: var(--terra); }
.step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ══ TESTIMONIALS ══ */
#testimonials { background: var(--ivory); padding: 110px 60px; text-align: center; }
#testimonials .section-sub { margin-bottom: 64px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--white); border: 1px solid var(--beige); padding: 38px 30px; text-align: left; transition: transform 0.3s, box-shadow 0.3s; border-top: 3px solid transparent; }
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(192,99,58,0.1); border-top-color: var(--terra); }
.testi-stars { color: var(--terra); font-size: 0.88rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-text { font-family: 'Playfair Display', serif; font-size: 0.97rem; font-style: italic; color: var(--brown); line-height: 1.78; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--terra); border: 1px solid var(--beige-dk); }
.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.satisfaction-band { background: var(--warm-dark); padding: 50px 60px; text-align: center; margin-top: 60px; }
.satisfaction-band p { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.satisfaction-band .big-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--terra-lt); font-weight: 300; line-height: 1; }
.satisfaction-band .big-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 8px; letter-spacing: 0.15em; text-transform: uppercase; }

/* ══ CTA BAND ══ */
#cta-band {
  padding: 110px 60px; text-align: center;
  background: linear-gradient(rgba(45,26,15,0.72), rgba(45,26,15,0.72)),
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1800&q=80') center/cover no-repeat;
}
#cta-band .section-eyebrow { color: rgba(255,255,255,0.6); }
#cta-band .section-eyebrow::before, #cta-band .section-eyebrow::after { background: rgba(255,255,255,0.25); }
#cta-band .section-title { color: #fff; margin-bottom: 18px; }
#cta-band > p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 48px; line-height: 1.85; }

/* ══ CONTACT ══ */
#contact { padding: 110px 60px; background: var(--white); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info .section-title { text-align: left; margin-bottom: 22px; }
.contact-info > p { font-size: 0.9rem; color: var(--muted); line-height: 1.88; margin-bottom: 40px; }
.c-details { display: flex; flex-direction: column; gap: 16px; }
.c-detail { display: flex; gap: 14px; align-items: flex-start; }
.c-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--cream); border: 1px solid var(--beige); display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 16px; height: 16px; stroke: var(--terra); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.c-label { font-size: 0.61rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.c-value { font-size: 0.88rem; color: var(--text); margin-top: 3px; }
.c-value a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.c-value a:hover { color: var(--terra); }
.zone-note { font-size: 0.75rem; color: var(--muted); margin-top: 3px; font-style: italic; }
.contact-form { background: var(--ivory); padding: 50px 42px; border-top: 3px solid var(--terra); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 34px; }
.form-row { margin-bottom: 17px; }
.form-row label { display: block; font-size: 0.61rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; background: var(--white); border: 1px solid var(--beige); border-radius: 0; padding: 13px 16px; font-family: 'Raleway', sans-serif; font-size: 0.86rem; font-weight: 300; color: var(--text); outline: none; transition: border-color 0.3s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--terra); }
.form-row textarea { min-height: 108px; resize: vertical; }
.form-row select { appearance: none; cursor: pointer; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; background: var(--warm-dark); color: var(--terra-lt); border: none; padding: 17px; font-family: 'Raleway', sans-serif; font-size: 0.73rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; cursor: pointer; margin-top: 8px; transition: background 0.3s; }
.btn-submit:hover { background: var(--terra); }

/* ══ FOOTER ══ */
footer { background: var(--warm-dark); padding: 70px 60px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; }
.f-logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; font-style: italic; }
.f-logo-sub { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 4px; }
.footer-brand > p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 18px; max-width: 255px; }
.footer-social { display: flex; gap: 9px; margin-top: 22px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); font-size: 0.72rem; text-decoration: none; transition: border-color 0.3s, color 0.3s; }
.footer-social a:hover { border-color: var(--terra-lt); color: var(--terra-lt); }
.footer-col h4 { font-size: 0.61rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.81rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--terra-lt); }
.footer-col address { font-style: normal; font-size: 0.81rem; color: rgba(255,255,255,0.4); line-height: 2; }
.footer-col address a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-col address a:hover { color: var(--terra-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin: 50px -60px 0; padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; grid-column: 1 / -1; }
.footer-bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.26); letter-spacing: 0.07em; }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  * { max-width: 100%; }
  img, svg, video { max-width: 100%; }
  .about-imgs::after { display: none; }
  .about-badge, .coaching-price-badge { right: 0 !important; }
  #main-nav { grid-template-columns: 1fr auto !important; padding: 14px 20px !important; }
  #main-nav .nav-links { display: none !important; }
  #main-nav .btn-nav { display: none !important; }
  #main-nav .logo-wrap { justify-self: start !important; }
  .hamburger { display: flex !important; }
  .stats-bar { gap: 28px; padding: 22px 20px; }
  .stat-divider { display: none; }
  #about { padding: 70px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-imgs { height: 340px; }
  .about-badge { height: 100px; right: 0; top: 36%; }
  .cards-grid { grid-template-columns: 1fr; max-width: 480px; }
  #avant-apres { padding: 70px 20px; }
  .aa-grid { grid-template-columns: 1fr; }
  .aa-side { height: 300px; }
  .aa-arrow { display: none; }
  .coaching-inner { grid-template-columns: 1fr; gap: 50px; }
  .coaching-images { height: 320px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .satisfaction-band { padding: 40px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  footer { grid-template-columns: 1fr 1fr; padding: 50px 20px 0; gap: 34px; }
  .footer-bottom { margin: 40px -20px 0; padding: 18px 20px; flex-direction: column; gap: 8px; text-align: center; }
  section, #prestations, #coaching, #process, #testimonials, #contact, #cta-band, #avant-apres { padding: 70px 20px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}
