/* ================================================
   DELPHINE LAFFORGUE — Coaching
   Design System 2027
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Dancing+Script:wght@400;600&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --cream:        #ffecd7;
  --coral:        #e79591;
  --pink:         #e8b0ba;
  --teal:         #699fab;
  --dark:         #2a2218;
  --mid:          #7a6860;
  --muted:        #b5a49a;
  --light:        #faf8f5;
  --white:        #ffffff;
  --cream-bg:     #fff9f4;
  --teal-dark:    #4a7a8a;
  --coral-dark:   #c8706c;
  --pink-dark:    #c08090;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --nav-h:        76px;
  --section-pad:  clamp(72px, 10vw, 120px);
  --gap:          clamp(20px, 3vw, 40px);

  --shadow-xs:    0 1px 4px rgba(42,34,24,.05);
  --shadow-sm:    0 2px 14px rgba(42,34,24,.07);
  --shadow-md:    0 8px 32px rgba(42,34,24,.10);
  --shadow-lg:    0 20px 60px rgba(42,34,24,.14);

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:          0.6s;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: clamp(15px, 1.1vw, 17px); }
body  {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
}
img, video { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Layout ─────────────────────────────────── */
.container    { width: min(1220px, 100% - 48px); margin-inline: auto; }
.container-sm { width: min(800px,  100% - 48px); margin-inline: auto; }
.container-lg { width: min(1440px, 100% - 32px); margin-inline: auto; }

.section    { padding: var(--section-pad) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.section-xs { padding: clamp(28px, 4vw, 48px) 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr);             gap: var(--gap); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr);             gap: var(--gap); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr);             gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--gap); }

.flex          { display: flex; }
.flex-col      { display: flex; flex-direction: column; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.inline-flex   { display: inline-flex; }
.gap-xs { gap: 8px; }
.gap-sm { gap: 14px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }
.mb-xs { margin-bottom: 8px; }
.mb-sm { margin-bottom: 14px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.w-full  { width: 100%; }
.text-center { text-align: center; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display  { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 7rem);   font-weight: 300; line-height: 1.04; letter-spacing: -.02em; }
.h-xl     { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4.5rem); }
.h-lg     { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); }
.h-md     { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
.h-sm     { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
.script   { font-family: var(--font-script); color: var(--coral); }
.label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}
.label-coral { color: var(--coral); }
.label-teal  { color: var(--teal);  }
.body-lg  { font-size: 1.08rem; line-height: 1.85; color: var(--mid); }
.body-sm  { font-size: .875rem; color: var(--mid); }
.body-xs  { font-size: .78rem;  color: var(--muted); }

/* ── Color utilities ────────────────────────── */
.bg-cream       { background: var(--cream); }
.bg-cream-light { background: var(--cream-bg); }
.bg-light       { background: var(--light); }
.bg-pink        { background: var(--pink); }
.bg-teal        { background: var(--teal); color: #fff; }
.bg-dark        { background: var(--dark); color: #fff; }
.text-coral     { color: var(--coral); }
.text-teal      { color: var(--teal); }
.text-mid       { color: var(--mid); }
.text-muted     { color: var(--muted); }
.text-white     { color: #fff; }

/* ── Dividers ───────────────────────────────── */
.divider         { width: 44px; height: 2px; background: var(--coral); margin: 18px 0; }
.divider-teal    { background: var(--teal); }
.divider-center  { margin-inline: auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: 100px;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  transition: all .35s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-coral  { background: var(--coral); color: #fff; }
.btn-coral:hover  { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(231,149,145,.4); }
.btn-teal   { background: var(--teal);  color: #fff; }
.btn-teal:hover   { background: var(--teal-dark);  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(105,155,171,.4); }
.btn-outline {
  border: 1.5px solid var(--dark); color: var(--dark);
  background: transparent;
}
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-ghost {
  padding: 0; font-size: .875rem; font-weight: 500;
  position: relative; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s var(--ease);
}
.btn-ghost:hover::after { width: 100%; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Header / Nav ───────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.header--dark .nav-logo-name,
.header--dark .nav-links > li > a,
.header--dark .nav-toggle span { color: #fff; }
.header--dark.scrolled .nav-logo-name,
.header--dark.scrolled .nav-links > li > a { color: var(--dark); }
.header--dark.scrolled .nav-toggle span   { background: var(--dark); }
.header--dark .nav-logo-sub { color: rgba(255,255,255,.55); }
.header--dark.scrolled .nav-logo-sub { color: var(--muted); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500;
  letter-spacing: .02em; color: var(--dark); transition: color .3s;
}
.nav-logo-sub {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 7px 12px;
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  color: var(--dark); border-radius: 100px; transition: color .25s, background .25s;
}
.nav-links > li > a:hover { color: var(--coral); background: rgba(231,149,145,.08); }
.nav-cta {
  background: var(--coral) !important; color: #fff !important;
  padding: 7px 18px !important; border-radius: 100px;
  transition: background .3s, transform .3s !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; transform: translateY(-1px) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
  min-width: 220px; padding: 10px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: #fff; border-top: 0;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown li a {
  display: block; padding: 9px 20px;
  font-size: .8rem; color: var(--mid);
  transition: color .2s, background .2s;
}
.dropdown li a:hover { color: var(--coral); background: var(--cream-bg); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; z-index: 110; position: relative;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--dark);
  border-radius: 2px; transition: all .35s var(--ease); transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.header--dark .nav-toggle span { background: #fff; }
.header--dark.scrolled .nav-toggle span { background: var(--dark); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(42,34,24,.45);
  z-index: 99; opacity: 0; pointer-events: none;
  transition: opacity .4s; backdrop-filter: blur(2px);
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }

/* ── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible           { opacity: 1; transform: none; }
.reveal-delay-1           { transition-delay: .1s; }
.reveal-delay-2           { transition-delay: .2s; }
.reveal-delay-3           { transition-delay: .3s; }
.reveal-delay-4           { transition-delay: .4s; }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX( 28px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }

/* ── Image Placeholders ─────────────────────── */
.img-ph {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink) 100%);
}
.img-ph--cool { background: linear-gradient(135deg, #d8eaf0 0%, var(--teal) 100%); }
.img-ph--warm { background: linear-gradient(135deg, var(--cream) 0%, var(--coral) 100%); }
.img-ph--neutral { background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%); }
.img-ph-icon { font-size: 2rem; opacity: .4; }
.img-ph-label {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(42,34,24,.4); font-weight: 600;
}
/* Grain overlay */
.img-ph::after {
  content: ''; position: absolute; 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='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04; pointer-events: none;
}

/* ── Section Intro ──────────────────────────── */
.section-header { max-width: 680px; margin-bottom: clamp(44px, 7vw, 72px); }
.section-header.centered { margin-inline: auto; text-align: center; }

/* ── Cards (generic) ────────────────────────── */
.card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px 32px; }
.card-tag {
  display: inline-block; padding: 3px 12px; border-radius: 100px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-coral { background: rgba(231,149,145,.12); color: var(--coral-dark); }
.tag-teal  { background: rgba(105,155,171,.12); color: var(--teal-dark); }
.tag-pink  { background: rgba(232,176,186,.18); color: var(--pink-dark); }

/* ── Service Cards (large full-bleed) ───────── */
.service-card {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: transform .55s var(--ease);
  text-decoration: none;
}
.service-card:hover { transform: translateY(-8px); }
.service-card-bg {
  position: absolute; inset: 0;
  transition: transform .65s var(--ease);
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-card-content {
  position: relative; z-index: 1; padding: 36px 40px;
  background: linear-gradient(to top, rgba(30,20,14,.82) 0%, rgba(30,20,14,0) 100%);
  color: #fff;
}
.service-card-content h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: #fff; margin-bottom: 10px; }
.service-card-content p  { font-size: .88rem; opacity: .82; margin-bottom: 22px; line-height: 1.6; }
.service-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.service-card:hover .service-arrow { background: #fff; border-color: #fff; }
.service-arrow svg { stroke: #fff; width: 16px; height: 16px; transition: stroke .3s; }
.service-card:hover .service-arrow svg { stroke: var(--dark); }

/* ── Stats / Numbers ────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: var(--gap); }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--coral); line-height: 1; margin-bottom: 8px; display: block;
}
.stat-number--teal { color: var(--teal); }
.stat-label { font-size: .8rem; letter-spacing: .06em; color: var(--mid); }

/* ── Testimonials ───────────────────────────── */
.testimonial-card {
  background: #fff; border-radius: 18px; padding: 36px 32px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-serif);
  font-size: 7rem; line-height: 1;
  color: var(--pink); position: absolute; top: 0; left: 20px;
  opacity: .5; pointer-events: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star  { color: #f5c440; font-size: .88rem; }
.testimonial-text {
  font-family: var(--font-serif); font-size: 1.05rem; font-style: italic;
  line-height: 1.8; color: var(--dark); padding-top: 20px; margin-bottom: 22px;
}
.testimonial-author  { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar  {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: .95rem; color: var(--mid); flex-shrink: 0;
  font-weight: 500;
}
.testimonial-name { font-weight: 600; font-size: .85rem; }
.testimonial-role { font-size: .73rem; color: var(--muted); }

/* ── Feature / Benefit List ─────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.feature-icon--coral { background: rgba(231,149,145,.12); }
.feature-icon--teal  { background: rgba(105,155,171,.12); }
.feature-icon--pink  { background: rgba(232,176,186,.18); }
.feature-text h4     { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.feature-text p      { font-size: .85rem; color: var(--mid); line-height: 1.6; }

/* ── Pricing Card ───────────────────────────── */
.price-card {
  background: #fff; border-radius: 22px; padding: 44px 40px;
  text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--coral);
}
.price-card--teal::before { background: var(--teal); }
.price-badge {
  display: inline-block; padding: 4px 16px; border-radius: 100px;
  background: var(--cream); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--mid);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.price-unit { font-size: .95rem; color: var(--muted); margin-top: 4px; }
.price-features {
  list-style: none; margin: 28px 0;
  display: flex; flex-direction: column; gap: 11px; text-align: left;
}
.price-features li {
  font-size: .88rem; color: var(--mid);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-features li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(231,149,145,.12); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.price-card--teal .price-features li::before { background: rgba(105,155,171,.12); color: var(--teal-dark); }
.price-note { font-size: .78rem; color: var(--muted); margin-top: 16px; font-style: italic; }

/* ── Timeline ───────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 6px; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--coral), var(--pink));
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--coral); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--coral);
}
.timeline-year {
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 6px;
}
.timeline-title { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 6px; }
.timeline-text  { font-size: .875rem; color: var(--mid); line-height: 1.7; }

/* ── Values Grid ────────────────────────────── */
.value-card {
  text-align: center; padding: 40px 28px; border-radius: 18px;
  background: #fff; transition: transform .4s var(--ease), box-shadow .4s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem;
}
.value-title { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 10px; }
.value-text  { font-size: .85rem; color: var(--mid); line-height: 1.65; }

/* ── Podcast Episodes ───────────────────────── */
.episode-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--cream);
}
.episode-item:last-child { border-bottom: none; }
.episode-num {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300;
  color: var(--pink); min-width: 56px; line-height: 1;
}
.episode-body { flex: 1; }
.episode-tag  { margin-bottom: 8px; }
.episode-title {
  font-family: var(--font-serif); font-size: 1.2rem;
  margin-bottom: 6px; transition: color .2s; line-height: 1.3;
}
.episode-item:hover .episode-title { color: var(--coral); }
.episode-meta { font-size: .75rem; color: var(--muted); margin-bottom: 8px; }
.episode-desc { font-size: .87rem; color: var(--mid); line-height: 1.65; }
.episode-play {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--coral); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: transform .3s var(--ease-back), background .25s;
}
.episode-play:hover { transform: scale(1.12); background: var(--coral-dark); }
.episode-play svg { stroke: #fff; width: 16px; height: 16px; }

/* ── Blog Cards ─────────────────────────────── */
.blog-card {
  border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-body { padding: 26px 28px; flex: 1; }
.blog-card-date { font-size: .72rem; color: var(--muted); margin-bottom: 8px; }
.blog-card-title {
  font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 10px;
  line-height: 1.3; transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--coral); }
.blog-card-excerpt { font-size: .85rem; color: var(--mid); line-height: 1.65; }

/* ── Quote Block ────────────────────────────── */
.quote-block { text-align: center; padding: clamp(48px, 8vw, 96px) 0; }
.quote-text {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300; font-style: italic; line-height: 1.45;
  max-width: 880px; margin: 0 auto 22px; color: var(--dark);
}
.quote-author { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ── FAQ ────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--cream); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.1rem;
  transition: color .2s; gap: 20px;
}
.faq-q:hover { color: var(--coral); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .35s;
  font-size: .9rem; color: var(--mid); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ── Contact Form ───────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ede8e4; border-radius: 10px;
  font-size: .95rem; color: var(--dark); background: var(--cream-bg);
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none; resize: vertical;
}
.form-control:focus {
  border-color: var(--coral); background: #fff;
  box-shadow: 0 0 0 3px rgba(231,149,145,.14);
}
.form-control--teal:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(105,155,171,.14); }
textarea.form-control { min-height: 140px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-input { display: none; }
.radio-label {
  padding: 8px 18px; border: 1.5px solid #ede8e4; border-radius: 100px;
  font-size: .8rem; cursor: pointer; transition: all .25s; color: var(--mid);
}
.radio-input:checked + .radio-label {
  border-color: var(--coral); background: rgba(231,149,145,.09); color: var(--coral-dark);
}

/* ── CTA Sections ───────────────────────────── */
.cta-section { padding: var(--section-pad) 0; text-align: center; }
.cta-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .3; pointer-events: none;
}

/* ── Hero (inner pages) ─────────────────────── */
.hero {
  min-height: 78vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 48px); padding-bottom: 72px;
  position: relative; overflow: hidden;
}
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: currentColor; }
.hero-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.hero-deco {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: -1;
}

/* ── SAÀ d'entrée ───────────────────────────── */
.sas {
  height: 100vh; min-height: 600px;
  display: flex; position: relative; overflow: hidden;
}
.sas-panel {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; cursor: pointer; overflow: hidden;
  transition: flex .8s var(--ease);
  text-decoration: none; color: #fff;
}
.sas:hover .sas-panel:not(:hover) { flex: .55; }
.sas:hover .sas-panel:hover       { flex: 1.45; }
.sas-panel-left  { background: linear-gradient(145deg, #ffd9b0 0%, var(--pink) 45%, var(--coral) 100%); }
.sas-panel-right { background: linear-gradient(145deg, #c4dce8 0%, var(--teal) 70%, var(--teal-dark) 100%); }
.sas-panel-grain {
  position: absolute; inset: 0; opacity: .06; pointer-events: none;
  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='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sas-content {
  position: relative; z-index: 2; text-align: center;
  padding: 40px 48px; display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  transition: transform .5s var(--ease);
}
.sas-panel:hover .sas-content { transform: translateY(-10px); }
.sas-eyebrow {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}
.sas-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0,0,0,.14);
}
.sas-sub {
  font-size: .92rem; color: rgba(255,255,255,.78);
  max-width: 280px; line-height: 1.75;
}
.sas-cta {
  margin-top: 8px; display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); transition: color .25s;
}
.sas-panel:hover .sas-cta { color: #fff; }
.sas-cta-circle {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-back);
}
.sas-panel:hover .sas-cta-circle { background: #fff; border-color: #fff; transform: scale(1.1); }
.sas-cta-circle svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.8); transition: stroke .3s; }
.sas-panel-left:hover .sas-cta-circle svg  { stroke: var(--coral); }
.sas-panel-right:hover .sas-cta-circle svg { stroke: var(--teal);  }

.sas-divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,.25); z-index: 3; pointer-events: none;
}
.sas-logo {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 36px; pointer-events: none;
}
.sas-logo-name {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500;
  color: #fff; letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.sas-logo-sub {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: 4px;
}
.sas-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.5); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.sas-hint svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.5); }
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Footer ─────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 80px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap); margin-bottom: 56px;
}
.footer-name {
  font-family: var(--font-serif); font-size: 1.35rem; color: #fff; margin-bottom: 4px;
}
.footer-tagline {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-brand p { font-size: .82rem; line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--coral); background: rgba(231,149,145,.12); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.65); }
.footer-social a:hover svg { stroke: var(--coral); }
.footer-col h4 {
  font-family: var(--font-sans); font-size: .65rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .82rem; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: .75rem;
}

/* ── Page-specific: About ───────────────────── */
.about-hero { min-height: 90vh; padding-top: var(--nav-h); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; height: 100%; }
.certif-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px; background: #fff;
  box-shadow: var(--shadow-sm); font-size: .8rem; color: var(--mid); font-weight: 500;
}
.certif-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* ── Page-specific: Hub femmes/entreprise ───── */
.hub-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── Page-specific: Contact ─────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}

/* ── Avis clients page ──────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: var(--gap); }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid #ede8e4;
  font-size: .85rem; color: var(--mid); font-weight: 500;
  transition: border-color .25s, box-shadow .25s;
}
.google-badge:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.google-g {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  flex-shrink: 0;
}

/* ── Sticky scroll line ─────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  z-index: 200; transform-origin: left;
  transform: scaleX(0); width: 100%;
  transition: transform .1s linear;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .grid-4         { grid-template-columns: repeat(2,1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .hub-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px,85vw); background: #fff;
    flex-direction: column; align-items: flex-start;
    padding: 96px 28px 40px; box-shadow: var(--shadow-lg);
    transform: translateX(110%); transition: transform .5s var(--ease);
    overflow-y: auto; gap: 2px; z-index: 100;
  }
  .nav-links.open           { transform: translateX(0); }
  .nav-links > li > a       { font-size: .95rem; padding: 10px 4px; color: var(--dark); }
  /* Annule le texte blanc du header--dark dans le panneau mobile blanc */
  .header--dark .nav-links > li > a  { color: var(--dark); }
  .header--dark .nav-links > li > a:hover { color: var(--coral); }
  /* X du menu : sombre pour rester visible sur le panneau blanc */
  .header--dark .nav-toggle.active span,
  .nav-toggle.active span { background: var(--dark); }
  .dropdown {
    position: static; transform: none !important;
    opacity: 1; pointer-events: auto;
    box-shadow: none; padding: 0 0 6px 16px; display: none; border-radius: 0;
  }
  .dropdown::before    { display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .sas             { flex-direction: column; }
  .sas-divider     { display: none; }
  .sas-logo        { display: none; }
  .sas-panel       { min-height: 50vh; }
  .sas:hover .sas-panel:not(:hover), .sas:hover .sas-panel:hover { flex: 1; }

  .hero-split      { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }

  .episode-item    { flex-direction: column; gap: 14px; }
  .episode-num     { font-size: 1.5rem; min-width: auto; }
}
@media (max-width: 480px) {
  .container       { width: calc(100% - 28px); }
  .price-card      { padding: 36px 24px; }
  .testimonial-card { padding: 26px 22px; }
  .sas-title       { font-size: clamp(2rem, 10vw, 3rem); }
  .sas-content     { padding: 28px 24px; }
}
