/*
Theme Name: No Game No Gain
Theme URI: https://nogamenogain.fr
Author: Yohann Louekal
Description: Thème La Forge, Coaching Kettlebell
Version: 1.0.0
*/

/* ─── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --amber:       #C17A26;
  --amber-light: #D9943A;
  --bg-main:     #1A1008;
  --bg-dark:     #0D0804;
  --bg-mid:      #201408;
  --text-main:   #F0EAE0;
  --text-muted:  #A89880;
  --white:       #FFFFFF;
  --font-title:  'IM Fell English', serif;
  --font-body:   'Cormorant Garamond', serif;
  --max-width:   1080px;
}

/* ─── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
p   { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ─── TYPOGRAPHIE ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 28px;
}
.section--dark  { background-color: var(--bg-dark); }
.section--mid   { background-color: var(--bg-mid); }
.section--amber { background-color: var(--amber); color: var(--white); }

.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--text-muted); }

/* ─── AMBER LINE ─────────────────────────────────────────────────────────────── */
.amber-line {
  width: 56px;
  height: 2px;
  background-color: var(--amber);
  margin: 1.5rem 0;
}
.amber-line--center { margin: 1.5rem auto; }

/* ─── SECTION LABEL ──────────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

/* ─── BOUTONS ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 17px 40px;
  background-color: var(--amber);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.05rem;
  border: 2px solid var(--amber);
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 38px;
  background-color: transparent;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--amber);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: var(--amber);
  color: var(--white);
}

.btn-white {
  display: inline-block;
  padding: 17px 40px;
  background-color: var(--white);
  color: var(--amber);
  font-family: var(--font-title);
  font-size: 1.05rem;
  border: 2px solid var(--white);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

.cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.5rem;
}

/* ─── NAV ────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(13, 8, 4, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(193, 122, 38, 0.2);
}

.site-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.site-nav__logo span { color: var(--amber); }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.site-nav__links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-nav__links a:hover { color: var(--white); }

.site-nav__cta {
  font-family: var(--font-title) !important;
  font-size: 0.95rem !important;
  color: var(--amber) !important;
  border: 1px solid var(--amber);
  padding: 8px 22px;
  transition: background 0.2s, color 0.2s !important;
}
.site-nav__cta:hover {
  background-color: var(--amber) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-main);
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(193,122,38,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(193,122,38,0.06) 0%, transparent 60%);
  padding: 80px 28px;
}

.hero--has-image {
  background-size: cover;
  background-position: 75% center;
  position: relative;
}
.hero--has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,8,0.88) 0%, rgba(13,8,4,0.55) 100%);
}
.hero--has-image .hero__inner {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero__sub {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 0;
}

/* ─── YOHANN ─────────────────────────────────────────────────────────────────── */
.yohann {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.yohann__photo {
  position: relative;
}
.yohann__photo img {
  width: 100%;
  filter: sepia(20%) contrast(1.05);
}
.yohann__photo::after {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(193,122,38,0.3);
  pointer-events: none;
}

.yohann__quote {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

/* ─── PROBLÈMES ──────────────────────────────────────────────────────────────── */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.problem-card {
  background-color: var(--bg-mid);
  padding: 40px 32px;
  border-top: 3px solid var(--amber);
  transition: background 0.25s;
}
.problem-card:hover { background-color: #261A0E; }

.problem-card__num {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(193,122,38,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.problem-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── OBSERVATION ─────────────────────────────────────────────────────────────── */
.observation {
  text-align: center;
}
.observation__quote {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  position: relative;
}
.observation__quote::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(193,122,38,0.2);
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  line-height: 1;
  font-family: var(--font-title);
}
.observation p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── LA FORGE ───────────────────────────────────────────────────────────────── */
.laforge__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 5rem;
}
.laforge__tagline {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--amber);
  margin-top: 1.5rem;
}

/* ─── PILIERS ────────────────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.pillar {
  background-color: var(--bg-dark);
  padding: 32px;
  border-left: 3px solid var(--amber);
}
.pillar__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── PROGRAMME ──────────────────────────────────────────────────────────────── */
.programme__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.programme__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(193,122,38,0.15);
}
.programme__list li::before {
  content: '◆';
  color: var(--amber);
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 0.55em;
}
.programme__list li span {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ─── POUR QUI ───────────────────────────────────────────────────────────────── */
.pourqui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 3rem;
}

.pourqui__col {
  padding: 40px 36px;
}
.pourqui__col--yes {
  background-color: var(--bg-dark);
  border-top: 3px solid var(--amber);
}
.pourqui__col--no {
  background-color: var(--bg-mid);
  border-top: 3px solid rgba(193,122,38,0.3);
}

.pourqui__col h3 {
  color: var(--white);
  margin-bottom: 1.8rem;
}

.pourqui__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pourqui__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pourqui__list--yes li::before {
  content: '✓';
  color: var(--amber);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.15em;
}
.pourqui__list--no li::before {
  content: '✗';
  color: rgba(193,122,38,0.4);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.15em;
}

/* ─── TÉMOIGNAGES VIDÉOS ─────────────────────────────────────────────────────── */
.temoignages-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.temoignages-videos--4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
}
.temoignage-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background-color: var(--bg-mid);
}
.temoignage-video__name {
  text-align: center;
  font-family: var(--font-title);
  font-style: italic;
  color: var(--amber);
  font-size: 1rem;
  margin-top: 0.8rem;
}

/* ─── CARTES CITATION ────────────────────────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.quote-card {
  background-color: var(--bg-mid);
  border-top: 2px solid var(--amber);
  padding: 36px 32px 28px;
  position: relative;
}
.quote-card__mark {
  font-family: var(--font-title);
  font-size: 5rem;
  color: rgba(193,122,38,0.25);
  line-height: 0.8;
  margin-bottom: 1rem;
}
.quote-card p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
}
.quote-card__sep {
  width: 32px;
  height: 1px;
  background-color: var(--amber);
  margin-top: 1.5rem;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
.contact-section {
  background-color: var(--bg-main);
  text-align: center;
}
.contact-section__sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-link {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(193,122,38,0.4);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.contact-link:hover {
  background-color: rgba(193,122,38,0.1);
  border-color: var(--amber);
}

/* ─── CTA FINAL ──────────────────────────────────────────────────────────────── */
.cta-final {
  text-align: center;
  padding: 96px 28px;
}
.cta-final h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.cta-final p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ─── QUIZ PAGE ──────────────────────────────────────────────────────────────── */
.quiz-intro {
  padding: 64px 28px 48px;
}
.quiz-intro__sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.quiz-embed-section {
  background-color: var(--bg-main);
  padding: 40px 28px 96px;
}
.quiz-embed-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  min-height: 1000px;
}
.quiz-embed-wrapper iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1000px;
  border: none;
  background: transparent;
  display: block;
}
.quiz-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #fff;
}
.quiz-loading.is-hidden {
  display: none;
}
.quiz-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5ddd0;
  border-top-color: #C17A26;
  border-radius: 50%;
  animation: quiz-spin 0.9s linear infinite;
}
.quiz-loading__text {
  color: #999;
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
}
@keyframes quiz-spin {
  to { transform: rotate(360deg); }
}

/* ─── ATELIER PAGES ──────────────────────────────────────────────────────────── */
.atelier-intro {
  padding: 64px 28px 48px;
}
.atelier-intro__sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.atelier-coach {
  padding: 48px 28px;
  background-color: var(--bg-mid);
}
.atelier-coach__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.atelier-coach__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--amber);
}
.atelier-coach__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}
.atelier-coach__role {
  font-size: 0.88rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.atelier-coach__quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  font-style: italic;
}
@media (max-width: 480px) {
  .atelier-coach__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .atelier-coach__photo {
    width: 140px;
    height: 140px;
  }
  .atelier-coach__name {
    font-size: 1.35rem;
  }
  .atelier-coach__role {
    font-size: 1rem;
  }
  .atelier-coach__quote {
    font-size: 1.05rem;
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--amber);
    padding-top: 1rem;
    text-align: left;
  }
}

.atelier-embed-section {
  background-color: var(--bg-main);
  padding: 40px 28px 96px;
}
.atelier-embed-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  min-height: 320px;
}
.atelier-embed-wrapper iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 320px;
  border: none;
  background: transparent;
  display: block;
}
.atelier-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.atelier-loading.is-hidden {
  display: none;
}
.atelier-video-section {
  background-color: var(--bg-main);
  padding: 48px 28px 96px;
}
.atelier-video-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
}
.atelier-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.atelier-video-cta {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── MERCI QUIZ ─────────────────────────────────────────────────────────────── */
.merci-hero { padding: 5rem 0 4rem; }
.merci-hero__sub {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1.15rem;
  opacity: 0.85;
  line-height: 1.8;
}

.merci-profils { padding: 5rem 0; background: var(--bg-mid); }
.merci-profils__intro {
  max-width: 600px;
  margin: 1.5rem auto 0;
  opacity: 0.75;
  font-size: 1rem;
}
.merci-profils__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.merci-profil-card {
  background: rgba(193,122,38,0.06);
  border: 1px solid rgba(193,122,38,0.2);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.merci-profil-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.merci-profil-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.merci-profil-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.merci-profil-card__signal {
  font-style: italic;
  color: var(--amber) !important;
  opacity: 1 !important;
  font-size: 0.9rem !important;
}

.merci-bridge { padding: 4rem 0; }
.merci-bridge__email-notice {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 2rem;
  opacity: 0.9;
}
.merci-bridge__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.merci-bridge p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.merci-bridge__note {
  font-size: 0.95rem !important;
  opacity: 0.6 !important;
}
.merci-bridge__reassurance {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.45;
  color: var(--text-muted);
}
.btn-primary--large {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

/* ─── PAGE STANDARD ─────────────────────────────────────────────────────────── */
.page-content__title {
  margin-bottom: 1rem;
}
.page-content__body {
  max-width: 720px;
  margin-top: 2.5rem;
  color: var(--text-main);
  line-height: 1.8;
}
.page-content__body h2 {
  font-family: var(--font-title);
  color: var(--amber);
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.page-content__body p,
.page-content__body li {
  font-size: 1rem;
  color: var(--text-muted);
}
.page-content__body ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.page-content__body strong {
  color: var(--text-main);
}
.page-content__body a {
  color: var(--amber);
  text-decoration: underline;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(193,122,38,0.15);
  padding: 36px 28px;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__logo {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--text-muted);
}
.site-footer__logo span { color: var(--amber); }
.site-footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.site-footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--white); }
.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(168,152,128,0.5);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .yohann,
  .laforge__intro,
  .pourqui__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problems__grid {
    grid-template-columns: 1fr;
  }

  .pillars,
  .programme__list {
    grid-template-columns: 1fr;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }
  .temoignages-videos--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .yohann__photo { order: -1; }
  .yohann__photo::after { display: none; }
}

@media (max-width: 640px) {
  :root { font-size: 17px; }

  .section { padding: 60px 20px; }

  .site-nav__links { display: none; }
  .site-nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(193,122,38,0.2);
  }

  .nav-toggle { display: flex; }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .temoignages-videos,
  .temoignages-videos--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pourqui__col { padding: 32px 24px; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; }

  .merci-profils__grid { grid-template-columns: 1fr; }
}
}
