/* ==========================================================================
   BOXE LIBÉRATRICE THÉRAPEUTIQUE — v2
   Direction : minimalisme éditorial. Fond blanc, encre quasi-noire,
   UNE touche rouge punchy, boutons glassmorphism noir & blanc, beaucoup d'air.
   Display = Fraunces · Corps = Hanken Grotesk.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f2;
  --bg-tint: #faf9f7;

  --ink: #0c0c0d;
  --ink-2: #2a2a2d;
  --muted: #6a6a70;
  --faint: #9a9aa0;

  --line: rgba(12, 12, 13, 0.1);
  --line-soft: rgba(12, 12, 13, 0.06);

  --red: #e4002b;
  --red-2: #ff2b50;
  --red-soft: rgba(228, 0, 43, 0.08);

  --glass-dark: rgba(12, 12, 13, 0.92);
  --glass-light: rgba(255, 255, 255, 0.6);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1140px;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
em {
  font-style: italic;
  color: var(--red);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(22px, 5vw, 56px);
}
.skip-link {
  position: absolute;
  left: -999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0;
}
::selection {
  background: var(--red);
  color: #fff;
}

/* --------------------------- Reveal anim -------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-root].is-visible [data-reveal] {
  transition-delay: calc(var(--i, 0) * 75ms);
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------- Buttons (glass) -------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.1;
  border: 1px solid transparent;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn .ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
/* Bouton noir (glass dark) */
.btn-primary {
  background: var(--glass-dark);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px -14px rgba(12, 12, 13, 0.6);
}
.btn-primary:hover {
  background: #000;
  box-shadow: 0 20px 46px -16px rgba(12, 12, 13, 0.7);
}
.btn-primary .ico {
  color: var(--red-2);
}
/* Bouton blanc (glass light) */
.btn-ghost {
  background: var(--glass-light);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(12, 12, 13, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(12, 12, 13, 0.2);
}
.btn-lg {
  padding: 1.05em 1.8em;
  font-size: 1.05rem;
}
.btn-xl {
  padding: 1.2em 2.1em;
  font-size: 1.12rem;
}
.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.btn span small {
  display: block;
  font-weight: 500;
  font-size: 0.76em;
  opacity: 0.7;
}
.ico {
  width: 22px;
  height: 22px;
}
.ico-sm {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}

/* ----------------------------- Header (glass) -------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.82);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-text small {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.main-nav {
  display: flex;
  gap: 1.7rem;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover {
  color: var(--ink);
}
.main-nav a:hover::after {
  width: 100%;
}
.header-call {
  background: var(--glass-light);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.5em 1.1em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  backdrop-filter: blur(12px);
  transition: 0.3s var(--ease);
}
.header-call .ico {
  color: var(--red);
}
.header-call:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.header-call:hover .ico {
  color: var(--red-2);
}
.call-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.call-label small {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
}
.call-label strong {
  font-size: 1rem;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 clamp(22px, 5vw, 56px) 1.4rem;
}
.mobile-nav a:not(.btn) {
  padding: 0.85rem 0.3rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.05rem;
  font-weight: 500;
}
.mobile-nav .btn {
  margin-top: 0.9rem;
}

/* ------------------------------- Hero ----------------------------------- */
.hero {
  position: relative;
  padding: clamp(5rem, 15vh, 9rem) 0 clamp(4rem, 9vh, 7rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-glow-ember {
  width: 50vw;
  height: 50vw;
  max-width: 620px;
  max-height: 620px;
  top: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.1), transparent 70%);
}
.hero-glow-sage {
  display: none;
}
.hero-grain {
  display: none;
}
.hero-inner {
  position: relative;
  max-width: 940px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.6rem;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--red-soft);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(228, 0, 43, 0);
  }
}
.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 600px;
  margin: 1.8rem 0 2.4rem;
  line-height: 1.55;
}
.hero-lead strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-cta .btn-primary span {
  text-align: left;
}
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0;
  margin: 2.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-points .ico-sm {
  color: var(--red);
}
.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--red);
  animation: scrolly 1.8s ease-in-out infinite;
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(13px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* --------------------------- Trust strip -------------------------------- */
.trust-strip {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-tint);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
}
.trust-rating strong {
  margin: 0 0.2rem 0 0.4rem;
}
.star {
  color: var(--red);
}
.trust-sep {
  color: var(--faint);
}

/* ----------------------------- Sections --------------------------------- */
.section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--ink);
}
.section-intro {
  margin-top: 1.3rem;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ---------------------------- Approche ---------------------------------- */
.section-approach {
  background: var(--bg);
}
.approach-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
}
.approach-card {
  position: relative;
  padding: 2.6rem 2rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  left: 2rem;
  width: 26px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(12, 12, 13, 0.3);
  border-color: var(--line);
}
.approach-card:hover::before {
  transform: scaleX(1);
}
.approach-n {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  display: block;
  margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
}
.approach-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}
.approach-card p {
  color: var(--muted);
  margin: 0;
}

/* ------------------------------ Coach ----------------------------------- */
.section-coach {
  background: var(--bg-tint);
}
.coach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(12, 12, 13, 0.35);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--faint);
  background: var(--bg-soft);
}
.portrait-placeholder span {
  font-size: 3rem;
}
.portrait-empty img {
  display: none;
}
.portrait-empty .portrait-placeholder {
  display: flex;
}
.portrait-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  line-height: 1.05;
}
.portrait-badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
}
.portrait-badge small {
  color: var(--muted);
  font-size: 0.76rem;
}
.coach-body p {
  color: var(--muted);
}
.coach-body .section-title {
  margin: 0.4rem 0 1.4rem;
}
.coach-creds {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2rem;
  display: grid;
  gap: 0.8rem;
}
.coach-creds li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-2);
}
.coach-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ----------------------------- Services --------------------------------- */
.section-services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.service-card {
  position: relative;
  padding: 2.2rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(12, 12, 13, 0.28);
  border-color: rgba(228, 0, 43, 0.3);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  margin-bottom: 1.4rem;
  transition: background 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--red);
}
.service-tag {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}
.service-sub {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.9rem;
}
.service-text {
  color: var(--muted);
  margin: 0 0 1.4rem;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
}
.service-link:hover {
  color: var(--red);
}
.service-link .ico-sm {
  transition: transform 0.3s;
}
.service-link:hover .ico-sm {
  transform: translateX(4px);
}

/* ------------------------------ Stats ----------------------------------- */
.section-stats {
  padding: clamp(3.5rem, 8vh, 6rem) 0;
  background: var(--ink);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat {
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  display: block;
  line-height: 1;
  color: #fff;
}
.stat-value::after {
  content: ".";
  color: var(--red);
}
.stat-label {
  font-size: 0.92rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* --------------------------- Témoignages -------------------------------- */
.section-testimonials {
  background: var(--bg-tint);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testimonial {
  margin: 0;
  padding: 2.1rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -36px rgba(12, 12, 13, 0.28);
}
.testimonial-quote {
  width: 34px;
  height: 34px;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.testimonial blockquote {
  margin: 0 0 1.4rem;
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}
.testimonial figcaption strong {
  color: var(--ink);
}
.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
}
.testimonials-cta {
  text-align: center;
  margin-top: 2.6rem;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.link-underline:hover {
  color: var(--red);
}

/* ----------------------------- Guides ----------------------------------- */
.section-guides {
  background: var(--bg);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -36px rgba(12, 12, 13, 0.26);
}
.guide-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.guide-card h2,
.guide-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.guide-card p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  flex: 1;
}
.guide-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink);
}
.guide-card:hover .guide-more {
  color: var(--red);
}
.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.blog-filter {
  padding: 0.4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
}
.blog-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ------------------------------- FAQ ------------------------------------ */
.section-faq {
  background: var(--bg-tint);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-head {
  position: sticky;
  top: 110px;
}
.faq-head .btn {
  margin-top: 1.6rem;
}
.faq-head p {
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 0.8rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] {
  border-color: rgba(228, 0, 43, 0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--red);
  transition: transform 0.3s var(--ease);
}
.faq-plus::before {
  inset: 7px 0;
  height: 2px;
}
.faq-plus::after {
  inset: 0 7px;
  width: 2px;
}
.faq-item[open] .faq-plus::after {
  transform: scaleY(0);
}
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
}
.faq-answer p {
  margin: 0;
}

/* ----------------------------- Contact ---------------------------------- */
.section-contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg .hero-glow-ember {
  display: block;
  top: -30%;
  right: 50%;
  transform: translateX(50%);
  width: 60vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.22), transparent 70%);
}
.contact-bg .hero-grain {
  display: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.contact-inner .eyebrow {
  color: #fff;
}
.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
}
.contact-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.14rem;
  margin: 1.4rem auto 2.4rem;
  max-width: 560px;
}
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.contact-cta .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
}
.contact-cta .btn-primary .ico {
  color: var(--red);
}
.contact-cta .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.contact-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.contact-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info .star {
  color: var(--red-2);
}
.contact-addr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact-addr:hover {
  border-color: var(--red-2);
}

/* ---------------------------- Call bar (mobile) ------------------------- */
.call-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: var(--glass-dark);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 18px 44px -14px rgba(12, 12, 13, 0.5);
  transform: translateY(150%);
  transition: transform 0.4s var(--ease);
}
.call-bar.show {
  transform: translateY(0);
}
.call-bar .ico {
  flex: none;
  color: var(--red-2);
}
.call-bar span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
}
.call-bar strong {
  font-size: 1rem;
}
.call-bar small {
  font-size: 0.76rem;
  opacity: 0.8;
}
.call-bar-cta {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}

/* ------------------------------ Footer ---------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(3.5rem, 8vh, 6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.7rem;
}
.footer-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.6rem;
}
.footer-coach {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.4rem;
}
.footer-coach strong {
  color: #fff;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.1rem;
}
.footer-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.6rem;
  justify-content: space-between;
}
.footer-line .ico-sm {
  color: var(--red-2);
}
.footer-days {
  color: rgba(255, 255, 255, 0.85);
}
.footer-areas {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.9;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer-link:hover {
  color: var(--red-2);
}
.footer-muted {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}

/* ---------------------- Pages internes / article ------------------------ */
.page-hero {
  padding: clamp(3rem, 8vh, 5.5rem) 0 1rem;
}
.page-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-top: 0.7rem;
  color: var(--ink);
}
.page-lead {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 640px;
  margin-top: 1.2rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--faint);
}
.breadcrumb a:hover {
  color: var(--red);
}
.empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted);
  display: grid;
  gap: 1.4rem;
  place-items: center;
}

.article-hero {
  padding: clamp(2.5rem, 7vh, 4.5rem) 0 0;
  background: var(--bg-tint);
}
.article-hero-inner {
  max-width: 820px;
}
.article-cat {
  display: inline-block;
  margin: 1.2rem 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.article-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 22ch;
  color: var(--ink);
}
.article-meta {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 0.94rem;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  padding-top: 3rem;
  align-items: start;
}
.prose {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--ink-2);
  max-width: 72ch;
}
.prose h2 {
  font-size: 1.7rem;
  margin: 2.4rem 0 1rem;
  color: var(--ink);
}
.prose h3 {
  font-size: 1.32rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--ink);
}
.prose p {
  margin: 0 0 1.3rem;
}
.prose a {
  color: var(--red);
  border-bottom: 1px solid rgba(228, 0, 43, 0.35);
}
.prose ul,
.prose ol {
  margin: 0 0 1.4rem;
  padding-left: 1.3rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose blockquote {
  margin: 1.8rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--red);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-style: italic;
}
.prose strong {
  color: var(--ink);
}
.prose img {
  border-radius: 12px;
  margin: 1.5rem 0;
}
.article-aside {
  position: sticky;
  top: 110px;
}
.aside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-tint);
  padding: 1.6rem;
}
.aside-eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.aside-text {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 0.94rem;
}
.aside-note {
  margin: 1rem 0 0;
  font-size: 0.84rem;
  color: var(--faint);
}
.article-faq,
.article-related {
  max-width: 820px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.article-faq h2,
.article-related h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.article-related {
  margin-bottom: 1rem;
}

.section-blog-cta {
  padding: clamp(3.5rem, 8vh, 6rem) 0;
  background: var(--ink);
  color: #fff;
}
.blog-cta-inner {
  text-align: center;
  display: grid;
  gap: 1.6rem;
  place-items: center;
}
.blog-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
}
.blog-cta-inner .btn-primary {
  background: #fff;
  color: var(--ink);
}
.blog-cta-inner .btn-primary .ico {
  color: var(--red);
}
.section-404 {
  padding: clamp(5rem, 14vh, 9rem) 0;
}
.section-404 .section-title {
  color: var(--ink);
}

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 940px) {
  .coach-grid,
  .faq-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .faq-head,
  .article-aside {
    position: static;
  }
  .approach-steps,
  .services-grid,
  .testimonials-grid,
  .guides-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 1rem;
  }
  .stat + .stat::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-aside {
    order: -1;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
    padding-bottom: 84px;
  }
  .main-nav,
  .header-call .call-label {
    display: none;
  }
  .header-call {
    padding: 0.6em;
    margin-left: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.nav-open .mobile-nav {
    display: flex;
  }
  .approach-steps,
  .services-grid,
  .testimonials-grid,
  .guides-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .call-bar {
    display: flex;
  }
  .hero-scroll {
    display: none;
  }
}
