@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Commonwealth Sport Palette */
  --cw-red: #E62A32;
  --cw-red-dark: #C41E26;
  --cw-red-light: #FEE2E2;
  --cw-yellow: #FEC33B;
  --cw-yellow-light: #FEF3C7;
  --cw-blue: #2CA5DE;
  --cw-blue-dark: #1A8FC4;
  --cw-blue-light: #E0F2FE;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-50: #F1F3F5;
  --gray-100: #E9ECEF;
  --gray-200: #DEE2E6;
  --gray-500: #868E96;
  --gray-700: #495057;
  --gray-900: #212529;
  --dark: #1A1D23;

  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.2; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: white;
}
.navbar.scrolled .nav-logo { color: var(--gray-900); }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--cw-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cw-yellow); font-size: 20px; font-weight: 900;
  border: 2px solid var(--cw-yellow);
}
.nav-logo-text { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.9rem;
  font-weight: 500; transition: 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--cw-yellow); }
.navbar.scrolled .nav-links a:hover { color: var(--cw-blue); }
.nav-cta {
  padding: 10px 24px; background: var(--cw-blue); color: white;
  border: none; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--cw-blue-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }
.navbar.scrolled .hamburger span { background: var(--gray-900); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-bottom: 100px; /* space for stats bar */
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(44,165,222,0.85) 0%, rgba(26,26,40,0.7) 50%, rgba(230,42,50,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 160px 60px 140px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp 0.8s ease-out;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; color: white; letter-spacing: -0.02em;
  margin-bottom: 20px; animation: fadeUp 0.8s ease-out 0.1s both;
}
.hero h1 .gold { color: var(--cw-yellow); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.7;
  margin-bottom: 36px; animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.btn-gold {
  padding: 14px 32px; background: var(--cw-yellow); color: var(--gray-900);
  border: none; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: 0.3s; text-decoration: none;
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-white {
  padding: 14px 32px; background: white; color: var(--gray-900);
  border: none; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: 0.3s;
}
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Stats Bar — 3 colors */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex;
}
.hero-stat-item {
  flex: 1; padding: 28px 32px; text-align: center;
}
.hero-stat-item:nth-child(1) { background: var(--cw-blue); }
.hero-stat-item:nth-child(2) { background: var(--cw-yellow); }
.hero-stat-item:nth-child(3) { background: var(--cw-red); }
.hero-stat-item:nth-child(4) { background: var(--white); }
.hero-stat-num { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.hero-stat-item:nth-child(1) .hero-stat-num,
.hero-stat-item:nth-child(3) .hero-stat-num { color: white; }
.hero-stat-item:nth-child(2) .hero-stat-num { color: var(--gray-900); }
.hero-stat-item:nth-child(4) .hero-stat-num { color: var(--cw-blue); }
.hero-stat-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat-item:nth-child(1) .hero-stat-label,
.hero-stat-item:nth-child(3) .hero-stat-label { color: rgba(255,255,255,0.8); }
.hero-stat-item:nth-child(2) .hero-stat-label { color: rgba(0,0,0,0.6); }
.hero-stat-item:nth-child(4) .hero-stat-label { color: var(--gray-500); }

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

/* ========== SECTIONS ========== */
.section { padding: 100px 60px; }
.section-cream { background: var(--off-white); }
.section-warm { background: var(--gray-50); }
.section-blue { background: var(--cw-blue); color: white; }
.section-dark { background: var(--dark); color: white; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cw-blue); margin-bottom: 12px;
}
.section-blue .section-eyebrow,
.section-dark .section-eyebrow { color: var(--cw-yellow); }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-blue .section-header h2,
.section-dark .section-header h2 { color: white; }
.section-header p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; }
.section-blue .section-header p,
.section-dark .section-header p { color: rgba(255,255,255,0.8); }

/* Color bar accent */
.color-bar {
  display: flex; height: 4px; margin-bottom: 20px; border-radius: 4px; overflow: hidden;
  width: 64px;
}
.section-header.center .color-bar { margin-left: auto; margin-right: auto; }
.color-bar span:nth-child(1) { flex: 1; background: var(--cw-red); }
.color-bar span:nth-child(2) { flex: 1; background: var(--cw-yellow); }
.color-bar span:nth-child(3) { flex: 1; background: var(--cw-blue); }

/* ========== ABOUT (Image + Text) ========== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-image {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.about-stat-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: var(--cw-blue); color: white; padding: 16px 20px;
  border-radius: 12px;
}
.about-stat-badge .num { font-size: 1.6rem; font-weight: 800; color: var(--cw-yellow); }
.about-stat-badge .lab { font-size: 0.75rem; font-weight: 500; opacity: 0.9; }

.vision-mission { display: flex; gap: 20px; margin-top: 32px; }
.vm-item {
  flex: 1; padding: 24px; background: var(--off-white);
  border-radius: 12px; border-left: 4px solid var(--cw-blue);
}
.vm-item:nth-child(2) { border-left-color: var(--cw-red); }
.vm-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--cw-blue); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.vm-item:nth-child(2) h4 { color: var(--cw-red); }
.vm-item p { font-size: 0.9rem; line-height: 1.6; }

/* ========== PILLAR CARDS ========== */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-card {
  padding: 32px 24px; background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-100); transition: 0.4s; position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  opacity: 0; transition: 0.4s;
}
.pillar-card:nth-child(1)::before { background: var(--cw-blue); }
.pillar-card:nth-child(2)::before { background: var(--cw-yellow); }
.pillar-card:nth-child(3)::before { background: var(--cw-red); }
.pillar-card:nth-child(4)::before { background: var(--cw-blue); }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; margin-bottom: 20px;
}
.pillar-card:nth-child(1) .pillar-icon { background: var(--cw-blue); }
.pillar-card:nth-child(2) .pillar-icon { background: var(--cw-yellow); color: var(--gray-900); }
.pillar-card:nth-child(3) .pillar-icon { background: var(--cw-red); }
.pillar-card:nth-child(4) .pillar-icon { background: var(--cw-blue); }
.pillar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: 0.9rem; line-height: 1.6; }

/* ========== IMPACT BANNER ========== */
.impact-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-radius: var(--radius); overflow: hidden;
}
.impact-item {
  padding: 40px 24px; text-align: center; transition: 0.3s;
}
.impact-item:nth-child(1) { background: var(--cw-blue); }
.impact-item:nth-child(2) { background: var(--cw-red); }
.impact-item:nth-child(3) { background: var(--cw-yellow); }
.impact-item:nth-child(4) { background: var(--cw-blue-dark); }
.impact-item:hover { filter: brightness(1.08); }
.impact-num { font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; }
.impact-item:nth-child(1) .impact-num,
.impact-item:nth-child(2) .impact-num,
.impact-item:nth-child(4) .impact-num { color: white; }
.impact-item:nth-child(3) .impact-num { color: var(--gray-900); }
.impact-label { font-size: 0.85rem; font-weight: 500; }
.impact-item:nth-child(1) .impact-label,
.impact-item:nth-child(2) .impact-label,
.impact-item:nth-child(4) .impact-label { color: rgba(255,255,255,0.85); }
.impact-item:nth-child(3) .impact-label { color: rgba(0,0,0,0.6); }

/* ========== BENEFICIARY TAGS ========== */
.beneficiary-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.b-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: white; border: 1px solid var(--gray-200);
  border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: var(--gray-900);
  transition: 0.3s;
}
.b-tag i { color: var(--cw-blue); }
.b-tag:hover { border-color: var(--cw-blue); color: var(--cw-blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ========== ACTIVITIES (Image cards) ========== */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.activity-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-100); transition: 0.4s;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-img { height: 200px; overflow: hidden; position: relative; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.activity-card:hover .activity-img img { transform: scale(1.05); }
/* Color strip at top of image */
.activity-card:nth-child(1) .activity-img::after { content:''; position: absolute; top:0; left:0; right:0; height: 4px; background: var(--cw-blue); }
.activity-card:nth-child(2) .activity-img::after { content:''; position: absolute; top:0; left:0; right:0; height: 4px; background: var(--cw-yellow); }
.activity-card:nth-child(3) .activity-img::after { content:''; position: absolute; top:0; left:0; right:0; height: 4px; background: var(--cw-red); }
.activity-body { padding: 28px; }
.activity-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.activity-body ul { list-style: none; padding: 0; }
.activity-body li {
  font-size: 0.9rem; color: var(--gray-700); padding: 6px 0;
  padding-left: 20px; position: relative;
}
.activity-body li::before {
  content: '→'; position: absolute; left: 0; color: var(--cw-blue); font-weight: 700;
}

/* ========== TIMELINE ========== */
.impl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(180deg, var(--cw-blue), var(--cw-yellow), var(--cw-red));
  border-radius: 3px;
}
.tl-item { position: relative; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -34px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 3px solid white;
}
.tl-item:nth-child(1) .tl-dot { background: var(--cw-blue); box-shadow: 0 0 0 2px var(--cw-blue); }
.tl-item:nth-child(2) .tl-dot { background: var(--cw-yellow); box-shadow: 0 0 0 2px var(--cw-yellow); }
.tl-item:nth-child(3) .tl-dot { background: var(--cw-red); box-shadow: 0 0 0 2px var(--cw-red); }
.tl-phase {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 6px;
}
.tl-item:nth-child(1) .tl-phase { color: var(--cw-blue); }
.tl-item:nth-child(2) .tl-phase { color: var(--cw-yellow); }
.tl-item:nth-child(3) .tl-phase { color: var(--cw-red); }
.tl-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.tl-item p { font-size: 0.92rem; }

.gov-box {
  background: var(--off-white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--gray-100);
}
.gov-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.gov-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.gov-item:last-child { margin-bottom: 0; }
.gov-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: white;
}
.gov-item:nth-child(1) .gov-icon { background: var(--cw-blue); }
.gov-item:nth-child(2) .gov-icon { background: var(--cw-yellow); color: var(--gray-900); }
.gov-item:nth-child(3) .gov-icon { background: var(--cw-red); }
.gov-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.gov-item p { font-size: 0.88rem; }

/* ========== BUDGET ========== */
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.budget-bars { display: flex; flex-direction: column; gap: 28px; }
.budget-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; }
.budget-bar { height: 10px; background: var(--gray-100); border-radius: 50px; overflow: hidden; }
.budget-fill { height: 100%; border-radius: 50px; }
.budget-fill.blue { background: var(--cw-blue); }
.budget-fill.gold { background: var(--cw-yellow); }
.budget-fill.red { background: var(--cw-red); }
.budget-total-box {
  background: var(--cw-blue); padding: 36px; border-radius: var(--radius);
  text-align: center; color: white;
}
.budget-total-label { font-size: 0.85rem; font-weight: 600; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.budget-total-num { font-size: 3rem; font-weight: 800; color: var(--cw-yellow); }
.fund-sources { margin-top: 24px; }
.fund-sources h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.fund-sources li {
  list-style: none; font-size: 0.9rem; color: var(--gray-700);
  padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid var(--gray-100);
}
.fund-sources li::before { content: '•'; position: absolute; left: 0; color: var(--cw-blue); font-weight: 900; }

/* ========== PARTNERS ========== */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card {
  padding: 28px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); text-align: center; transition: 0.3s;
}
.partner-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.partner-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white;
}
.partner-card:nth-child(1) .partner-icon { background: rgba(254,195,59,0.2); color: var(--cw-yellow); }
.partner-card:nth-child(2) .partner-icon { background: rgba(230,42,50,0.2); color: var(--cw-red-light); }
.partner-card:nth-child(3) .partner-icon { background: rgba(44,165,222,0.2); color: var(--cw-blue-light); }
.partner-card:nth-child(4) .partner-icon { background: rgba(254,195,59,0.2); color: var(--cw-yellow); }
.partner-card h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 4px; }
.partner-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ========== CTA BANNER ========== */
.cta-section {
  position: relative; padding: 100px 60px; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,165,222,0.9), rgba(230,42,50,0.8));
}
.cta-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--gray-700); margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail:nth-child(1) .contact-icon { background: var(--cw-blue-light); color: var(--cw-blue); }
.contact-detail:nth-child(2) .contact-icon { background: var(--cw-yellow-light); color: var(--cw-yellow); }
.contact-detail:nth-child(3) .contact-icon { background: var(--cw-red-light); color: var(--cw-red); }
.contact-detail span { font-size: 0.95rem; }
.contact-detail strong { display: block; font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

.contact-form-box {
  background: var(--off-white); padding: 36px; border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 13px 16px; background: white; border: 1px solid var(--gray-200);
  border-radius: 8px; font-family: var(--font); font-size: 0.92rem;
  color: var(--gray-900); outline: none; transition: 0.3s; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cw-blue); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  padding: 14px 28px; background: var(--cw-blue); color: white;
  border: none; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: 0.3s; align-self: flex-start;
}
.contact-form button:hover { background: var(--cw-blue-dark); }

/* ========== FOOTER ========== */
.footer { background: var(--dark); padding: 64px 60px 32px; color: white; }
/* 3-color top border */
.footer::before {
  content: ''; display: block; height: 4px; margin: -64px -60px 48px;
  background: linear-gradient(90deg, var(--cw-red) 33%, var(--cw-yellow) 33% 66%, var(--cw-blue) 66%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 340px; line-height: 1.6; }
.footer h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: var(--cw-yellow); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: 0.3s; }
.footer ul a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-tagline { font-weight: 600; font-style: italic; color: var(--cw-yellow); }

/* ========== SCROLL ANIMATION ========== */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-grid { grid-template-columns: 1fr; }
  .impl-grid, .budget-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-banner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .navbar { padding: 12px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 130px 24px 120px; }
  .hero-stats-bar { flex-direction: column; }
  .pillar-grid { grid-template-columns: 1fr; }
  .impact-banner { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .vision-mission { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer::before { margin: -64px -24px 48px; }
  .cta-section { padding: 64px 24px; }
}
