/* ============================================================
   ERIS CBO – Main Stylesheet
   Ecocentric Resilience Initiative for Sustainable Development
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── ROOT TOKENS ── */
:root {
  --forest:     #0d2b1a;
  --green:      #1a4d2e;
  --green-mid:  #2d6a4f;
  --green-light:#52b788;
  --green-pale: #b7e4c7;
  --gold:       #c9910a;
  --gold-bright:#f4b942;
  --gold-pale:  #fdf0d0;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --dark:       #111111;
  --mid:        #4a4a4a;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--forest); z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
  width: 90px; height: 90px; object-fit: contain;
  background: white; border-radius: 50%; padding: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244,185,66,0.4); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(244,185,66,0); }
}
.pre-text {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-bright); font-size: 1.9rem;
  font-weight: 700; letter-spacing: 4px;
}
.pre-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
}
.pre-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.pre-bar-fill {
  height: 100%; background: var(--gold-bright);
  animation: load 2s ease forwards;
}
@keyframes load { from { width: 0; } to { width: 100%; } }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 888;
  padding: 0 5%; height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(13,43,26,0.97);
  backdrop-filter: blur(16px);
  height: 64px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(244,185,66,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  width: 50px; height: 50px; object-fit: contain;
  background: white; border-radius: 8px; padding: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold-bright); display: block; line-height: 1;
}
.brand-text span {
  font-size: 0.57rem; color: rgba(255,255,255,0.5);
  letter-spacing: 3px; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  padding: 0 1rem; height: 74px;
  display: flex; align-items: center;
  position: relative; transition: color 0.25s;
}
nav.scrolled .nav-menu a { height: 64px; }
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: 0; left: 1rem; right: 1rem; height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
  color: var(--forest) !important;
  padding: 10px 22px !important; border-radius: 6px;
  font-weight: 700 !important; height: auto !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 16px rgba(201,145,10,0.4);
  transition: all 0.3s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,145,10,0.55) !important; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,43,26,0.82) 0%, rgba(13,43,26,0.5) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-diagonal {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 2;
}
.hero-inner {
  position: relative; z-index: 3; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 6%; padding-top: 74px; gap: 3rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,185,66,0.15);
  border: 1px solid rgba(244,185,66,0.4);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 1.8rem;
  opacity: 0; animation: slideUp 0.7s ease 0.5s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-eyebrow span {
  color: var(--gold-bright); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: white; font-weight: 700; line-height: 1.05; margin-bottom: 1.4rem;
  opacity: 0; animation: slideUp 0.7s ease 0.7s forwards;
}
.hero h1 .accent { color: var(--gold-bright); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.8;
  max-width: 480px; margin-bottom: 2.2rem;
  opacity: 0; animation: slideUp 0.7s ease 0.9s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: slideUp 0.7s ease 1.1s forwards;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest); padding: 14px 30px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(201,145,10,0.45); transition: all 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,145,10,0.55); }
.btn-hero-ghost {
  color: white; padding: 14px 30px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5); transition: all 0.3s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }
/* Hero Right Stat Cards */
.hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  opacity: 0; animation: slideRight 0.9s ease 1s forwards;
}
@keyframes slideRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
.hero-stat-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 1.6rem 1.4rem; transition: all 0.3s;
}
.hero-stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.hero-stat-card:first-child { grid-column: span 2; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold-bright); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.68); font-size: 0.8rem; margin-top: 4px; line-height: 1.4; }
/* Slider dots */
.hero-nav { position: absolute; bottom: 130px; left: 6%; z-index: 4; display: flex; gap: 8px; }
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: all 0.3s;
}
.hero-dot.active { background: var(--gold-bright); width: 52px; }

/* ══════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 2rem; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--forest);
}
.marquee-item::after { content: '✦'; opacity: 0.4; }

/* ══════════════════════════════════════
   SHARED SECTION UTILITIES
══════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 0.8rem;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.15; margin-bottom: 0.8rem;
}
.section-h em { font-style: italic; color: var(--green-mid); }
.section-h .gold-t { color: var(--gold); }
.section-lead { color: var(--mid); font-size: 0.97rem; line-height: 1.8; max-width: 560px; }
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: all 0.3s;
}
.btn-solid:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ══════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════ */
.who { background: white; padding: 110px 5%; }
.who-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.who-visual { position: relative; }
.who-main-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 30px 80px rgba(13,43,26,0.2);
}
.who-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--forest); border-radius: 16px; padding: 1.6rem 1.8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 2px solid rgba(244,185,66,0.3);
}
.who-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold-bright); line-height: 1;
}
.who-badge-text { color: rgba(255,255,255,0.7); font-size: 0.75rem; line-height: 1.4; }
.who-leaf {
  position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-pale)); opacity: 0.4;
}
.who-pillars { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0 2rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.pillar-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 2px; }
.pillar-text p { font-size: 0.83rem; color: var(--mid); line-height: 1.5; }

/* ══════════════════════════════════════
   ABOUT / GALLERY
══════════════════════════════════════ */
.about { background: var(--cream); padding: 110px 5%; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.gallery-masonry {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 14px;
}
.gallery-masonry img {
  width: 100%; object-fit: cover; border-radius: 14px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-masonry img:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.gal-tall  { grid-row: span 2; height: 420px; }
.gal-short { height: 197px; }

/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.video-sec {
  background: var(--forest); padding: 110px 5%;
  position: relative; overflow: hidden;
}
.video-inner { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.video-inner .eyebrow { color: var(--green-light); justify-content: center; }
.video-inner .eyebrow::before { background: var(--gold-bright); }
.video-frame {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border: 2px solid rgba(244,185,66,0.3);
}
.video-frame video { width: 100%; display: block; }

/* ══════════════════════════════════════
   PROGRAMMES
══════════════════════════════════════ */
.programmes { background: white; padding: 110px 5%; }
.programmes-inner { max-width: 1200px; margin: 0 auto; }
.prog-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4rem;
}
.prog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s; background: white;
}
.prog-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
.prog-img-wrap { position: relative; overflow: hidden; height: 220px; }
.prog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.prog-card:hover .prog-img-wrap img { transform: scale(1.08); }
.prog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,26,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.prog-card:hover .prog-img-overlay { opacity: 1; }
.prog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--forest);
  font-size: 0.63rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.prog-body { padding: 1.6rem; }
.prog-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--forest); margin-bottom: 0.6rem;
}
.prog-body p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.2rem; }
.prog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--green-mid);
  text-decoration: none; border-bottom: 2px solid transparent;
  padding-bottom: 2px; transition: border-color 0.3s, color 0.3s;
}
.prog-link:hover { border-color: var(--green-light); color: var(--forest); }

/* ══════════════════════════════════════
   IMPACT
══════════════════════════════════════ */
.impact {
  background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
  padding: 110px 5%; position: relative; overflow: hidden;
}
.impact-inner { max-width: 1200px; margin: 0 auto; }
.impact-top { text-align: center; margin-bottom: 4rem; }
.impact-top .eyebrow { justify-content: center; color: var(--green-pale); }
.impact-top .eyebrow::before { background: var(--gold-bright); }
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
  border-radius: 20px; overflow: hidden;
}
.impact-card {
  padding: 3rem 2rem; text-align: center;
  background: rgba(255,255,255,0.04); transition: background 0.3s;
}
.impact-card:hover { background: rgba(255,255,255,0.09); }
.impact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700; color: var(--gold-bright);
  line-height: 1; display: block; margin-bottom: 0.5rem;
}
.impact-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.5; }
.impact-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }

/* ══════════════════════════════════════
   QUOTE
══════════════════════════════════════ */
.quote-sec { background: var(--gold-pale); padding: 90px 5%; }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 8rem;
  line-height: 0.6; color: var(--gold); opacity: 0.3; margin-bottom: 1.5rem;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.65rem;
  font-style: italic; color: var(--forest); line-height: 1.55; margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-mid);
}

/* ══════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════ */
.cta { background: white; padding: 110px 5%; }
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, var(--forest) 0%, var(--green-mid) 100%);
  border-radius: 28px; padding: 72px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-left .eyebrow { color: var(--green-pale); }
.cta-left .eyebrow::before { background: var(--gold-bright); }
.cta-left .section-h { color: white; margin-bottom: 0.8rem; }
.cta-left p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; }
.cta-btns { display: flex; gap: 1rem; margin-top: 2rem; }
.btn-cta-p {
  flex: 1; background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest); padding: 14px 20px; border-radius: 10px;
  font-weight: 700; font-size: 0.88rem; text-decoration: none; text-align: center;
  box-shadow: 0 6px 20px rgba(201,145,10,0.4); transition: all 0.3s;
}
.btn-cta-p:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,145,10,0.5); }
.btn-cta-g {
  flex: 1; border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 14px 20px; border-radius: 10px; font-weight: 600;
  font-size: 0.88rem; text-decoration: none; text-align: center; transition: all 0.3s;
}
.btn-cta-g:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.cta-right { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  transition: all 0.3s; text-decoration: none;
}
.contact-card:hover { background: rgba(255,255,255,0.14); transform: translateX(6px); }
.c-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.c-info strong { color: white; font-size: 0.9rem; display: block; }
.c-info span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--forest); padding: 80px 5% 28px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-logo-img {
  width: 56px; height: 56px; object-fit: contain;
  background: white; border-radius: 8px; padding: 3px; margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold-bright); margin-bottom: 0.2rem;
}
.footer-tagline {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.footer-brand-area p { font-size: 0.84rem; line-height: 1.75; max-width: 280px; margin-bottom: 1rem; }
.footer-fullname {
  font-size: 0.71rem; font-style: italic; color: rgba(255,255,255,0.28);
  line-height: 1.6; border-left: 2px solid rgba(244,185,66,0.25); padding-left: 10px;
}
footer h5 {
  color: var(--gold-bright); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1.2rem;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
footer ul a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.84rem;
  transition: all 0.25s; display: flex; align-items: center; gap: 6px;
}
footer ul a:hover { color: var(--gold-bright); padding-left: 4px; }
.f-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; }
.f-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
}
.f-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.84rem; transition: color 0.25s; }
.f-contact-item a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.76rem; color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.rv { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.rv.fl  { transform: translateX(-50px); }
.rv.fr  { transform: translateX(50px); }
.rv.fu  { transform: translateY(40px); }
.rv.ft  { transform: translateY(-30px); }
.rv.fs  { transform: scale(0.88); }
.rv.on  { opacity: 1 !important; transform: none !important; }
.rv.d1  { transition-delay: 0.1s; }
.rv.d2  { transition-delay: 0.2s; }
.rv.d3  { transition-delay: 0.3s; }
.rv.d4  { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
#topBtn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 777;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest); border: none; cursor: pointer; font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(201,145,10,0.4);
  opacity: 0; transform: translateY(20px); transition: all 0.3s;
}
#topBtn.show { opacity: 1; transform: none; }
#topBtn:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner, .who-inner, .about-inner, .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .prog-cards, .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .prog-top { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .cta-inner { padding: 3rem 2rem; }
}
@media (max-width: 600px) {
  .prog-cards, .impact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .who-badge { bottom: -16px; right: -10px; }
}
