/* ==========================================================================
   LES #GUEUX — Reproduction de l'intégration
   Système de design + composants réutilisables
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens de design
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --cream:        #fcfaf6;   /* fond principal clair */
  --ink:          #060911;   /* fond sombre / texte noir */
  --foreground:   #05070f;   /* texte principal */
  --ink-fg:       #fcfcfc;   /* texte sur fond sombre */
  --red:          #e60016;   /* accent principal */
  --red-dark:     #c00013;
  --muted:        #edebe7;   /* surface légèrement teintée */
  --muted-fg:     #494d58;   /* texte secondaire */
  --border:       rgba(6, 9, 17, .12);
  --border-light: rgba(255, 255, 255, .12);

  /* Typographie */
  --font-display: "Anton", "Bebas Neue", Impact, system-ui, sans-serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  /* Rythme */
  --container:    1200px;
  --gutter:       clamp(1.25rem, 4vw, 2rem);
  --section-pad:  clamp(4rem, 9vw, 7rem);
  --radius:       16px;

  /* Ombre néo-brutaliste */
  --shadow-hard:  6px 6px 0 var(--ink);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }

/* --------------------------------------------------------------------------
   3. Utilitaires de mise en page
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section        { padding-block: var(--section-pad); }
.section--ink   { background: var(--ink); color: var(--ink-fg); }
.section--muted { background: var(--muted); }

/* Rayures diagonales sur fonds sombres */
.section--ink.is-striped {
  position: relative;
  overflow: hidden;
}
.section--ink.is-striped::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(230, 0, 22, .07) 0 2px,
    transparent 2px 16px
  );
  pointer-events: none;
}
.section--ink.is-striped > * { position: relative; z-index: 1; }

.grid   { display: grid; gap: 1.5rem; }
.flow > * + * { margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   4. Typographie — composants
   -------------------------------------------------------------------------- */

/* Sur-titre rouge */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

/* Titre display (deux teintes possibles via .title__accent) */
.title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.01em;
  margin: 0;
}
.title span { display: block; }
.title__accent { color: var(--red); }

.title--hero { font-size: clamp(3rem, 9vw, 7.5rem); letter-spacing: -.02em; }
.title--xl   { font-size: clamp(2.25rem, 6vw, 4rem); }
.title--lg   { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.title--md   { font-size: clamp(1.5rem, 3vw, 2.2rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted-fg);
  max-width: 42ch;
}
.section--ink .lead { color: rgba(252, 252, 252, .8); }

.lead strong { color: var(--foreground); font-weight: 700; }
.section--ink .lead strong { color: var(--ink-fg); }

/* --------------------------------------------------------------------------
   5. Boutons
   -------------------------------------------------------------------------- */
.btn {
  --btn-shadow: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  border: 2px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 5px 5px 0 var(--btn-shadow);
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--btn-shadow); }
.btn:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--btn-shadow); }

.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--red); color: #fff; border-color: var(--ink); }
.btn--dark    { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost   { background: transparent; color: var(--foreground); box-shadow: none; }
.btn--ghost:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }

/* Variante fond sombre */
.section--ink .btn--ghost { color: var(--ink-fg); border-color: rgba(252,252,252,.35); }
.section--ink .btn        { --btn-shadow: rgba(0,0,0,.6); }

/* Lien fléché discret */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.link-arrow svg { width: 1em; height: 1em; }
.link-arrow:hover { gap: .75rem; transition: gap .12s ease; }

/* --------------------------------------------------------------------------
   6. En-tête / navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand__logo {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); object-fit: cover;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .01em;
}
.brand__name b { color: var(--red); font-weight: 400; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav > .btn { display: none; } /* bouton Rejoindre réservé au menu mobile */
.nav a {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: color .12s ease;
}
.nav a:hover { color: var(--red); }

.header .btn { padding: .7rem 1.2rem; font-size: .9rem; box-shadow: 3px 3px 0 var(--ink); }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   7. Cartes réutilisables
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

/* Media (portrait / image) avec ombre dure */
.media {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.figure { display: flex; flex-direction: column; gap: .8rem; }
.figure figcaption {
  font-weight: 600; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-fg);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__content { max-width: 640px; }
.hero__title { margin-block: 1.5rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

/* Badge pilule */
.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--red) 6%, #fff);
  font-weight: 700; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
}
.badge::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--red);
}

/* Logo rond lumineux */
.hero__logo { display: grid; place-items: center; }
.hero__logo-disc {
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 10px 14px 0 rgba(6,9,17,.9), 0 0 90px 20px rgba(230,0,22,.25);
  overflow: hidden;
}
.hero__logo-disc img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* --------------------------------------------------------------------------
   9. Bandeau statistique
   -------------------------------------------------------------------------- */
.stat {
  text-align: center;
  border-block: 1px solid var(--border-light);
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 1;
  color: var(--red);
  letter-spacing: -.01em;
}
.stat__label {
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(252,252,252,.75);
  font-size: clamp(.8rem, 1.6vw, 1.1rem);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   10. Blocs à deux colonnes (texte + media)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--text-first { grid-template-columns: 1fr 1fr; }
.block-head .eyebrow { margin-bottom: 1rem; }
.block-head .title   { margin-bottom: 1.5rem; }

/* Image pleine largeur avec légende */
.wide-figure { margin-top: 3rem; }
.wide-figure .media { aspect-ratio: 21 / 8; }
.wide-figure figcaption {
  margin-top: 1rem; font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted-fg);
}

/* --------------------------------------------------------------------------
   11. Section image plein cadre (mouvement)
   -------------------------------------------------------------------------- */
.showcase {
  position: relative;
  min-height: min(80vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--ink-fg);
  overflow: hidden;
}
.showcase__bg { position: absolute; inset: 0; }
.showcase__bg img { width: 100%; height: 100%; object-fit: cover; }
.showcase__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,9,17,.85) 0%, rgba(6,9,17,.45) 45%, rgba(6,9,17,.25) 100%);
}
.showcase__content { position: relative; padding-block: clamp(3rem, 8vw, 6rem); max-width: 720px; }
.showcase__content .lead { color: rgba(252,252,252,.9); }

/* --------------------------------------------------------------------------
   12. Manifeste — citation + équipe
   -------------------------------------------------------------------------- */
.quote {
  border-left: 4px solid var(--red);
  padding-left: 1.75rem;
}
.quote__text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}
.quote__author { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; }
.quote__role   { color: var(--muted-fg); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

.divider { border: 0; border-top: 1px solid var(--border); margin-block: clamp(2.5rem, 6vw, 4.5rem); }

/* --------------------------------------------------------------------------
   13. Référendum — mockup téléphone / sondage
   -------------------------------------------------------------------------- */
.referendum__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .01em;
  margin: 2rem 0;
}

.phone {
  justify-self: center;
  width: min(380px, 100%);
  background: #fff;
  color: var(--foreground);
  border-radius: 40px;
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: var(--ink); border-radius: 999px;
}
.poll__head { display: flex; align-items: center; gap: .6rem; margin: 1.5rem 0 1.25rem; }
.poll__head img { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); }
.poll__head span { font-family: var(--font-display); text-transform: uppercase; font-size: .95rem; }
.poll__head b { color: var(--red); font-weight: 400; }
.poll__status { color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.poll__question { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; margin: .3rem 0 1.5rem; }

.option { margin-bottom: 1rem; }
.option__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem;
}
.option--lead .option__row { border-color: var(--ink); }
.option--lead .option__pct { color: var(--red); }
.option__bar { height: 8px; border-radius: 999px; background: var(--muted); margin-top: .5rem; overflow: hidden; }
.option__bar i { display: block; height: 100%; border-radius: 999px; background: var(--red); }
.option--minor .option__bar i { background: #9aa0ab; }

.poll__meta { color: var(--muted-fg); font-size: .8rem; margin: 1.5rem 0 1rem; }
.phone .btn--primary { width: 100%; justify-content: center; box-shadow: none; border: none; }

/* --------------------------------------------------------------------------
   14. Nos combats — bannière + cartes
   -------------------------------------------------------------------------- */
.banner {
  position: relative;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,9,17,.92) 0%, rgba(6,9,17,.55) 35%, rgba(6,9,17,.15) 70%); }
.banner__title { position: relative; padding: clamp(1.5rem, 4vw, 3rem); }

.combats__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: 3.5rem 0 2rem;
  flex-wrap: wrap;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }

.combat-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 260px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.combat-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.combat-card__cat { color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.combat-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: 2rem; }
.combat-card p { color: var(--muted-fg); margin: 0; flex: 1; }

/* --------------------------------------------------------------------------
   15. Ce que nous faisons — grille sombre
   -------------------------------------------------------------------------- */
.cards-4 { grid-template-columns: repeat(4, 1fr); margin-top: 3rem; }

.feature {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  min-height: 240px;
}
.feature__icon { color: var(--red); margin-bottom: 2.5rem; }
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; line-height: 1.1; margin: 0 0 .75rem; }
.feature p  { color: rgba(252,252,252,.65); margin: 0; font-size: .95rem; }

/* --------------------------------------------------------------------------
   16. Revue de presse
   -------------------------------------------------------------------------- */
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.press-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}
.press-card__img { border-radius: 10px; overflow: hidden; align-self: stretch; }
.press-card__img img { width: 100%; height: 100%; object-fit: cover; }
.press-card__source { display: inline-flex; align-items: center; gap: .5rem; color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.press-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; line-height: 1.05; margin: .75rem 0; }
.press-card p { color: var(--muted-fg); margin: 0 0 1rem; font-size: .95rem; }
.press-card__meta { font-weight: 600; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-fg); }

/* --------------------------------------------------------------------------
   17. Pourquoi rejoindre — liste numérotée
   -------------------------------------------------------------------------- */
.reasons { display: grid; gap: 0; }
.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}
.reason:last-child { border-bottom: 1px solid var(--border); }
.reason__num { font-family: var(--font-display); color: var(--red); font-size: 1.6rem; }

/* --------------------------------------------------------------------------
   18. Adhésion — paliers de dons
   -------------------------------------------------------------------------- */
.membership { text-align: center; }
.membership .lead { margin-inline: auto; max-width: 48ch; }
.tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 3rem 0;
}
.tier {
  width: 150px;
  padding: 1.75rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
  background: #fff;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.tier:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.tier__price { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.tier__label { margin-top: .5rem; font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); }
.tier--featured { background: var(--red); color: #fff; }
.tier--featured .tier__label { color: rgba(255,255,255,.85); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.hazard {
  height: 12px;
  background: repeating-linear-gradient(45deg, var(--red) 0 22px, var(--ink) 22px 44px);
}
.footer { background: var(--ink); color: var(--ink-fg); }
.footer__cta { text-align: center; padding-block: clamp(4rem, 9vw, 7rem); }
.footer__cta .title { margin: 1.25rem 0 2.5rem; }
.footer__cta .lead { margin-inline: auto; }

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 2rem;
  padding-block: 3.5rem;
  border-top: 1px solid var(--border-light);
}
.footer__brand .brand__name { color: #fff; }
.footer__tag { color: rgba(252,252,252,.6); margin-top: .75rem; font-size: .95rem; }
.footer__contact { margin-top: 1.25rem; }
.footer__contact svg { width: 1.05rem; height: 1.05rem; }
.footer__col a { display: block; padding: .35rem 0; color: rgba(252,252,252,.8); font-weight: 500; }
.footer__col a:hover { color: var(--red); }
.footer__col a.is-red { color: var(--red); font-weight: 700; }
.footer__social { display: flex; gap: .75rem; justify-content: flex-end; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-light);
  display: grid; place-items: center; color: #fff;
  transition: background .12s ease, border-color .12s ease;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__social svg { width: 18px; height: 18px; }
.footer__legal {
  padding-block: 1.5rem 3rem;
  color: rgba(252,252,252,.45);
  font-size: .85rem;
  border-top: 1px solid var(--border-light);
}
.footer__logout { color: rgba(252,252,252,.7); font-weight: 500; text-decoration: underline; }
.footer__logout:hover { color: var(--red); }

/* --------------------------------------------------------------------------
   20. Pages internes — en-tête de page & utilitaires
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.nav a.is-active { color: var(--red); }

.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero .title { margin-bottom: 1.5rem; }
.page-hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.page-hero.text-center .lead { margin-inline: auto; }

/* Encadré note (rouge translucide) */
.note-box {
  border: 2px solid var(--red);
  background: color-mix(in srgb, var(--red) 6%, #fff);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  max-width: 720px;
}
.note-box strong { font-weight: 700; }
.note-box .link-arrow { margin-top: 1rem; }
.text-center .note-box { margin-inline: auto; text-align: left; }

/* --------------------------------------------------------------------------
   21. Accordéon (combats, FAQ)
   -------------------------------------------------------------------------- */
.accordion__item {
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .15s ease;
}
.accordion__item.is-open { border-color: var(--ink); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-sans); font-size: 1.2rem; font-weight: 600;
  color: var(--foreground);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.accordion__trigger .chev { flex: none; transition: transform .25s ease; }
.accordion__item.is-open .chev { transform: rotate(180deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__body { padding: 0 1.6rem 1.5rem; color: var(--muted-fg); }
.accordion__body p { margin: 0 0 .75rem; }
.accordion__body ul { list-style: disc; padding-left: 1.2rem; }
.accordion__body li { margin-bottom: .4rem; }

/* --------------------------------------------------------------------------
   22. Page combats — sommaire + contenu
   -------------------------------------------------------------------------- */
.combats-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.toc { position: sticky; top: 110px; }
.toc__title { font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 1rem; }
.toc a {
  display: block; padding: .9rem 1.1rem; margin-bottom: .75rem;
  border: 2px solid var(--border); border-radius: 10px;
  font-weight: 600; transition: border-color .12s ease, background .12s ease;
}
.toc a:hover { border-color: var(--ink); }
.promo-card {
  background: var(--ink); color: #fff;
  border-radius: 14px; padding: 1.5rem;
  box-shadow: var(--shadow-hard); margin-top: 1.5rem;
}
.promo-card__icon { color: var(--red); margin-bottom: 1rem; }
.promo-card h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; line-height: 1.1; margin: 0 0 .5rem; }
.promo-card p { color: rgba(252,252,252,.7); font-size: .9rem; margin: 0; }

.combat-block { margin-bottom: 3.5rem; }
.combat-block__cat {
  display: flex; align-items: center; gap: 1rem;
  color: var(--red); font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.combat-block__cat::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.combat-block__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1; margin: 0 0 1.75rem;
}

/* --------------------------------------------------------------------------
   23. Page adhésion / renouveler — paliers & checkout
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.plan {
  position: relative;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.plan:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.plan__label { font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-fg); }
.plan__price { font-family: var(--font-display); font-size: 3rem; line-height: 1; margin: 1rem 0 .5rem; }
.plan__price span { font-family: var(--font-sans); font-size: 1rem; font-weight: 500; color: var(--muted-fg); }
.plan__desc { color: var(--muted-fg); margin: 0 0 1.5rem; }
.plan .link-arrow { color: var(--red); }
.plan--featured { background: var(--red); color: #fff; }
.plan--featured .plan__label,
.plan--featured .plan__desc,
.plan--featured .plan__price span { color: rgba(255,255,255,.85); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: .4rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.plan__selected { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }

.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.25rem; }
.pay-box { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-hard); background: #fff; padding: 1.75rem; }
.pay-box__title { font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 1rem; }
.free-input { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 10px; padding: 0 1rem; }
.free-input input { flex: 1; border: 0; outline: none; padding: 1rem .5rem; font-size: 1.1rem; font-family: var(--font-sans); background: none; }
.free-input span { font-family: var(--font-display); font-size: 1.3rem; }
.toggle { display: flex; gap: .75rem; }
.toggle button {
  flex: 1; padding: 1rem; border: 2px solid var(--border); border-radius: 10px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
  background: #fff; font-family: var(--font-sans); transition: all .12s ease;
}
.toggle button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.checkout { background: var(--ink); color: #fff; border-radius: 20px; padding: clamp(1.75rem, 4vw, 2.75rem); max-width: 720px; }
.checkout__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.checkout__recap { color: var(--red); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.checkout__amount { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: .25rem 0 1.75rem; }
.checkout__mode { color: rgba(255,255,255,.6); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.checkout label { display: block; font-weight: 600; margin-bottom: .6rem; }
.checkout .field {
  width: 100%; padding: 1rem 1.1rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  color: #fff; font-size: 1rem; font-family: var(--font-sans); outline: none;
}
.checkout .field::placeholder { color: rgba(255,255,255,.4); }
.checkout__note { color: rgba(255,255,255,.5); font-size: .85rem; margin: .75rem 0 1.5rem; }
.checkout .btn--primary { width: 100%; justify-content: center; margin-bottom: 1.25rem; }
.checkout__perks { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; color: rgba(255,255,255,.7); font-size: .82rem; }
.checkout__perks span { display: inline-flex; align-items: center; gap: .4rem; }
.checkout__fiscal { color: rgba(255,255,255,.4); font-size: .78rem; margin-top: 1.5rem; border-top: 1px solid var(--border-light); padding-top: 1.25rem; }

/* --------------------------------------------------------------------------
   24. Page nous-suivre — canaux
   -------------------------------------------------------------------------- */
.channel-featured {
  position: relative;
  background: var(--red); color: #fff;
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem; display: block;
}
.channel-featured__icon { margin-bottom: 2rem; }
.channel-featured h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0; }
.channel-featured .sub { font-weight: 700; margin: .25rem 0 .75rem; }
.channel-featured p { margin: 0; max-width: 55ch; color: rgba(255,255,255,.9); }
.ext-icon { position: absolute; top: clamp(1.5rem, 3vw, 2.25rem); right: clamp(1.5rem, 3vw, 2.25rem); }

.channels { grid-template-columns: repeat(3, 1fr); }
.channel {
  position: relative; display: block;
  padding: 2rem 1.75rem; min-height: 220px;
  background: #fff; border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  transition: transform .12s ease, box-shadow .12s ease;
}
.channel:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.channel__icon { color: var(--red); margin-bottom: 2rem; }
.channel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; margin: 0; }
.channel .handle { color: var(--red); font-weight: 700; margin: .25rem 0 .75rem; }
.channel p { color: var(--muted-fg); margin: 0; }

/* --------------------------------------------------------------------------
   25. Page espace-membre
   -------------------------------------------------------------------------- */
.member-hero { position: relative; }
.member-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.5rem; }
.member-hero .btn--light { background: #fff; color: var(--ink); border-color: var(--ink); }

.video-embed {
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); overflow: hidden; aspect-ratio: 16/9; background: #000;
}
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.section-head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pill-muted { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted-fg); font-weight: 600; font-size: .85rem; }

.live-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  padding: 1.75rem; margin-top: 1.5rem;
}
.live-card__date {
  background: var(--red); color: #fff; border-radius: 12px;
  padding: 1.25rem 1.5rem; text-align: center; min-width: 140px;
}
.live-card__day { font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.live-card__month { font-weight: 700; letter-spacing: .1em; }
.live-card__time { font-size: .85rem; opacity: .85; margin-top: .5rem; }
.live-card__eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--red); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.live-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: .5rem 0; }
.live-card p { color: var(--muted-fg); margin: 0; }

.regions { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.region {
  padding: 1.5rem; background: #fff;
  border: 2px solid var(--border); border-radius: 12px;
  transition: border-color .12s ease;
}
.region:hover { border-color: var(--ink); }
.region__label { color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.region__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; line-height: 1.05; margin: .5rem 0 1rem; }
.region__lock { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted-fg); font-size: .78rem; font-weight: 600; }

.locked-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.locked {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 1.75rem; background: #fff;
  border: 2px solid var(--border); border-radius: 12px;
}
.locked__meta { color: var(--muted-fg); font-weight: 600; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.locked h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; line-height: 1.05; margin: .5rem 0 0; }
.locked__cta { color: var(--red); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

.testimonials { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.testimonial {
  padding: 1.75rem; background: var(--muted); border-radius: 14px;
  border-left: 4px solid var(--red);
}
.testimonial p { font-size: 1.05rem; margin: 0 0 1rem; }
.testimonial cite { font-style: normal; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-fg); }

/* --------------------------------------------------------------------------
   26. Menu mobile
   -------------------------------------------------------------------------- */
.header.is-open .nav {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1.25rem var(--gutter); gap: 1rem;
}
.header.is-open .nav .btn { display: inline-flex; }

/* --------------------------------------------------------------------------
   27. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid,
  .split,
  .referendum__grid { grid-template-columns: 1fr; }
  .hero__logo { order: -1; margin-bottom: 1rem; }
  .hero__logo-disc { width: min(260px, 60%); }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__social { justify-content: flex-start; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .channels { grid-template-columns: repeat(2, 1fr); }
  .regions { grid-template-columns: repeat(3, 1fr); }
  .combats-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 720px) {
  .nav, .header > .container > .btn { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 46px; height: 46px; border-radius: 10px;
    border: 2px solid var(--ink); background: #fff; cursor: pointer;
  }
  .cards-3,
  .cards-4,
  .cards-2 { grid-template-columns: 1fr; }
  .press-card { grid-template-columns: 1fr; }
  .press-card__img { aspect-ratio: 4/3; }
  .combats__head { align-items: flex-start; flex-direction: column; }
  .wide-figure .media { aspect-ratio: 4/3; }
  .banner { aspect-ratio: 4/3; }
  .plans { grid-template-columns: 1fr; }
  .channels { grid-template-columns: 1fr; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .pay-row { grid-template-columns: 1fr; }
  .locked-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .live-card { grid-template-columns: 1fr; text-align: left; }
  .live-card__date { justify-self: start; }
}
