/* =====================================================
   SPV – Solidarité Pour les Personnes Vulnérables
   Feuille de styles principale
   Palette : #246F5B (vert) + #DDA924 (or)
   WCAG AA — Mobile-first — Pas de dépendances externes
   ===================================================== */

/* ── Variables ────────────────────────────────────── */
:root {
  --font: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Couleurs primaires */
  --primary:       #246F5B;
  --primary-dark:  #1a5244;
  --primary-light: #2d8a6f;
  --primary-soft:  #EAF3F0;
  --primary-xsoft: #F2FAF7;

  /* Or / accent */
  --gold:          #DDA924;
  --gold-dark:     #b8891b;
  --gold-soft:     #FEF4D5;
  --gold-xsoft:    #FFFBEE;

  /* Surfaces & textes */
  --bg:            #FAFCFB;
  --bg-alt:        #F0F7F4;
  --surface:       #FFFFFF;
  --text:          #0F1F1A;
  --heading:       #0A1912;
  --muted:         #4A6258;
  --border:        #C8DDD7;
  --border-light:  #DFF0EA;

  /* États */
  --danger:        #B91C1C;
  --focus:         #246F5B;
  --success:       #15803D;

  /* Ombres */
  --shadow-xs: 0 2px 8px rgba(15,31,26,.05);
  --shadow-sm: 0 6px 18px rgba(15,31,26,.07);
  --shadow-md: 0 14px 32px rgba(15,31,26,.1);
  --shadow-lg: 0 24px 48px rgba(15,31,26,.13);

  /* Géométrie */
  --radius-sm:  0.6rem;
  --radius-md:  1rem;
  --radius-lg:  1.4rem;
  --radius-xl:  2rem;
  --container:  min(1120px, calc(100% - 2rem));
  --header-h:   4.6rem;

  /* Animation */
  --dur: 380ms;
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

/* Mode sombre */
html[data-theme="dark"] {
  color-scheme: dark;
  --bg:           #0C1712;
  --bg-alt:       #111E18;
  --surface:      #172219;
  --text:         #E8F5F0;
  --heading:      #F2FBF7;
  --muted:        #9DBDB4;
  --border:       #2A3E36;
  --border-light: #233329;
  --primary-soft: rgba(36,111,91,.16);
  --primary-xsoft:rgba(36,111,91,.08);
  --gold-soft:    rgba(221,169,36,.16);
  --gold-xsoft:   rgba(221,169,36,.07);
  --focus:        #4DC9A0;
  --shadow-sm:    0 6px 22px rgba(0,0,0,.28);
  --shadow-md:    0 16px 38px rgba(0,0,0,.35);
}

/* ── Reset & base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
p, ul, ol { margin-top: 0; }
h1,h2,h3,h4,h5 { line-height: 1.2; }
h1,h2,h3 { font-family: var(--font-display); }
a { color: var(--primary); text-underline-offset: .18em; }
a:hover { color: var(--primary-dark); }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip link ────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: .5rem;
  z-index: 200;
  background: var(--surface);
  color: var(--text);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  font-weight: 700;
}
.skip-link:focus { left: .75rem; }

/* ── Conteneur ────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }

/* ── Section ──────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt {
  background: var(--bg);
  border-block: 0;
}
.section-soutenir {
  background: var(--bg);
  border-block: 0;
}

/* Section articles avec la meme couleur que le footer */
#articles.section {
  background: #0C1911;
}
#articles .section-head h2 {
  color: #FFFFFF;
}
#articles .section-head p {
  color: rgba(255,255,255,.75);
}
#articles .eyebrow {
  background: rgba(221,169,36,.14);
  color: var(--gold);
}

/* Page liste des articles: meme fond que le footer */
.page-articles main .section {
  background: #0C1911;
}
.page-articles .section-head h1 {
  color: #FFFFFF;
}
.page-articles .section-head p {
  color: rgba(255,255,255,.75);
}
.page-articles .eyebrow {
  background: rgba(221,169,36,.14);
  color: var(--gold);
}

/* Page liste des articles: cartes style editorial */
.page-articles .article-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 1.35rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.page-articles .article-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.page-articles .article-category {
  background: transparent;
  color: var(--primary);
  padding: 0;
  border-radius: 0;
  font-size: .75rem;
  letter-spacing: .08em;
}
.page-articles .article-title {
  font-size: clamp(1.1rem, 1.2vw + .85rem, 1.4rem);
  line-height: 1.25;
  margin: .2rem 0 .65rem;
}
.page-articles .article-excerpt {
  font-size: .96rem;
  line-height: 1.6;
}
.page-articles .article-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.page-articles .article-link:hover {
  color: var(--primary);
}

/* Pages d'article: fond general comme le footer, contenu en panneau clair */
.page-article main#article-content {
  background: var(--bg);
  padding: 1.25rem 0 2rem;
}
.page-article .article-page {
  background: var(--bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Header des pages articles: meme ton que le footer */
.page-articles .site-header,
.page-article .site-header {
  background: #0C1911;
  border-bottom: 0;
}
.page-articles .brand,
.page-article .brand {
  color: #FFFFFF;
}
.page-articles .brand:hover,
.page-article .brand:hover {
  color: #FFFFFF;
}
.page-articles .brand-acronym,
.page-article .brand-acronym {
  color: var(--gold);
}
.page-articles .nav-toggle,
.page-article .nav-toggle {
  color: #FFFFFF !important;
}
.page-articles .btn-outline,
.page-article .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255,255,255,.45);
}
.page-articles .btn-outline:hover,
.page-article .btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: #FFFFFF;
  border-color: rgba(255,255,255,.7);
}

/* ── Bande alerte ─────────────────────────────────── */
.alert-strip {
  background: #FEF3C7;
  color: #78350F;
  border-bottom: 1px solid #FDE68A;
  padding: .55rem 1rem;
  text-align: center;
  font-size: .88rem;
}
html[data-theme="dark"] .alert-strip {
  background: #292006;
  color: #FDE68A;
  border-bottom-color: #3D2E04;
}

/* ── En-tête & navigation ─────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,252,251,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 0;
}
html[data-theme="dark"] .site-header {
  background: rgba(12,23,18,.92);
  border-bottom: 0;
}

.nav {
  width: var(--container);
  min-height: var(--header-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
}

/* Logo / marque */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 3.6rem;
  height: 3.6rem;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-acronym {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .03em;
}
.brand-full {
  font-size: .62rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 18ch;
  display: none;
}
.site-header .brand-full { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: .28rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: #0F1F1A;
  cursor: pointer;
  order: 3;
  padding: 0;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  margin-inline: auto;
  border-radius: 999px;
  transition: transform .24s ease, opacity .18s ease, width .24s ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(2) {
  width: .8rem;
}
.nav-toggle:hover span:nth-child(2) {
  width: 1.1rem;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Menu principal */
.menu {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: .25rem 0 .5rem;
  gap: .2rem;
  display: grid;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
}
.menu.is-open {
  max-height: 28rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu a {
  display: block;
  padding: .65rem .85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  transition: background .18s, color .18s;
}
.menu a:hover, .menu a.active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* Actions nav (theme toggle + CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  justify-self: end;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: .42rem .75rem;
  font-size: .84rem;
  cursor: pointer;
  transition: background .18s;
}
.theme-toggle:hover { background: var(--bg-alt); }
.theme-toggle svg { width: 1rem; height: 1rem; fill: currentColor; }
.theme-toggle span { display: none; }
.nav-cta { display: none; }

/* ── Boutons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 2.9rem;
  padding: .65rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s var(--ease), background .18s, border-color .18s, color .18s, box-shadow .18s;
  white-space: normal;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #1a0e00;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(221,169,36,.28);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #1a0e00;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.btn-sm { min-height: 2.2rem; padding: .4rem .9rem; font-size: .88rem; }

/* ── Badges & étiquettes ──────────────────────────── */
.badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: .35rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: .7rem; }
.hero .badge {
  font-size: .68rem;
  padding: .24rem .6rem;
}
.eyebrow-gold {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.chip-gold {
  background: var(--gold-soft);
  border-color: rgba(221,169,36,.35);
  color: var(--gold-dark);
}

/* ── Titres de section ────────────────────────────── */
.section-head {
  margin-bottom: 2rem;
  text-align: left;
}
.section-head h2 {
  font-size: clamp(1.5rem, 2.2vw + .9rem, 2.4rem);
  margin: .4rem 0 .7rem;
  color: var(--text);
}
.section-head p { color: var(--muted); max-width: 70ch; }
.section-sub-head {
  margin: 2.5rem 0 1.25rem;
}
.section-sub-head h3 { font-size: 1.3rem; margin: 0 0 .4rem; }
.section-sub-head p { color: var(--muted); }
.section-action { margin-top: 2rem; }
.muted { color: var(--muted); }
.optional { color: var(--muted); font-weight: 400; font-size: .88em; }
.placeholder-text { color: var(--muted); font-style: italic; }

/* ── Animations reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Transition douce entre pages articles */
body.page-enter {
  opacity: 0;
  transform: translateY(8px);
}
body.page-enter.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}
body.page-leave {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible, .btn,
  body.page-enter, body.page-enter.page-enter-active, body.page-leave {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ── HERO ─────────────────────────────────────────── */
.hero { padding-top: 3.5rem; }

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-copy { display: grid; gap: .9rem; }

.hero-copy h1 {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.6rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.02em;
}
.hero-lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; margin: 0; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat span:last-child { font-size: .82rem; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}

/* ── Storytelling ─────────────────────────────────── */
.story-wrap {
  display: grid;
  gap: 1rem;
}
.story-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
}
.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: .2rem .65rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.story-step h3 {
  margin: .8rem 0 .45rem;
  color: var(--primary-dark);
  font-size: 1.08rem;
}
.story-step p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.story-manifesto {
  margin-top: 1rem;
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.story-manifesto p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ── Galerie ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: .8rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: .55rem .7rem;
  font-size: .84rem;
  color: var(--muted);
  border-top: 1px solid var(--border-light);
}
.gallery-quote {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-xsoft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-weight: 600;
}
.gallery-quote cite {
  display: block;
  margin-top: .55rem;
  font-size: .9rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

/* ── A la une (style editorial) ───────────────────── */
.spotlight-grid {
  display: grid;
  gap: 1rem;
}
.spotlight-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.spotlight-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.spotlight-kicker {
  margin: 0 0 .8rem;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}
.spotlight-card h3 {
  margin: 0 0 .7rem;
  font-size: clamp(1.15rem, 1.4vw + .85rem, 1.55rem);
  line-height: 1.2;
}
.spotlight-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .97rem;
}
.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}
.spotlight-link:hover {
  color: var(--primary);
}
.spotlight-link::after {
  content: '→';
  font-size: .95em;
}

/* ── Page actions (cartes editoriales) ───────────── */
.page-actions .action-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.page-actions .action-card::before {
  display: none;
}
.page-actions .action-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.page-actions .action-number {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .08em;
  font-weight: 800;
  margin: 0 0 .8rem;
}
.page-actions .action-card h3 {
  margin: 0 0 .7rem;
  font-size: clamp(1.08rem, 1.2vw + .88rem, 1.3rem);
  line-height: 1.25;
}
.page-actions .action-card p {
  margin: 0 0 .5rem;
  font-size: .95rem;
  line-height: 1.6;
}

/* ── Missions ─────────────────────────────────────── */
.cards-grid { display: grid; gap: 1rem; }
.cards-5 { display: grid; gap: 1rem; }

.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.mission-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: .8rem;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--primary);
}
.mission-icon svg { width: 1.4rem; height: 1.4rem; }
.mission-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.mission-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ── Organisation ─────────────────────────────────── */
.leadership-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.leader-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.leader-avatar {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
}
.leader-avatar svg { width: 100%; height: 100%; }
.leader-info { flex: 1; }
.leader-role {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.leader-info h3 { margin: .25rem 0 .4rem; font-size: 1.05rem; }
.leader-info p { margin: 0; color: var(--muted); font-size: .93rem; }

.ca-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: .5rem;
}
.ca-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: .7rem;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
}
.ca-icon svg { width: 1.3rem; height: 1.3rem; }
.ca-block h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.ca-block p { margin: 0; color: var(--muted); font-size: .93rem; }

.poles-grid {
  display: grid;
  gap: 1rem;
}

.pole-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.pole-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pole-card--congo {
  border-color: rgba(221,169,36,.4);
  background: var(--gold-xsoft);
}
html[data-theme="dark"] .pole-card--congo {
  background: rgba(221,169,36,.06);
}
.pole-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .75rem;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  color: var(--primary);
}
.pole-icon svg { width: 1.3rem; height: 1.3rem; }
.pole-card h4 { margin: 0 0 .45rem; font-size: 1rem; }
.pole-card p { margin: 0 0 .65rem; color: var(--muted); font-size: .92rem; }

.values-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.values-label { font-weight: 700; color: var(--muted); font-size: .9rem; }
.values-chips { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ── Actions ──────────────────────────────────────── */
.actions-grid { display: grid; gap: 1rem; }

.action-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.action-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: 4px 0 0 4px;
}
.action-number {
  font-size: .75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.action-card h3 { margin: 0 0 .65rem; font-size: 1.05rem; }
.action-card p { margin: 0 0 .35rem; color: var(--muted); font-size: .93rem; }
.action-card p:last-child { margin: 0; }
.action-card strong { color: var(--text); }

/* ── Témoignages ──────────────────────────────────── */
.testimonials-grid { display: grid; gap: 1rem; }

.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: .5rem;
  left: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  padding-top: 1rem;
}
.testimonial footer { color: var(--muted); font-size: .9rem; }
.testimonial footer strong { display: block; color: var(--text); font-style: normal; }

/* ── Articles (premium editorial) ────────────────── */
.article-category {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: fit-content;
}

/* Featured article */
.article-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.5rem;
  transition: box-shadow .2s, transform .15s;
}
.article-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-featured-meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.article-featured-badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: .18rem .6rem;
  border-radius: 999px;
}
.article-featured h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.25;
  margin: 0;
  color: var(--heading);
}
.article-featured .article-excerpt {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.65;
  margin: 0;
}
.article-featured .article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}
.article-featured time { color: var(--muted); font-size: .84rem; }

/* Secondary article cards */
.articles-secondary { display: grid; gap: .85rem; }
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .2s, box-shadow .18s, transform .15s;
}
.article-card:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.article-card h2 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
  color: var(--heading);
}
.article-excerpt {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .3rem;
}
.article-footer time { color: var(--muted); font-size: .82rem; }
.article-link {
  font-weight: 600;
  font-size: .88rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: color .15s, gap .15s;
}
.article-link:hover { color: var(--primary-dark); gap: .45rem; }
.article-read-time {
  font-size: .78rem;
  color: var(--muted);
}
.article-read-time::before { content: '·'; margin: 0 .3rem; }

/* ── Page Actualités / Événements ────────────────── */
.event-list { display: grid; gap: 0; }

.event-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.event-item:last-child { border-bottom: none; }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: .5rem .25rem;
  min-width: 3.5rem;
  text-align: center;
  line-height: 1.1;
}
.event-day { font-size: 1.4rem; font-weight: 800; }
.event-month { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.event-date--past { background: var(--muted); opacity: .55; }

.event-body { display: grid; gap: .4rem; }
.event-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

.event-tag {
  display: inline-block;
  padding: .15rem .6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.event-tag--congo {
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.event-location { font-size: .82rem; color: var(--muted); }

.event-item h3 { font-size: 1rem; margin: 0; line-height: 1.3; color: var(--heading); }
.event-item p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.6; }
.event-item--past h3 { color: var(--muted); }

.event-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-top: .15rem;
  transition: gap .15s, color .15s;
}
.event-cta:hover { color: var(--primary-dark); gap: .4rem; }

.event-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}
.event-newsletter h3 { margin: 0 0 .3rem; font-size: 1rem; }
.event-newsletter p { margin: 0; font-size: .9rem; color: var(--muted); }

@media (min-width: 560px) {
  .event-item { grid-template-columns: 4.5rem 1fr; }
}

html[data-theme="dark"] .event-date { background: var(--primary); }
html[data-theme="dark"] .event-newsletter { background: var(--surface); }

/* ── Listes de remplacement des cards ────────────── */
.mission-list,
.poles-list,
.edu-list,
.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .1rem;
}
.mission-list li,
.poles-list li,
.edu-list li,
.impact-list li {
  padding: .85rem 0 .85rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  line-height: 1.6;
  font-size: .97rem;
  color: var(--text);
}
.mission-list li:last-child,
.poles-list li:last-child,
.edu-list li:last-child,
.impact-list li:last-child { border-bottom: none; }
.mission-list li::before,
.poles-list li::before,
.edu-list li::before,
.impact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Liste numérotée actions */
.action-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: action-counter;
  display: grid;
  gap: 0;
}
.action-list li {
  counter-increment: action-counter;
  padding: 1.1rem 0 1.1rem 3rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.action-list li:last-child { border-bottom: none; }
.action-list li::before {
  content: counter(action-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .02em;
  line-height: 1.6;
}
.action-list h3 {
  font-size: 1rem;
  margin: 0 0 .3rem;
  color: var(--heading);
}
.action-list p {
  margin: 0;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
}
.action-meta {
  display: block;
  margin-top: .25rem;
  font-size: .82rem;
  color: var(--muted);
}

/* Prose narrative (accueil - pourquoi SPV) */
.story-prose {
  max-width: 680px;
}
.story-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1rem;
}
.story-prose p:last-child { margin: 0; }

/* ── Podcasts ─────────────────────────────────────── */
.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .9rem;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.platform-badge svg { width: 1rem; height: 1rem; }
.platform-badge:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.podcast-grid { display: grid; gap: 1rem; }

.podcast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.podcast-episode-badge {
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: .5rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border-light);
}
.podcast-body { padding: 1.25rem; }
.podcast-body h3 { margin: 0 0 .5rem; font-size: 1.02rem; }
.podcast-body p { margin: 0 0 .9rem; color: var(--muted); font-size: .92rem; }
.podcast-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.podcast-duration {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--muted);
  font-size: .85rem;
}
.podcast-listen {
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  text-decoration: none;
}
.podcast-listen:hover { color: var(--primary-dark); }

/* ── Section Soutenir ─────────────────────────────── */
/* Tabs de type de soutien (don / adhésion / bénévolat) */
.support-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.support-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.support-tab:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.support-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.support-panel {
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Sélecteur de montant */
.amount-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-xs);
}
.amount-section h3 { margin: 0 0 1rem; font-size: 1.05rem; }

.amount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.amount-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 2.6rem;
  padding: .5rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.amount-btn:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.amount-btn.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a0e00;
  box-shadow: 0 4px 14px rgba(221,169,36,.25);
}
.amount-btn-custom { font-size: .88rem; }

.amount-custom-field { margin-top: 1rem; }
.amount-custom-field label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .35rem;
}
.amount-input-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  max-width: 14rem;
}
.amount-input-row input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem .85rem;
  font: inherit;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
}
.amount-currency {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Tabs de méthode de paiement */
.payment-methods h3 { font-size: 1.05rem; margin: 0 0 1rem; }
.payment-method-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.payment-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  cursor: pointer;
  min-width: 5.5rem;
  line-height: 1.3;
  transition: background .18s, border-color .18s, color .18s;
}
.payment-tab small { font-weight: 500; opacity: .8; }
.payment-tab:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.payment-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.payment-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeIn .25s ease;
}

.payment-info-box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  margin-bottom: 1.25rem;
}
.payment-info-box svg { flex-shrink: 0; color: var(--primary); margin-top: .15rem; }
.payment-info-box p { margin: 0; font-size: .88rem; color: var(--muted); }

.amount-display-field .amount-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
  background: var(--gold-soft);
  border: 1px solid rgba(221,169,36,.3);
  border-radius: var(--radius-sm);
}
.display-amount {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.amount-display-note { font-size: .82rem; color: var(--muted); }

.btn-pay { min-width: 14rem; justify-content: center; }

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--muted);
}

/* Carte bancaire */
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 3rem; }
.card-icon {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  color: var(--muted);
  pointer-events: none;
}

.cvv-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--muted);
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  vertical-align: middle;
  margin-left: .3rem;
}

/* Virement bancaire */
.virement-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.virement-info h4 { margin: 0 0 1rem; font-size: 1.1rem; }
.bank-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  margin: 0 0 1rem;
}
.bank-details dt {
  font-weight: 700;
  color: var(--muted);
  font-size: .88rem;
  margin-top: .6rem;
}
.bank-details dt:first-child { margin-top: 0; }
.bank-details dd {
  margin: 0;
  font-size: .95rem;
  word-break: break-word;
}
.iban { font-family: monospace; }
.iban-note { color: var(--gold-dark); font-size: .8rem; font-family: var(--font); }
.virement-amount {
  font-size: .9rem;
  margin-bottom: .75rem;
}
.virement-note { color: var(--muted); font-size: .9rem; margin: 0; }

/* Adhésion */
.adhesion-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .97rem;
}
.adhesion-intro p { margin: 0; }

/* ── Formulaires ──────────────────────────────────── */
.payment-form, .form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.form h3 { margin: 0 0 1.25rem; }
.form-grid { display: grid; gap: .85rem; }
.field { display: grid; gap: .3rem; }
.field label {
  font-weight: 700;
  font-size: .92rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36,111,91,.15);
  outline: none;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder, .field textarea::placeholder {
  color: var(--muted);
  opacity: .7;
}
.field-error {
  min-height: .9rem;
  margin: 0;
  color: var(--danger);
  font-size: .82rem;
}
.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}
.field-full { grid-column: 1 / -1; }
.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: .6rem;
}
.checkbox-field input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .2rem;
  padding: 0;
  accent-color: var(--primary);
}
.checkbox-field .field-error { grid-column: 2; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .75rem;
  align-items: center;
}
.form-status {
  min-height: 1.2rem;
  margin: .65rem 0 0;
  font-weight: 700;
  font-size: .92rem;
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

/* Honeypot (invisible pour humains, visible pour bots) */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ── Ressources ───────────────────────────────────── */
.ressources-grid { display: grid; gap: 1.5rem; }
.notice-card {
  background: #FFF8E1;
  border: 1px solid rgba(221,169,36,.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .93rem;
  color: #4A3800;
}
html[data-theme="dark"] .notice-card {
  background: rgba(221,169,36,.08);
  color: var(--gold-soft);
}
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: .55rem;
}
.resource-list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--muted);
  font-size: .93rem;
}
.resource-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .56rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--primary);
}
.resource-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}
.resource-actions .btn:nth-child(3) {
  flex-basis: 100%;
}
.faq { padding: 1.25rem; }
.faq h3 { margin: 0 0 .85rem; }
.faq details {
  border-top: 1px solid var(--border);
  padding: .7rem 0;
}
.faq details:first-of-type { border-top: 0; padding-top: .2rem; }
.faq summary { cursor: pointer; font-weight: 700; font-size: .95rem; }
.faq summary::marker { color: var(--primary); }
.faq p { margin: .5rem 0 0; color: var(--muted); font-size: .92rem; }

/* ── Contact ──────────────────────────────────────── */
.contact-grid { display: grid; gap: 1.5rem; }
.contact-offices { display: grid; gap: 1rem; margin-bottom: 1.25rem; }

.office-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
}
.office-card--congo {
  border-color: rgba(221,169,36,.4);
  background: var(--gold-xsoft);
}
html[data-theme="dark"] .office-card--congo {
  background: rgba(221,169,36,.05);
}
.office-card h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  font-size: 1rem;
  color: var(--primary);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .38rem;
  font-size: .92rem;
}
.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

/* ── Pied de page ─────────────────────────────────── */
.site-footer {
  background: #0C1911;
  color: #D4ECE4;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
.footer-brand .brand-acronym { color: var(--gold); }
.footer-brand .brand-full { display: block; color: rgba(255,255,255,.55); }
.footer-brand-col { display: grid; gap: .9rem; }
.footer-brand-col p { color: rgba(255,255,255,.55); font-size: .88rem; margin: 0; }
.footer-grid h2 {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 0 0 .7rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}
.footer-grid a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .18s;
}
.footer-grid a:hover { color: var(--gold); }

.social-links,
.footer-social { display: flex; gap: .6rem; }
.social-link {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.social-link:hover { background: var(--gold); color: #1a0e00; }
.social-link svg { width: 1.1rem; height: 1.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 1.5rem;
  padding: 1rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.footer-urgence {
  color: rgba(255,255,255,.35) !important;
  font-size: .8rem !important;
}

/* ── Bouton back-to-top ───────────────────────────── */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: background .18s, transform .2s;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.back-to-top svg { width: 1.3rem; height: 1.3rem; }

/* ── Cookie banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: .85rem;
}
.cookie-content {
  width: min(880px, calc(100% - 1rem));
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-content p { margin: 0; font-size: .88rem; flex: 1; min-width: 14rem; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }

/* ── Correctifs mobile (petits écrans) ───────────── */
@media (max-width: 699px) {
  :root { --header-h: 2.8rem; }
  .alert-strip { font-size: .72rem; padding: .35rem 1rem; }

  .brand-name {
    display: none;
  }
  .brand-mark {
    width: 4.4rem;
    height: 4.4rem;
  }

  body {
    font-size: .86rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.2rem, 5.9vw, 1.5rem);
    line-height: 1.12;
  }

  .section-head h2 {
    font-size: clamp(1.02rem, 4.8vw, 1.28rem);
  }

  .section-sub-head h3,
  .mission-card h3,
  .action-card h3,
  .article-title,
  .spotlight-card h3 {
    font-size: .88rem;
    line-height: 1.3;
  }

  .hero-lead,
  .section-head p,
  .mission-card p,
  .action-card p,
  .article-excerpt,
  .spotlight-card p {
    font-size: .8rem;
    line-height: 1.5;
  }

  .btn {
    font-size: .74rem;
    padding: .42rem .7rem;
  }

  .menu a {
    white-space: normal;
  }

  .support-type-tabs,
  .payment-method-tabs,
  .amount-grid,
  .resource-actions,
  .contact-shortcuts {
    gap: .5rem;
  }

  .support-tab,
  .payment-tab,
  .amount-btn,
  .btn-pay,
  .resource-actions .btn,
  .contact-shortcuts .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .amount-input-row {
    max-width: 100%;
  }

  .cookie-content p {
    min-width: 0;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 2.45rem;
    padding: .5rem .9rem;
    font-size: .88rem;
    white-space: normal;
  }
}

@media (max-width: 979px) {
  .site-header .nav-actions {
    flex-wrap: nowrap;
    gap: .4rem;
  }

  .site-header .nav-actions .btn {
    min-height: 2.1rem;
    padding: .35rem .65rem;
    font-size: .8rem;
    border-width: 1px;
    white-space: nowrap;
  }
}

/* ── Utilitaires ──────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

/* ── Page contacts utiles ─────────────────────────── */
.help-grid {
  display: grid;
  gap: 1rem;
}
.help-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-xs);
}
.help-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.02rem;
}
.hotline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.hotline-list li {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: .72rem .8rem;
  background: var(--primary-xsoft);
}
.hotline-list strong { color: var(--primary-dark); }
.hotline-list p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.hotline-list a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.hotline-list a:hover { color: var(--primary-dark); }
.source-note {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ── Responsive 700 px ────────────────────────────── */
@media (min-width: 700px) {
  .brand-full { display: block; }
  .theme-toggle span { display: inline; }

  .hero-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wrap { grid-template-columns: repeat(3, 1fr); }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .poles-grid { grid-template-columns: repeat(2, 1fr); }
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-secondary { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
  .ressources-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }

  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .bank-details { grid-template-columns: 9rem 1fr; gap: .4rem 1rem; }
  .bank-details dt { margin-top: 0; }
  .bank-details dt:first-child { margin-top: 0; }

  .payment-tab { flex-direction: row; font-size: .88rem; min-width: auto; }
  .payment-tab small { display: inline; opacity: .75; }
}

/* ── Responsive 980 px ────────────────────────────── */
@media (min-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .nav-toggle { display: none; }
  .menu {
    display: flex;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    grid-column: auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    gap: .1rem;
  }
  .menu a { padding: .5rem .7rem; font-size: .9rem; }
  .nav-cta { display: inline-flex; }
  .nav-actions { gap: .75rem; }

  .cards-5 { grid-template-columns: repeat(3, 1fr); }
  .cards-5 article:nth-child(4),
  .cards-5 article:nth-child(5) {
    grid-column: span 1;
  }
  .poles-grid { grid-template-columns: repeat(3, 1fr); }
  .actions-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
  .podcast-grid { grid-template-columns: repeat(3, 1fr); }

  .support-type-tabs { gap: .75rem; }
  .support-tab { padding: .85rem 1.5rem; }

  .contact-offices { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mode sombre – ajustements spécifiques ────────── */
html[data-theme="dark"] .mission-card,
html[data-theme="dark"] .leader-card,
html[data-theme="dark"] .action-card,
html[data-theme="dark"] .article-card,
html[data-theme="dark"] .article-featured,
html[data-theme="dark"] .pole-card,
html[data-theme="dark"] .podcast-card,
html[data-theme="dark"] .testimonial,
html[data-theme="dark"] .adhesion-intro,
html[data-theme="dark"] .office-card,
html[data-theme="dark"] .payment-panel,
html[data-theme="dark"] .virement-info,
html[data-theme="dark"] .amount-section,
html[data-theme="dark"] .hero-stats,
html[data-theme="dark"] .values-band,
html[data-theme="dark"] .faq {
  background: var(--surface);
  border-color: var(--border);
}

html[data-theme="dark"] .section-alt { background: var(--bg); }
html[data-theme="dark"] .section-soutenir { background: var(--bg); }

html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .amount-input-row input {
  background: var(--bg-alt);
  border-color: var(--border);
}

html[data-theme="dark"] .platform-badge { background: var(--surface); }
html[data-theme="dark"] .ca-block { background: rgba(36,111,91,.15); }
html[data-theme="dark"] .story-manifesto { background: rgba(36,111,91,.15); }
html[data-theme="dark"] .gallery-quote { background: rgba(221,169,36,.08); }

/* ── Équipe de responsables ──────────────────────── */
.team-grid { display: grid; gap: 1.1rem; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Avatar photo / fallback */
.team-avatar {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .9rem;
  background: var(--primary-soft);
  border: 2.5px solid var(--border-light);
  flex-shrink: 0;
}
.team-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px;
  display: block;
  z-index: 1;
}
.team-avatar-fallback {
  width: 100%;
  height: 100%;
  display: block;
}
.team-card--congo .team-avatar {
  border-color: rgba(221,169,36,.4);
  background: var(--gold-soft);
}

/* Infos */
.team-role {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: .18rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.team-card--congo .team-role {
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.team-card h4 {
  margin: .25rem 0 .15rem;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.2;
}
.team-pole {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 .5rem;
}
.team-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.55;
}

/* ── Mention membres fondateurs ──────────────────── */
.founders-note {
  margin: 1.25rem 0 0;
  padding: .85rem 1.1rem;
  background: var(--primary-xsoft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: .88rem;
  color: var(--primary-dark);
  font-style: italic;
  line-height: 1.65;
}

/* ── Formes d'engagement ─────────────────────────── */
.engagement-grid { display: grid; gap: 1rem; }
.engagement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.engagement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.engagement-type {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: .2rem .7rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .6rem;
}
.engagement-card h3 { margin: 0 0 .55rem; font-size: 1.05rem; color: var(--primary-dark); }
.engagement-card p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ── Contenus éducatifs à venir ──────────────────── */
.edu-formats-grid { display: grid; gap: 1rem; }
.edu-format-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.edu-format-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.edu-format-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .75rem;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  color: var(--gold-dark);
}
.edu-format-icon svg { width: 1.25rem; height: 1.25rem; }
.edu-format-card h3 { margin: 0 0 .4rem; font-size: 1rem; color: var(--primary-dark); }
.edu-format-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }

/* ── Identité légale ─────────────────────────────── */
.legal-identity-grid { display: grid; gap: 1rem; }
.legal-identity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
}
.legal-identity-card h4 {
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 .6rem;
}
.legal-identity-card p { margin: 0; font-size: .93rem; line-height: 1.65; }
.legal-identity-card p + p { margin-top: .45rem; color: var(--muted); }

/* ── Note sources (hero) ─────────────────────────── */
.hero-stats-source {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: .3rem;
}

/* ── Bloc contact engagement ─────────────────────── */
.engagement-contact {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: .93rem;
  color: var(--primary-dark);
  line-height: 1.6;
}
.engagement-contact strong { color: var(--primary-dark); }
.engagement-contact a { color: var(--primary-dark); font-weight: 700; }

/* ── Responsive nouvelles sections ──────────────── */
@media (min-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 700px) {
  .engagement-grid { grid-template-columns: repeat(3, 1fr); }
  .edu-formats-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-identity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  /* 4 colonnes pour 7 cartes : rangée de 4 + rangée de 3 centrée */
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .edu-formats-grid { grid-template-columns: repeat(4, 1fr); }
  .legal-identity-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mode sombre – nouvelles cartes */
html[data-theme="dark"] .team-card,
html[data-theme="dark"] .engagement-card,
html[data-theme="dark"] .edu-format-card,
html[data-theme="dark"] .legal-identity-card {
  background: var(--surface);
  border-color: var(--border);
}
html[data-theme="dark"] .founders-note {
  background: rgba(36,111,91,.1);
  border-color: var(--border);
}
html[data-theme="dark"] .engagement-contact {
  background: rgba(36,111,91,.15);
  border-color: var(--border);
}

/* ── En-tête de page (pages internes) ───────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.page-header .eyebrow {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.92);
}
.page-header h1 {
  color: #fff;
  font-size: clamp(1.75rem, 2.8vw + .9rem, 2.8rem);
  margin: .5rem 0 .75rem;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.page-header p {
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  max-width: 62ch;
  margin: 0;
}
.page-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.page-anchor {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: background .18s, border-color .18s, color .18s;
}
.page-anchor:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}
/* Variante fond sombre (dans .page-header) */
.page-header .page-anchor {
  border-color: rgba(255,255,255,.38);
  color: rgba(255,255,255,.88);
}
.page-header .page-anchor:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ── Cartes engagement (icône + liste) ───────────── */
.engagement-card .engagement-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: .85rem;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--primary);
  transition: background .18s;
}
.engagement-card:hover .engagement-icon { background: var(--primary-soft); }
.engagement-card .engagement-icon svg { width: 1.4rem; height: 1.4rem; }
.engagement-card ul {
  list-style: none;
  padding: 0;
  margin: .6rem 0 0;
  display: grid;
  gap: .3rem;
}
.engagement-card ul li {
  padding-left: 1.15rem;
  position: relative;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.engagement-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--primary);
}
.engagement-card--honneur .engagement-icon {
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.engagement-card--honneur ul li::before { background: var(--gold); }

/* ── Impact du don ───────────────────────────────── */
.impact-grid { display: grid; gap: .75rem; margin-bottom: 1.75rem; }
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 1rem;
  background: var(--primary-xsoft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.impact-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: .6rem;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--primary);
}
.impact-icon svg { width: 1.1rem; height: 1.1rem; }
.impact-item p { margin: 0; font-size: .91rem; color: var(--text); line-height: 1.55; }
.impact-item strong { color: var(--primary-dark); }

/* ── Tags profils bénévolat ──────────────────────── */
.skills-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.skills-intro h3 { margin: 0 0 .75rem; font-size: 1rem; color: var(--primary-dark); }
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
}
.skill-tag::before {
  content: '';
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Bloc questions / réassurance ────────────────── */
.questions-block {
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  text-align: center;
  margin-top: 3rem;
}
.questions-block h3 {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  color: var(--primary-dark);
}
.questions-block p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.questions-block .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* ── Responsive ──────────────────────────────────── */
@media (min-width: 700px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mode sombre ─────────────────────────────────── */
html[data-theme="dark"] .impact-item {
  background: rgba(36,111,91,.1);
  border-color: var(--border);
}
html[data-theme="dark"] .questions-block {
  background: rgba(36,111,91,.12);
  border-color: var(--border);
}
html[data-theme="dark"] .skills-intro {
  background: var(--surface);
  border-color: var(--border);
}
html[data-theme="dark"] .skill-tag {
  background: var(--bg-alt);
  border-color: var(--border);
}

/* ── Pages légales (mentions, confidentialité, plan du site) ── */
.legal-doc {
  max-width: 780px;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
.legal-doc .section-head {
  margin-bottom: 2rem;
}
.legal-toc {
  background: var(--primary-xsoft);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem 1rem 2rem;
  margin-bottom: 2.5rem;
}
.legal-toc ol {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: .3rem;
}
.legal-toc li { font-size: .92rem; }
.legal-toc a { color: var(--primary); text-decoration: none; font-weight: 500; }
.legal-toc a:hover { color: var(--primary-dark); text-decoration: underline; }

.legal-section {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 0 0 .9rem;
}
.legal-section p { margin-bottom: .65rem; line-height: 1.75; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  padding-left: 1.4rem;
  margin-bottom: .65rem;
}
.legal-section li { line-height: 1.7; margin-bottom: .3rem; }
.legal-date {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .75rem;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.sitemap-list li {
  padding-left: 1.2rem;
  position: relative;
  font-size: .95rem;
  line-height: 1.5;
}
.sitemap-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.sitemap-list a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.sitemap-list a:hover { color: var(--primary-dark); text-decoration: underline; }
.sitemap-list li { color: var(--muted); }

html[data-theme="dark"] .legal-toc {
  background: rgba(36,111,91,.1);
}

/* ── Bloc contact SPV direct ─────────────────────── */
.spv-contact-block {
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .spv-contact-block { grid-template-columns: 1fr 1.8fr; align-items: start; }
}
.spv-contact-main h2 { margin: .3rem 0 .5rem; font-size: 1.15rem; color: var(--primary-dark); }
.spv-contact-main p { margin: 0; font-size: .9rem; color: var(--muted); }
.spv-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.spv-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.spv-contact-list svg { width: 1.2rem; height: 1.2rem; color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
.spv-contact-list div { display: flex; flex-direction: column; gap: .1rem; }
.spv-contact-list strong { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.spv-contact-list a { font-size: 1rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.spv-contact-list a:hover { color: var(--primary-dark); }
.spv-contact-list span { font-size: .8rem; color: var(--muted); }

/* ── Section accompagnements spécifiques ─────────── */
.accompagnements-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.accompagnements-section > h2 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0 0 .4rem;
}
.accomp-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) { .accomp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .accomp-grid { grid-template-columns: repeat(3, 1fr); } }
.accomp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: var(--shadow-xs);
}
.accomp-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .75rem;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.accomp-icon svg { width: 1.3rem; height: 1.3rem; }
.accomp-card h3 { font-size: 1rem; margin: 0; color: var(--primary-dark); }
.accomp-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.accomp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .3rem;
  flex: 1;
}
.accomp-card ul li {
  font-size: .83rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.accomp-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: .8rem;
}
.accomp-tel {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border-light);
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.accomp-tel:hover { color: var(--primary-dark); }

html[data-theme="dark"] .spv-contact-block { background: rgba(36,111,91,.12); border-color: var(--border); }
html[data-theme="dark"] .accomp-card { background: var(--surface); border-color: var(--border); }

/* ── Bouton Stripe ───────────────────────────────── */
.stripe-pay-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  gap: .6rem;
}
.don-methods { margin-top: 1.5rem; }

/* ── Fréquence du don ────────────────────────────── */
.don-frequency {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.freq-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}
.freq-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.freq-btn.is-selected {
  border-color: var(--primary);
  background: var(--primary-soft, #e8f5f0);
  color: var(--primary-dark, #1a5244);
  font-weight: 600;
}
.freq-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
  background: var(--gold-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: .6rem .85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.freq-note svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.freq-note a { color: var(--primary); }
html[data-theme="dark"] .freq-btn.is-selected {
  background: rgba(36,111,91,.22);
  color: var(--primary-light, #9DBDB4);
}
.amount-custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  font-size: .95rem;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  width: 100%;
}
.amount-equiv {
  font-size: .82rem;
  color: var(--muted);
  margin: .5rem 0 1rem;
}
