/* ============================================================
   AYASSUÉ REINE MÈRE — Stylesheet
   Thème : Drapeau ivoirien 🇨🇮
   Orange #F47920 · Blanc #FFFFFF · Vert #009A44
============================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --orange:   #F47920;
  --orange-d: #C8600A;
  --orange-l: #FF9F4A;
  --vert:     #009A44;
  --vert-l:   #00BB55;
  --vert-d:   #007230;
  --blanc:    #FFFFFF;
  --fond:     #F6FFF9;       /* fond légèrement vert très pâle */
  --fond-o:   #FFF7F0;       /* fond légèrement orangé très pâle */
  --texte:    #1A1A1A;
  --texte-l:  #555555;

  --font-h: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 48px rgba(0, 0, 0, 0.13);
  --transition: 0.28s ease;
  --header-h:  70px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }
p   { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- TYPOGRAPHIE ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.18;
  color: var(--texte);
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 700; }

strong { font-weight: 700; }
em { font-style: italic; }
.lead { font-size: 1.12rem; font-weight: 500; line-height: 1.8; }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--blanc);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
}

.btn-gold {
  background: var(--orange);
  color: var(--blanc);
  border-color: var(--orange);
}
.btn-gold:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--blanc);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--vert);
  border-color: var(--vert);
}
.btn-secondary:hover {
  background: var(--vert);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--blanc);
  border-color: #25D366;
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-whatsapp:hover {
  background: #1DAA53;
  border-color: #1DAA53;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
  transition: box-shadow var(--transition), border-color var(--transition);
}
/* Barre tricolore sous le header */
.header::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 33%, var(--blanc) 33%, var(--blanc) 66%, var(--vert) 66%);
}
.header.scrolled { box-shadow: 0 3px 28px rgba(0, 0, 0, 0.1); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 46px;
  width: 46px;
  border-radius: 10px;
  object-fit: cover;
  /* Centre sur la partie bleue du logo, rogne les bandes noires */
  object-position: center 42%;
  flex-shrink: 0;
}
.logo-crown {
  font-size: 1.7rem;
  color: var(--orange);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--texte);
}
.logo-text em {
  font-style: normal;
  color: var(--vert);
  font-size: 0.78rem;
  font-weight: 600;
}
.footer-logo .logo-text { color: var(--blanc); }
.footer-logo .logo-text em { color: var(--orange-l); }
.footer-logo .logo-crown { color: var(--orange-l); }

/* Navigation */
.nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 11px;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--texte);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--orange); background: rgba(244, 121, 32, 0.09); }
.nav-link.active { color: var(--orange); background: rgba(244, 121, 32, 0.09); }

.header-cta { padding: 9px 20px; font-size: 0.86rem; flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--texte);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--orange); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--orange); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Hero background avec vraie photo + dégradé fallback */
.hero-bg {
  position: absolute;
  inset: 0;
  /* Dégradé ivoirien affiché si hero.jpg absent */
  background: linear-gradient(
    145deg,
    #5A1A00 0%,
    #B84500 18%,
    #F47920 36%,
    #1A1A1A 52%,
    #006830 70%,
    #003D1A 100%
  );
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.78;
  /* Si l'image ne charge pas, le dégradé du parent reste visible */
}

/* Motif géométrique wax discret */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent 0px, transparent 28px,
      rgba(255, 255, 255, 0.04) 28px, rgba(255, 255, 255, 0.04) 31px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent 0px, transparent 28px,
      rgba(244, 121, 32, 0.08) 28px, rgba(244, 121, 32, 0.08) 31px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 58px,
      rgba(0, 154, 68, 0.08) 58px, rgba(0, 154, 68, 0.08) 61px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.04) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 20px 80px;
  max-width: 860px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244, 121, 32, 0.25);
  border: 1px solid rgba(244, 121, 32, 0.55);
  border-radius: 50px;
  color: #FFB870;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  color: var(--blanc);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 22px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.72;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat strong {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange-l);
  line-height: 1;
}
.stat span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.22);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounceDown 2.2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.45; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.85; }
}

/* ---------- SECTIONS — GÉNÉRAL ---------- */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(244, 121, 32, 0.12);
  border-radius: 50px;
  color: var(--orange-d);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { color: var(--texte); margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.02rem;
  color: var(--texte-l);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
}

/* Bande tricolore décorative */
.section-deco-top,
.section-deco-bottom {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--orange) 33%,
    var(--blanc)  33%,
    var(--blanc)  66%,
    var(--vert)   66%
  );
  opacity: 0.7;
}

/* ---------- SECTION — L'ASSOCIATION ---------- */
.section-asso { background: var(--fond-o); }

.asso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .asso-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 64px; }
}

.asso-text p { color: var(--texte-l); }
.asso-text .lead { color: var(--texte); }

/* Piliers de mission */
.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--blanc);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.pillar:nth-child(2) { border-left-color: var(--vert); }
.pillar:nth-child(3) { border-left-color: var(--orange-l); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
.pillar strong { display: block; font-size: 0.92rem; margin-bottom: 3px; }
.pillar p { font-size: 0.82rem; color: var(--texte-l); margin: 0; }

/* Photo réelle dans la section association */
.asso-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.asso-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.asso-photo:only-child {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

/* Photo placeholder (fallback si image absente) */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--orange) 0%, var(--vert) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder-inner {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
  padding: 24px;
}
.photo-placeholder-icon { font-size: 2.8rem; display: block; margin-bottom: 12px; }
.photo-placeholder-inner p { font-size: 0.96rem; font-weight: 600; margin-bottom: 6px; }
.photo-placeholder-inner small { font-size: 0.74rem; opacity: 0.65; }

/* Citation fondatrice */
.founder-quote {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-l) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -16px; left: 16px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}
.founder-quote p {
  font-size: 1.04rem;
  line-height: 1.74;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.96);
}
.founder-quote footer { border-top: 1px solid rgba(255, 255, 255, 0.22); padding-top: 14px; }
.founder-quote footer strong { display: block; color: var(--orange-l); font-size: 0.96rem; margin-bottom: 3px; }
.founder-quote footer span  { font-size: 0.8rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- SECTION — NOS ACTIONS ---------- */
.section-actions { background: var(--blanc); }

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px;
  margin-bottom: 60px;
}
.action-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

/* Top border colorée par carte */
.action-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.action-card:nth-child(1)::before { background: var(--orange); }
.action-card:nth-child(2)::before { background: var(--vert); }
.action-card:nth-child(3)::before { background: var(--orange); }
.action-card:nth-child(4)::before { background: var(--vert); }
.action-card:nth-child(5)::before { background: var(--orange); }
.action-card:nth-child(6)::before { background: var(--vert); }

.action-icon { font-size: 2rem; margin-bottom: 14px; }
.action-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.action-card p  { font-size: 0.86rem; color: var(--texte-l); line-height: 1.62; margin: 0; }

/* Sous-sections */
.section-subsection { margin-top: 60px; }

.subsection-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  padding-bottom: 14px;
  position: relative;
}
.subsection-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.subsection-lead { color: var(--texte-l); margin-bottom: 28px; }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 56px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blanc) 50%, var(--vert));
  opacity: 0.4;
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: start;
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
}
.timeline-item:nth-child(odd) .timeline-marker span  { background: var(--orange); }
.timeline-item:nth-child(even) .timeline-marker span { background: var(--vert); }
.timeline-marker span {
  color: var(--blanc);
  font-family: var(--font-h);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.timeline-content {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 110px 1fr;
}
.timeline-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  overflow: hidden;
  background: #eee;
}
.timeline-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 110px;
  display: block;
  cursor: pointer;
}
/* Deux photos empilées dans la timeline */
.timeline-photo-duo {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 2px;
}
.timeline-photo-duo img {
  flex: 1;
  width: 100%;
  min-height: 90px;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
}
.timeline-text { padding: 18px 20px; }
.timeline-text h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 3px; }
.timeline-date { font-size: 0.76rem; color: var(--orange); font-weight: 600; margin-bottom: 9px !important; }
.timeline-item:nth-child(even) .timeline-date { color: var(--vert); }
.timeline-text p { font-size: 0.85rem; color: var(--texte-l); line-height: 1.6; margin: 0; }

/* Zones */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 560px) { .zones-grid { grid-template-columns: repeat(4, 1fr); } }

.zone-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), border-color var(--transition);
}
.zone-card:nth-child(odd)  { border-bottom: 4px solid var(--orange); }
.zone-card:nth-child(even) { border-bottom: 4px solid var(--vert); }
.zone-card:hover { transform: translateY(-4px); }
.zone-direction {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vert);
  margin-bottom: 8px;
}
.zone-card:nth-child(odd) .zone-direction { color: var(--orange-d); }
.zone-icon { font-size: 1.4rem; margin-bottom: 10px; }
.zone-cities { display: flex; flex-direction: column; gap: 4px; }
.zone-cities strong { font-size: 0.9rem; font-family: var(--font-h); }

/* ---------- SECTION — PROJETS D'AVENIR ---------- */
.section-projets {
  background: linear-gradient(180deg, #fff 0%, var(--fond) 100%);
}

.projets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.projet-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 2px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.projet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.projet-card--orange { border-top: 5px solid var(--orange); }
.projet-card--vert   { border-top: 5px solid var(--vert); }

.projet-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto auto;
  column-gap: 24px;
  align-items: start;
}
.projet-card--featured .projet-icon {
  grid-row: 1 / 3;
  font-size: 3rem;
}
.projet-card--featured h3 { grid-column: 2; }
.projet-card--featured p  { grid-column: 2; }
.projet-card--featured .projet-appel { grid-column: 2; }
.projet-card--featured .btn { grid-column: 2; align-self: start; margin-top: 4px; }

.projet-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.projet-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(244, 121, 32, 0.1);
  color: var(--orange-d);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}
.projet-card--vert .projet-badge {
  background: rgba(0, 154, 68, 0.1);
  color: var(--vert-d);
}

.projet-badge--gold {
  background: rgba(212, 160, 23, 0.15);
  color: #8B6500;
}

.projet-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--texte);
  margin: 0;
}
.projet-card p {
  font-size: 0.88rem;
  color: var(--texte-l);
  line-height: 1.65;
  margin: 0;
}
.projet-appel {
  font-style: italic;
  color: var(--vert) !important;
  font-weight: 500;
}

@media (max-width: 767px) {
  .projet-card--featured {
    grid-template-columns: 1fr;
  }
  .projet-card--featured .projet-icon { grid-row: auto; font-size: 2.4rem; }
  .projet-card--featured h3,
  .projet-card--featured p,
  .projet-card--featured .projet-appel,
  .projet-card--featured .btn { grid-column: 1; }
}

/* ---------- SECTION — L'ÉQUIPE ---------- */
.section-equipe { background: var(--fond); }

.team-group { margin-bottom: 60px; }
.team-group:last-child { margin-bottom: 0; }

.team-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--orange);
}
.team-group:last-child .team-group-header { border-bottom-color: var(--vert); }
.team-group-flag { font-size: 1.7rem; }
.team-group-header h3 { font-size: 1.3rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 18px;
}
.team-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  border: 2px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.team-group:last-child .team-card:hover { border-color: var(--vert); }

.team-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--blanc);
  box-shadow: 0 0 0 3px var(--orange);
}
.team-group:last-child .team-photo { box-shadow: 0 0 0 3px var(--vert); }
.team-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--c, var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}
.team-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 5px; }
.team-role {
  font-size: 0.77rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px !important;
}
.team-group:last-child .team-role { color: var(--vert); }
.team-bio { font-size: 0.78rem; color: var(--texte-l); line-height: 1.52; margin: 0 !important; }

/* ---------- SECTION — SOUTENIR ---------- */
/* ── GALERIE ─────────────────────────────────────────────── */
.section-galerie { background: var(--fond); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.galerie-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.galerie-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

.section-soutenir { background: var(--fond-o); }

/* Bannière besoins */
.needs-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-l) 100%);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  color: var(--blanc);
  box-shadow: 0 4px 24px rgba(244, 121, 32, 0.32);
}
.needs-banner-icon { font-size: 1.9rem; flex-shrink: 0; }
.needs-banner strong { display: block; font-size: 0.96rem; margin-bottom: 10px; }
.needs-tags { display: flex; gap: 9px; flex-wrap: wrap; }
.need-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 4px 13px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Grille 3 cartes */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
@media (min-width: 768px) { .support-grid { grid-template-columns: repeat(3, 1fr); } }

.support-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.support-card--financial { border-top: 5px solid var(--orange); }
.support-card--financial:hover { border-color: var(--orange); }
.support-card--material  { border-top: 5px solid var(--vert); }
.support-card--material:hover  { border-color: var(--vert); }
.support-card--volunteer { border-top: 5px solid var(--orange); }
.support-card--volunteer:hover { border-color: var(--orange); }

.support-card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.support-card h3 { font-size: 1.14rem; font-weight: 800; margin-bottom: 10px; }
.support-card p  { font-size: 0.88rem; color: var(--texte-l); line-height: 1.62; flex-grow: 1; }

.support-note {
  font-size: 0.8rem !important;
  font-style: italic;
  border-top: 1px solid #EEE;
  padding-top: 12px;
  margin-top: 6px;
  margin-bottom: 14px !important;
}

/* Méthodes de paiement */
.payment-methods { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  background: var(--fond-o);
  border-radius: 10px;
}
.payment-icon { font-size: 1.3rem; flex-shrink: 0; }
.payment-method strong { display: block; font-size: 0.88rem; }
.payment-number { font-size: 0.8rem; color: var(--texte-l); }

/* CTA WhatsApp principal */
.whatsapp-cta {
  text-align: center;
  padding: 48px 24px;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid rgba(0,0,0,0.05);
}
.whatsapp-cta p { color: var(--texte-l); margin-bottom: 18px; font-size: 1.02rem; }

/* ---------- FOOTER ---------- */
.footer { background: #111; color: rgba(255, 255, 255, 0.82); }

/* Bande tricolore ivoirienne en tête du footer */
.footer-kente {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,    var(--orange) 33%,
    var(--blanc)  33%,   var(--blanc)  66%,
    var(--vert)   66%,   var(--vert)   100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 0 44px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.62; margin-bottom: 14px; }
.footer-status  { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

.footer-contact h4, .footer-social h4, .footer-nav h4 {
  color: var(--orange-l);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 14px;
}

.footer-contact address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 9px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange-l); }

.social-links { display: flex; flex-direction: column; gap: 9px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  padding: 4px 0;
}
.social-link:hover { color: var(--orange-l); }

.footer-nav ul { display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); padding: 3px 0; }
.footer-nav a:hover { color: var(--orange-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.36); margin: 0; }
.footer-love { color: rgba(255,255,255,0.44) !important; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.fade-in.animate {
  opacity: 0;
  transform: translateY(22px);
}
.fade-in.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .fade-in { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero .fade-in:nth-child(1) { animation-delay: 0.15s; }
.hero .fade-in:nth-child(2) { animation-delay: 0.32s; }
.hero .fade-in:nth-child(3) { animation-delay: 0.48s; }
.hero .fade-in:nth-child(4) { animation-delay: 0.64s; }
.hero .fade-in:nth-child(5) { animation-delay: 0.80s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE MOBILE ---------- */
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: var(--blanc);
    padding: 16px 20px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.28s ease;
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--orange);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 3px; }
  .nav-link { display: block; padding: 11px 14px; font-size: 1rem; border-radius: 10px; }

  .header-cta { display: none; }
  .burger { display: flex; }

  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-subtitle br { display: none; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1.5rem; }

  .timeline::before { left: 36px; }
  .timeline-item { grid-template-columns: 76px 1fr; gap: 12px; }
  .timeline-content { grid-template-columns: 1fr; }
  .timeline-photo-placeholder { min-height: 80px; }

  .needs-banner { flex-direction: column; text-align: center; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-cta { padding: 32px 16px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  animation: lbFadeIn 0.25s ease;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: lbZoomIn 0.28s ease;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  display: block;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  text-align: center;
  font-style: italic;
  max-width: 600px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--blanc);
  font-size: 1.6rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Curseur "zoom" sur les photos cliquables */
.timeline-photo-placeholder img {
  cursor: zoom-in;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- ACCESSIBILITÉ ---------- */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- MOUVEMENT RÉDUIT ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
  .hero .fade-in { animation: none; opacity: 1; }
  .scroll-arrow { animation: none; }
}
