/* =====================================================
   ONG KGA — DROIT À LA VIE
   Feuille de styles principale
   ===================================================== */

:root{
  --blue-dark:   #0a1f44;
  --blue-deep:   #071630;
  --blue-mid:    #113061;
  --blue-soft:   #1c3f74;
  --orange:      #f2751f;
  --orange-light:#ff9142;
  --white:       #ffffff;
  --bg-light:    #f5f7fb;
  --bg-card:     #ffffff;
  --text-dark:   #16233a;
  --text-muted:  #5c6b82;
  --border-soft: #e3e8f0;

  --font-display:'Sora', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(10,31,68,0.10);
  --shadow-strong: 0 20px 45px rgba(10,31,68,0.22);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ 
  box-sizing:border-box; 
}

html{ 
  scroll-behavior:smooth; 
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-dark);
  background:var(--bg-light);
  line-height:1.6;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0 0 .5em; color:var(--blue-dark); line-height:1.2; }
p{ margin:0 0 1em; color:var(--text-muted); }
button{ font-family:var(--font-body); cursor:pointer; border:none; background:none; }
.container{ width:min(1180px, 92%); margin:0 auto; }

@media(prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

/* ============ EYEBROW / SECTION HEAD ============ */
.eyebrow{
  display:inline-block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:.7rem;
}
.section{ padding:5.5rem 0; position:relative; }
.section-head{ max-width:680px; margin-bottom:3rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.4rem); }
.section-head.light h2, .section-head.light p, .section-head.light .eyebrow{ color:var(--white); }
.section-head.light .eyebrow{ color:var(--orange-light); }

/* ============ REVEAL ON SCROLL ============ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ============ BACK TO TOP ============ */
.back-to-top{
  position:fixed; right:22px; bottom:22px; z-index:500;
  width:46px; height:46px; border-radius:50%;
  background:var(--orange); color:var(--white); font-size:1.05rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-strong);
  opacity:0; visibility:hidden; transform:translateY(15px);
  transition:var(--transition);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--orange-light); }

/* =====================================================
   TOPBAR
   ===================================================== */
.topbar{
  background:var(--blue-deep);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:.85rem;
  padding:0 0 0 0;
  gap:1rem;
}
.topbar-marquee{ overflow:hidden; flex:1 1 auto; min-width:0; }
.marquee-track{
  display:flex; white-space:nowrap; width:max-content;
  animation:marqueeScroll 32s linear infinite;
  padding:.55rem 0;
}
.marquee-track span{ padding-right:3rem; opacity:.95; }
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.topbar-side{ display:flex; align-items:center; gap:1rem; flex-shrink:0; padding:.4rem .9rem; background:rgba(255,255,255,.05); }
.topbar-phone{ display:flex; align-items:center; gap:.4rem; font-weight:600; white-space:nowrap; }
.topbar-phone i{ color:var(--orange-light); }
.topbar-social{ display:flex; gap:.5rem; }
.topbar-social a{
  width:26px; height:26px; border-radius:50%;
  background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; transition:var(--transition);
}
.topbar-social a:hover{ background:var(--orange); transform:translateY(-2px); }

/* =====================================================
   BRAND BAR (logo / texte 3 lignes / badge flottant)
   ===================================================== */
.brand-bar{ background:var(--white); padding:1.6rem 0; }
.brand-bar-inner{
  width:min(1180px, 92%); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
}
.brand-logo img{
  width:clamp(110px, 14vw, 200px);
  height:clamp(110px, 14vw, 200px);
  object-fit:contain;
}
.brand-text{ flex:1; min-width:240px; text-align:center; }
.brand-text p{ margin:0; color:var(--blue-dark); }
.brand-text .line-1{ font-family:var(--font-display); font-weight:800; font-size:1.35rem; }
.brand-text .line-2{ font-weight:600; color:var(--orange); margin-top:.2rem; }
.brand-text .line-3{ font-size:.88rem; color:var(--text-muted); margin-top:.2rem; }
.brand-floating{ flex-shrink:0; }
.floating-badge{
  background:linear-gradient(135deg, var(--orange), var(--orange-light));
  color:var(--white);
  border-radius:var(--radius);
  padding:.8rem 1.3rem;
  display:flex; flex-direction:column; align-items:center;
  box-shadow:var(--shadow-strong);
  animation:floatBadge 4s ease-in-out infinite;
  min-width:150px;
}
.badge-icon{ font-size:1.3rem; margin-bottom:.35rem; }
.badge-slogan{ font-family:var(--font-display); font-weight:700; font-size:.82rem; text-align:center; line-height:1.35; letter-spacing:.01em; }
@keyframes floatBadge{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.main-nav{
  background:var(--blue-dark);
  position:sticky; top:0; z-index:400;
  box-shadow:0 4px 18px rgba(0,0,0,.15);
}
.nav-inner{ width:min(1180px, 92%); margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.nav-list{ display:flex; flex-wrap:wrap; }
.nav-link{
  display:block; padding:1rem 1rem; color:rgba(255,255,255,.85);
  font-weight:600; font-size:.92rem; position:relative; transition:var(--transition);
}
.nav-link::after{
  content:""; position:absolute; left:1rem; right:1rem; bottom:.5rem; height:2px;
  background:var(--orange); transform:scaleX(0); transform-origin:left; transition:var(--transition);
}
.nav-link:hover, .nav-link.active{ color:var(--white); }
.nav-link:hover::after, .nav-link.active::after{ transform:scaleX(1); }
.nav-cta{
  background:var(--orange); border-radius:6px; margin:.6rem 0; padding:.6rem 1.1rem !important;
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background:var(--orange-light); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:.6rem; }
.nav-toggle span{ width:26px; height:2.5px; background:var(--white); border-radius:2px; }

/* =====================================================
   PULSE DIVIDER (élément signature — battement de cœur)
   ===================================================== */
.pulse-divider{ width:100%; height:60px; background:var(--bg-light); overflow:hidden; }
.pulse-path{
  fill:none; stroke:var(--orange); stroke-width:3; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:1400; stroke-dashoffset:1400;
  transition:stroke-dashoffset 1.8s ease;
}
.pulse-divider.in-view .pulse-path{ stroke-dashoffset:0; }
.pulse-divider svg{ width:100%; height:100%; }

/* =====================================================
   ACCUEIL — HERO SLIDER
   ===================================================== */
.hero-slider{ padding:0; height:88vh; min-height:520px; position:relative; overflow:hidden; }
.slides{ position:relative; width:100%; height:100%; }
.slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; visibility:hidden; transition:opacity 1.1s ease;
}
.slide.active{ opacity:1; visibility:visible; }
.slide-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(7,22,48,.88) 15%, rgba(7,22,48,.45) 60%, rgba(7,22,48,.2));
}
.slide-caption{
  position:relative; z-index:2; max-width:640px; height:100%;
  display:flex; flex-direction:column; justify-content:center;
  padding:2rem 6%; color:var(--white);
}
.slide-caption h1, .slide-caption h2{ color:var(--white); font-size:clamp(1.9rem, 4vw, 3.1rem); margin-bottom:.5rem;
  opacity:0; transform:translateY(24px); animation:none; }
.slide.active .slide-caption h1, .slide.active .slide-caption h2{ animation:captionUp .9s .25s ease forwards; }
.slide.active .slide-caption .eyebrow{ animation:captionUp .8s .05s ease forwards; }
.slide.active .slide-caption p{ animation:captionUp .9s .45s ease forwards; }
.slide-caption p{ color:rgba(255,255,255,.85); font-size:1.05rem; max-width:520px;
  opacity:0; transform:translateY(24px);}
.slide-caption .eyebrow{ opacity:0; transform:translateY(24px);}
@keyframes captionUp{ to{ opacity:1; transform:translateY(0);} }

.slide-dots{ position:absolute; z-index:3; bottom:28px; left:50%; transform:translateX(-50%); display:flex; gap:.6rem; }
.slide-dots button{
  width:11px; height:11px; border-radius:50%; background:rgba(255,255,255,.4); transition:var(--transition);
}
.slide-dots button.active{ background:var(--orange); width:28px; border-radius:6px; }
.scroll-cue{
  position:absolute; z-index:3; bottom:26px; right:6%; color:var(--white);
  width:42px; height:42px; border:2px solid rgba(255,255,255,.5); border-radius:50%;
  display:flex; align-items:center; justify-content:center; animation:bounceCue 2s infinite;
}
@keyframes bounceCue{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(8px);} }

/* =====================================================
   BANDE CHIFFRES CLÉS
   ===================================================== */
.stats-band{
  padding:3rem 0;
  background:linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  position:relative;
}
.stats-band::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(242,117,31,.18), transparent 55%);
  pointer-events:none;
}
.stats-band-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:repeat(4, 1fr); gap:1.5rem;
}
.stat-item{ text-align:center; color:var(--white); }
.stat-item i{ font-size:1.5rem; color:var(--orange-light); margin-bottom:.6rem; display:block; }
.stat-number{ font-family:var(--font-display); font-weight:800; font-size:clamp(1.9rem, 3.4vw, 2.8rem); color:var(--white); }
.stat-suffix{ font-family:var(--font-display); font-weight:800; font-size:clamp(1.5rem, 2.6vw, 2rem); color:var(--orange-light); }
.stat-item p{ margin:.2rem 0 0; color:rgba(255,255,255,.8); font-size:.9rem; }
@media(max-width:760px){ .stats-band-grid{ grid-template-columns:repeat(2, 1fr); } }

/* =====================================================
   SPLIT LAYOUTS (Historique / ONG KGA / Contact)
   ===================================================== */
.split{ display:flex; align-items:center; gap:3.5rem; flex-wrap:wrap; }
.split > *{ flex:1 1 380px; }
.split.reverse{ flex-direction:row-reverse; }

.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius); box-shadow:var(--shadow-strong); width:100%; object-fit:cover; }

/* ---- Historique : slider de photos, taille réduite + nom en bas ---- */
.historique-media{ flex:0 1 240px; max-width:240px; margin-left:auto; }
.historique-slider{ position:relative; width:100%; height:280px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-strong); }
.historique-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:0;
  box-shadow:none; opacity:0; transition:opacity 1s ease;
}
.historique-photo.active{ opacity:1; }
.historique-caption{ text-align:center; margin-top:1rem; }
.historique-name{ font-family:var(--font-display); font-weight:800; color:var(--blue-dark); font-size:1.05rem; margin:0; }
.historique-role{ color:var(--orange); font-weight:700; font-size:.85rem; margin:.2rem 0 0; }
.split-text h2{ font-size:clamp(1.6rem, 2.8vw, 2.2rem); }

/* ---- ONG KGA slides ---- */
.ongkga-text{ position:relative; }
.ongkga-slide{ display:none; }
.ongkga-slide.active{ display:block; animation:fadeSlideIn .6s ease; }
@keyframes fadeSlideIn{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.ongkga-dots{ display:flex; gap:.5rem; margin-top:1rem; }
.ongkga-dots button{ width:10px; height:10px; border-radius:50%; background:var(--border-soft); transition:var(--transition); }
.ongkga-dots button.active{ background:var(--orange); width:26px; border-radius:5px; }
.ongkga-media{ position:relative; min-height:380px; }
.ongkga-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  border-radius:var(--radius); box-shadow:var(--shadow-strong);
  opacity:0; transition:opacity .9s ease;
}
.ongkga-photo.active{ opacity:1; position:relative; }
.ongkga-media{ display:flex; }

/* =====================================================
   DOMAINES (5 cartes verticales)
   ===================================================== */
.domaines-grid{
  display:grid; grid-template-columns:repeat(5, 1fr); gap:1.6rem;
}
.domaine-card{
  background:var(--bg-card); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-soft); transition:var(--transition); display:flex; flex-direction:column;
}
.domaine-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-strong); }
.domaine-img{ height:150px; overflow:hidden; }
.domaine-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.domaine-card:hover .domaine-img img{ transform:scale(1.08); }
.domaine-body{ padding:1.3rem 1.1rem; text-align:center; }
.domaine-body i{ color:var(--orange); font-size:1.5rem; margin-bottom:.5rem; }
.domaine-body h3{ font-size:1.05rem; margin-bottom:.4rem; }
.domaine-body p{ font-size:.88rem; margin:0; }

/* =====================================================
   ACTIVITÉS / CALENDRIER (tableau)
   ===================================================== */
.table-wrap{ overflow-x:auto; border-radius:var(--radius); box-shadow:var(--shadow-soft); }
.calendar-table{ width:100%; border-collapse:collapse; background:var(--white); min-width:640px; }
.calendar-table th{
  background:var(--blue-dark); color:var(--white); text-align:left; padding:1rem 1.2rem;
  font-family:var(--font-display); font-size:.85rem; letter-spacing:.04em; text-transform:uppercase;
}
.calendar-table td{ padding:.9rem 1.2rem; border-bottom:1px solid var(--border-soft); font-size:.95rem; }
.calendar-table tr:last-child td{ border-bottom:none; }
.calendar-table tr:nth-child(even){ background:#fafbfd; }
.calendar-table tr:hover{ background:#fdf2e9; }
.status{ padding:.28rem .7rem; border-radius:20px; font-size:.76rem; font-weight:700; white-space:nowrap; }
.status.done{ background:#e3f6ea; color:#1e8a4c; }
.status.progress{ background:#fff2d8; color:#b5780a; }
.status.upcoming{ background:#e7edfb; color:var(--blue-mid); }

/* =====================================================
   BUREAU — ORGANIGRAMME
   ===================================================== */
.orgchart{ display:flex; flex-direction:column; align-items:center; gap:2.6rem; }
.org-tier{ display:flex; flex-wrap:wrap; justify-content:center; gap:2.2rem; position:relative; }
.org-tier::before{
  content:""; position:absolute; top:-1.3rem; left:50%; width:1px; height:1.3rem; background:var(--border-soft);
}
.tier-1::before{ display:none; }
.org-card{ text-align:center; width:300px; }
.org-card img{
  width:300px; height:300px; object-fit:cover; border-radius:50%;
  border:5px solid var(--white); box-shadow:var(--shadow-soft); margin-bottom:.9rem; transition:var(--transition);
}
.org-card:hover img{ border-color:var(--orange); transform:translateY(-6px); }
.org-name{ font-weight:700; color:var(--blue-dark); margin:0; font-size:1.05rem; }
.org-role{ font-size:.88rem; color:var(--orange); margin:.15rem 0 0; font-weight:600; }
.tier-1 .org-card img{ width:320px; height:320px; }

/* =====================================================
   PARTENAIRES (marquee de logos)
   ===================================================== */
.partenaires{ background:var(--white); }
.partners-track-wrap{ overflow:hidden; padding:.6rem 0; max-width:900px; margin:0 auto; }
.partners-track{ display:flex; align-items:center; gap:3rem; width:max-content; animation:partnersScroll 20s linear infinite; }
.partners-track img{
  height:92px; width:auto; filter:grayscale(1); opacity:.7; transition:var(--transition);
}
.partners-track img:hover{ filter:grayscale(0); opacity:1; }
@keyframes partnersScroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =====================================================
   TÉMOIGNAGES
   ===================================================== */
.temoignages-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:2rem; }
.temoignage-card{
  display:flex; gap:1.6rem; background:var(--bg-card); border-radius:var(--radius);
  box-shadow:var(--shadow-soft); padding:1.4rem; align-items:center; transition:var(--transition);
}
.temoignage-card:hover{ box-shadow:var(--shadow-strong); transform:translateY(-4px); }
.temoignage-card img{ width:220px; height:220px; min-width:220px; object-fit:cover; border-radius:12px; }
.quote-icon{ color:var(--orange); opacity:.35; font-size:1.3rem; margin-bottom:.3rem; }
.temoignage-text p{ margin:0 0 .6rem; font-size:.94rem; }
.temoignage-name{ font-weight:700; color:var(--blue-dark); font-size:.85rem !important; margin:0 !important; }

/* =====================================================
   GALERIE
   ===================================================== */
.gallery-tabs{ display:flex; justify-content:center; gap:.8rem; margin-bottom:2.4rem; }
.gallery-tab{
  padding:.6rem 1.6rem; border-radius:30px; background:var(--white); color:var(--blue-dark);
  font-weight:700; box-shadow:var(--shadow-soft); transition:var(--transition);
}
.gallery-tab.active, .gallery-tab:hover{ background:var(--orange); color:var(--white); }
.gallery-photos{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:1.2rem; margin-bottom:3rem;
}
.gallery-item{ border-radius:12px; overflow:hidden; box-shadow:var(--shadow-soft); background:var(--white); }
.gallery-item img{ width:100%; height:160px; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item-caption{ padding:.6rem .8rem; font-size:.82rem; color:var(--text-muted); font-weight:600; }

.gallery-subtitle{ text-align:center; margin-bottom:1.6rem; font-size:1.2rem; }
.gallery-videos-wrap{ overflow:hidden; }
.gallery-videos{ display:flex; gap:1.2rem; width:max-content; animation:videosScroll 30s linear infinite; }
@keyframes videosScroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.video-item{ position:relative; width:220px; border-radius:12px; overflow:hidden; box-shadow:var(--shadow-soft); background:var(--white); flex-shrink:0; }
.video-item img{ width:100%; height:150px; object-fit:cover; }
.play-icon{
  position:absolute; top:36%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%; background:rgba(242,117,31,.9); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:1.05rem;
}
.video-item-caption{ padding:.55rem .7rem; font-size:.8rem; color:var(--text-muted); font-weight:600; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info .eyebrow{ color:var(--orange); }
.contact-list{ margin:1.6rem 0; }
.contact-list li{ display:flex; align-items:center; gap:.7rem; margin-bottom:.9rem; font-weight:600; color:var(--blue-dark); }
.contact-list i{ color:var(--orange); width:18px; text-align:center; }
.contact-social a{ background:var(--blue-dark); }
.contact-social a:hover{ background:var(--orange); }

.contact-form{ background:var(--white); padding:2.2rem; border-radius:var(--radius); box-shadow:var(--shadow-soft); }
.form-row{ display:flex; gap:1.2rem; flex-wrap:wrap; }
.form-group{ flex:1 1 220px; margin-bottom:1.2rem; display:flex; flex-direction:column; }
.form-group label{ font-weight:700; font-size:.85rem; margin-bottom:.4rem; color:var(--blue-dark); }
.form-group input, .form-group textarea{
  border:1.5px solid var(--border-soft); border-radius:8px; padding:.75rem .9rem;
  font-family:var(--font-body); font-size:.95rem; transition:var(--transition); resize:vertical;
}
.form-group input:focus, .form-group textarea:focus{ outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(242,117,31,.15); }
.error-msg{ display:none; color:#d64545; font-size:.78rem; margin-top:.3rem; }
.form-group.invalid input, .form-group.invalid textarea{ border-color:#d64545; }
.form-group.invalid .error-msg{ display:block; }

.btn{
  display:inline-flex; align-items:center; gap:.6rem; justify-content:center;
  padding:.9rem 1.8rem; border-radius:8px; font-weight:700; font-size:.95rem; transition:var(--transition);
}
.btn-primary{ background:var(--orange); color:var(--white); }
.btn-primary:hover{ background:var(--orange-light); transform:translateY(-2px); box-shadow:var(--shadow-soft); }
.btn-block{ width:100%; }
.form-success{ display:none; margin-top:1rem; background:#e3f6ea; color:#1e8a4c; padding:.8rem 1rem; border-radius:8px; font-weight:600; font-size:.9rem; }
.form-success.show{ display:block; }

/* =====================================================
   DON (faire un don)
   ===================================================== */
.don{ background:linear-gradient(135deg, var(--blue-dark), var(--blue-deep)); }
.don-grid{ display:flex; gap:2.5rem; flex-wrap:wrap; align-items:flex-start; }
.don-form{ flex:1 1 400px; background:var(--white); padding:2.2rem; border-radius:var(--radius); box-shadow:var(--shadow-strong); }
.don-label{ font-weight:700; color:var(--blue-dark); margin-bottom:.8rem; }
.don-amounts{ display:grid; grid-template-columns:repeat(4,1fr); gap:.7rem; margin-bottom:1.2rem; }
.don-amount{
  padding:.8rem .4rem; border-radius:8px; border:1.5px solid var(--border-soft); font-weight:700;
  color:var(--blue-dark); transition:var(--transition);
}
.don-amount.selected, .don-amount:hover{ background:var(--orange); border-color:var(--orange); color:var(--white); }
.don-methods{ flex:1 1 380px; color:var(--white); }
.don-methods h3{ color:var(--white); margin-bottom:1.4rem; }
.method-card{ display:flex; gap:1rem; align-items:flex-start; background:rgba(255,255,255,.06); padding:1.1rem; border-radius:12px; margin-bottom:1rem; }
.method-card i{ color:var(--orange-light); font-size:1.4rem; margin-top:.2rem; }
.method-title{ font-weight:700; color:var(--white); margin:0 0 .2rem; }
.method-detail{ margin:0; color:rgba(255,255,255,.75); font-size:.88rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer{
  position:relative; background-size:cover; background-position:center; color:var(--white);
  background-color:var(--blue-deep);
}
.footer-overlay{ position:absolute; inset:0; background:rgba(7,15,32,.92); }
.footer-content{
  position:relative; z-index:2; width:min(1180px,92%); margin:0 auto;
  padding:4rem 0 2rem; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2.5rem;
}
.footer-col h4{ color:var(--orange-light); font-size:1rem; margin-bottom:1.1rem; }
.footer-col ul li{ margin-bottom:.7rem; font-size:.9rem; color:rgba(255,255,255,.8); }
.footer-col ul li i{ color:var(--orange-light); margin-right:.5rem; width:16px; }
.footer-col a:hover{ color:var(--orange-light); }
.footer-brand img{ height:56px; margin-bottom:1rem; filter:brightness(0) invert(1); }
.footer-brand p{ color:rgba(255,255,255,.7); font-size:.9rem; }
.footer-brand .topbar-social a{ background:rgba(255,255,255,.1); }
.footer-bottom{
  position:relative; z-index:2; padding:1.3rem 0; border-top:1px solid rgba(255,255,255,.12);
  font-size:.85rem; color:rgba(255,255,255,.65);
  width:min(1180px,92%); margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap:1.5rem; flex-wrap:wrap; text-align:center;
}
.footer-bottom p{ margin:0; color:rgba(255,255,255,.65); }
.footer-admin-link{
  display:inline-flex; align-items:center; gap:.4rem;
  color:rgba(255,255,255,.45); font-size:.78rem; font-weight:600;
  padding:.35rem .8rem; border:1px solid rgba(255,255,255,.18); border-radius:100px;
  transition:var(--transition);
}
.footer-admin-link i{ color:rgba(255,255,255,.45); font-size:.75rem; }
.footer-admin-link:hover{ color:var(--white); border-color:var(--orange-light); background:rgba(255,255,255,.06); }
.footer-admin-link:hover i{ color:var(--orange-light); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:1024px){
  .domaines-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-content{ grid-template-columns:1fr 1fr; }
  .org-card{ width:220px; }
  .org-card img{ width:220px; height:220px; }
  .tier-1 .org-card img{ width:240px; height:240px; }
}

@media(max-width:900px){
  .nav-toggle{ display:flex; }
  .nav-list{
    position:absolute; top:100%; left:0; right:0; background:var(--blue-dark);
    flex-direction:column; max-height:0; overflow:hidden; transition:max-height .4s ease;
  }
  .nav-list.open{ max-height:600px; }
  .nav-link{ padding:.9rem 1.4rem; }
  .nav-cta{ margin:.6rem 1.4rem; }
  .temoignages-grid{ grid-template-columns:1fr; }
  .gallery-photos{ grid-template-columns:repeat(2,1fr); }
  .split.reverse{ flex-direction:column; }
  .split{ flex-direction:column; }
  .historique-media{ margin-left:0; margin-right:0; max-width:100%; }
}

@media(max-width:768px){
  .topbar{ flex-wrap:wrap; }
  .topbar-side{ order:2; width:100%; justify-content:space-between; }
  .brand-bar-inner{ flex-direction:column; text-align:center; }
  .domaines-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-content{ grid-template-columns:1fr; text-align:center; }
  .footer-col ul li{ justify-content:center; display:flex; align-items:center; }
  .org-card{ width:130px; }
  .org-card img{ width:130px; height:130px; }
  .tier-1 .org-card img{ width:150px; height:150px; }
  .don-amounts{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:520px){
  .domaines-grid{ grid-template-columns:1fr 1fr; }
  .gallery-photos{ grid-template-columns:1fr 1fr; }
  .temoignage-card{ flex-direction:column; }
  .temoignage-card img{ width:100%; height:240px; }
  .hero-slider{ height:78vh; }
}
