/* ============================================================
   FONDATION CHRÉTIENS D'AFRIQUE — Premium NGO Website
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --white:       #FFFFFF;
  --cream:       #FAF8F4;
  --beige:       #F2EDE4;
  --beige-mid:   #E8E0D2;
  --green:       #1A3D2B;
  --green-mid:   #2C5E40;
  --green-light: #3A7A52;
  --gold:        #C8920A;
  --gold-bright: #E5A70E;
  --gold-pale:   #FDF3D9;
  --charcoal:    #1C1C1C;
  --text:        #2E2E2E;
  --text-mid:    #5A5A5A;
  --text-light:  #8A8A8A;
  --border:      #DDD8CE;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:  84px;
  --r:      4px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
[id] { scroll-margin-top: var(--nav-h); }
#home { scroll-margin-top: 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; }
.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--charcoal);
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
section { padding: 8rem 0; }

/* ---------- SCROLL PROGRESS ---------- */
#scrollProgress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 999; pointer-events: none;
  transition: width 0.1s linear;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 500;
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s, padding 0.4s;
}
#navbar.scrolled {
  background: rgba(26, 61, 43, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 68px; width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.4s, height 0.4s;
}
#navbar.scrolled .nav-logo-img {
  height: 60px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(72%) saturate(600%) hue-rotate(5deg) brightness(97%) contrast(95%);
}
.nav-logo-text { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: white; line-height: 1.25; }
.nav-logo-text small { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  position: relative;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.5rem 0.9rem; border-radius: 3px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: white; }
.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600 !important;
  border-radius: var(--r) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a8780a !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 4px;
  transition: background 0.25s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switcher {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 3px 4px;
  margin-right: 0.5rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 4px 10px; border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lang-btn:hover { color: white; }
.lang-btn.active {
  background: var(--gold);
  color: white;
}
.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  pointer-events: none;
  padding: 0 1px;
}
.mobile-lang-switcher {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 6px;
  margin-top: 1.5rem;
}
.mobile-lang-switcher .lang-btn {
  font-size: 0.75rem;
  padding: 6px 14px;
}
.mobile-lang-switcher .lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

/* ---------- MOBILE MENU ---------- */
#mobileMenu {
  position: fixed; inset: 0;
  background: var(--green);
  z-index: 490;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
#mobileMenu.open { opacity: 1; pointer-events: all; }
#mobileMenu a {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: rgba(255,255,255,0.65); display: block;
  padding: 0.35rem 1rem;
  transition: color 0.25s, transform 0.3s var(--ease);
}
#mobileMenu a:hover { color: white; transform: translateX(10px); }
.mobile-menu-sub {
  margin-top: 2.5rem; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* ---------- STICKY DONATE BUTTON ---------- */
.sticky-donate {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 480;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--gold);
  color: white; text-decoration: none;
  padding: 0.85rem 1.6rem; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(200,146,10,0.5), 0 2px 8px rgba(0,0,0,0.18);
  opacity: 0; transform: translateY(20px) scale(0.94);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s, box-shadow 0.3s;
}
.sticky-donate.visible { opacity: 1; transform: translateY(0) scale(1); }
.sticky-donate:hover {
  background: #a8780a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(200,146,10,0.6);
}
.sticky-donate svg { animation: heartbeat 2.6s ease-in-out infinite; }
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14% { transform: scale(1.25); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  56% { transform: scale(1); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.35s var(--ease); cursor: pointer; border: none;
}
.btn-green {
  background: var(--green); color: white;
  box-shadow: 0 4px 20px rgba(26,61,43,0.35);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,61,43,0.4);
}
.btn-gold {
  background: var(--gold); color: white;
  box-shadow: 0 4px 20px rgba(200,146,10,0.35);
}
.btn-gold:hover {
  background: #a8780a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,146,10,0.45);
}
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green); color: white;
  transform: translateY(-2px);
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
#home {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--charcoal);
}
/* Dual crossfade slideshow */
.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 0.65;
  animation: heroSlideZoom 10s ease-in-out forwards;
}
@keyframes heroSlideZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,18,10,1) 0%,
    rgba(5,18,10,0.82) 35%,
    rgba(5,18,10,0.45) 65%,
    rgba(5,18,10,0.2) 100%
  );
}
.hero-overlay-green {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,35,22,0.7) 0%,
    transparent 55%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1320px;
  margin: 0 auto; padding: 0 2rem 6rem;
}
.hero-logo-badge {
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}
.hero-logo-img {
  height: 96px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.55));
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.hero-eyebrow-line { width: 48px; height: 1.5px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-title {
  color: white;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.6s forwards;
  max-width: 1000px;
}
.hero-title em { font-style: italic; color: var(--gold-bright); }
.hero-subtitle {
  margin-top: 2rem;
  font-size: 1.1rem; color: rgba(255,255,255,0.62);
  max-width: 560px; line-height: 1.8;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin-top: 3.5rem;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 1s forwards;
}
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: 0; margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0; animation: fadeUp 1.1s var(--ease) 1.2s forwards;
}
.hero-stat {
  padding: 0 3.5rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 3.5rem;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-family: var(--serif); font-size: 3.4rem; font-weight: 700;
  color: white; line-height: 1;
}
.hero-stat-num span { color: var(--gold-bright); font-weight: 400; }
.hero-stat-label {
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: 0.5rem;
}
/* Slide indicators */
.hero-slide-indicators {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  z-index: 3;
}
.hero-slide-indicator {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; opacity: 0.4;
  transition: opacity 0.4s;
}
.hero-slide-indicator.active { opacity: 1; }
.hero-slide-indicator-bar {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px; overflow: hidden; position: relative;
}
.hero-slide-indicator-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.hero-slide-indicator.active .hero-slide-indicator-bar::after {
  transform: scaleX(1);
  transition: transform 7s linear;
}
.hero-slide-indicator span {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: white;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  cursor: pointer;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.hero-scroll-text {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-dot {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   COMMUNITY BRIDGE
   ============================================================ */
.community-bridge {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  overflow: hidden;
}
.community-bridge-img {
  position: relative; overflow: hidden;
}
.community-bridge-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
  transition: transform 0.9s var(--ease);
}
.community-bridge:hover .community-bridge-img img { transform: scale(1.04); }
.community-bridge-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(26,61,43,0.35) 100%
  );
}
.community-bridge-content {
  background: var(--green);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem;
}
.community-bridge-label {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.community-bridge-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: white; line-height: 1.2;
  margin-bottom: 2rem;
}
.community-bridge-title em { font-style: italic; color: var(--gold-bright); }
.community-bridge-text {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.85; max-width: 400px;
}

/* ============================================================
   2. INTRO BAND
   ============================================================ */
.intro-band {
  background: var(--green);
  padding: 5rem 2rem;
}
.intro-band-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.intro-quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 600; color: white;
  line-height: 1.4;
  border-left: 3px solid var(--gold); padding-left: 2rem;
}
.intro-quote em { font-style: italic; color: var(--gold-bright); }
.intro-text { color: rgba(255,255,255,0.58); font-size: 1rem; line-height: 1.9; }
.intro-text p + p { margin-top: 1.25rem; }

/* ============================================================
   3. ABOUT SECTION
   ============================================================ */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 6rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 620px;
  object-fit: cover; border-radius: var(--r);
  transition: transform 0.7s var(--ease);
}
.about-img-wrap:hover .about-img-main { transform: scale(1.015); }
.about-img-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 210px; height: 210px;
  object-fit: cover; border-radius: var(--r);
  border: 6px solid white;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  transition: transform 0.5s var(--ease);
}
.about-img-wrap:hover .about-img-accent { transform: translateY(-6px); }
.about-badge {
  position: absolute; top: 2.5rem; left: -1.5rem;
  background: var(--gold);
  color: white; padding: 1.75rem;
  width: 140px; text-align: center;
  box-shadow: 0 8px 24px rgba(200,146,10,0.45);
  border-radius: var(--r);
}
.about-badge-num {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 700;
  line-height: 1; display: block;
}
.about-badge-text {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.9; margin-top: 0.4rem;
}
.about-content .section-label { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-mission {
  background: var(--beige); border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem; border-radius: 0 var(--r) var(--r) 0;
  margin: 2rem 0;
  font-family: var(--serif); font-size: 1.15rem;
  font-style: italic; line-height: 1.7; color: var(--charcoal);
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-top: 2.5rem;
  border-radius: var(--r); overflow: hidden;
}
.about-pillar {
  background: var(--white); padding: 1.75rem;
  transition: background 0.3s;
}
.about-pillar:hover { background: var(--gold-pale); }
.pillar-icon {
  width: 40px; height: 40px; background: var(--gold-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.3s, transform 0.3s;
}
.about-pillar:hover .pillar-icon { background: rgba(200,146,10,0.18); transform: scale(1.1); }
.pillar-icon svg { width: 18px; height: 18px; color: var(--gold); }
.about-pillar h4 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.about-pillar p { font-size: 0.82rem; color: var(--text-mid); margin-top: 0.3rem; line-height: 1.6; }

/* ============================================================
   4. PILLARS SECTION
   ============================================================ */
#pillars { background: var(--cream); }
.pillars-header { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.pillars-header .section-title { margin-top: 1rem; }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.pillar-card {
  background: white; border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.pillar-card-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pillar-card:hover .pillar-card-img { transform: scale(1.04); }
.pillar-card-img-wrap { overflow: hidden; }
.pillar-card-body { padding: 2.5rem; }
.pillar-card-icon-row {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.pillar-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-card-icon.green { background: rgba(26,61,43,0.1); }
.pillar-card-icon.green svg { color: var(--green); }
.pillar-card-icon.gold  { background: var(--gold-pale); }
.pillar-card-icon.gold  svg { color: var(--gold); }
.pillar-card-icon svg { width: 24px; height: 24px; }
.pillar-card-number {
  font-family: var(--serif); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.pillar-card-number.green { color: var(--green); }
.pillar-card-number.gold  { color: var(--gold); }
.pillar-card h3 { font-size: 1.6rem; color: var(--charcoal); margin-bottom: 1rem; }
.pillar-card > .pillar-card-body > p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.pillar-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.pillar-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem; color: var(--text); font-weight: 500;
}
.pillar-item-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.pillar-item-dot.green { background: var(--green); }
.pillar-item-dot.gold  { background: var(--gold); }
.pillar-values { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pillar-value-tag {
  background: var(--beige); color: var(--text-mid);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  border: 1px solid var(--border);
}

/* ============================================================
   5. IMPACT SECTION  (Bilan 2020–2025)
   ============================================================ */
#impact { background: var(--white); }
.impact-header { text-align: center; max-width: 760px; margin: 0 auto 5rem; }
.impact-header .section-title { margin-top: 1rem; }
.impact-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-bottom: 5rem;
}
.stat-box {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--cream); border-radius: 8px;
  border-top: 3px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-top-color 0.3s;
}
.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-top-color: var(--gold);
}
.stat-box:nth-child(2n+1):hover { border-top-color: var(--green); }
.stat-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--charcoal); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-top: 0.75rem;
}
.impact-timeline { position: relative; padding-left: 3rem; margin-bottom: 5rem; }
.impact-timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), var(--gold));
}
.timeline-item {
  position: relative; padding-bottom: 3.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -3.65rem; top: 0.2rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--green);
  transition: transform 0.3s, background 0.3s;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.3); background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.timeline-item h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; max-width: 680px; }
.impact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.impact-card {
  background: var(--cream); padding: 2.5rem;
  border-radius: 8px; position: relative; overflow: hidden;
  border-left: 4px solid var(--green);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.impact-card:nth-child(even) { border-left-color: var(--gold); }
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.impact-card-icon {
  width: 48px; height: 48px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.impact-card:nth-child(even) .impact-card-icon { background: var(--gold); }
.impact-card:hover .impact-card-icon { transform: scale(1.1) rotate(5deg); }
.impact-card-icon svg { width: 22px; height: 22px; color: white; }
.impact-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.6rem; }
.impact-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.impact-photo-strip {
  margin-top: 5rem; position: relative;
  height: 460px; border-radius: 8px; overflow: hidden;
}
.impact-photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  transition: transform 0.8s var(--ease);
}
.impact-photo-strip:hover img { transform: scale(1.03); }
.impact-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.85) 0%, transparent 55%);
}
.impact-photo-quote {
  position: absolute; bottom: 3rem; left: 4rem; right: 4rem;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; color: white; line-height: 1.35;
}
.impact-photo-quote em { font-style: italic; color: var(--gold-bright); }

/* ============================================================
   6. PLAN 2026–2030 SECTION
   ============================================================ */
#plan { background: var(--green); }
.plan-header { text-align: center; max-width: 760px; margin: 0 auto 5rem; }
.plan-header .section-label { color: var(--gold-bright); }
.plan-header .section-title { color: white; margin-top: 1rem; }
.plan-header p { color: rgba(255,255,255,0.6); margin-top: 1.5rem; font-size: 1rem; line-height: 1.85; }
.plan-areas {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.plan-area {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 2.5rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.plan-area:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.plan-area-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(200,146,10,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s, transform 0.3s;
}
.plan-area:hover .plan-area-icon { background: rgba(200,146,10,0.25); transform: scale(1.1); }
.plan-area-icon svg { width: 26px; height: 26px; color: var(--gold-bright); }
.plan-area h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.plan-area p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.7; }
.plan-programs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.plan-program {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}
.plan-program:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,146,10,0.4);
  transform: translateX(6px);
}
.plan-program-letter {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 2rem;
}
.plan-program h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.plan-program p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.plan-goals { margin-top: 5rem; }
.plan-goals-title {
  text-align: center; font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: white; margin-bottom: 3rem;
}
/* Plan visual break */
.plan-visual-break {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 380px; margin-bottom: 5rem;
}
.plan-visual-break img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transition: transform 0.9s var(--ease);
}
.plan-visual-break:hover img { transform: scale(1.04); }
.plan-visual-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,61,43,0.88) 0%,
    rgba(26,61,43,0.45) 55%,
    transparent 100%
  );
}
.plan-visual-break-text {
  position: absolute; bottom: 3rem; left: 3.5rem;
}
.plan-visual-break-text span {
  display: block;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.plan-visual-break-text p {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: white; font-style: italic; line-height: 1.35; max-width: 480px;
}
.plan-goals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.plan-goal {
  text-align: center; padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}
.plan-goal:hover {
  border-color: var(--gold);
  background: rgba(200,146,10,0.08);
  transform: translateY(-4px);
}
.plan-goal-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.plan-goal h4 { font-family: var(--sans); font-size: 0.88rem; font-weight: 700; color: white; line-height: 1.4; }

/* ============================================================
   7. WOMEN SECTION
   ============================================================ */
#women {
  background: var(--charcoal);
  padding: 0; overflow: hidden;
}
.women-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 92vh; }
.women-visual { position: relative; overflow: hidden; }
.women-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.9s var(--ease);
}
.women-visual:hover img { transform: scale(1.04); }
.women-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(28,28,28,0.92) 100%);
}
.women-content {
  padding: 7rem 5rem 7rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.women-content .section-label { color: var(--gold-bright); margin-bottom: 1.25rem; }
.women-content h2 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  color: white; margin-bottom: 2rem;
}
.women-content h2 em { font-style: italic; color: var(--gold-bright); }
.women-quote {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,0.65); line-height: 1.8;
  border-left: 2px solid var(--gold); padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.women-pillars { display: flex; flex-direction: column; gap: 1rem; }
.women-pillar {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}
.women-pillar:hover {
  border-color: rgba(200,146,10,0.45);
  background: rgba(200,146,10,0.06);
  transform: translateX(6px);
}
.women-pillar-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1; min-width: 2rem; padding-top: 0.1rem;
}
.women-pillar h4 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
.women-pillar p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.women-footer {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.4); line-height: 1.7;
}
.women-footer strong {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.85rem;
}

/* ============================================================
   8. GALLERY SECTION
   ============================================================ */
#gallery { background: var(--cream); }
.gallery-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.gallery-header .section-title { margin-top: 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; }
.gallery-item:first-child {
  grid-column: span 2; grid-row: span 1;
}
.gallery-item:last-child {
  grid-column: span 2; grid-row: span 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.75) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: white; line-height: 1.35;
  transform: translateY(10px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.gallery-item:hover .gallery-item-caption { transform: translateY(0); opacity: 1; }

/* ============================================================
   9. DONATION SECTION
   ============================================================ */
#donation { background: var(--white); position: relative; overflow: hidden; }
.donation-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.06;
  pointer-events: none;
}
.donation-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, white 0%, rgba(255,255,255,0.92) 100%);
  pointer-events: none;
}
.donation-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.donation-header .section-title { margin-top: 1rem; }
.donation-header p { margin-top: 1.25rem; font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

/* --- Bank info block --- */
.donation-bank-block {
  max-width: 560px; margin: 0 auto;
  background: var(--green);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  text-align: center;
  box-shadow: 0 32px 80px rgba(26,61,43,0.22), 0 2px 0 rgba(200,146,10,0.4) inset;
  position: relative; overflow: hidden;
}
.donation-bank-block::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(200,146,10,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.donation-bank-logo {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,146,10,0.15);
  border: 1.5px solid rgba(200,146,10,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.donation-bank-logo svg { width: 26px; height: 26px; color: var(--gold-bright); }
.donation-bank-eyebrow {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 0.75rem;
}
.donation-bank-name {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  color: white; line-height: 1.25; margin-bottom: 0;
}
.donation-bank-divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.75rem auto;
}
.donation-bank-rows {
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px; overflow: hidden;
  margin-bottom: 2rem;
}
.donation-bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.05);
  gap: 1rem;
}
.donation-bank-row:first-child { border-radius: 10px 10px 0 0; }
.donation-bank-row:last-child  { border-radius: 0 0 10px 10px; }
.donation-bank-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); flex-shrink: 0;
}
.donation-bank-value {
  font-size: 0.9rem; font-weight: 700;
  color: rgba(255,255,255,0.9); text-align: right;
}
.donation-bank-account {
  font-family: 'Courier New', monospace;
  font-size: 1rem; font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.donation-copy-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--gold); color: white;
  border: none; border-radius: 50px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(200,146,10,0.35);
}
.donation-copy-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,10,0.5);
}
.donation-copy-btn svg { flex-shrink: 0; }

.donation-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; margin-top: 1.5rem; padding: 0.8rem 1.5rem;
  border: 1.5px solid var(--green); border-radius: var(--r);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: transparent; cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
  text-decoration: none;
}
.donation-cta:hover { background: var(--green); color: white; transform: translateY(-2px); }
.donation-note {
  margin-top: 4rem; text-align: center;
  padding: 2rem; border: 1.5px dashed var(--border);
  border-radius: 8px; background: var(--cream);
}
.donation-note p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.donation-note a { color: var(--green); font-weight: 700; }
.donation-note a:hover { text-decoration: underline; }
.donation-security {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light);
}
.donation-security svg { width: 14px; height: 14px; color: var(--green); }

/* ============================================================
   10. CONTACT SECTION
   ============================================================ */
#contact { background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.contact-info-side .section-label { color: var(--gold-bright); margin-bottom: 1.25rem; }
.contact-info-side .section-title { color: white; margin-bottom: 1.5rem; }
.contact-info-side > p { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.contact-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.contact-item:hover { border-color: rgba(200,146,10,0.4); background: rgba(200,146,10,0.05); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.3s, background 0.3s;
}
.contact-item:hover .contact-item-icon { border-color: var(--gold); background: rgba(200,146,10,0.12); }
.contact-item-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-item-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.2rem;
}
.contact-item-value { font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.contact-social { display: flex; gap: 1rem; margin-top: 2.5rem; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(200,146,10,0.12); color: var(--gold-bright); transform: translateY(-3px); }
.social-btn svg { width: 17px; height: 17px; }
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); color: white;
  font-family: var(--sans); font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { background: var(--charcoal); }
.form-submit { width: 100%; }
.map-placeholder {
  margin-top: 2rem; height: 220px; border-radius: var(--r);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: rgba(255,255,255,0.3);
}
.map-placeholder svg { width: 40px; height: 40px; }
.map-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #070e0a; padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-link {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; margin-bottom: 1.5rem; width: fit-content;
}
.footer-logo-img {
  height: 62px; width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(72%) saturate(600%) hue-rotate(5deg) brightness(97%) contrast(95%);
  transition: opacity 0.3s;
}
.footer-brand-link:hover .footer-logo-img { opacity: 0.8; }
.footer-brand-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: white; line-height: 1.25; }
.footer-brand-name small { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.3); max-width: 300px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.35);
  text-decoration: none; margin-bottom: 0.7rem;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-col a:hover { color: rgba(255,255,255,0.78); padding-left: 5px; }
.footer-bottom {
  padding-top: 2.5rem; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer-made { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-made span { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .plan-goals-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav-logo-img { height: 60px; }
  .plan-visual-break { height: 300px; }
  .community-bridge { grid-template-columns: 1fr; min-height: auto; }
  .community-bridge-img { height: 55vw; min-height: 280px; }
  .community-bridge-content { padding: 4rem 3rem; }
  .plan-visual-break-text { left: 2rem; bottom: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { left: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .impact-cards-grid { grid-template-columns: 1fr 1fr; }
  .plan-areas { grid-template-columns: 1fr 1fr; }
  .plan-programs { grid-template-columns: 1fr; }
  .women-inner { grid-template-columns: 1fr; min-height: auto; }
  .women-visual { height: 420px; }
  .women-visual img { height: 420px; }
  .women-visual-overlay { background: linear-gradient(to top, rgba(28,28,28,0.88) 0%, transparent 60%); }
  .women-content { padding: 4rem 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: span 1; }
  .donation-bank-block { padding: 2.5rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .intro-band-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-img-main { height: 420px; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-cards-grid { grid-template-columns: 1fr; }
  .plan-areas { grid-template-columns: 1fr; }
  .plan-goals-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item { height: 280px; }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: span 1; }
  .donation-bank-block { padding: 2rem 1.25rem; }
  .donation-bank-account { font-size: 0.88rem; letter-spacing: 0.03em; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .sticky-donate { bottom: 1.25rem; right: 1.25rem; padding: 0.75rem 1.25rem; font-size: 0.72rem; }
  .women-content { padding: 3rem 1.5rem; }
  .impact-photo-strip { height: 300px; }
  .impact-photo-quote { left: 2rem; right: 2rem; bottom: 2rem; }
  .plan-visual-break { height: 240px; }
  .plan-visual-break-text span { display: none; }
  .plan-visual-break-text p { font-size: 1.2rem; }
  .nav-logo-img { height: 52px; }
  .hero-slide-indicators { display: none; }
  .community-bridge-content { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-inner { padding-bottom: 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .impact-stats { grid-template-columns: 1fr; }
  .plan-goals-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 46px; }
  .hero-logo-img { height: 72px; }
}
