/* =========================================================
   Lions Club Abidjan Pyramide — Design System
   Navy + Gold, accent motif kente, typographie Lexend / Source Sans 3
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  /* Couleurs de marque */
  --navy-950: #081227;
  --navy-900: #0b1d3a;
  --navy-800: #12284d;
  --navy-700: #1b3a66;
  --navy-600: #274d82;
  --gold-600: #a8790c;
  --gold-500: #c9960f;
  --gold-400: #e0ad1f;
  --gold-300: #f0c94a;

  /* Kente (accent décoratif, usage parcimonieux) */
  --kente-red: #c1272d;
  --kente-green: #1c6b3c;
  --kente-gold: #e0ad1f;
  --kente-blue: #1b3a66;

  /* Neutres */
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-alt: #f4f1ea;
  --text-900: #14213d;
  --text-600: #47536b;
  --text-400: #7c879c;
  --border: #e6e2d8;

  /* Typo */
  --font-head: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Autres */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11, 29, 58, 0.07);
  --shadow-md: 0 12px 32px rgba(11, 29, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 29, 58, 0.18);
  --container: 1180px;
  --z-header: 50;
  --z-overlay: 60;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Kente strip (accent décoratif) ---------- */
.kente-strip {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--kente-red) 0 18px,
    var(--kente-gold) 18px 36px,
    var(--kente-green) 36px 54px,
    var(--kente-blue) 54px 72px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  min-height: 48px;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: 14px 0;
  transition: background-color 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}
.site-header.is-transparent { background: linear-gradient(180deg, rgba(8,18,39,0.65), rgba(8,18,39,0)); }
.site-header.is-solid {
  background: rgba(11, 29, 58, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 10px 0;
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-300), var(--gold-600) 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.brand-badge svg { width: 26px; height: 26px; color: var(--navy-900); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.3px; }
.brand-text span { font-size: 0.72rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-300); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 200ms ease, color 200ms ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    height: 100vh;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 320ms ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-gold-desktop { display: none; }
}

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(8,18,39,0.55);
  z-index: calc(var(--z-header) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav-scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1400ms ease, transform 7000ms ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,39,0.35) 0%, rgba(8,18,39,0.35) 35%, rgba(8,18,39,0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 64px;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow svg { width: 14px; height: 14px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 15ch;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 em { font-style: normal; color: var(--gold-300); }
.hero p.lead {
  max-width: 56ch;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-dots {
  position: absolute;
  right: 24px;
  bottom: 210px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: background-color 200ms, transform 200ms;
}
.hero-dots button.is-active { background: var(--gold-400); transform: scale(1.3); }

/* Stat bar overlapping hero bottom */
.stat-bar {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-bar .stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-bar .stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy-900);
  display: block;
}
.stat .num span.gold { color: var(--gold-600); }
.stat .label {
  font-size: 0.82rem;
  color: var(--text-600);
  margin-top: 4px;
  display: block;
}
@media (max-width: 720px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar .stat:nth-child(2) { border-right: none; }
  .stat-bar .stat:nth-child(1), .stat-bar .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero-dots { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--navy-900); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--gold-500); border-radius: 3px; }
.section-navy .kicker { color: var(--gold-300); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--text-600); margin-top: 16px; font-size: 1.05rem; }
.section-navy .section-head p { color: rgba(255,255,255,0.75); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, box-shadow 260ms ease;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-300);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card-body p { color: var(--text-600); font-size: 0.96rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-400);
  margin-top: 14px;
}
.card-meta svg { width: 16px; height: 16px; }

/* Icon feature cards */
.feature {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--gold-300); }
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature p { color: var(--text-600); font-size: 0.95rem; }

/* ---------- Timeline (histoire) ---------- */
.timeline { position: relative; padding-left: 32px; border-left: 3px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 3px var(--gold-500);
}
.timeline-year {
  font-family: var(--font-head);
  color: var(--gold-600);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.timeline-item p { color: var(--text-600); }

/* ---------- Values ---------- */
.value-pill {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.value-pill:last-child { border-bottom: none; }
.value-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold-500);
  min-width: 44px;
}
.value-pill h4 { font-size: 1.05rem; margin-bottom: 6px; }
.value-pill p { color: var(--text-600); font-size: 0.95rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .card-media { aspect-ratio: 1/1; }
.team-card .card-body h3 { margin-bottom: 4px; }
.team-role { color: var(--gold-600); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; display: block; }
.avatar-circle {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-300);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 1px;
}
.avatar-circle::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, var(--kente-red) 0 10px, var(--kente-gold) 10px 20px, var(--kente-green) 20px 30px, var(--kente-blue) 30px 40px);
  opacity: 0.08;
}
.team-card .card-media { position: relative; }
.placeholder-note {
  font-size: 0.72rem;
  color: var(--text-400);
  font-style: italic;
}

/* ---------- Quote / testimonial ---------- */
.quote-block {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
}
.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 24px;
  font-family: Georgia, serif;
  font-size: 10rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}
.quote-block p.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}
.quote-author { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.quote-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-400); }
.quote-author strong { display: block; }
.quote-author span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ---------- Gallery lightbox trigger ---------- */
.gallery-item { cursor: pointer; }
.gallery-item .card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,29,58,0) 40%, rgba(11,29,58,0.75) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
}
.gallery-item:hover .card-media::after { opacity: 1; }
.gallery-caption {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  color: #fff; font-size: 0.88rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity 250ms ease, transform 250ms ease;
  z-index: 1;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,12,26,0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 200ms ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--kente-red) 0 18px, var(--kente-gold) 18px 36px, var(--kente-green) 36px 54px, var(--kente-blue) 54px 72px);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); max-width: 30ch; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 10px; max-width: 46ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.field .req { color: var(--kente-red); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text-900);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 150, 15, 0.15);
}
.field small.hint { color: var(--text-400); font-size: 0.8rem; }
.form-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-600);
}
.form-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-600); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eaf6ee;
  border: 1px solid #b9e2c3;
  color: #1c6b3c;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.4px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.94rem; transition: color 200ms ease; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-brand p { color: rgba(255,255,255,0.65); margin: 16px 0 22px; max-width: 34ch; font-size: 0.94rem; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease;
}
.social-row a:hover { background: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 250ms ease, background-color 200ms ease;
  z-index: 40;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-600); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Page header (pages internes) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 90px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
}
.page-hero .bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,39,0.55), rgba(8,18,39,0.94));
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 56ch; margin-top: 16px; font-size: 1.08rem; }

/* ---------- Tabs (bureau) ---------- */
.tab-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-600);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 200ms ease;
}
.tab-btn.is-active, .tab-btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ---------- Accordion (FAQ) ---------- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.accordion-trigger svg { width: 20px; height: 20px; color: var(--gold-600); transition: transform 250ms ease; flex-shrink: 0; margin-left: 16px; }
.accordion-item.is-open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.accordion-panel-inner { padding: 0 4px 22px; color: var(--text-600); }

/* ---------- Progress (kit objective) ---------- */
.progress-track {
  height: 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  overflow: hidden;
  border: 1px solid var(--border);
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

/* ---------- Donation amount selector ---------- */
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 640px) { .amount-grid { grid-template-columns: repeat(2, 1fr); } }
.amount-btn {
  padding: 16px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  transition: all 200ms ease;
}
.amount-btn.is-active, .amount-btn:hover { border-color: var(--gold-500); background: #fdf6e3; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.badge-float {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 640px) { .badge-float { left: 12px; bottom: -18px; padding: 14px 16px; } }
.badge-float .num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--navy-900); }
.badge-float .num span { color: var(--gold-600); }
.badge-float .txt { font-size: 0.8rem; color: var(--text-600); max-width: 14ch; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 14px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
