/* =============================================================================
   FINACCOUNT — Système de design
   Éditorial premium · rouge écarlate, encre, papier
   ========================================================================== */

/* ------------------------------------------------------------------ 1. Tokens */
:root {
  /* Marque */
  --brand:        #E11D26;
  --brand-strong: #C4121B;
  --brand-ink:    #B00F16;   /* texte rouge accessible sur fond clair (7.2:1) */
  --brand-deep:   #6E070C;
  --brand-tint:   #FEF2F3;
  --brand-tint-2: #FBE0E2;

  /* Neutres */
  --ink:      #0B0B0C;
  --ink-2:    #3A3A3F;
  --ink-3:    #6B6B73;
  --paper:    #FFFFFF;
  --paper-2:  #F7F7F8;
  --paper-3:  #EFEFF1;
  --line:     #E3E3E6;
  --line-2:   #D4D4D8;

  /* Sémantique */
  --bg:            var(--paper);
  --bg-alt:        var(--paper-2);
  --surface:       var(--paper);
  --surface-2:     var(--paper-2);
  --text:          var(--ink);
  --text-muted:    var(--ink-2);
  --text-subtle:   var(--ink-3);
  --border:        var(--line);
  --border-strong: var(--line-2);
  --accent:        var(--brand);
  --accent-text:   var(--brand-ink);
  --on-accent:     #FFFFFF;
  --ring:          var(--brand);
  --success:       #0F7B3F;
  --danger:        #C4121B;

  /* Typographie */
  --font-display: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-display: clamp(2.9rem, 8.2vw, 6.6rem);
  --fs-h1:      clamp(2.25rem, 5.4vw, 4.1rem);
  --fs-h2:      clamp(1.8rem, 3.6vw, 3rem);
  --fs-h3:      clamp(1.2rem, 1.7vw, 1.5rem);
  --fs-lead:    clamp(1.05rem, 1.35vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;
  --fs-kicker:  0.72rem;

  /* Espace (base 4) */
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 2.5rem; --sp-8: 3rem;
  --sp-9: 4rem;   --sp-10: 5rem;  --sp-11: 6.5rem; --sp-12: 8rem;

  --section-y: clamp(3.25rem, 5.6vw, 5.75rem);
  --shell: 1240px;
  --shell-narrow: 820px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  /* Formes */
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Ombres */
  --sh-1: 0 1px 2px rgba(11,11,12,.05), 0 1px 1px rgba(11,11,12,.03);
  --sh-2: 0 4px 14px -4px rgba(11,11,12,.09), 0 2px 5px -2px rgba(11,11,12,.05);
  --sh-3: 0 18px 42px -18px rgba(11,11,12,.22), 0 6px 14px -8px rgba(11,11,12,.10);
  --sh-red: 0 14px 34px -14px rgba(225,29,38,.48);

  /* Mouvement */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: 150ms; --t: 240ms; --t-slow: 420ms;

  --z-header: 100; --z-drawer: 200; --z-top: 300;
  color-scheme: light;
}

:root[data-theme='dark'] { color-scheme: dark; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) { color-scheme: dark; }
}

/* Palette sombre — tokens redéfinis, jamais de couleur codée en dur ailleurs */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --brand:        #FF4D55;
    --brand-strong: #FF6169;
    --brand-ink:    #FF7A80;
    --brand-deep:   #A3101A;
    --brand-tint:   #241012;
    --brand-tint-2: #3A171A;

    --bg:            #0A0A0B;
    --bg-alt:        #111113;
    --surface:       #141417;
    --surface-2:     #1A1A1E;
    --text:          #F5F5F6;
    --text-muted:    #B4B4BC;
    --text-subtle:   #86868F;
    --border:        #26262B;
    --border-strong: #35353C;
    --accent:        #FF4D55;
    --accent-text:   #FF7A80;
    --on-accent:     #2A0407;
    --ring:          #FF6169;
    --success:       #4ADE80;
    --danger:        #FF6169;

    --sh-1: 0 1px 2px rgba(0,0,0,.5);
    --sh-2: 0 4px 16px -4px rgba(0,0,0,.6);
    --sh-3: 0 20px 48px -20px rgba(0,0,0,.8), 0 6px 16px -8px rgba(0,0,0,.6);
    --sh-red: 0 14px 34px -14px rgba(255,77,85,.35);
  }
}

:root[data-theme='dark'] {
  --brand: #FF4D55; --brand-strong: #FF6169; --brand-ink: #FF7A80;
  --brand-deep: #A3101A; --brand-tint: #241012; --brand-tint-2: #3A171A;
  --bg: #0A0A0B; --bg-alt: #111113; --surface: #141417; --surface-2: #1A1A1E;
  --text: #F5F5F6; --text-muted: #B4B4BC; --text-subtle: #86868F;
  --border: #26262B; --border-strong: #35353C;
  --accent: #FF4D55; --accent-text: #FF7A80; --on-accent: #2A0407; --ring: #FF6169;
  --success: #4ADE80; --danger: #FF6169;
  --sh-1: 0 1px 2px rgba(0,0,0,.5);
  --sh-2: 0 4px 16px -4px rgba(0,0,0,.6);
  --sh-3: 0 20px 48px -20px rgba(0,0,0,.8), 0 6px 16px -8px rgba(0,0,0,.6);
  --sh-red: 0 14px 34px -14px rgba(255,77,85,.35);
}

/* ------------------------------------------------------------------ 2. Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1, 'cv11' 1;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.028em; }
address { font-style: normal; }
:target { scroll-margin-top: 7rem; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--ring);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
:focus:not(:focus-visible) { outline: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: var(--z-top); background: var(--brand); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; font-size: var(--fs-sm); transition: transform var(--t) var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------- 3. Structure */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section--alt { background: var(--bg-alt); }
.section--alt + .section--alt { padding-top: 0; }

.mark { font-style: normal; color: var(--accent-text); position: relative; white-space: nowrap; }
.mark::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .09em;
  background: var(--accent); opacity: .28; border-radius: 2px;
}

.kicker {
  font-family: var(--font-mono); font-size: var(--fs-kicker); font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase; color: var(--accent-text);
  margin-bottom: var(--sp-4); display: flex; align-items: center; gap: .6rem;
}
.kicker::before {
  content: ''; width: 1.6rem; height: 1px; background: var(--accent); opacity: .55; flex: none;
}

.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-6); max-width: none; flex-wrap: wrap;
}
.sec-head--row > div { max-width: 58ch; }
.sec-head__title { font-size: var(--fs-h2); font-weight: 700; text-wrap: balance; }
.sec-head__text { margin-top: var(--sp-4); color: var(--text-muted); font-size: var(--fs-lead); line-height: 1.6; max-width: 58ch; }
.sec-head--center .sec-head__text { margin-inline: auto; }

.prose p + p { margin-top: 1.05em; }
.prose { color: var(--text-muted); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--text); }
.prose ul { margin: 1em 0; display: grid; gap: .55rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before {
  content: ''; position: absolute; left: .3rem; top: .68em; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
}
.prose .btn { color: var(--btn-fg); text-decoration: none; }
.prose .btn--ghost, .prose .btn--outline { color: var(--text); }
.prose .btn--outline:hover { color: var(--accent-text); }
.prose code {
  font-family: var(--font-mono); font-size: .875em; background: var(--surface-2);
  padding: .12em .38em; border-radius: var(--r-xs); border: 1px solid var(--border);
}

/* ------------------------------------------------------------------ 4. Boutons */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; min-height: 48px;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: -.01em; line-height: 1;
  border-radius: var(--r-pill); border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background-color var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease);
  text-align: center;
}
.btn__ico { display: inline-flex; transition: transform var(--t) var(--ease-out); }
.btn:hover .btn__ico { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(.985); }

.btn--primary { --btn-bg: var(--brand); --btn-fg: #fff; box-shadow: var(--sh-red); }
.btn--primary:hover { --btn-bg: var(--brand-strong); box-shadow: 0 18px 40px -14px rgba(225,29,38,.6); transform: translateY(-2px); }
:root[data-theme='dark'] .btn--primary { --btn-fg: #260306; }
@media (prefers-color-scheme: dark) { :root:not([data-theme='light']) .btn--primary { --btn-fg: #260306; } }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--border-strong); }
.btn--ghost:hover { --btn-bd: var(--text); background: var(--surface-2); transform: translateY(-2px); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--border-strong); }
.btn--outline:hover { --btn-bd: var(--accent); --btn-fg: var(--accent-text); }

.btn--light { --btn-bg: #fff; --btn-fg: #0B0B0C; }
.btn--light:hover { --btn-bg: #F0F0F2; transform: translateY(-2px); }

.btn--sm { padding: .62rem 1.1rem; min-height: 42px; font-size: var(--fs-xs); }
.btn--block { display: flex; width: 100%; }

.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: var(--r-pill); border: 1.5px solid var(--border);
  color: var(--text-muted); background: var(--surface);
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
  position: relative;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); }
.icon-btn__sun, .icon-btn__moon { position: absolute; display: grid; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); }
.icon-btn__moon { opacity: 0; transform: rotate(-40deg) scale(.6); }
:root[data-theme='dark'] .icon-btn__sun { opacity: 0; transform: rotate(40deg) scale(.6); }
:root[data-theme='dark'] .icon-btn__moon { opacity: 1; transform: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .icon-btn__sun { opacity: 0; transform: rotate(40deg) scale(.6); }
  :root:not([data-theme='light']) .icon-btn__moon { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------- 5. Chips */
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .38rem .68rem; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--text-muted);
  border: 1px solid var(--border); white-space: nowrap; line-height: 1;
}
.chip--cat { background: var(--brand-tint); color: var(--brand-ink); border-color: var(--brand-tint-2); }
.chip--accent { background: var(--brand); color: #fff; border-color: transparent; }
.chip--lang { font-weight: 600; }
.chip--open { color: var(--success); border-color: color-mix(in srgb, var(--success) 35%, transparent); background: color-mix(in srgb, var(--success) 10%, transparent); }
.chip--closed, .chip--past { color: var(--text-subtle); }
.chip--type { background: var(--surface); }

.chip--filter {
  cursor: pointer; background: transparent;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
  min-height: 34px;
}
.chip--filter { min-height: 42px; padding-inline: .95rem; }
.chip--filter:hover { border-color: var(--border-strong); color: var(--text); }
.chip--filter.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: var(--fs-kicker); font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase; line-height: 1.35;
  padding: .5rem .95rem; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--surface); color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.pill--live {
  border-color: var(--brand-tint-2); background: var(--brand-tint); color: var(--brand-ink);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pill--live:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex: none;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 65%, transparent);
  animation: ping 2.4s var(--ease) infinite;
}
.pill__ico { display: inline-flex; transition: transform var(--t) var(--ease); flex: none; }
@media (max-width: 560px) {
  .pill { font-size: .66rem; letter-spacing: .07em; padding: .45rem .8rem; gap: .4rem; }
}
.pill--live:hover .pill__ico { transform: translateX(3px); }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 60%, transparent); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ------------------------------------------------------------------ 6. Header */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: var(--sh-1); }
.site-header__inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 74px; padding-block: .7rem;
}
.site-header__brand { flex: none; display: inline-flex; }

.logo { display: inline-flex; align-items: center; }
.logo__img { height: 34px; width: auto; transition: height var(--t) var(--ease); }
.logo__img--dark { display: none; }
:root[data-theme='dark'] .logo__img--light { display: none; }
:root[data-theme='dark'] .logo__img--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .logo__img--light { display: none; }
  :root:not([data-theme='light']) .logo__img--dark { display: block; }
}
.is-stuck .logo__img { height: 30px; }
.logo--footer .logo__img { height: 40px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 42px; padding: .4rem .85rem;
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-sm);
  color: var(--text-muted); border-radius: var(--r-pill);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: translateX(-50%); transition: width var(--t) var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 16px; }
.nav__link.is-active { color: var(--text); font-weight: 600; }
.nav__link.is-active::after { width: 18px; }

.site-header__actions { display: flex; align-items: center; gap: .55rem; flex: none; }

.burger { display: none; width: 44px; height: 44px; place-items: center; border-radius: var(--r-pill); border: 1.5px solid var(--border); }
.burger__box { display: grid; gap: 5px; width: 18px; }
.burger__bar { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t) var(--ease); }
.burger[aria-expanded='true'] .burger__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--brand); transform-origin: left; }

@media (max-width: 1040px) {
  .nav, .site-header__cta { display: none; }
  .burger { display: grid; }
}

/* ------------------------------------------------------------------ 7. Drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: grid; align-content: center;
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t);
}
.drawer[hidden] { display: none; }
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel { padding: var(--gutter); padding-top: 5rem; }
.drawer__list { display: grid; gap: .2rem; }
.drawer__list a {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.85rem, 8vw, 2.9rem); letter-spacing: -.035em; line-height: 1.18;
  padding: .28rem 0; color: var(--text);
  opacity: 0; transform: translateY(14px);
  transition: color var(--t) var(--ease);
}
.drawer.is-open .drawer__list a {
  animation: drawerIn .5s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 45ms + 60ms);
}
.drawer__list a:hover, .drawer__list a[aria-current] { color: var(--accent-text); }
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.drawer__foot {
  margin-top: var(--sp-7); display: grid; gap: var(--sp-5);
  opacity: 0; transform: translateY(14px);
}
.drawer.is-open .drawer__foot { animation: drawerIn .5s var(--ease-out) forwards; animation-delay: calc(var(--i) * 45ms + 60ms); }
.drawer__socials { display: flex; gap: .6rem; }
.drawer__socials a {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: var(--r-pill); border: 1.5px solid var(--border); color: var(--text-muted);
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.drawer__socials a:hover { color: var(--text); border-color: var(--text); }
body.is-locked { overflow: hidden; }

/* -------------------------------------------------------------------- 8. Hero */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4.5rem); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__title {
  font-size: var(--fs-display); font-weight: 800; letter-spacing: -.045em;
  line-height: .95; margin-bottom: var(--sp-5);
}
.hero__line { display: block; opacity: 0; transform: translateY(28px); animation: heroIn .85s var(--ease-out) forwards; animation-delay: calc(var(--i) * 90ms + 80ms); }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.hero__lead { font-size: var(--fs-lead); color: var(--text-muted); max-width: 52ch; line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--sp-6); }
@media (max-width: 480px) {
  .hero__actions { display: grid; gap: .6rem; }
  .hero__actions .btn { width: 100%; }
  .stat { padding: 1.1rem 1rem; }
  .stat__value { font-size: 2.1rem; }
}
.hero__proof {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: var(--sp-7);
  padding-top: var(--sp-5); border-top: 1px solid var(--border);
  font-size: var(--fs-xs); color: var(--text-subtle);
}
.hero__proof li { display: flex; align-items: center; gap: .45rem; }
.hero__proof svg { color: var(--accent); opacity: .85; }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 300px; }
.hero__mark { position: relative; z-index: 1; width: min(74%, 330px); animation: floaty 9s ease-in-out infinite; }
.hero__mark img { width: 100%; height: auto; filter: drop-shadow(0 26px 50px rgba(196,18,27,.28)); }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(-1.2deg); } }
.hero__glow {
  position: absolute; width: 130%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 26%, transparent) 0%, transparent 66%);
  filter: blur(46px); opacity: .8;
}
.hero__grid, .phero__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 32%, #000 8%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 32%, #000 8%, transparent 72%);
}

/* Sous 900px : le monogramme devient un filigrane derrière le texte,
   pour que le titre et les boutons occupent immédiatement l'écran. */
@media (max-width: 900px) {
  .hero { padding-block: clamp(1.75rem, 6vw, 3rem) clamp(2rem, 6vw, 3rem); }
  .hero__inner { grid-template-columns: 1fr; position: relative; }
  .hero__text { position: relative; z-index: 1; }
  .hero__visual {
    position: absolute; inset: -6% -14% auto auto;
    width: min(66%, 320px); min-height: 0; z-index: 0; pointer-events: none;
  }
  .hero__mark { width: 100%; animation: none; }
  .hero__mark img { filter: none; opacity: .085; }
  .hero__glow { width: 150%; opacity: .5; filter: blur(60px); }
  .hero__title { text-wrap: balance; }
}
@media (max-width: 560px) {
  .hero__visual { inset: -4% -20% auto auto; width: 72%; }
  .hero__mark img { opacity: .07; }
  .hero__proof { gap: .45rem 1.1rem; }
}

/* ------------------------------------------------------------------ 9. Ticker */
.ticker {
  border-block: 1px solid var(--border); background: var(--bg-alt);
  overflow: hidden; padding-block: .85rem; user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__run { display: flex; align-items: center; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 1.6rem; padding-inline: .8rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  letter-spacing: -.01em; color: var(--text-subtle); white-space: nowrap;
}
.ticker__sep { color: var(--accent); display: inline-flex; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------- 10. Stats */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.stat { background: var(--bg); padding: clamp(1.4rem, 3vw, 2.1rem); }
.stat__value {
  display: flex; align-items: baseline; gap: .06em;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 5.2vw, 3.7rem);
  letter-spacing: -.05em; line-height: 1; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat__affix { color: var(--accent); }
.stat__label { margin-top: .65rem; font-weight: 600; font-size: var(--fs-sm); color: var(--text); }
.stat__detail { margin-top: .2rem; font-size: var(--fs-xs); color: var(--text-subtle); line-height: 1.5; }

/* ------------------------------------------------------------------- 11. Pôles */
.poles { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--sp-4); }
.pole {
  position: relative; padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pole::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease-out);
}
.pole:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--sh-3); }
.pole:hover::before { transform: scaleX(1); }
.pole__ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--brand-tint); color: var(--brand-ink); margin-bottom: var(--sp-4);
}
.pole__title { font-size: var(--fs-h3); margin-bottom: .5rem; }
.pole__summary { font-size: var(--fs-sm); color: var(--text); font-weight: 500; margin-bottom: .6rem; }
.pole__detail { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }
.pole__num {
  position: absolute; right: 1rem; top: .5rem; font-family: var(--font-display);
  font-weight: 800; font-size: 3.4rem; letter-spacing: -.06em;
  color: var(--text); opacity: .045; line-height: 1;
}

/* --------------------------------------------------------------- 12. Spotlight */
.spotlight {
  display: grid; grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 3.4vw, 2.75rem);
  box-shadow: var(--sh-2);
}
.spotlight__aside { border-right: 1px solid var(--border); padding-right: clamp(1rem, 2vw, 2rem); }
.spotlight__date { display: grid; margin-bottom: var(--sp-5); }
.spotlight__day {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(3.6rem, 8vw, 5.2rem);
  line-height: .85; letter-spacing: -.06em; color: var(--accent-text); font-variant-numeric: tabular-nums;
}
.spotlight__month {
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted); margin-top: .5rem;
}
.spotlight__meta { display: grid; gap: .9rem; }
.spotlight__meta dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-subtle); }
.spotlight__meta dd { font-size: var(--fs-sm); font-weight: 500; margin-top: .1rem; }
.spotlight__title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--sp-4); }
.spotlight__text { color: var(--text-muted); max-width: 62ch; }
.spotlight__list { display: grid; gap: .55rem; margin-top: var(--sp-5); }
.spotlight__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.spotlight__list svg { color: var(--accent); flex: none; margin-top: .28em; }
.spotlight__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: var(--sp-6); }
@media (max-width: 800px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__aside { border-right: 0; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: var(--sp-5); }
}

/* --------------------------------------------------------------- 13. Articles */
.grid { display: grid; gap: var(--sp-5); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.art { position: relative; }
.art__link {
  display: grid; grid-template-rows: auto 1fr auto; height: 100%;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.art__link:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--sh-3); }
.art__media { position: relative; display: block; aspect-ratio: 540 / 116; overflow: hidden; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.art__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 600ms var(--ease-out); }
.art__link:hover .art__media img { transform: scale(1.045); }
.art__chips { position: absolute; left: .7rem; top: .7rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.art__chips .chip { backdrop-filter: blur(8px); }
.chip--lang { position: absolute; right: .7rem; top: .7rem; backdrop-filter: blur(8px); }
.art__body { padding: 1.1rem 1.25rem .9rem; display: grid; align-content: start; gap: .55rem; }
.art__title { font-size: 1.16rem; line-height: 1.25; letter-spacing: -.02em; }
.art__excerpt {
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.art__meta { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); color: var(--text-subtle); flex-wrap: wrap; }
.art__author { font-weight: 500; color: var(--text-muted); }
.art__dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; flex: none; }
.art__cta {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .85rem 1.25rem; border-top: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs);
  color: var(--accent-text);
}
.art__arrow { display: inline-flex; transition: transform var(--t) var(--ease-out); }
.art__link:hover .art__arrow { transform: translate(3px, -3px); }

.feat { border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: var(--surface); box-shadow: var(--sh-2); }
.feat__link {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  transition: box-shadow var(--t) var(--ease);
}
.feat__media { overflow: hidden; background: var(--surface-2); aspect-ratio: 540/282; }
.feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.feat:hover .feat__media img { transform: scale(1.04); }
.feat__body { padding: clamp(1.5rem, 3vw, 2.6rem); display: grid; align-content: center; gap: .85rem; }
.feat__chips { display: flex; gap: .4rem; flex-wrap: wrap; }
.feat__chips .chip--lang { position: static; }
.feat__title { font-size: clamp(1.5rem, 2.7vw, 2.2rem); line-height: 1.12; }
.feat__excerpt { color: var(--text-muted); max-width: 54ch; }
.feat__meta { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); color: var(--text-subtle); }
.feat__cta { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--accent-text); margin-top: .3rem; }
.feat:hover .feat__cta svg { transform: translate(3px,-3px); }
.feat__cta svg { transition: transform var(--t) var(--ease-out); }
@media (max-width: 860px) { .feat__link { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 14. Toolbar */
.toolbar { margin-bottom: var(--sp-6); display: grid; gap: var(--sp-4); }
.toolbar__row { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.field--search { position: relative; flex: 1 1 300px; margin: 0; }
.field--search input {
  width: 100%; min-height: 48px; padding: .7rem 2.6rem;
  border-radius: var(--r-pill); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text); font-size: var(--fs-sm);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.field--search input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 14%, transparent); outline: none; }
.field--search input::-webkit-search-cancel-button { display: none; }
.field__ico { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); color: var(--text-subtle); pointer-events: none; }
.field__clear {
  position: absolute; right: .55rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  color: var(--text-subtle); background: var(--surface-2);
}
.field__clear:hover { color: var(--text); }

.segmented { display: inline-flex; padding: 4px; gap: 2px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-pill); }
.segmented__btn {
  padding: .5rem 1rem; min-height: 40px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs);
  color: var(--text-muted); transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.segmented__btn:hover { color: var(--text); }
.segmented__btn.is-active { background: var(--surface); color: var(--text); box-shadow: var(--sh-1); }

.chips-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.toolbar__count { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-subtle); letter-spacing: .06em; }

.empty {
  display: grid; justify-items: center; text-align: center; gap: .7rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg); background: var(--surface);
}
.empty--inline { border-style: solid; }
.empty__ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink); }
.empty__title { font-size: var(--fs-h3); }
.empty__text { color: var(--text-muted); max-width: 46ch; font-size: var(--fs-sm); }
.empty__actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem; }

.note {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.3rem; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: var(--fs-sm); color: var(--text-muted);
}
.note__ico { color: var(--accent); flex: none; margin-top: .1rem; }
.note strong { color: var(--text); }

/* ------------------------------------------------------------- 15. Évènements */
.events { display: grid; gap: var(--sp-4); }
.evt {
  display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.evt:hover { border-color: var(--border-strong); box-shadow: var(--sh-2); transform: translateY(-2px); }
.evt--featured { border-color: var(--brand-tint-2); background: linear-gradient(180deg, var(--brand-tint), var(--surface) 45%); }
.evt__date {
  display: grid; align-content: start; justify-items: center; text-align: center;
  padding: .85rem .5rem; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
}
.evt__day { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; letter-spacing: -.04em; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.evt__month { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); margin-top: .35rem; }
.evt__year { font-family: var(--font-mono); font-size: .64rem; color: var(--text-subtle); margin-top: .1rem; }
.evt__top { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .7rem; }
.evt__title { font-size: var(--fs-h3); margin-bottom: .45rem; }
.evt__title a { transition: color var(--t) var(--ease); }
.evt__title a:hover { color: var(--accent-text); }
.evt__summary { color: var(--text-muted); font-size: var(--fs-sm); max-width: 68ch; }
.evt__facts { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: .85rem; font-size: var(--fs-xs); color: var(--text-subtle); }
.evt__facts li { display: flex; align-items: center; gap: .4rem; }
.evt__facts svg { color: var(--accent); opacity: .8; flex: none; }
.evt__actions { margin-top: var(--sp-5); }
@media (max-width: 600px) {
  .evt { grid-template-columns: 1fr; }
  .evt__date { justify-self: start; grid-auto-flow: column; gap: .5rem; align-items: baseline; padding: .5rem .85rem; }
  .evt__month, .evt__year { margin-top: 0; }
}

.formats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-4); }
.format {
  padding: clamp(1.3rem, 2.4vw, 1.8rem); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.format:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--sh-2); }
.format__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-ink); margin-bottom: var(--sp-4); }
.format__title { font-size: 1.15rem; margin-bottom: .45rem; }
.format__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }

.evt-details { display: grid; gap: var(--sp-5); }
.evt-detail {
  padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl);
}
.evt-detail__head { display: flex; gap: clamp(1rem, 2.5vw, 1.75rem); align-items: flex-start; margin-bottom: var(--sp-6); flex-wrap: wrap; }
.evt-detail__date {
  display: grid; justify-items: center; padding: .85rem 1.1rem; border-radius: var(--r-md);
  background: var(--brand); color: #fff; text-align: center; flex: none;
}
.evt-detail__date span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1; letter-spacing: -.04em; }
.evt-detail__date span + span { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; margin-top: .3rem; opacity: .92; }
:root[data-theme='dark'] .evt-detail__date { color: #2A0407; }
.evt-detail__chips { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .7rem; }
.evt-detail__title { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.evt-detail__kicker { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-subtle); text-transform: uppercase; letter-spacing: .13em; margin-top: .45rem; }
.evt-detail__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.evt-detail__sub { font-size: 1.05rem; margin: 1.4rem 0 .6rem; }
/* La liste du programme porte déjà une coche : la puce rouge du style
   général ferait doublon. Sélecteur assez spécifique pour l'emporter. */
.evt-detail__prose.prose .evt-detail__prog li::before { content: none; display: none; }
.evt-detail__prose.prose .evt-detail__prog li { padding-left: 0; }
.evt-detail__prog { display: grid; gap: .5rem; list-style: none; padding-left: 0; }
.evt-detail__prog li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); }
.evt-detail__prog svg { color: var(--accent); flex: none; margin-top: .3em; }
.evt-detail__aside { display: grid; gap: var(--sp-5); align-content: start; }
.evt-detail__closed { font-size: var(--fs-xs); color: var(--text-subtle); text-align: center; padding: .8rem; background: var(--surface-2); border-radius: var(--r-sm); }
@media (max-width: 820px) { .evt-detail__grid { grid-template-columns: 1fr; } }

.infolist { display: grid; gap: 1rem; padding: 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); }
.infolist dt { display: flex; align-items: center; gap: .45rem; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: .3rem; }
.infolist dt svg { color: var(--accent); }
.infolist dd { font-size: var(--fs-sm); color: var(--text); line-height: 1.5; }
.infolist a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 2px; }
.pricelist { display: grid; gap: .35rem; }
.pricelist li { display: flex; justify-content: space-between; gap: 1rem; }
.pricelist b { font-variant-numeric: tabular-nums; }

.perk {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap;
  padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--r-xl);
  background: var(--surface); border: 1px solid var(--brand-tint-2);
}
.perk__ico { display: grid; place-items: center; width: 60px; height: 60px; border-radius: var(--r-lg); background: var(--brand-tint); color: var(--brand-ink); flex: none; }
.perk > div { flex: 1 1 320px; }
.perk__title { font-size: var(--fs-h3); margin-bottom: .4rem; }
.perk__text { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------------------------------------------------------------- 16. Split */
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(1.75rem, 5vw, 4.5rem); }
.split__side { position: sticky; top: 7rem; align-self: start; }
.split__title { font-size: var(--fs-h2); }
.split__note { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-subtle); margin-top: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.split__actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: var(--sp-6); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split__side { position: static; } }

/* --------------------------------------------------------------- 17. Valeurs */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-4); }
.value {
  position: relative; padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.value__num {
  display: block; font-family: var(--font-mono); font-size: var(--fs-xs);
  color: var(--accent); letter-spacing: .16em; margin-bottom: 1rem;
}
.value__title { font-size: 1.3rem; margin-bottom: .55rem; }
.value__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.62; }

/* -------------------------------------------------------------- 18. Timeline */
.timeline { position: relative; display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); padding-left: 2.1rem; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: .5rem; bottom: .5rem; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--border) 82%); border-radius: 2px;
}
.tl { position: relative; }
.tl__dot {
  position: absolute; left: -2.1rem; top: .32rem; width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--accent); box-shadow: 0 0 0 4px var(--bg);
}
.tl__date { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .13em; text-transform: uppercase; color: var(--accent-text); }
.tl__title { font-size: var(--fs-h3); margin: .45rem 0 .5rem; }
.tl__text { color: var(--text-muted); font-size: var(--fs-sm); max-width: 62ch; line-height: 1.62; }

/* ---------------------------------------------------------------- 19. Équipe */
.team-poles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--sp-4); }
.tpole { padding: clamp(1.3rem, 2.4vw, 1.7rem); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.tpole__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-ink); margin-bottom: var(--sp-4); }
.tpole__title { font-size: 1.1rem; margin-bottom: .4rem; }
.tpole__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }

.members { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--sp-4); margin-top: var(--sp-6); }
.member { position: relative; text-align: center; }
.member__photo {
  aspect-ratio: 5/6; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2);
  display: grid; place-items: center; border: 1px solid var(--border); margin-bottom: .8rem;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__initials { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--text-subtle); letter-spacing: -.04em; }
.member__name { font-size: 1rem; }
.member__role { font-size: var(--fs-xs); color: var(--text-subtle); margin-top: .15rem; }
.member__link { position: absolute; right: .55rem; top: .55rem; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }
.member__link:hover { color: var(--accent-text); }

.team-join {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  flex-wrap: wrap; margin-top: var(--sp-6); padding: 1.25rem 1.5rem;
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg); background: var(--surface);
}
.team-join p { font-size: var(--fs-sm); color: var(--text-muted); max-width: 62ch; }

.contribs { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .6rem; }
.contrib {
  display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.contrib:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.contrib__av {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--brand-tint); color: var(--brand-ink);
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .02em;
}
.contrib__body { display: grid; min-width: 0; }
.contrib__name { font-weight: 600; font-size: var(--fs-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contrib__meta { font-family: var(--font-mono); font-size: .68rem; color: var(--text-subtle); }

/* ------------------------------------------------------------- 20. Adhésion */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--sp-4); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.plan--featured { border-color: var(--brand); box-shadow: var(--sh-red); }
.plan--featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--r-xl); pointer-events: none;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 8%, transparent), transparent 42%);
}
.plan__badge {
  position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: var(--r-pill);
  background: var(--text); color: var(--bg); white-space: nowrap;
}
.plan--featured .plan__badge { background: var(--brand); color: #fff; }
.plan__name { font-size: 1.3rem; margin-top: .4rem; }
.plan__audience { font-size: var(--fs-xs); color: var(--text-subtle); }
.plan__price { display: flex; align-items: baseline; gap: .12em; margin-top: .9rem; }
.plan__amount { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.plan__currency { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--accent); margin-left: .12em; }
.plan__period { font-size: var(--fs-xs); color: var(--text-subtle); margin-bottom: 1rem; }
.plan__features { display: grid; gap: .55rem; margin-bottom: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--border); flex: 1 0 auto; align-content: start; }
.plan__features li { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.plan__features svg { color: var(--accent); flex: none; margin-top: .3em; }
.plans__note { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: var(--sp-5); font-size: var(--fs-xs); color: var(--text-subtle); text-align: center; }
.plans__note svg { color: var(--success); flex: none; }

.status {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.35rem; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--surface);
}
.status--open { border-color: color-mix(in srgb, var(--success) 32%, transparent); background: color-mix(in srgb, var(--success) 7%, var(--surface)); }
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--text-subtle); flex: none; }
.status--open .status__dot { background: var(--success); animation: ping 2.4s var(--ease) infinite; }
.status__text { flex: 1 1 260px; font-size: var(--fs-sm); color: var(--text-muted); }
.status__text strong { color: var(--text); }

.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--sp-4); }
.benefit { padding: clamp(1.4rem, 2.5vw, 1.9rem); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.benefit__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-ink); margin-bottom: var(--sp-4); }
.benefit__title { font-size: 1.12rem; margin-bottom: .45rem; }
.benefit__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--sp-4); counter-reset: step; }
.step { position: relative; padding: 1.5rem 1.35rem 1.35rem; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.step__n { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent); letter-spacing: .16em; display: block; margin-bottom: .8rem; }
.step__title { font-size: 1.05rem; margin-bottom: .4rem; }
.step__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.58; }
.steps__cta { display: flex; justify-content: center; margin-top: var(--sp-6); }

/* ------------------------------------------------------------------- 21. FAQ */
.faq { display: grid; gap: .6rem; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color var(--t) var(--ease); }
.faq__item[open] { border-color: var(--border-strong); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.015em;
  min-height: 56px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent-text); }
.faq__sign { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); color: var(--text-muted); flex: none; transition: transform var(--t) var(--ease), background var(--t) var(--ease); }
.faq__item[open] .faq__sign { transform: rotate(180deg); background: var(--brand-tint); color: var(--brand-ink); }
.faq__a { padding: 0 1.25rem 1.15rem; color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.65; max-width: 72ch; }
.faq__foot { margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--text-subtle); text-align: center; }
.faq__foot a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------- 22. Page hero/band */
.phero { position: relative; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); overflow: hidden; }
.phero__inner { max-width: 60ch; }
.phero__title { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.042em; text-wrap: balance; }
.phero__lead { margin-top: var(--sp-5); font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.6; max-width: 56ch; }
.phero__actions { margin-top: var(--sp-6); display: flex; gap: .7rem; flex-wrap: wrap; }

.crumb { margin-bottom: var(--sp-6); }
.crumb ol { display: flex; flex-wrap: wrap; gap: .3rem; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-subtle); }
.crumb li + li::before { content: '/'; margin-right: .3rem; opacity: .5; }
.crumb a:hover { color: var(--accent-text); }

.band { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5rem); }
.band--dark { background: var(--ink); color: #F5F5F6; }
:root[data-theme='dark'] .band--dark { background: #141417; border-block: 1px solid var(--border); }
@media (prefers-color-scheme: dark) { :root:not([data-theme='light']) .band--dark { background: #141417; border-block: 1px solid var(--border); } }
.band--red { background: linear-gradient(120deg, var(--brand-strong), var(--brand-deep)); color: #fff; }
.band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; }
.band__text { max-width: 60ch; }
.band .kicker { color: rgba(255,255,255,.72); }
.band .kicker::before { background: rgba(255,255,255,.55); }
.band--dark .kicker { color: #FF6169; }
.band--dark .kicker::before { background: #FF6169; }
.band__title { font-size: var(--fs-h2); margin-bottom: .8rem; }
.band__lead { color: rgba(255,255,255,.76); font-size: var(--fs-lead); line-height: 1.55; }
.band__action { flex: none; }
@media (max-width: 560px) {
  .band__action, .band__action .btn { width: 100%; }
  .band__mark { display: none; }
}
.band__mark { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); width: min(300px, 26%); opacity: .055; pointer-events: none; }
.band__mark img { width: 100%; filter: brightness(0) invert(1); }
.band--red .band__mark img { filter: brightness(0) invert(1); }

/* ------------------------------------------------------------- 23. Join home */
.join { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.75rem, 5vw, 4rem); align-items: center; }
.join__title { font-size: var(--fs-h2); margin-bottom: .8rem; }
.join__lead { color: var(--text-muted); font-size: var(--fs-lead); line-height: 1.6; }
.join__actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: var(--sp-6); }
.join__benefits { display: grid; gap: .7rem; }
.join__benefit {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.3rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.join__benefit:hover { border-color: var(--border-strong); transform: translateX(4px); }
.join__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--brand-tint); color: var(--brand-ink); flex: none; }
.join__benefit h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.join__benefit p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; }
@media (max-width: 900px) { .join { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- 24. Entreprises */
.figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-4); }
.figure { display: grid; gap: .25rem; padding: 1.4rem 1.3rem; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.figure__v { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; letter-spacing: -.05em; color: var(--accent-text); }
.figure__l { font-weight: 600; font-size: var(--fs-sm); }
.figure__d { font-size: var(--fs-xs); color: var(--text-subtle); line-height: 1.5; }

.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-4); }
.offer { padding: clamp(1.4rem, 2.6vw, 1.9rem); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.offer:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.offer__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.offer__title { font-size: 1.2rem; }
.offer__num { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent); letter-spacing: .14em; }
.offer__text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }
.offer__meta { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--border); font-size: var(--fs-xs); color: var(--text-subtle); }
.offer__meta li { display: flex; align-items: center; gap: .35rem; }
.offer__meta svg { color: var(--accent); opacity: .8; }

.contact-cta { text-align: center; display: grid; justify-items: center; gap: .8rem; padding: clamp(2rem, 5vw, 3.2rem); border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--surface); }
.contact-cta__ico { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink); }
.contact-cta__title { font-size: var(--fs-h2); }
.contact-cta__text { color: var(--text-muted); max-width: 48ch; }
.contact-cta__actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }

/* -------------------------------------------------------------- 25. Contact */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--sp-4); }
.ccard { padding: clamp(1.4rem, 2.5vw, 1.85rem); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); display: grid; align-content: start; gap: .55rem; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.ccard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ccard__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-ink); margin-bottom: .3rem; }
.ccard__title { font-size: 1.1rem; }
.ccard__lines { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; overflow-wrap: anywhere; }
.ccard__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .4rem; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs); color: var(--accent-text); }
.ccard__link:hover svg { transform: translateX(3px); }
.ccard__link svg { transition: transform var(--t) var(--ease); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(1.75rem, 5vw, 4rem); align-items: start; }
.contact-grid__intro { position: sticky; top: 7rem; }
.contact-grid__title { font-size: var(--fs-h2); margin-bottom: .8rem; }
.contact-grid__text { color: var(--text-muted); }
.contact-grid__list { display: grid; gap: .6rem; margin-top: var(--sp-6); }
.contact-grid__list li { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); color: var(--text-muted); }
.contact-grid__list svg { color: var(--accent); flex: none; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-grid__intro { position: static; } }

.form { display: grid; gap: var(--sp-4); padding: clamp(1.5rem, 3vw, 2.2rem); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; align-content: start; }
.field > label { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); }
.field abbr { color: var(--accent); text-decoration: none; }
.form .field input:not([type='checkbox']), .form .field textarea, .select select {
  width: 100%; min-height: 50px; padding: .8rem 1rem;
  border-radius: var(--r-sm); border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text); font-size: var(--fs-sm); font-family: var(--font-body);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form .field input:focus, .form .field textarea:focus, .select select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 13%, transparent);
}
.form .field input::placeholder, .form .field textarea::placeholder { color: var(--text-subtle); opacity: .75; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: var(--danger); }
.field__hint { font-size: var(--fs-xs); color: var(--text-subtle); }
.field__error { font-size: var(--fs-xs); color: var(--danger); font-weight: 500; display: none; }
.field.is-invalid .field__error { display: block; }
.select { position: relative; }
.select select { appearance: none; padding-right: 2.75rem; cursor: pointer; }
.select__ico { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-subtle); pointer-events: none; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.field--check input { width: 20px; height: 20px; margin-top: .18rem; accent-color: var(--brand); cursor: pointer; }
.field--check label { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-sm); color: var(--text-muted); cursor: pointer; }
.field--check .field__error { grid-column: 1 / -1; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .4rem; }
.form__legal { font-size: var(--fs-xs); color: var(--text-subtle); }
.form__status { display: none; padding: .9rem 1.15rem; border-radius: var(--r-sm); font-size: var(--fs-sm); }
.form__status.is-visible { display: block; }
.form__status.is-ok { background: color-mix(in srgb, var(--success) 12%, transparent); color: var(--success); border: 1px solid color-mix(in srgb, var(--success) 30%, transparent); }
.form__status.is-error { background: color-mix(in srgb, var(--danger) 10%, transparent); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 28%, transparent); }
.spinner { width: 15px; height: 15px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: .55; cursor: not-allowed; }

.mapcard { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: var(--surface); }
.mapcard__body { padding: clamp(1.5rem, 3vw, 2.2rem); display: grid; align-content: center; gap: .6rem; justify-items: start; }
.mapcard__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-ink); }
.mapcard__title { font-size: var(--fs-h3); }
.mapcard__addr { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.6; }
.mapcard__note { font-size: var(--fs-xs); color: var(--text-subtle); }
.mapcard__map {
  position: relative; min-height: 320px; overflow: hidden;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-alt));
  border-left: 1px solid var(--border); display: grid; place-items: center;
}
.mapcard__plan { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--text); opacity: .55; }
.mapcard__pin {
  position: relative; display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--brand); color: #fff; box-shadow: var(--sh-red);
}
:root[data-theme='dark'] .mapcard__pin { color: #2A0407; }
.mapcard__pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--brand);
  animation: pinPulse 2.6s var(--ease) infinite;
}
@keyframes pinPulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(2.3); opacity: 0; }
  100% { transform: scale(2.3); opacity: 0; }
}
.mapcard__tag {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); background: color-mix(in srgb, var(--bg) 86%, transparent);
  padding: .4rem .8rem; border-radius: var(--r-pill); border: 1px solid var(--border);
  white-space: nowrap; backdrop-filter: blur(6px);
}
@media (max-width: 800px) { .mapcard__map { border-left: 0; border-top: 1px solid var(--border); min-height: 240px; } }
@media (max-width: 800px) { .mapcard { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- 26. Légal / plan */
.legal { max-width: 74ch; }
.legal__block + .legal__block { margin-top: var(--sp-8); }
.legal__h2 { font-size: 1.45rem; margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.legal__todo { font-size: var(--fs-sm); padding: .85rem 1.1rem; background: var(--brand-tint); border-left: 3px solid var(--brand); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--text-muted); }
.legal__updated { margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-subtle); }

.sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-7); }
.sitemap__group:last-child { grid-column: 1 / -1; }
.sitemap__h2 { font-size: 1.15rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.sitemap ul { display: grid; gap: .5rem; }
.sitemap__group:last-child ul { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.sitemap a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--t) var(--ease); display: inline-flex; align-items: center; gap: .3rem; }
.sitemap a:hover { color: var(--accent-text); }
.sitemap__note { display: block; font-family: var(--font-mono); font-size: .68rem; color: var(--text-subtle); }

/* -------------------------------------------------------------------- 27. 404 */
.nf { position: relative; min-height: 74vh; display: grid; align-items: center; overflow: hidden; padding-block: var(--sp-9); }
.nf__inner { max-width: 60ch; position: relative; z-index: 1; }
.nf__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 14vw, 9rem); line-height: 1; letter-spacing: -.06em; color: var(--accent); opacity: .18; }
.nf__title { font-size: var(--fs-h1); margin-top: -.25em; }
.nf__lead { color: var(--text-muted); font-size: var(--fs-lead); margin-top: var(--sp-4); }
.nf__actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: var(--sp-6); }
.nf__links { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.nf__links a { display: inline-flex; align-items: center; gap: .45rem; font-size: var(--fs-sm); color: var(--text-muted); }
.nf__links a:hover { color: var(--accent-text); }
.nf__links svg { color: var(--accent); }
.nf__mark { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(420px, 42%); opacity: .06; pointer-events: none; }

/* ----------------------------------------------------------------- 28. Footer */
.site-footer { position: relative; background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: auto; }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr); gap: clamp(2rem, 5vw, 4rem); padding-bottom: var(--sp-8); }
.site-footer__pitch { margin-top: var(--sp-4); color: var(--text-muted); font-size: var(--fs-sm); max-width: 34ch; line-height: 1.6; }
.site-footer__socials { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: var(--sp-5); }
.social {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem;
  border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 500; color: var(--text-muted);
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
  min-height: 40px;
}
.social:hover { color: var(--text); border-color: var(--text); transform: translateY(-2px); }
.site-footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--sp-6); }
.site-footer__title { font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 1rem; }
.site-footer__nav ul { display: grid; gap: .55rem; }
.site-footer__nav a { font-size: var(--fs-sm); color: var(--text-muted); display: inline-flex; align-items: center; gap: .25rem; transition: color var(--t) var(--ease); }
.site-footer__nav a:hover { color: var(--accent-text); }
.site-footer__nav address { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.65; }
.site-footer__mail { display: inline-flex; align-items: flex-start; gap: .45rem; margin-top: .8rem; font-size: var(--fs-sm); color: var(--accent-text); overflow-wrap: anywhere; line-height: 1.5; }
.site-footer__mail svg { flex: none; margin-top: .28em; }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  flex-wrap: wrap; padding-block: var(--sp-5); border-top: 1px solid var(--border);
  font-size: var(--fs-xs); color: var(--text-subtle);
}
.site-footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.site-footer__legal a:hover { color: var(--accent-text); }
@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr; } }

.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 46px; height: 46px; display: grid; place-items: center; z-index: 60;
  border-radius: 50%; background: var(--text); color: var(--bg);
  box-shadow: var(--sh-3); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand); color: #fff; }

/* ------------------------------------------------------------- 29. Animations */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  animation: revealIn .72s var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes revealIn { to { opacity: 1; transform: none; } }
.no-js .reveal, .no-js .hero__line, .no-js .drawer__list a { opacity: 1; transform: none; animation: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal, .hero__line, .drawer__list a, .drawer__foot { opacity: 1 !important; transform: none !important; }
  .ticker__track { animation: none; transform: none; }
  .hero__mark { animation: none; }
}

/* ------------------------------------------------------------ 30. Impression */
@media print {
  .site-header, .drawer, .to-top, .ticker, .band, .scroll-progress { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: .75em; color: #555; }
}

/* ======================================================= 31. Espace adhérent */
/* Un `display` explicite l'emporte sur l'attribut hidden du navigateur :
   sans cette règle, les blocs masqués restent visibles. */
[hidden] { display: none !important; }

.esp-charge { display: grid; justify-items: center; gap: .9rem; padding: 4rem 1rem; color: var(--text-subtle); }
.esp-charge .spinner { width: 22px; height: 22px; border-width: 2.5px; }

.esp-carte {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 2.6rem); display: grid; justify-items: start; gap: .7rem;
}
.esp-ico {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--brand-tint); color: var(--brand-ink);
}
.esp-titre { font-size: var(--fs-h3); }
.esp-texte { color: var(--text-muted); max-width: 54ch; }
.esp-form { width: 100%; display: grid; gap: 1rem; margin-top: .6rem; }
.esp-form .field input {
  width: 100%; min-height: 50px; padding: .8rem 1rem; font-size: var(--fs-sm);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg); color: var(--text);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.esp-form .field input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 13%, transparent);
}
.esp-message { display: none; margin-top: .3rem; font-size: var(--fs-sm); padding: .8rem 1rem; border-radius: var(--r-sm); }
.esp-message.est-ok, .esp-message.est-erreur { display: block; }
.esp-message.est-ok {
  background: color-mix(in srgb, var(--success) 10%, transparent); color: var(--success);
  border: 1px solid color-mix(in srgb, var(--success) 28%, transparent);
}
.esp-message.est-erreur {
  background: color-mix(in srgb, var(--danger) 9%, transparent); color: var(--danger);
  border: 1px solid color-mix(in srgb, var(--danger) 26%, transparent);
}
.esp-aide { margin-top: .5rem; font-size: var(--fs-xs); color: var(--text-subtle); }
.esp-aide a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

.esp-entete { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.esp-nom { font-size: var(--fs-h2); }

.esp-statut {
  display: flex; align-items: center; gap: .8rem; margin-top: var(--sp-5);
  padding: 1rem 1.2rem; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--surface); font-size: var(--fs-sm); flex-wrap: wrap;
}
.esp-statut__pastille { width: 9px; height: 9px; border-radius: 50%; background: var(--text-subtle); flex: none; }
.esp-statut.est-ok { border-color: color-mix(in srgb, var(--success) 32%, transparent); background: color-mix(in srgb, var(--success) 7%, var(--surface)); }
.esp-statut.est-ok .esp-statut__pastille { background: var(--success); }
.esp-statut.est-expire { border-color: var(--brand-tint-2); background: var(--brand-tint); }
.esp-statut.est-expire .esp-statut__pastille { background: var(--brand); }
.esp-statut a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

.esp-bloc { margin-top: var(--sp-7); }
.esp-h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; margin-bottom: var(--sp-4); }
.esp-h3 svg { color: var(--accent); }

.esp-liste { display: grid; gap: .6rem; }
.esp-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.esp-item.est-passe { opacity: .6; }
.esp-item__titre { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.esp-item__meta { font-size: var(--fs-xs); color: var(--text-subtle); margin-top: .2rem; }
.esp-item__desc { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .5rem; max-width: 60ch; }
.esp-item__lien {
  display: inline-block; margin-top: .6rem; font-size: var(--fs-xs); font-weight: 600;
  color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px;
}
.esp-puce {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: var(--r-pill); background: var(--surface-2);
  border: 1px solid var(--border); color: var(--text-muted); white-space: nowrap; flex: none;
}
.esp-vide { color: var(--text-subtle); font-size: var(--fs-sm); padding: 1.2rem; text-align: center;
  border: 1px dashed var(--border-strong); border-radius: var(--r-md); }
.esp-vide a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .esp-item { flex-direction: column; } }

/* ===================================================== 32. Page d'un article */
.art-page__tete { padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(1.2rem, 2.5vw, 2rem); }
.art-page__chips { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.art-page__chips .chip--lang { position: static; }
.art-page__titre { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.04em; text-wrap: balance; }
.art-page__chapo { margin-top: var(--sp-5); font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.6; max-width: 58ch; }
.art-page__meta { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--text-subtle); flex-wrap: wrap; }
.art-page__auteur { font-weight: 600; color: var(--text); }
.art-page__image { margin: 0 0 var(--sp-7); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.art-page__image img { width: 100%; height: auto; display: block; }

.art-page__corps { font-size: 1.09rem; line-height: 1.75; color: var(--text); max-width: 68ch; }
.art-page__corps h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 2em 0 .6em; }
.art-page__corps h3 { font-size: 1.22rem; margin: 1.6em 0 .5em; }
.art-page__corps p { margin-bottom: 1.1em; }
.art-page__corps ul, .art-page__corps ol { margin: 0 0 1.2em; padding-left: 1.5em; list-style: revert; display: block; }
.art-page__corps li { margin-bottom: .45em; padding-left: 0; }
/* Le style général du site dessine une puce rouge en ::before ; dans un article
   rédigé, la puce native de la liste suffit — sinon on en voit deux.
   Sélecteur volontairement plus spécifique que `.prose ul li::before`. */
.art-page__corps.prose ul li::before,
.art-page__corps.prose ol li::before { content: none; display: none; }
.art-page__corps.prose ul li, .art-page__corps.prose ol li { padding-left: 0; }
.art-page__corps.prose ul li::marker, .art-page__corps.prose ol li::marker { color: var(--accent); }
.art-page__corps blockquote {
  margin: 1.6em 0; padding: .2em 0 .2em 1.3em; border-left: 3px solid var(--accent);
  font-size: 1.12em; line-height: 1.6; color: var(--text-muted); font-style: normal;
}
.art-page__corps img { border-radius: var(--r-md); margin: 1.4em 0; }
.art-page__corps a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

.art-page__doc {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: var(--sp-7); padding: 1.2rem 1.4rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.art-page__doc-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--brand-tint); color: var(--brand-ink); flex: none; }
.art-page__doc > div { flex: 1 1 220px; }
.art-page__doc-titre { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.art-page__doc-texte { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .15rem; }

.art-page__pied {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.art-page__retour, .art-page__partage { display: inline-flex; align-items: center; gap: .45rem; color: var(--text-muted); }
.art-page__retour svg { transform: rotate(180deg); }
.art-page__retour:hover, .art-page__partage:hover { color: var(--accent-text); }
.page-article .section--alt { margin-top: var(--sp-9); }

/* ============================================ 33. Inscription à un évènement */
.inscr { display: grid; gap: .7rem; padding: 1.15rem 1.25rem; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--r-md); }
.inscr__titre { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.inscr__regle { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.55; }
.inscr__regle strong { color: var(--text); }
.inscr__champs { display: grid; gap: .55rem; }
.inscr__nom { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.inscr input:not([type="checkbox"]):not([type="radio"]) { width: 100%; min-height: 46px; padding: .7rem .85rem; font-size: var(--fs-sm);
  border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--bg); color: var(--text);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.inscr input:not([type="checkbox"]):not([type="radio"]):focus { outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 13%, transparent); }
.inscr input::placeholder { color: var(--text-subtle); opacity: .8; }
.inscr__reponse { display: none; font-size: var(--fs-sm); line-height: 1.55;
  padding: .85rem 1rem; border-radius: var(--r-sm); }
.inscr__reponse.est-succes, .inscr__reponse.est-info, .inscr__reponse.est-erreur { display: block; }
.inscr__reponse.est-succes { background: color-mix(in srgb, var(--success) 10%, transparent);
  color: var(--success); border: 1px solid color-mix(in srgb, var(--success) 28%, transparent); }
.inscr__reponse.est-info { background: var(--brand-tint); color: var(--text);
  border: 1px solid var(--brand-tint-2); }
.inscr__reponse.est-erreur { background: color-mix(in srgb, var(--danger) 9%, transparent);
  color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 26%, transparent); }
.inscr__argument { display: block; margin-top: .4rem; font-size: var(--fs-xs); color: var(--text-muted); }
.inscr__actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .8rem; }
.inscr__note { font-size: var(--fs-xs); color: var(--text-subtle); align-self: center; }
@media (max-width: 420px) { .inscr__nom { grid-template-columns: 1fr; } }

/* ============================================================================
   ADHÉSION — formulaire de paiement HelloAsso
   Même facture que le formulaire d'inscription, en plus large : c'est le
   point d'aboutissement de la page, il doit se voir.
   ========================================================================= */
.adh { margin: 2.4rem auto 0; max-width: 620px; }
.adh__form { display: grid; gap: .95rem; padding: 1.6rem 1.5rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--r-lg); }
.adh__titre { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.adh__sous { margin-top: -.6rem; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.55; }

.adh__formules { display: grid; gap: .5rem; border: 0; padding: 0; margin: 0; }
.adh__choix { display: flex; align-items: center; gap: .8rem; padding: .8rem .95rem; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .18s ease, background .18s ease; }
.adh__choix:hover { border-color: var(--border-strong); }
.adh__choix input { flex: none; width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.adh__choix:has(input:checked) { border-color: var(--accent); background: var(--brand-tint); }
.adh__choix:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
.adh__choix-corps { display: grid; gap: .1rem; flex: 1 1 auto; min-width: 0; }
.adh__choix-nom { font-weight: 600; font-size: var(--fs-sm); }
.adh__choix-qui { font-size: var(--fs-xs); color: var(--text-muted); }
.adh__choix-prix { flex: none; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  font-variant-numeric: tabular-nums; }

.adh__champs { display: grid; gap: .55rem; }
.adh__nom { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.adh input[type="email"], .adh input[type="text"] { width: 100%; min-height: 48px;
  padding: .75rem .9rem; font-size: var(--fs-sm); font-family: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.adh input[type="email"]:focus, .adh input[type="text"]:focus { outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--brand-tint); }
.adh input::placeholder { color: var(--text-subtle); opacity: .8; }

.adh__reponse { display: none; font-size: var(--fs-sm); line-height: 1.55;
  padding: .85rem 1rem; border-radius: var(--r-md); }
.adh__reponse.est-succes, .adh__reponse.est-info, .adh__reponse.est-erreur { display: block; }
.adh__reponse.est-succes { background: color-mix(in srgb, var(--success) 10%, transparent);
  color: var(--text); border: 1px solid color-mix(in srgb, var(--success) 30%, transparent); }
.adh__reponse.est-info { background: var(--brand-tint); color: var(--text);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent); }
.adh__reponse.est-erreur { background: color-mix(in srgb, var(--danger) 9%, transparent);
  color: var(--text); border: 1px solid color-mix(in srgb, var(--danger) 28%, transparent); }
.adh__actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .8rem; }

@media (max-width: 460px) {
  .adh__nom { grid-template-columns: 1fr; }
  .adh__form { padding: 1.25rem 1.1rem; }
}

/* ============================================================================
   RETOUR DE PAIEMENT
   ========================================================================= */
.retour__bloc { display: grid; justify-items: center; text-align: center; gap: .85rem;
  padding: 3rem 2rem; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); }
.retour__ico { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; }
.retour__bloc--succes .retour__ico { background: color-mix(in srgb, var(--success) 14%, transparent);
  color: var(--success); }
.retour__bloc--alerte .retour__ico { background: color-mix(in srgb, var(--danger) 12%, transparent);
  color: var(--danger); }
.retour__bloc--neutre .retour__ico { background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--line); }
.retour__titre { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2rem);
  text-wrap: balance; }
.retour__texte { max-width: 46ch; color: var(--text-muted); line-height: 1.65; }
.retour__precision { font-weight: 600; }
.retour__actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }

/* ============================================================================
   INSCRIPTION — le choix d'un non-adhérent
   L'adhésion est mise en avant (bordure et badge), la place seule reste un
   vrai bouton de même taille : on pousse, on n'enferme pas.
   ========================================================================= */
.inscr__reponse.est-choix { display: grid; gap: .75rem; padding: 0; background: none; border: 0; }
.choix__intro { font-size: var(--fs-sm); line-height: 1.55; color: var(--text-muted); }
.choix__intro strong { color: var(--text); }
.choix { display: grid; gap: .6rem; }
.choix__carte { position: relative; display: grid; gap: .35rem; padding: 1rem 1.05rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.choix__carte--vedette { border: 1.5px solid var(--accent); background: var(--brand-tint); }
.choix__carte--vedette:has(.choix__badge) { padding-top: 1.35rem; }
.choix__badge { position: absolute; top: -.7rem; left: .9rem; padding: .18rem .6rem;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; color: #fff;
  background: var(--accent); border-radius: 999px; }
.choix__nom { font-weight: 700; font-size: var(--fs-sm); }
.choix__prix { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem;
  line-height: 1.1; font-variant-numeric: tabular-nums; }
.choix__prix small { font-family: inherit; font-size: var(--fs-xs); font-weight: 500; color: var(--text-muted); }
.choix__plus { font-size: var(--fs-xs); line-height: 1.5; color: var(--text-muted); margin-bottom: .35rem; }
.choix__plus strong { color: var(--text); }
.choix__reduit { display: flex; align-items: center; gap: .45rem; font-size: var(--fs-xs);
  color: var(--text-muted); cursor: pointer; margin-bottom: .3rem; }
.choix__reduit input { flex: none; width: 17px; height: 17px; margin: 0; accent-color: var(--accent); cursor: pointer; }
.choix__note { font-size: var(--fs-xs); color: var(--text-subtle); line-height: 1.5; }
.choix__note.est-erreur { color: var(--danger); }

.adh__formation { display: grid; gap: .45rem; }
.adh__label { font-size: var(--fs-sm); font-weight: 600; }
.choix__formation { display: grid; gap: .4rem; margin: .2rem 0 .5rem; }
.choix__formation-l { font-size: var(--fs-xs); font-weight: 600; }
.inscr__promo { font-size: var(--fs-xs); font-weight: 600; color: var(--accent); }

/* Accès à l'espace adhérent, à côté du mode sombre (bureau et mobile). */
.icon-btn--compte[aria-current] { color: var(--accent); border-color: var(--accent); }
@media (max-width: 360px) {
  /* Très petits écrans : on resserre plutôt que de faire déborder l'en-tête. */
  .site-header__actions { gap: .35rem; }
  .site-header__actions .icon-btn { width: 38px; height: 38px; }
}
