/* ============================================================
   ONE HUMANITY — Main Stylesheet v2
   Nourishing Communities in Ghana
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@700&display=swap');

/* ── CSS Variables ── */
:root {
  --orange:       #E8540A;
  --orange-light: #F97316;
  --orange-dark:  #C4420A;
  --green:        #2D6A1F;
  --green-light:  #4A9132;
  --gold:         #D4920A;
  --cream:        #FDF8F0;
  --dark:         #1A1208;
  --brown:        #5C2D0A;
  --warm-white:   #FFFDF9;
  --text:         #2C1A0A;
  --text-muted:   #6B4C2A;
  --shadow:       rgba(90,40,5,0.15);
  --transition:   0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s;
}
nav.scrolled { height: 62px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; width: auto; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text);
  position: relative; padding-bottom: 3px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 0.5rem 1.3rem; border-radius: 50px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--warm-white); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  padding: 5rem 2rem 3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(160deg, #FDF3E0 0%, #FFF8EE 50%, #F0F9E8 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(232,84,10,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,106,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem 4rem 8%;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,84,10,0.1); border: 1px solid rgba(232,84,10,0.3);
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.6rem; width: fit-content;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--dark); margin-bottom: 1.4rem;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-title .green { color: var(--green); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all 0.2s; cursor: pointer; border: 2px solid transparent;
  font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,84,10,0.3); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-outline-white { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(90,40,5,0.1);
}
.stat-item .num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: var(--orange); display: block;
}
.stat-item .lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-image {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 8% 4rem 2rem; position: relative; z-index: 2;
  animation: fadeIn 1.2s ease both;
}
.hero-img-wrap { position: relative; width: 100%; max-width: 480px; }
.hero-img-wrap::before {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(212,146,10,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img-wrap img { width: 100%; height: auto; position: relative; filter: drop-shadow(0 20px 50px rgba(90,40,5,0.2)); }
.floating-badge {
  position: absolute; background: #fff; border-radius: 16px;
  padding: 0.8rem 1.2rem; box-shadow: 0 8px 30px rgba(90,40,5,0.15);
  display: flex; align-items: center; gap: 10px;
}
.badge-1 { bottom: 15%; left: -5%; animation: float 4s ease-in-out infinite; }
.badge-2 { top: 20%; right: -5%; animation: float 4s ease-in-out infinite 2s; }
.badge-icon { font-size: 1.6rem; }
.badge-text .b-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.badge-text .b-lbl { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }

/* ── MISSION STRIPE ── */
.mission-stripe {
  background: var(--dark); padding: 4rem 8%;
  position: relative; overflow: hidden; text-align: center;
}
.mission-stripe::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 20rem;
  font-weight: 900; color: rgba(232,84,10,0.08);
  position: absolute; top: -4rem; left: 3%; line-height: 1; pointer-events: none;
}
.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic; line-height: 1.6; color: #fff;
  max-width: 860px; margin: 0 auto 1.2rem; position: relative;
}
.mission-quote em { color: var(--gold); font-style: normal; }
.mission-attr { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SECTION SHARED ── */
section { padding: 5rem 8%; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; line-height: 1.2; color: var(--dark); margin-bottom: 1.1rem;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.7; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── PROGRAMS ── */
.programs { background: var(--cream); }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.program-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(232,84,10,0.08);
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow); }
.card-stripe { height: 6px; }
.card-stripe-orange { background: linear-gradient(90deg, var(--orange), var(--gold)); }
.card-stripe-green  { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.card-stripe-brown  { background: linear-gradient(90deg, var(--brown), var(--orange)); }
.card-body { padding: 2rem; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.2rem;
}
.icon-orange { background: rgba(232,84,10,0.1); }
.icon-green  { background: rgba(45,106,31,0.1); }
.icon-gold   { background: rgba(212,146,10,0.1); }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 0.7rem; }
.card-text  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.4rem; }
.card-link {
  color: var(--orange); font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.05em; text-transform: uppercase; transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ── IMPACT ── */
.impact {
  background: linear-gradient(135deg, var(--green) 0%, #1A4010 100%);
  color: #fff; position: relative; overflow: hidden;
}
.impact::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.impact-text .section-title { color: #fff; }
.impact-text .section-sub { color: rgba(255,255,255,0.75); max-width: 100%; }
.impact-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.impact-num {
  background: rgba(255,255,255,0.08); border-radius: 16px;
  padding: 1.5rem; border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.impact-num:hover { background: rgba(255,255,255,0.14); }
.impact-num .big {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 900; color: var(--gold); display: block; line-height: 1;
}
.impact-num .desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.4rem; line-height: 1.4; }
.impact-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.impact-frame {
  width: 100%; max-width: 420px; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #2D6A1F, #4A9132);
  height: 380px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3); position: relative;
}
.impact-frame-inner { text-align: center; padding: 2rem; }
.impact-frame-inner .globe { font-size: 5rem; margin-bottom: 1rem; display: block; }
.impact-frame-inner p {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: #fff; font-weight: 700; line-height: 1.4;
}
.meals-badge {
  position: absolute; bottom: -20px; right: 20px;
  background: var(--orange); color: #fff; border-radius: 16px;
  padding: 1.2rem 1.6rem; box-shadow: 0 8px 24px rgba(232,84,10,0.4);
}
.meals-badge .mc-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; display: block; line-height: 1; }
.meals-badge .mc-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }

/* ── GHANA ── */
.ghana { background: var(--warm-white); }
.ghana-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ghana-map { position: relative; display: flex; align-items: center; justify-content: center; }
.map-circle {
  width: 100%; max-width: 380px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,31,0.12) 0%, rgba(232,84,10,0.06) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.map-circle::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 2px dashed rgba(45,106,31,0.2);
}
.ghana-svg { width: 55%; height: auto; filter: drop-shadow(0 8px 20px rgba(45,106,31,0.3)); }
.map-dots { position: absolute; inset: 0; }
.map-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(232,84,10,0.4);
  animation: pulse-dot 2.5s infinite;
}
.map-dot::after {
  content: attr(data-label); position: absolute; left: 16px; top: -4px;
  white-space: nowrap; font-size: 0.72rem; font-weight: 700; color: var(--text);
  background: #fff; padding: 2px 8px; border-radius: 20px;
  box-shadow: 0 2px 8px var(--shadow);
}
.dot-1 { top: 35%; left: 38%; animation-delay: 0s; }
.dot-2 { top: 55%; left: 42%; animation-delay: 0.8s; }
.dot-3 { top: 25%; left: 55%; animation-delay: 1.6s; }
.feature-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; background: var(--cream); border-radius: 12px;
  border-left: 3px solid var(--orange);
}
.feat-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.feat-title { font-weight: 700; font-size: 0.95rem; color: var(--dark); display: block; margin-bottom: 0.2rem; }
.feat-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ── SCHOLARSHIP ── */
.scholarship {
  background: linear-gradient(160deg, #FFF3E0 0%, #FDF8F0 100%);
  position: relative; overflow: hidden;
}
.scholarship::before {
  content: '🎓'; position: absolute; right: 5%; top: 10%;
  font-size: 12rem; opacity: 0.05; pointer-events: none;
}
.scholarship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.scholarship-criteria { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.8rem; }
.criterion {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.92rem; color: var(--text);
}
.criterion-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900;
}
.scholarship-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.scholarship-tiers { display: flex; flex-direction: column; gap: 1rem; }
.tier-card {
  background: #fff; border-radius: 16px; padding: 1.2rem 1.6rem;
  display: flex; gap: 1.2rem; align-items: center;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid rgba(232,84,10,0.1);
  transition: transform 0.2s;
}
.tier-card:hover { transform: translateX(4px); }
.tier-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; font-family: 'Playfair Display', serif;
}
.tier-gold   { background: rgba(212,146,10,0.15); color: var(--gold); }
.tier-green  { background: rgba(45,106,31,0.12); color: var(--green); }
.tier-orange { background: rgba(232,84,10,0.1);  color: var(--orange); }
.tier-gray   { background: rgba(100,80,60,0.1);  color: #7a6050; }
.tier-info strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.tier-info span   { font-size: 0.85rem; color: var(--text-muted); }
.tier-amount { margin-left: auto; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 900; color: var(--orange); white-space: nowrap; }
.apps-open {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 16px; padding: 1.8rem; color: #fff; text-align: center;
  margin-top: 0.5rem;
}
.apps-open .cap { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.apps-open h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 0.3rem; }
.apps-open p  { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; }
.apps-open a {
  background: #fff; color: var(--green); padding: 0.6rem 1.6rem;
  border-radius: 50px; font-weight: 700; font-size: 0.88rem; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.apps-open a:hover { background: #f0f9e8; transform: translateY(-1px); }

/* ── HOW IT WORKS ── */
.how { background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  background: #fff; border: 3px solid var(--orange); color: var(--orange);
  box-shadow: 0 4px 16px var(--shadow);
}
.step-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--warm-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testi-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid rgba(232,84,10,0.08);
  position: relative;
}
.testi-card::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--orange); opacity: 0.15; position: absolute; top: -0.5rem; left: 1.5rem; line-height: 1;
}
.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.av-a { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.av-k { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.av-d { background: linear-gradient(135deg, var(--brown), var(--orange)); }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); display: block; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── DONATE ── */
.donate {
  background: var(--dark); color: #fff;
  position: relative; overflow: hidden; text-align: center;
}
.donate::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,84,10,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.donate-inner { position: relative; max-width: 700px; margin: 0 auto; }
.donate .section-title { color: #fff; }
.donate .section-sub  { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }
.amount-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.amount-btn {
  padding: 0.7rem 1.6rem; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent; color: #fff;
  font-size: 1rem; font-weight: 700; font-family: 'Playfair Display', serif;
  cursor: pointer; transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.active {
  background: var(--orange); border-color: var(--orange);
  transform: scale(1.05); box-shadow: 0 6px 20px rgba(232,84,10,0.4);
}
.donate-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.donate-note { font-size: 0.8rem; color: rgba(255,255,255,0.38); letter-spacing: 0.05em; line-height: 1.6; }

/* ── INVOLVE ── */
.involve { background: var(--cream); }
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.involve-card {
  border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
  transition: transform 0.3s;
}
.involve-card:hover { transform: translateY(-4px); }
.involve-donate   { background: linear-gradient(135deg, rgba(232,84,10,0.10), rgba(212,146,10,0.08)); }
.involve-volunteer{ background: linear-gradient(135deg, rgba(45,106,31,0.10), rgba(74,145,50,0.06)); }
.involve-partner  { background: linear-gradient(135deg, rgba(92,45,10,0.08), rgba(232,84,10,0.06)); }
.involve-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.involve-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.7rem; }
.involve-text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.btn-partner   { border: 2px solid var(--brown); color: var(--brown); background: transparent; }
.btn-partner:hover { background: var(--brown); color: #fff; }

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
  color: #fff; padding: 4rem 8%;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.nl-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 0.4rem; }
.nl-text p  { font-size: 1rem; opacity: 0.85; }
.nl-form    { display: flex; gap: 0.8rem; flex: 1; min-width: 280px; max-width: 500px; }
.nl-form input {
  flex: 1; padding: 0.85rem 1.4rem; border-radius: 50px;
  border: none; font-size: 0.95rem; font-family: 'Lato', sans-serif;
  outline: none; color: var(--dark);
}
.nl-form button {
  padding: 0.85rem 1.8rem; background: var(--dark); color: #fff;
  border: none; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; white-space: nowrap;
  transition: background 0.2s; font-family: 'Lato', sans-serif;
}
.nl-form button:hover { background: #000; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 4rem 8% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; margin-bottom: 1.5rem; }
.footer-501 { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  transition: all 0.2s; cursor: pointer;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes float   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse   { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(232,84,10,0.4); } 70% { box-shadow: 0 0 0 8px rgba(232,84,10,0); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text { padding: 3rem 6% 2rem; align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-image { padding: 0 6% 4rem; }
  .impact-grid, .ghana-grid, .scholarship-grid { grid-template-columns: 1fr; }
  .ghana-map { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testi-grid, .involve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 6%; }
  .newsletter { padding: 3rem 6%; }
  .newsletter-inner { flex-direction: column; }
  .nl-form { flex-direction: column; }
  .badge-1, .badge-2 { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
}
