/* ===================================================================
   LICORNE BOXING — Design system
   Dark premium combat-sport theme · gold accent · mobile-first
   =================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Oswald';
  src: url('/assets/fonts/oswald-latin.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --bg:        #0e0f14;
  --bg-2:      #14161d;
  --surface:   #181b23;
  --surface-2: #1f2330;
  --line:      #2a2f3d;
  --text:      #f3f4f6;
  --muted:     #99a0b0;
  --gold:      #f6b500;
  --gold-2:    #ffcf3f;
  --red:       #e2483d;
  --blue:      #2f6df6;

  --maxw: 1180px;
  --pad: clamp(1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 10px;

  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  --ring: 0 0 0 3px rgba(246,181,0,.45);

  --font-display: 'Oswald', system-ui, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, 'Segoe UI', Roboto, sans-serif;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; text-transform: uppercase; letter-spacing: .01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: #111; padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
  font-weight: 600; font-size: .95rem;
  padding: .72rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn-accent { background: var(--gold); color: #15120a; }
.btn-accent:hover { background: var(--gold-2); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,20,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; flex: none; }
.brand img { width: 60px; height: 60px; }
.brand-text { font-family: var(--font-display); text-transform: uppercase; font-weight: 500; font-size: 1.2rem; letter-spacing: .03em; }
.brand-text strong { color: var(--gold); font-weight: 700; }

.main-nav ul { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: .5rem .8rem; border-radius: 8px; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: .92rem; color: var(--muted); transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: var(--surface); }
.main-nav a.active { color: var(--gold-2); }

.nav-cta { margin-left: .4rem; display: inline-flex; flex-direction: column; align-items: center; gap: .18rem; line-height: 1; padding-top: .5rem; padding-bottom: .45rem; }
.cta-ha { height: 12px; width: auto; display: block; }
.nav-mobile-cta { display: none; }

.burger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { width: 22px; height: 2px; background: var(--text); transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO — poster (page d'accueil, maquette « Visuel Site Licorne »)
   =================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-poster {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: clamp(560px, 90vh, 900px);
  --tri-h: clamp(200px, 38vh, 460px); /* hauteur des triangles bas */
  --logo-size: clamp(120px, min(18vw, 26vh), 255px); /* taille du logo (limitée aussi par la hauteur) */
  /* même noir que le fond de la photo : aucune démarcation autour du contain */
  background: #000;
}
/* photo de fond : boxeurs affichés EN ENTIER (contain), fond noir identique autour.
   Calée à gauche et limitée en largeur (≈ moitié de l'écran) : l'image rétrécit
   avec la résolution pour que les boxeurs restent à gauche des boutons/chiffres
   et ne passent jamais dessous. La zone de contenu à droite reste noire. */
.hero-photo {
  position: absolute; top: 0; bottom: 0; left: 0; height: 100%;
  width: min(100%, calc(55vw + 245px)); z-index: 0;
  object-fit: contain; object-position: left center;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 75% -10%, rgba(246,181,0,.16), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
/* voile de lisibilité sur la photo : assombrit le haut (titre), le bas (bandeau)
   et la colonne de droite (badges + chiffres) */
.hero-poster .hero-bg {
  background:
    linear-gradient(90deg, transparent 38%, rgba(8,9,12,.32) 68%, rgba(8,9,12,.62) 100%),
    linear-gradient(180deg, rgba(8,9,12,.66) 0%, rgba(8,9,12,.22) 20%, rgba(8,9,12,.12) 55%, rgba(8,9,12,.5) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 75%);
}
/* coins dorés : TRIANGLES (clip-path) avec dégradé qui s'estompe vers l'hypoténuse.
   z-index 2 : au-dessus de la bande, sous le contenu. */
.hero-corner { position: absolute; z-index: 2; pointer-events: none; }
.hero-corner.tl {
  top: 0; left: 0; width: clamp(120px, 15vw, 250px); height: clamp(80px, 10vw, 180px);
  background: linear-gradient(to bottom right, #e0a814 0%, #c9911a 46%, #b6841a 68%, rgba(150,108,16,0) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.hero-corner.tr {
  top: 0; right: 0; width: clamp(120px, 15vw, 250px); height: clamp(80px, 10vw, 180px);
  background: linear-gradient(to bottom left, #e0a814 0%, #c9911a 46%, #b6841a 68%, rgba(150,108,16,0) 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.hero-corner.bl {
  bottom: 0; left: 0; width: clamp(160px, 20vw, 360px); height: var(--tri-h);
  background: linear-gradient(to top, #e6ac12 0%, #c9911a 42%, #b6841a 62%, rgba(150,108,16,0) 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.hero-corner.br {
  bottom: 0; right: 0; width: clamp(160px, 20vw, 360px); height: var(--tri-h);
  background: linear-gradient(to top, #e6ac12 0%, #c9911a 42%, #b6841a 62%, rgba(150,108,16,0) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* grille du poster */
.hero-poster-inner {
  position: relative; z-index: 3; flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  /* l'espace libre est placé sur la rangée des chiffres (row 3) : les boutons
     restent en place, les chiffres se centrent verticalement en dessous */
  grid-template-rows: minmax(calc(var(--logo-size) + 1.4rem), auto) auto minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "feds  disc"
    "feds  stats";
  gap: clamp(.8rem, 2vw, 1.6rem) clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(.6rem, 1.8vw, 1.4rem) clamp(1.6rem, 4vw, 3rem);
}
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-size: .82rem; color: var(--gold-2); margin: 0 0 1rem;
}

/* Titre + accroche (haut-gauche) */
.hero-titlewrap { grid-area: title; align-self: start; }
.hero-title {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: .005em; line-height: .9; white-space: nowrap;
  margin: 0;
  font-size: clamp(2rem, 7vw, 5.6rem);
  background: linear-gradient(180deg, #ffffff 0%, #dfe2e7 44%, #9297a1 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.55)) drop-shadow(0 0 18px rgba(0,0,0,.45));
}
/* le trait or s'étend jusqu'au logo (haut-droite) */
.hero-rule {
  display: block; width: calc(100% - clamp(120px, 12vw, 165px)); height: 4px; margin: .8rem 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2) 82%, rgba(246,181,0,.35));
  box-shadow: 0 0 18px rgba(246,181,0,.5);
}
.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: clamp(1rem, 2.4vw, 1.55rem); color: #fff; margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

/* Logo (haut-droite, calé sur le bord du contenu) */
.hero-logo {
  position: absolute; z-index: 3; top: clamp(.7rem, 2vw, 1.4rem); right: var(--pad);
  width: var(--logo-size); height: auto; display: block;
  filter: drop-shadow(0 0 34px rgba(246,181,0,.55)) drop-shadow(0 8px 22px rgba(0,0,0,.7));
  animation: logoPulse 4.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(246,181,0,.45)) drop-shadow(0 8px 22px rgba(0,0,0,.7)); }
  50% { filter: drop-shadow(0 0 46px rgba(246,181,0,.75)) drop-shadow(0 8px 22px rgba(0,0,0,.7)); }
}

/* Affiliations — dans le bandeau bas, à gauche de « Loisir & Compétition » */
.hero-feds {
  grid-column: 1; justify-self: center; align-self: center;
  display: flex; flex-direction: row; gap: .5rem; list-style: none; margin: 0; padding: 0;
}
.fed-chip {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; padding: .28rem .5rem; height: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: box-shadow .2s ease, transform .2s ease;
}
.fed-chip img { max-height: 24px; max-width: 100%; width: auto; display: block; }
.hero-feds .fed a:hover .fed-chip { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.5); }

/* Badges disciplines — centrés sous le logo (colonne de droite), pastilles complètes.
   Bord droit aligné sur le logo puis décalé de la demi-différence de largeur
   -> le bloc est centré sous le logo. */
.hero-disc {
  grid-area: disc; align-self: start; justify-self: end;
  list-style: none; margin: 0; padding: 0; width: clamp(200px, 25vw, 350px);
  margin-right: calc((var(--logo-size) - clamp(200px, 25vw, 350px)) / 2);
  display: flex; flex-direction: column; gap: .55rem;
}
.hero-disc li {
  position: relative; overflow: hidden; border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.34), inset 0 -5px 11px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
/* léger reflet supérieur */
.hero-disc li::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.04) 45%, transparent 60%);
}
.hero-disc a {
  position: relative; display: block; text-decoration: none; color: #fff;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .22em; text-indent: .22em; line-height: 1;
  font-weight: 700; font-size: clamp(1rem, 1.85vw, 1.4rem); text-align: center;
  padding: .38rem 1.4rem; text-shadow: 0 1px 2px rgba(0,0,0,.55);
}
/* couleurs drapeau français, dégradé léger */
.disc-thai     { background: linear-gradient(180deg, #1e56cc 0%, #143f9c 100%); }
.disc-mma      { background: linear-gradient(180deg, #ffffff 0%, #e4e8ee 100%); }
.disc-pancrace { background: linear-gradient(180deg, #ef4135 0%, #c9241c 100%); }
.disc-mma a { color: #16181d; text-shadow: 0 1px 1px rgba(255,255,255,.35); }
.hero-disc li:hover, .hero-disc li:focus-within {
  transform: translateX(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.42), inset 0 -5px 11px rgba(0,0,0,.45);
  filter: brightness(1.08);
}
.hero-disc a:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }

/* Chiffres clés (bas-droite) — texte blanc italique, centré sous les badges */
.hero-stats {
  grid-area: stats; align-self: start; justify-self: end;
  /* même largeur et même décalage que les badges -> chiffres alignés à droite
     sous les boutons ; placés juste sous les boutons (align-self start) pour
     rester au-dessus du triangle doré de coin sans agrandir le hero. */
  width: clamp(200px, 25vw, 350px);
  margin-right: calc((var(--logo-size) - clamp(200px, 25vw, 350px)) / 2);
  text-align: left;
}
/* bloc de chiffres : rétréci au contenu et calé à GAUCHE (le « 21… » commence
   au bord gauche des boutons) ; lignes alignées entre elles par la DROITE */
.hstat-lines { display: inline-flex; flex-direction: column; align-items: flex-end; gap: .55rem; }
.hstat {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.65rem); line-height: 1.08; margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.6);
}
.hstat-num { font-weight: 700; color: #fff; }
.hstat-hi { color: var(--gold-2); margin-bottom: .15rem; }
.hstat-hi .hstat-num { color: var(--gold); }

/* Bande basse : barre noire ; le liseré doré ne s'étend QU'ENTRE les 2 triangles
   (il ne passe pas par-dessus). Les 2 coins dorés viennent de .hero-corner.bl / .br. */
.hero-band {
  position: relative; z-index: 1; flex: none;
  background: #08090c;
}
.hero-band::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
/* barre à 3 zones : contact (gauche) · texte (centre) · adhérer (droite) ;
   z-index 3 pour passer au-dessus des triangles, padding pour rester dans le noir */
.hero-band-inner {
  position: relative; z-index: 3; max-width: none;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  padding-block: clamp(.5rem, 1.3vw, .85rem);
  padding-inline: clamp(1rem, 20vw, 20rem);
}
.hero-band-text { text-align: center; justify-self: center; grid-column: 2; grid-row: 1; align-self: center; }
.hero-contact { justify-self: center; grid-column: 3; grid-row: 1; align-self: center; }
.hero-band-title {
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  font-size: clamp(1.05rem, 2.6vw, 1.85rem); margin: 0; line-height: 1;
  background: linear-gradient(180deg, #f6f7f9 0%, #cfd3db 48%, #8b909c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-band-sub {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  font-size: clamp(.85rem, 1.7vw, 1.15rem); color: #c7ccd6; margin: .35rem 0 0;
}
/* icônes de contact */
.hero-contact { display: flex; align-items: center; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.hero-contact a, .hero-contact button {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  color: var(--gold-2); background: rgba(10,11,15,.65); border: 1px solid rgba(246,181,0,.45);
  transition: color .18s, background .18s, transform .18s, border-color .18s;
}
.hero-contact svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-contact a:hover, .hero-contact button:hover,
.hero-contact a:focus-visible, .hero-contact button:focus-visible {
  color: #15120a; background: var(--gold); border-color: var(--gold); transform: translateY(-2px); outline: none;
}
/* bouton Adhérer (HelloAsso) */
.hero-adhere {
  display: inline-flex; flex-direction: column; align-items: center; line-height: 1; text-decoration: none;
  background: linear-gradient(180deg, #ffd23f 0%, #f6b500 100%); color: #171102;
  padding: .42rem 1.15rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.adhere-txt { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1.02rem; color: #171102; }
.adhere-logo { display: block; height: clamp(11px, 1.35vw, 15px); width: auto; margin-top: .22rem; }
.hero-adhere:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.6); filter: brightness(1.04); }
.hero-adhere:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* mobile : empilement centré, calé sur la hauteur visible (bande visible sans scroll) */
@media (max-width: 860px) {
  .hero-poster {
    min-height: calc(100vh - 73px);
    min-height: calc(100svh - 73px);
    --tri-h: 104px;
  }
  .hero-poster .hero-bg {
    background:
      linear-gradient(180deg, rgba(8,9,12,.6) 0%, rgba(8,9,12,.18) 30%, rgba(8,9,12,.18) 62%, rgba(8,9,12,.66) 100%),
      radial-gradient(700px 380px at 80% 0%, rgba(246,181,0,.14), transparent 60%);
  }
  .hero-photo {
    inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-corner.tl, .hero-corner.tr { width: 96px; height: 60px; }
  .hero-corner.bl, .hero-corner.br { width: 76px; height: 104px; }
  .hero-poster-inner {
    grid-template-columns: 1fr;
    /* 1re rangée = hauteur du logo (ne s'étire pas) : le titre reste collé
       au logo avec un écart fixe -> superposition impossible ; l'espace libre
       se répartit sur les rangées suivantes */
    grid-template-rows: min-content auto auto auto auto;
    grid-template-areas: "logo" "title" "disc" "stats" "feds";
    justify-items: center; text-align: center; gap: clamp(.35rem, 1.4vh, .8rem);
    padding-block: clamp(.4rem, 1.4vh, .9rem);
  }
  /* taille limitée aussi par la hauteur (min ...vh) : sur un écran court le
     logo rétrécit au lieu de venir sur le titre */
  .hero-logo { position: static; grid-area: logo; justify-self: center;
    width: clamp(96px, min(36vw, 22vh), 190px); }
  /* padding horizontal : évite que le « G » italique de BOXING soit rogné
     par le clip du dégradé (le bloc se réduit à la largeur du texte) */
  .hero-title { white-space: normal; font-size: clamp(1.7rem, 8.5vw, 2.4rem); padding-inline: .18em; }
  .hero-rule { width: min(70%, 300px); margin: .35rem auto; height: 3px; }
  .hero-tagline { font-size: clamp(.85rem, 3.6vw, 1.05rem); }
  /* mobile : logos au-dessus du bandeau (hors du flux du bandeau) */
  .hero-feds { position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(100% + .5rem);
    flex-direction: row; gap: .6rem; margin: 0; }
  .fed-chip { height: 34px; padding: .28rem .5rem; }
  .fed-chip img { max-height: 22px; }
  .hero-disc, .hero-stats { margin-right: 0; justify-self: center; width: min(100%, 320px); }
  /* boutons disciplines : même largeur (celle du plus large), padding serré */
  .hero-disc { gap: clamp(.3rem, 1.1vh, .6rem); width: fit-content; max-width: 100%; }
  .hero-disc li { border-radius: 40px; padding: .5rem 0; font-size: clamp(.9rem, 3.6vw, 1.1rem); }
  .hero-disc a { padding: .38rem .9rem; }
  /* boutons semi-transparents sur mobile (couleurs drapeau) pour laisser voir la photo */
  .disc-thai     { background: linear-gradient(180deg, rgba(30,86,204,.72) 0%, rgba(20,63,156,.75) 100%); }
  .disc-mma      { background: linear-gradient(180deg, rgba(255,255,255,.74) 0%, rgba(228,232,238,.76) 100%); }
  .disc-pancrace { background: linear-gradient(180deg, rgba(239,65,53,.72) 0%, rgba(201,36,28,.75) 100%); }
  .hero-stats { padding-right: 0; text-align: center; }
  .hstat-lines { align-items: center; gap: .2rem; }
  .hstat { border-radius: 40px; font-size: clamp(.9rem, 3.6vw, 1.1rem); }
  .hero-band-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: .35rem .7rem; padding-inline: .8rem; padding-block: .4rem .65rem; }
  .hero-contact, .hero-band-text, .hero-adhere { justify-self: auto; }
  .hero-band-text { order: -1; flex-basis: 100%; }
  .hero-band-title { font-size: clamp(1rem, 4.4vw, 1.4rem); }
  .hero-band-sub { font-size: clamp(.74rem, 3.2vw, .95rem); margin-top: .18rem; }
  .hero-contact { gap: .3rem; }
  .hero-contact a, .hero-contact button { width: 31px; height: 31px; }
  .hero-contact svg { width: 15px; height: 15px; }
  .hero-adhere { padding: .26rem .75rem; }
  .adhere-txt { font-size: .88rem; }
  .adhere-logo { font-size: .58rem; }
}

/* ===================================================================
   STATS BAND
   =================================================================== */
.stats { background: var(--gold); color: #181203; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.6rem; }
.stat { text-align: center; display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1; }
.stat-label { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; opacity: .82; }

/* ===================================================================
   SECTIONS (generic)
   =================================================================== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--bg-2); }
.section-eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-size: .8rem; color: var(--gold); margin: 0 0 .6rem;
}
.section-title { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: .8rem; }
.section-lead { color: var(--muted); max-width: 60ch; margin: 0 0 2.4rem; font-size: 1.05rem; }
.section-title + .section-lead { margin-top: -.2rem; }

/* ---- Le club ---- */
.club-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.club-text p { color: #cfd3dd; margin: 0 0 1.1rem; }
.club-text strong { color: var(--text); }
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.values li {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem;
}
.value-k { display: block; font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: 1.25rem; color: var(--gold-2); letter-spacing: .04em; }
.value-d { display: block; color: var(--muted); font-size: .95rem; }

/* ---- Disciplines ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem;
  position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.card:hover { transform: translateY(-4px); border-color: rgba(246,181,0,.5); }
.card h3 { font-size: 1.45rem; margin-bottom: .7rem; color: var(--text); }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---- Planning ---- */
.planning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.day { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.day-name {
  background: var(--surface-2); color: var(--gold-2);
  font-size: 1.15rem; padding: .8rem 1.2rem; border-bottom: 1px solid var(--line);
  letter-spacing: .06em;
}
.slot { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); display: grid; gap: .15rem; }
.slot:last-child { border-bottom: 0; }
.slot-time { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 1.05rem; }
.slot-disc { font-weight: 700; color: var(--gold); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.slot-meta { color: #d3d7e0; font-size: .92rem; }
.slot-age { color: var(--text); font-weight: 700; }
.slot-loc {
  display: inline-flex; align-items: center; gap: .32rem; width: fit-content;
  color: var(--gold-2); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; margin-top: .15rem;
}
.slot-loc::before {
  content: ""; width: 13px; height: 13px; flex: none;
  background: var(--gold-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---- Planning filter ---- */
.planning-filter { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; margin-bottom: 1rem; }
.filter-field { display: flex; flex-direction: column; gap: .35rem; flex: 1 1 220px; min-width: 200px; }
.filter-field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; color: var(--gold-2); }
.filter-field select {
  appearance: none; -webkit-appearance: none;
  background-color: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem 2.6rem .8rem 1rem; font: inherit; font-size: 1rem; min-height: 48px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23f6b500' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  transition: border-color .2s, box-shadow .2s;
}
.filter-field select:hover { border-color: rgba(246,181,0,.5); }
.filter-field select:focus-visible { border-color: var(--gold); box-shadow: var(--ring); }
.filter-reset { flex: 0 0 auto; min-height: 48px; }
.filter-reset[hidden] { display: none; }
.filter-status { color: var(--gold-2); font-size: .92rem; margin: 0 0 1.6rem; min-height: 1.2em; font-weight: 600; }
.filter-status:empty { margin-bottom: 1rem; }

.slot.is-hidden { display: none; }
.day.is-hidden { display: none; }
.planning-empty { color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; text-align: center; }
.link-btn { background: none; border: 0; color: var(--gold-2); font: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.link-btn:hover { color: var(--gold); }

/* ---- Tarifs ---- */
.badge-pass {
  display: inline-block; background: rgba(47,109,246,.15); color: #9cc0ff; border: 1px solid rgba(47,109,246,.4);
  padding: .15rem .7rem; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-left: .3rem;
}
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 2rem; }
table.pricing { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
table.pricing thead th {
  background: var(--surface-2); color: var(--gold-2); text-align: left;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .85rem;
  padding: .9rem 1rem; border-bottom: 2px solid var(--gold);
}
table.pricing tbody th, table.pricing tbody td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
table.pricing tbody th { text-align: left; font-weight: 600; color: var(--text); }
table.pricing tbody tr:hover { background: rgba(255,255,255,.02); }
table.pricing td { color: var(--muted); }
table.pricing td.total { color: var(--gold-2); font-weight: 700; }
table.pricing small { color: #8b93a6; }
table.pricing thead th small { display: block; font-family: var(--font-body); font-weight: 400;
  text-transform: none; letter-spacing: 0; font-size: .78rem; margin-top: .15rem; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.info-card h3 { font-size: 1.15rem; color: var(--gold-2); margin-bottom: .5rem; }
.info-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.info-values { color: var(--text); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; line-height: 1.6; margin: 0; }
.disc-closing { color: #d3d7e0; font-size: 1.05rem; max-width: 70ch; margin: 2rem 0 1.6rem; }

/* ---- Palmarès ---- */
.section-palmares {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(246,181,0,.10), transparent 60%),
    var(--bg);
}
.medals { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
.medal {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1rem; text-align: center; border-top: 3px solid var(--line);
}
.medal.gold { border-top-color: var(--gold); }
.medal.silver { border-top-color: #c7ccd6; }
.medal.bronze { border-top-color: #cd7f4b; }
.medal-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 6vw, 3.2rem); line-height: 1; color: var(--text); }
.medal.gold .medal-num { color: var(--gold-2); }
.medal-label { display: block; text-transform: uppercase; letter-spacing: .07em; font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.palmares-note { color: var(--muted); font-style: italic; margin: 0; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.contact-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.contact-block h3 { font-size: 1.2rem; color: var(--gold-2); margin-bottom: .9rem; }
.contact-block address { font-style: normal; color: var(--muted); }
.contact-block address p { margin: 0 0 1rem; }
.contact-block address strong { color: var(--text); }
.contact-block a { color: var(--text); border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.contact-block a:hover { color: var(--gold-2); border-color: var(--gold-2); }
.socials { display: flex; gap: 1rem; margin-top: 1rem; }
.socials a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; }
.contact-cta { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border-color: rgba(246,181,0,.35); }
.contact-cta p { color: var(--muted); margin-bottom: 1.3rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 2.6rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.6rem 2.5rem; align-items: center; justify-content: space-between; padding-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand p { margin: 0; color: var(--muted); font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-nav a, .footer-social a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; color: var(--muted); transition: color .2s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 1.1rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.footer-bottom p { margin: 0; color: #8b93a6; font-size: .85rem; text-align: center; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
/* Nav resserrée juste au-dessus du menu burger : les 9 entrées + le bouton
   S'inscrire doivent tenir sur une ligne sans comprimer la marque */
@media (min-width: 1151px) and (max-width: 1300px) {
  .main-nav ul { gap: .1rem; }
  .main-nav a { padding: .5rem .5rem; font-size: .88rem; letter-spacing: .02em; }
  .nav-cta { margin-left: .2rem; }
}

/* Menu burger : en dessous de 1151px, 9 entrées ne tiennent plus sur une ligne */
@media (max-width: 1150px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; padding: 1rem var(--pad) 1.6rem;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); box-shadow: var(--shadow); }
  .main-nav ul { flex-direction: column; gap: .2rem; }
  .main-nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile-cta { display: block; margin-top: .6rem; }
  .nav-mobile-cta a {
    background: var(--gold); color: #15120a; text-align: center; font-weight: 700;
    border-radius: 999px; padding: .9rem 1rem;
  }
  .nav-mobile-cta a:hover { background: var(--gold-2); color: #15120a; }
}

@media (max-width: 1024px) {
  .club-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   MULTI-PAGE COMPONENTS
   =================================================================== */
.link-more { color: var(--gold-2); font-weight: 600; border-bottom: 1px solid transparent; }
.link-more:hover { border-color: var(--gold-2); }
.center-more { text-align: center; margin-top: 2.2rem; }
.footnote { color: var(--muted); font-size: .82rem; margin-top: 2rem; }

/* Page header (sous-pages) */
.page-header { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-header-bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(246,181,0,.15), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin: .3rem 0 0; }
.page-header-sub { color: #cfd3dd; max-width: 60ch; margin: 1rem 0 0; font-size: 1.05rem; }
.container.narrow { max-width: 920px; }

/* Prose */
.prose p { color: #cfd3dd; margin: 0 0 1.1rem; }
.prose strong { color: var(--text); }
.prose h3 { font-size: 1.4rem; color: var(--gold-2); margin: 2rem 0 .6rem; }

/* Valeurs en ligne */
.values-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.values-row li { border-left: 0; border-top: 3px solid var(--gold); padding: .8rem 1.2rem; text-align: center; }
.values-row .value-k { font-size: 1.1rem; }

/* Coaches */
.coaches { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.coaches-hint { color: var(--muted); font-size: .9rem; margin: -1.4rem 0 1.4rem; }
.coach { display: block; }
.coach-card {
  width: 100%; height: 100%; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.3rem 1.3rem; text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; font: inherit; color: inherit;
  transition: transform .2s, border-color .2s;
}
.coach-card:hover { transform: translateY(-4px); border-color: rgba(246,181,0,.5); }
.coach-card:focus-visible { box-shadow: var(--ring); border-color: var(--gold); }
.coach-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: top center;
  margin: 0 auto .9rem; border: 3px solid var(--gold); background: var(--surface-2);
  filter: grayscale(100%) contrast(1.05); transition: filter .3s ease; }
.coach-card:hover .coach-photo { filter: grayscale(0%); }
.coach-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.2rem; color: var(--text); }
.coach-role { color: var(--gold-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin: .3rem 0 .4rem; font-weight: 600; }
.coach-disc { color: var(--muted); font-size: .85rem; }
.coach-cta { margin-top: .8rem; color: var(--gold-2); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; font-weight: 600; opacity: .9; }
.coach-card:hover .coach-cta { opacity: 1; }

/* Modale palmarès entraîneur */
.coach-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(5,6,9,.86); display: flex; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(3px); }
.coach-modal[hidden] { display: none; }
.coach-modal-box { position: relative; width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid rgba(246,181,0,.35);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.coach-modal-close { position: absolute; top: .7rem; right: .8rem; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--text); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s; }
.coach-modal-close:hover { background: var(--gold); color: #15120a; border-color: var(--gold); }
.coach-modal-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.coach-modal-head img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: top center; border: 3px solid var(--gold); flex: none; }
.coach-modal-head h3 { font-size: 1.4rem; color: var(--text); }
.coach-modal-head p { color: var(--gold-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin: .25rem 0 0; }
.coach-modal-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-size: .8rem; margin: 0 0 .6rem; }
#coach-modal-pal { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
#coach-modal-pal li { position: relative; padding-left: 1.6rem; color: #e7e9ee; font-size: .98rem; }
#coach-modal-pal li::before { content: ""; position: absolute; left: .2rem; top: .55em; width: 8px; height: 8px; background: var(--gold); border-radius: 2px; transform: rotate(45deg); }

/* CTA band */
.cta-band { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid rgba(246,181,0,.3); border-radius: var(--radius); }
.cta-inner { text-align: center; padding: clamp(2rem, 5vw, 3rem); }
.cta-inner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-inner p { color: var(--muted); margin: .6rem 0 1.6rem; }

/* Teasers (accueil) */
.teaser-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.teaser-box { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.teaser-k { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--gold-2); text-transform: uppercase; }
.teaser-d { display: block; color: var(--muted); font-size: .95rem; }
.gallery-teaser { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem; }
.gallery-teaser img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 1px solid var(--line); }

/* Disciplines détaillées */
.discipline-list { display: grid; gap: 1.2rem; }
.discipline { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; overflow: hidden; }
.discipline::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.discipline-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .8rem; }
.discipline-head h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
.discipline-tag { background: rgba(246,181,0,.14); color: var(--gold-2); border: 1px solid rgba(246,181,0,.35); padding: .2rem .8rem; border-radius: 999px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; }
.discipline p { color: var(--muted); margin: 0 0 .8rem; }
.discipline strong { color: var(--text); }

/* 2 colonnes générique */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mini-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--gold-2); font-size: 1.2rem; margin: 0 0 1rem; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.check-list li { position: relative; padding-left: 1.7rem; color: #cfd3dd; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.note-warn { margin-top: 1rem; color: #ffb4ad; background: rgba(226,72,61,.1); border: 1px solid rgba(226,72,61,.35); border-radius: var(--radius-sm); padding: .7rem 1rem; font-weight: 600; font-size: .9rem; }

/* ===================================================================
   LE CLUB — ADN (étapes) + présentation (loisir / compétition)
   =================================================================== */
.adn-cards { margin-top: 1.6rem; }
.card-step { display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .12em; color: var(--gold); margin-bottom: .4rem; }

/* ADN : chapeau + symbole yin-yang */
.adn-intro .section-lead { margin-bottom: 0; }
.adn-symbol { margin: 1.6rem 0 0; display: flex; justify-content: center; }
.adn-symbol img { width: 200px; max-width: 100%; height: auto; }

/* ADN : portrait du président dans la carte « parcours » */
.adn-portrait { position: relative; width: min(410px, 100%); margin: 1rem auto 0; }
.adn-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.adn-portrait figcaption {
  position: absolute; top: .5rem; left: .6rem; right: .6rem; text-align: center;
  font-weight: 700; font-size: 1.18rem; color: #10131a;
}

/* Présentation : photo de gala en habillage du texte */
.club-photo { width: min(420px, 100%); margin: 0 auto 1.6rem; }
.club-photo img { width: 100%; height: auto; }

/* Sous 1080px la photo passe sous le chapeau (elle précède le titre dans le HTML
   pour permettre l'habillage en écran large) */
@media (max-width: 1079.98px) {
  #presentation > .container { display: flex; flex-direction: column; }
  #presentation .section-eyebrow { order: 1; }
  #presentation .section-title { order: 2; }
  #presentation .section-lead { order: 3; }
  #presentation .presentation-intro { order: 4; }
  #presentation .club-photo { order: 5; }
  #presentation .practice-cols { order: 6; }
  #presentation .fed-block { order: 7; }
}

.presentation-intro { color: #cfd3dd; max-width: 78ch; margin: 0 0 2rem; font-size: 1.02rem; line-height: 1.7; }
.practice-cols { margin: 0 0 1.8rem; align-items: stretch; }
.practice-card { position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; }
.practice-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.practice-loisir::before, .practice-compet::before { background: linear-gradient(90deg, var(--gold), transparent); }
.practice-tag { display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .1em; font-size: .72rem; padding: .22rem .75rem; border-radius: 999px; margin-bottom: .7rem;
  background: rgba(246,181,0,.14); color: var(--gold-2); border: 1px solid rgba(246,181,0,.35); }

/* Page « Le club » : section entraîneurs remontée en haut (après l'en-tête) */
.page-club main { display: flex; flex-direction: column; }
.page-club .page-header { order: 0; }
.page-club #entraineurs { order: 1; }
.page-club #adn { order: 2; }
.page-club #presentation { order: 3; }
.page-club .cta-band { order: 4; }
.practice-card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  color: var(--text); font-size: 1.4rem; margin: 0 0 .8rem; }
.practice-card p { color: #cfd3dd; margin: 0 0 .8rem; font-size: .98rem; }
.practice-card p:last-child { margin-bottom: 0; }
.practice-card strong { color: var(--text); }
.fed-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; }
.fed-block > p { color: #cfd3dd; margin: 0 0 1rem; }
.fed-block strong { color: var(--text); }

/* Le club — mise en page large : images à droite du texte */
@media (min-width: 1080px) {
  /* le chapeau garde sa largeur de lecture, le symbole se centre dans la moitié droite */
  .adn-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .adn-intro .section-lead { grid-area: 1 / 1 / 2 / 3; }
  .adn-symbol { grid-area: 1 / 2 / 2 / 3; margin: 0; }
  /* le portrait descend jusqu'au bord de la carte (rogné par son overflow) */
  .adn-portrait { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: min(410px, calc(100% - 3rem)); margin: 0; }
  /* la photo de gala est habillée par l'en-tête et le chapeau de section */
  .club-photo { float: right; width: 305px; margin: 0 0 .5rem 1rem; }
  #presentation .practice-cols { clear: both; }
}

/* Cartes disciplines cliquables (accueil) */
a.card { display: block; text-decoration: none; color: inherit; }
.card-go { display: inline-block; margin-top: 1rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--gold-2); transition: color .2s; }
a.card:hover .card-go { color: var(--gold); }

/* Disciplines : ancrage sous le header collant */
.discipline { scroll-margin-top: 90px; }
/* Encarts « Vous pratiquez en loisir / compétition » : titres plus grands */
.info-cards-2 .info-card h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }

/* Documents */
.doc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.doc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; border-top: 3px solid var(--gold); }
.doc-card h3 { color: var(--gold-2); font-size: 1.15rem; margin-bottom: .5rem; }
.doc-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Inscription : modes d'adhésion + listes de documents numérotées */
.inscription-ways { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .5rem; }
.inscription-ways li { position: relative; padding-left: 1.1rem; color: #cfd3dd; }
.inscription-ways li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }
.inscription-ways strong { color: var(--text); }
.inscription-ways a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.inscription-ways a:hover { color: var(--gold); }
.inscription-cols { align-items: start; }

.doc-steps, .doc-substeps { list-style: none; margin: 0; padding: 0; }
.doc-steps { counter-reset: step; display: grid; gap: .55rem; }
.doc-steps > li { counter-increment: step; position: relative; padding-left: 1.9rem; color: #cfd3dd; font-size: .95rem; }
.doc-steps > li::before {
  content: counter(step) "."; position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-weight: 700; color: var(--gold);
}
.doc-substeps { counter-reset: sub; margin: .45rem 0 .2rem; display: grid; gap: .45rem; }
.doc-substeps.from-2 { counter-reset: sub 1; }
.doc-substeps.from-3 { counter-reset: sub 2; }
.doc-substeps > li { counter-increment: sub; position: relative; padding-left: 2.3rem; }
.doc-substeps > li::before {
  content: counter(step) "." counter(sub); position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-weight: 700; color: var(--gold-2); font-size: .92em;
}
.doc-group { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
  color: var(--text); font-size: .84rem; margin: .8rem 0 .1rem !important; }
.doc-cond { display: block; color: var(--muted); font-style: italic; font-size: .9em; }
.doc-dl { display: inline-block; white-space: nowrap; color: var(--gold-2); font-weight: 600; font-size: .88em;
  border-bottom: 1px solid rgba(246,181,0,.45); transition: color .2s, border-color .2s; }
.doc-dl::before { content: "↓ "; }
.doc-dl:hover { color: var(--gold); border-color: var(--gold); }
.doc-card .note-warn { margin-top: 1rem; font-size: .9rem; }

/* Champions */
.champions { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.champion { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; border-top: 3px solid var(--gold); }
.champion h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; color: var(--text); font-size: 1.2rem; margin: 0 0 .7rem; }
.champion ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: .92rem; }
.champion li { margin-bottom: .3rem; }

/* Palmarès global */
.palmares-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.palmares-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.palmares-card h3 { color: var(--gold-2); font-size: 1.25rem; margin: 0 0 1rem; border-bottom: 1px solid var(--line); padding-bottom: .6rem; }
.pal-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.pal-list li { color: var(--muted); font-size: .95rem; }
.pal-list b { color: var(--gold-2); font-family: var(--font-display); font-size: 1.1rem; margin-right: .3rem; }

/* Partenaires */
.partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.partner { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: .35rem; transition: transform .2s, border-color .2s; text-align: center; }
a.partner:hover { transform: translateY(-4px); border-color: rgba(246,181,0,.5); }
.partner-nolink { cursor: default; }
.partner-logo { display: flex; align-items: center; justify-content: center; background: #fff; border-radius: var(--radius-sm); padding: .9rem; height: 110px; margin-bottom: .7rem; }
.partner-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.partner-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; color: var(--text); font-size: 1.1rem; line-height: 1.15; }
.partner-loc { color: var(--muted); font-size: .85rem; }

/* Équipements */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
/* 10 équipements : 2 rangées de 5, illustrations plus grandes */
@media (min-width: 880px) { .equip-grid { grid-template-columns: repeat(5, 1fr); } }
.equip { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s; }
.equip:hover { transform: translateY(-4px); border-color: rgba(246,181,0,.5); }
.equip img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #fff; }
.equip figcaption { padding: .8rem .9rem 1rem; display: flex; flex-direction: column; gap: .15rem; }
.equip-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; color: var(--text); font-size: .98rem; line-height: 1.15; }
.equip-disc { color: var(--gold-2); font-size: .78rem; }

.tshirt-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; margin-top: 1.6rem; }
.tshirt-card img { width: 100%; border-radius: var(--radius-sm); background: #fff; margin: .3rem 0 1rem; }
.tshirt-card p { color: var(--muted); margin: 0; font-size: .95rem; }
/* Visuel plus grand : image et texte côte à côte sur les écrans larges */
@media (min-width: 760px) {
  .tshirt-card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    grid-template-areas: "titre titre" "visuel texte"; column-gap: 1.8rem; row-gap: .6rem; align-items: center; }
  .tshirt-card .mini-title { grid-area: titre; margin-bottom: 0; }
  .tshirt-card img { grid-area: visuel; margin: 0; }
  .tshirt-card p { grid-area: texte; font-size: 1rem; }
}

/* Widget d'adhésion HelloAsso */
.ha-widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .6rem; overflow: hidden; }
.ha-widget iframe { display: block; width: 100%; height: 750px; border: 0; border-radius: var(--radius-sm); background: #fff; }
@media (max-width: 560px) { .ha-widget { padding: .3rem; } .ha-widget iframe { height: 900px; } }

/* Galerie + lightbox */
.gallery { columns: 4 220px; column-gap: 12px; }
.gal-item { break-inside: avoid; display: block; width: 100%; margin: 0 0 12px; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--surface); }
.gal-item img { width: 100%; display: block; transition: transform .35s ease, opacity .2s; }
.gal-item:hover img { transform: scale(1.05); opacity: .9; }
.gal-item:focus-visible { box-shadow: var(--ring); }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(5,6,9,.93); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px; font-size: 2rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #15120a; border-color: var(--gold); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 700px) {
  .cols-2 { grid-template-columns: 1fr; }
  .gallery { columns: 2 140px; column-gap: 8px; }
  .lb-prev { left: .4rem; } .lb-next { right: .4rem; }
}

/* ===================================================================
   MOTION & POLISH (scroll reveal, micro-interactions)
   =================================================================== */
/* Scroll reveal — JS adds .reveal + sets html.reveal-ready */
html.reveal-ready .reveal { opacity: 0; transform: translateY(22px); will-change: opacity, transform; }
.reveal { transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1); }
html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }

/* Hero entrance (content) */
.hero-poster-inner > * { animation: heroRise .8s cubic-bezier(.16,.7,.3,1) both; }
.hero-titlewrap { animation-delay: .05s; }
/* même délai que le titre : logo et titre montent ensemble, l'écart reste
   constant pendant l'animation (le logo ne passe jamais sur le texte) */
.hero-logo { animation-delay: .05s; }
.hero-feds { animation-delay: .26s; }
.hero-disc { animation-delay: .34s; }
.hero-stats { animation-delay: .42s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Press feedback on buttons */
.btn:active { transform: translateY(0) scale(.97); }

/* Animated link arrow */
.link-more { transition: color .2s; }
.link-more:hover { letter-spacing: .005em; }

/* Section title accent bar */
.section-eyebrow { position: relative; padding-left: 2.4rem; }
.section-eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 1.7rem; height: 2px;
  background: var(--gold); transform: translateY(-50%);
}

/* Smooth nav active underline */
.main-nav a { position: relative; }
.main-nav a.active::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem; height: 2px;
  background: var(--gold-2); border-radius: 2px;
}

/* Scroll-to-top affordance handled by browser; ensure focus ring on interactive */

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  .hero-photo { animation: none !important; transform: none !important; }
  .hero-poster-inner > * { animation: none !important; }
}

/* ===================================================================
   SCROLL SNAP PLEIN ÉCRAN — Accueil, desktop (souris) uniquement
   =================================================================== */
@media (min-width: 1025px) and (pointer: fine) {
  /* le conteneur de défilement = la fenêtre */
  html:has(body.page-accueil) {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 73px;
  }
  /* points d'ancrage : le hero poster et chaque section de contenu */
  .page-accueil main > section { scroll-snap-align: start; }

  /* premier écran : le hero poster occupe toute la hauteur visible,
     la bande basse (loisir & compétition) calée en bas de l'écran.
     Le header collant (73px) est déduit pour un ajustement exact. */
  .page-accueil main > section.hero-poster {
    min-height: calc(100vh - 73px);
    min-height: calc(100dvh - 73px);
  }

  /* sections de contenu : hauteur de l'écran visible (sous le header collant),
     contenu centré — pour un ancrage net et un bas de section visible */
  .page-accueil main > section:not(.hero-poster) {
    min-height: calc(100vh - 73px);
    min-height: calc(100dvh - 73px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-accueil main > section > .container { width: 100%; }
  /* le footer est aussi un point d'ancrage pour rester atteignable */
  body.page-accueil > .site-footer { scroll-snap-align: end; }
}

/* Pas de snap si l'utilisateur réduit les animations */
@media (prefers-reduced-motion: reduce) {
  html:has(body.page-accueil) { scroll-snap-type: none; }
}

/* ===================================================================
   PAGE TARIFS — desktop : planning visible sans scroll à l'arrivée
   =================================================================== */
@media (min-width: 1025px) {
  /* en-tête de page masqué : le planning (titre + grille) doit tenir à l'écran */
  .page-tarifs .page-header { display: none; }

  .page-tarifs #planning { padding-top: 1.4rem; padding-bottom: 1.4rem; }
  .page-tarifs #planning .section-eyebrow { margin-bottom: .3rem; }
  .page-tarifs #planning .section-title { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: .3rem; }
  .page-tarifs #planning .section-lead { font-size: .9rem; margin-bottom: .7rem; }
  .page-tarifs .planning-filter { margin-bottom: .55rem; }
  .page-tarifs .filter-field select { min-height: 44px; padding-top: .5rem; padding-bottom: .5rem; }
  .page-tarifs .filter-status { margin-bottom: .5rem; }
  .page-tarifs .filter-status:empty { min-height: 0; margin: 0; }

  /* créneaux compactés pour faire tenir la grille à l'écran */
  .page-tarifs .planning-grid .day-name { padding: .5rem 1.1rem; font-size: 1.02rem; }
  .page-tarifs .planning-grid .slot { padding: .5rem 1.1rem; }
  .page-tarifs .planning-grid .slot-time { font-size: .98rem; }
  .page-tarifs .planning-grid .slot-meta { font-size: .86rem; }
}

/* Page Tarifs — écrans desktop courts : compacter davantage pour tout afficher */
@media (min-width: 1025px) and (max-height: 760px) {
  .page-tarifs #planning { padding-top: .7rem; }
  .page-tarifs #planning .section-eyebrow { margin-bottom: .2rem; }
  .page-tarifs #planning .section-title { font-size: 1.45rem; margin-bottom: .25rem; }
  .page-tarifs #planning .section-lead { display: none; }
  .page-tarifs .planning-filter { margin-bottom: .4rem; }
  .page-tarifs .planning-grid .day-name { padding: .4rem 1rem; font-size: .98rem; }
  .page-tarifs .planning-grid .slot { padding: .38rem 1rem; }
  .page-tarifs .planning-grid .slot-meta { font-size: .82rem; }
  .page-tarifs .planning-grid .slot-loc { font-size: .78rem; }
}

/* ===================================================================
   PAGE TARIFS — desktop : compacter toutes les sections (≈ 1 écran)
   =================================================================== */
@media (min-width: 1025px) {
  .page-tarifs .section { padding-top: 1.4rem; padding-bottom: 1.4rem; }
  .page-tarifs .section-title { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: .35rem; }
  .page-tarifs .section-lead { font-size: .92rem; margin-bottom: .9rem; }

  /* Tarifs : table + cartes plus compactes */
  .page-tarifs table.pricing thead th { padding: .55rem .9rem; font-size: .8rem; }
  .page-tarifs table.pricing tbody th,
  .page-tarifs table.pricing tbody td { padding: .5rem .9rem; }
  .page-tarifs #tarifs .table-wrap { margin-bottom: 1.1rem; }
  .page-tarifs #tarifs .info-cards { gap: 1rem; }
  .page-tarifs #tarifs .info-card { padding: 1rem 1.1rem; }
  .page-tarifs #tarifs .info-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
  .page-tarifs #tarifs .info-card p { font-size: .9rem; }

  /* Matériel : 2 rangées de 5 tuiles + encart t-shirt compact */
  .page-tarifs .equip-grid { grid-template-columns: repeat(5, 1fr); gap: .7rem; }
  .page-tarifs .equip img { aspect-ratio: 4 / 3; }
  .page-tarifs .equip figcaption { padding: .5rem .55rem .6rem; }
  .page-tarifs .equip-name { font-size: .82rem; }
  .page-tarifs .equip-disc { font-size: .72rem; }
  .page-tarifs .tshirt-card { padding: 1rem 1.2rem; margin-top: 1.1rem; column-gap: 1.6rem; }
  .page-tarifs .tshirt-card img { max-height: 250px; width: auto; justify-self: center; }
  .page-tarifs .mini-title { font-size: 1.05rem; margin-bottom: .6rem; }
  .page-tarifs .check-list { gap: .4rem; }

  /* Documents / inscription : compact */
  .page-tarifs .inscription-ways { margin-bottom: 1.1rem; gap: .35rem; }
  .page-tarifs .inscription-cols { gap: 1.4rem; }
  .page-tarifs .doc-card { padding: 1.1rem 1.2rem; }
  .page-tarifs .doc-card h3 { font-size: 1.05rem; margin-bottom: .55rem; }
  .page-tarifs .doc-steps { gap: .38rem; }
  .page-tarifs .doc-steps > li { font-size: .9rem; }
  .page-tarifs .doc-substeps { gap: .3rem; margin-top: .3rem; }
  .page-tarifs .doc-group { margin-top: .55rem !important; font-size: .8rem; }
  .page-tarifs .doc-card .note-warn { margin-top: .8rem; padding: .5rem .8rem; font-size: .85rem; }
  .page-tarifs #documents .center-more { margin-top: 1.4rem; }
}

/* ===================================================================
   PAGE TARIFS — ancrage plein écran par section (desktop souris)
   =================================================================== */
@media (min-width: 1025px) and (pointer: fine) {
  html:has(body.page-tarifs) { scroll-snap-type: y mandatory; scroll-padding-top: 73px; }
  .page-tarifs main > section { scroll-snap-align: start; }
  .page-tarifs main > section:not(.page-header) {
    min-height: calc(100vh - 73px);
    min-height: calc(100dvh - 73px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-tarifs main > section > .container { width: 100%; }
  body.page-tarifs > .site-footer { scroll-snap-align: end; }
}
@media (prefers-reduced-motion: reduce) {
  html:has(body.page-tarifs) { scroll-snap-type: none; }
}

/* ===================================================================
   SOUS-PAGES — desktop : bandeau d'en-tête compact (moins imposant)
   =================================================================== */
@media (min-width: 1025px) {
  .page-header { padding-top: 1.6rem; padding-bottom: 1.2rem; }
  .page-header h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
  .page-header-sub { font-size: .98rem; margin-top: .4rem; }
  /* première section juste après : on resserre le haut */
  .page-header + .section { padding-top: 1.8rem; }
}
