/* ============================================================
 * Gymnass — sections.css
 * Styles spécifiques par section.
 * ============================================================ */

/* =========================================================
   NAV
========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11,11,11,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .2em;
}
.logo-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: var(--gold);
  font-weight: 800;
}
.logo small {
  display: block;
  font-size: .55rem;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}
.logo-img {
  height: 72px;
  width: auto;
  max-width: 240px;
  display: block;
}
.foot-brand .logo-img {
  height: 48px;
  margin-bottom: 8px;
}
.brand-mark-img {
  max-height: 280px;
  width: auto;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 720px) {
  .brand-mark-img { max-height: 180px; }
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: 'Archivo', sans-serif;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 12px 22px; font-size: .72rem; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* =========================================================
   HERO — vidéo plein écran + accroche éditoriale
========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 140px 0 100px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(20%) contrast(1.05) brightness(.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,11,11,.25) 0%, rgba(11,11,11,.55) 50%, rgba(11,11,11,.95) 100%),
    radial-gradient(800px 500px at 15% 20%, rgba(201,167,108,.15), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Archivo', sans-serif;
  margin-bottom: 32px;
}
.hero-kicker .line { width: 42px; height: 1px; background: var(--gold); }
.hero-inner {
  max-width: 1100px;
}
.hero-inner h1 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.1;
}
/* Sur desktop, on évite tout retour à la ligne automatique sur chaque phrase */
@media (min-width: 900px) {
  .hero-inner h1 .line { white-space: nowrap; }
}
.hero-inner h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Phrase rotative : fondu enchaîné par glissement vertical */
.rotator {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  will-change: opacity, transform;
}
.rotator.is-leaving {
  opacity: 0;
  transform: translateY(-14px);
}
.rotator.is-entering {
  opacity: 0;
  transform: translateY(14px);
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .rotator { transition: opacity .2s ease; }
  .rotator.is-leaving, .rotator.is-entering { transform: none; }
}
.hero-inner p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: var(--ink);
  opacity: .85;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245,241,234,.15);
  max-width: 680px;
}
.hero-trust .t-stat b {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 500;
  display: block;
  letter-spacing: -.02em;
}
.hero-trust .t-stat span {
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-trust .t-sep {
  width: 1px;
  height: 40px;
  background: rgba(245,241,234,.15);
}
@media (max-width: 720px) {
  .hero-trust { gap: 22px; }
  .hero-trust .t-sep { display: none; }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Archivo', sans-serif;
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .7;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 30px;
  background: var(--gold);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(.3); transform-origin: top; opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Booking "widget" au-dessus de la ligne de flottaison — comme sur votre site */
.hero-booking {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
@media (max-width: 720px) { .hero-booking { grid-template-columns: 1fr; } }

.booking-left {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
@media (max-width: 720px) { .booking-left { border-right: none; border-bottom: 1px solid var(--line); } }
.booking-brand {
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.booking-left h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 80, "SOFT" 60;
}
.booking-meta {
  display: grid;
  gap: 12px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.booking-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-meta .ico {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.badge-free {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 12px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(201,167,108,.12);
  color: var(--gold);
  border: 1px solid rgba(201,167,108,.3);
  font-weight: 600;
  font-family: 'Archivo', sans-serif;
}

.booking-right { padding: 28px; }
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.cal-head h4 {
  font-family: 'Archivo', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  font-weight: 700;
}
.cal-nav { color: var(--ink-mute); font-size: .9rem; letter-spacing: .3em; cursor: pointer; }
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.cal-days .d-label {
  text-align: center;
  font-size: .65rem;
  color: var(--ink-mute);
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  letter-spacing: .1em;
  font-weight: 500;
}
.cal-days .day {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--ink-soft);
  transition: all .2s;
  border-radius: 3px;
}
.cal-days .day.muted { color: var(--ink-mute); opacity: .35; }
.cal-days .day.avail { color: var(--ink); cursor: pointer; border: 1px solid rgba(201,167,108,.2); }
.cal-days .day.avail:hover { border-color: var(--gold); color: var(--gold); }
.cal-days .day.selected { background: var(--gold); color: var(--gold-ink); font-weight: 700; border-color: var(--gold); }

.cal-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.slot {
  padding: 10px;
  text-align: center;
  font-size: .78rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
  font-family: 'Archivo', sans-serif;
  letter-spacing: .05em;
}
.slot:hover { border-color: var(--gold); color: var(--gold); }
.slot.taken { opacity: .3; text-decoration: line-through; pointer-events: none; }

.book-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  cursor: pointer;
  transition: background .2s;
}
.book-submit:hover { background: var(--gold-soft); }

/* =========================================================
   INTRO BANDEAUX (style Gymnass)
========================================================== */
.intros {
  padding: 100px 0;
  background: var(--bg);
}
.intro-block {
  max-width: 740px;
  margin: 0 auto 64px;
  text-align: center;
}
.intro-block:last-child { margin-bottom: 0; }
.intro-block h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 60;
}
.intro-block .num {
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.intro-block p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; }

/* =========================================================
   BIG BRAND VISUAL (comme sur votre home)
========================================================== */
.brand-visual {
  position: relative;
  height: 480px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,11,11,.6) 0%, rgba(11,11,11,.85) 100%),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2000&auto=format&fit=crop') center/cover;
  display: grid;
  place-items: center;
}
.brand-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  color: rgba(245,241,234,.07);
  letter-spacing: .05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.brand-mark {
  position: relative;
  z-index: 2;
  text-align: center;
}
.brand-mark .big-mono {
  width: 130px; height: 130px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: -.04em;
  background: rgba(11,11,11,.6);
  backdrop-filter: blur(6px);
}
.brand-mark h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: .25em;
  margin-bottom: 10px;
}
.brand-mark small {
  font-size: .75rem;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
}

/* =========================================================
   STATS (frames or)
========================================================== */
.stats {
  padding: 90px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-frame {
  border: 1px solid var(--gold);
  padding: 38px 24px;
  text-align: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.stat-frame:hover { background: rgba(201,167,108,.05); transform: translateY(-4px); }
.stat-frame b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.stat-frame span {
  display: block;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
}
.stat-frame .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* =========================================================
   PILIERS / "Tout est réalisé ensemble" section
========================================================== */
.pillars {
  padding: 120px 0;
  background: var(--bg-soft);
}
.pillars-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.pillars-head h2 { margin-bottom: 20px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 860px) { .pillars-grid { grid-template-columns: 1fr; gap: 24px; } }
.pillar .p-num {
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.pillar h3 {
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-variation-settings: "opsz" 80, "SOFT" 50;
}
.pillar p { font-size: .95rem; line-height: 1.7; }
.pillars-cta { text-align: center; }

/* =========================================================
   COMMENT ÇA SE PASSE (timeline)
========================================================== */
.howit {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.howit-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.howit-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.howit-head .kicker .line { width: 36px; height: 1px; background: var(--gold); }
.howit-head h2 { margin-bottom: 18px; }
.howit-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.howit-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: .3;
}
@media (max-width: 860px) {
  .howit-timeline { grid-template-columns: 1fr; gap: 32px; }
  .howit-timeline::before { display: none; }
}
.howit-step {
  padding: 0 22px;
  position: relative;
}
.howit-num {
  width: 60px; height: 60px;
  margin-bottom: 22px;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.howit-time {
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.howit-step h3 { margin-bottom: 12px; font-size: 1.25rem; }
.howit-step p { font-size: .92rem; line-height: 1.65; }

.howit-reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--gold);
  background: rgba(201,167,108,.04);
}
@media (max-width: 720px) { .howit-reassure { grid-template-columns: 1fr; gap: 18px; } }
.howit-r-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.howit-r-item .ico {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.howit-r-item b {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.howit-r-item span {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =========================================================
   EQUIPE / COACHS
========================================================== */
.team {
  padding: 120px 0;
  background: var(--bg);
}
.team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .team-head { grid-template-columns: 1fr; gap: 16px; } }
.team-head .kicker { font-size: .7rem; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; font-family: 'Archivo'; font-weight: 600; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== Carte featured du fondateur (Nassim, plein largeur) ===== */
.coach-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.coach-feature:hover { border-color: rgba(201,167,108,.35); }
@media (max-width: 860px) {
  .coach-feature { grid-template-columns: 1fr; }
}

/* Le bouton .coach reste cliquable mais s'adapte à un format paysage compact */
.coach-feature .coach {
  aspect-ratio: auto;
  min-height: 420px;
  height: 100%;
}
@media (max-width: 860px) {
  .coach-feature .coach {
    aspect-ratio: 4/5;
    min-height: 0;
  }
}
/* Sur le featured, on masque le bandeau nom/rôle en bas de photo
   car l'info est déjà dans la colonne bio */
.coach-feature .coach .coach-meta { display: none; }

.coach-feature .feat-info {
  padding: clamp(28px, 3.6vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coach-feature .feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.coach-feature .feat-eyebrow .dash {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.coach-feature h3 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.coach-feature .feat-role {
  font-family: 'Archivo', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.coach-feature .feat-bio p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.coach-feature .feat-bio p:last-child { margin-bottom: 0; }
.coach-feature .feat-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
@media (max-width: 520px) { .coach-feature .feat-stats { grid-template-columns: 1fr; gap: 16px; } }
.coach-feature .feat-stats > * {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.coach-feature .feat-stats a:hover { color: var(--gold); transform: translateX(3px); }
.coach-feature .feat-stats a::after {
  content: "↗";
  position: absolute;
  top: 0; right: 0;
  font-family: 'Archivo', sans-serif;
  font-size: .9rem;
  color: var(--gold);
  opacity: .5;
  transition: opacity .25s, transform .25s;
}
.coach-feature .feat-stats a:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}
.coach-feature .feat-stats b {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.coach-feature .feat-stats span {
  font-family: 'Archivo', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}
.coach-feature .feat-stats a span { color: var(--gold); }
.coach-feature .feat-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  align-self: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .2s, gap .2s;
}
.coach-feature .feat-cta:hover { color: var(--gold-soft); gap: 16px; }
.coach-feature .feat-cta::before {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 9px solid var(--gold);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.coach {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #181614;
  cursor: pointer;
  /* reset bouton */
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  display: block;
  width: 100%;
}
.coach::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--coach-photo, none);
  background-size: cover;
  background-position: center top;
  filter: grayscale(50%) contrast(1.05);
  transition: filter .5s var(--ease), transform .5s var(--ease);
}
.coach:hover::before { filter: grayscale(0%); transform: scale(1.04); }

/* Play overlay (vidéo de présentation) */
.coach .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  z-index: 3;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(11,11,11,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,167,108,.6);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s;
  pointer-events: none;
}
.coach .play-overlay::before {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--gold);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.coach:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.coach .play-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(11,11,11,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,167,108,.4);
  color: var(--gold);
  font-family: 'Archivo', sans-serif;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.coach:hover .play-label { opacity: 1; transform: translateY(0); }
.coach::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,11,.95) 100%);
}
.coach-meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}
.coach-meta b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 80, "SOFT" 60;
}
.coach-meta span {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'Archivo';
  font-weight: 500;
}

.coach.c1::before { background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?q=80&w=800&auto=format&fit=crop'); }
.coach.c2::before { background-image: url('https://images.unsplash.com/photo-1567013127542-490d757e51fc?q=80&w=800&auto=format&fit=crop'); }
.coach.c3::before { background-image: url('https://images.unsplash.com/photo-1594381898411-846e7d193883?q=80&w=800&auto=format&fit=crop'); }
.coach.c4::before { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?q=80&w=800&auto=format&fit=crop'); }
.coach.c5::before { background-image: url('https://images.unsplash.com/photo-1617627143750-d86bc21e42bb?q=80&w=800&auto=format&fit=crop'); }

/* =========================================================
   "PLUS D'EXCUSES" section (inversée)
========================================================== */
.excuses {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(201,167,108,.06) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.excuses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) { .excuses-grid { grid-template-columns: 1fr; gap: 40px; } }
.excuses .kicker {
  font-family: 'Archivo';
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.excuses-left ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  font-family: 'Archivo';
}
.excuses-left li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding-left: 36px;
}
.excuses-left li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.excuses-right h2 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.excuses-right p { margin-bottom: 32px; font-size: 1.05rem; }

/* =========================================================
   TRANSFORMATIONS (before / after)
========================================================== */
.transfo {
  padding: 120px 0;
  background: var(--bg-soft);
}
.transfo-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.transfo-head .kicker {
  font-family: 'Archivo';
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.transfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .transfo-grid { grid-template-columns: 1fr; } }

.ba {
  position: relative;
  aspect-ratio: 3/4;
  background: #181614;
  overflow: hidden;
  cursor: ew-resize;
}
.ba .after, .ba .before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba .after { z-index: 1; }
.ba .before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: var(--gold);
  z-index: 3;
  pointer-events: none;
}
.ba .slider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--gold-ink);
  font-weight: 900;
  font-size: 1rem;
  pointer-events: none;
}
.ba .label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-family: 'Archivo';
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  pointer-events: none;
}
.ba .label span {
  padding: 6px 10px;
  background: rgba(11,11,11,.7);
  backdrop-filter: blur(4px);
}

/* Placeholders - réel : remplacer par vos fichiers webp */
.ba.b1 .before { background-image: url('https://images.unsplash.com/photo-1598971639058-fab3c3109a00?q=80&w=800&auto=format&fit=crop'); }
.ba.b1 .after  { background-image: url('https://images.unsplash.com/photo-1532029837206-abbe2b7620e3?q=80&w=800&auto=format&fit=crop'); }
.ba.b2 .before { background-image: url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?q=80&w=800&auto=format&fit=crop'); }
.ba.b2 .after  { background-image: url('https://images.unsplash.com/photo-1583500178690-f7fd39e6e303?q=80&w=800&auto=format&fit=crop'); }
.ba.b3 .before { background-image: url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?q=80&w=800&auto=format&fit=crop'); }
.ba.b3 .after  { background-image: url('https://images.unsplash.com/photo-1581009137042-c552e485697a?q=80&w=800&auto=format&fit=crop'); }

/* =========================================================
   TÉMOIGNAGES — carrousel infini
========================================================== */
.testis-sec {
  padding: 120px 0 140px;
  background: var(--bg);
  overflow: hidden;
}
.testis-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testis-head-row .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  font-family: 'Archivo';
  font-size: .85rem;
}
.testis-head-row .google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.testis-head-row .google-badge b { font-size: 1rem; letter-spacing: .08em; }
.testis-head-row .google-badge span { color: var(--ink-mute); font-size: .75rem; letter-spacing: .1em; }

.marquee {
  position: relative;
  overflow: hidden;
  /* fade on both sides */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 90s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.testi {
  flex: 0 0 400px;
  max-width: 400px;
  min-width: 400px;
  height: 480px;
  padding: 30px 30px 24px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.testi:hover { border-color: rgba(201,167,108,.4); transform: translateY(-2px); }
@media (max-width: 520px) { .testi { flex: 0 0 320px; height: 460px; padding: 24px 22px; } }

.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.testi-head .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.testi-head .gico {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: .75rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
}
.testi-head .gico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.testi-body {
  flex: 1;
  overflow: hidden;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.65;
  font-weight: 300;
  /* fade-out élégant en bas si l'avis est très long, mais texte intégral dans le DOM */
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
}
.testi-body p { color: inherit; font-size: inherit; line-height: inherit; }
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.testi-footer b {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.testi-footer span {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: .68rem;
  color: var(--ink-mute);
  letter-spacing: .12em;
  margin-top: 3px;
  text-transform: uppercase;
}

/* =========================================================
   BULLETS "Ce qui rend votre salle unique"
========================================================== */
.unique {
  padding: 120px 0;
  background: var(--bg-soft);
}
.unique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) { .unique-grid { grid-template-columns: 1fr; gap: 40px; } }
.unique-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}
.unique-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.unique-list .check {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: 2px;
}
.unique-visual {
  aspect-ratio: 4/5;
  background-image:
    linear-gradient(180deg, rgba(11,11,11,.2) 0%, rgba(11,11,11,.8) 100%),
    url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}
.unique-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

/* =========================================================
   FAQ
========================================================== */
.faq-sec {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-side .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.faq-side .kicker .line { width: 36px; height: 1px; background: var(--gold); }
.faq-side h2 { margin-bottom: 24px; }
.faq-side p { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(201,167,108,.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.015em;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 660px;
}

/* =========================================================
   FINAL CTA
========================================================== */
.final {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(201,167,108,.15), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
}
.final .kicker {
  font-family: 'Archivo';
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.final h2 { margin-bottom: 22px; max-width: 720px; margin-inline: auto; }
.final p { max-width: 540px; margin: 0 auto 40px; font-size: 1.05rem; color: var(--ink-soft); }

/* =========================================================
   FOOTER
========================================================== */
footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
  background: #080808;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h5 {
  font-family: 'Archivo';
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-grid a, .foot-grid p { color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }
.foot-grid a:hover { color: var(--gold); }
.foot-brand p { max-width: 320px; margin-top: 14px; font-size: .88rem; }
.foot-brand .logo { margin-bottom: 4px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  color: var(--ink-mute);
  letter-spacing: .1em;
  flex-wrap: wrap;
  gap: 14px;
  text-transform: uppercase;
  font-family: 'Archivo';
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all .2s;
  color: var(--ink-soft);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials a svg { display: block; }


/* =========================================================
   PAGES SECONDAIRES (page.php, single.php, 404.php)
========================================================== */

.site-main.page-template,
.site-main.single-template,
.site-main.error-404 {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.page-container {
  max-width: 760px;
}

.page-header,
.entry-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.page-title,
.entry-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.entry-meta {
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.entry-meta > span + span::before {
  content: " · ";
  margin: 0 6px;
  opacity: .6;
}

.page-thumbnail,
.entry-thumbnail {
  margin: 0 0 40px;
}
.page-thumbnail img,
.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content,
.entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.page-content p,
.entry-content p { margin: 0 0 1.4em; }
.page-content h2,
.entry-content h2 {
  font-size: 1.7rem;
  margin: 2em 0 .8em;
  color: var(--ink);
}
.page-content h3,
.entry-content h3 {
  font-size: 1.3rem;
  margin: 1.6em 0 .6em;
  color: var(--ink);
}
.page-content a,
.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s var(--ease);
}
.page-content a:hover,
.entry-content a:hover { color: var(--gold-soft); }
.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.page-content li,
.entry-content li { margin-bottom: .4em; }
.page-content blockquote,
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--ink);
}
.page-content code,
.entry-content code {
  background: var(--bg-elev);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: .9em;
}

.entry-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.entry-nav a { color: var(--ink-soft); transition: color .25s var(--ease); }
.entry-nav a:hover { color: var(--gold); }
.entry-nav .next { margin-left: auto; }

/* 404 ------------------------------------------------------ */
.error-404 .error-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 0;
}
.error-404 .kicker {
  font-family: 'Archivo', sans-serif;
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.error-404 h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.error-404 p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--ink-soft);
}
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
