/* ============================================================
   Ray For Change — Main Stylesheet
   Color Palette: Orange #F4622A | Dark Green #1A4731 | Light Green #2E7D52
   ============================================================ */

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

:root {
  --orange:       #F4622A;
  --orange-light: #FF8C5A;
  --navy:         #1A4731;
  --navy-dark:    #0F2D1E;
  --gold:         #F5A623;
  --green:        #1A4731;
  --green-mid:    #2E7D52;
  --bg:           #F4FAF6;
  --white:        #FFFFFF;
  --gray-100:     #F7F7F7;
  --gray-200:     #E5E5E5;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --text:         #1A202C;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --transition:   all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.text-center { text-align: center; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--navy); margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px; color: var(--gray-500);
  max-width: 600px; margin: 0 auto 48px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: var(--transition); font-family: var(--font-sans);
}

.btn-primary  { background: var(--orange); color: white; }
.btn-primary:hover {
  background: var(--orange-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,98,42,0.35);
}

.btn-outline  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }

.btn-ghost  { background: rgba(255,255,255,0.12); color: white; border: 2px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-lg { padding: 20px 40px; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: var(--transition);
}

.nav.scrolled {
  background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 14px 0;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}

.logo          { display: flex; align-items: center; gap: 10px; }
.logo-icon     {
  width: 44px; height: 44px; background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.logo-text     { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: white; transition: var(--transition); }
.nav.scrolled .logo-text { color: var(--navy); }

.nav-links     { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a   { font-weight: 500; font-size: 15px; color: rgba(255,255,255,0.88); transition: var(--transition); }
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--orange); }

.nav-cta { background: var(--orange) !important; color: white !important; padding: 10px 24px; border-radius: 50px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; transition: var(--transition); border-radius: 2px; }
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80');
  background-size: cover; background-position: center 30%; opacity: 0.25;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,45,30,0.95) 0%, rgba(26,71,49,0.80) 55%, rgba(244,98,42,0.40) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.4);
  padding: 6px 18px; border-radius: 50px; color: var(--gold);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 74px); color: white; line-height: 1.08; margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 20px; color: rgba(255,255,255,0.84); max-width: 560px;
  margin-bottom: 48px; line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); font-size: 14px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════
   STATS BANNER
═══════════════════════════════════════════════════════════ */
.stats-banner { background: var(--orange); padding: 44px 0; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.stat-item { text-align: center; padding: 16px 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,0.28);
}

.stat-number {
  font-family: var(--font-serif); font-size: 44px; font-weight: 700;
  color: white; line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.88); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   MISSION
═══════════════════════════════════════════════════════════ */
.mission { background: white; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mission-image    { position: relative; }
.mission-img-main { border-radius: 20px; width: 100%; height: 500px; object-fit: cover; }
.mission-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 16px; object-fit: cover;
  border: 6px solid white; box-shadow: var(--shadow);
}
.mission-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--orange); color: white;
  padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13px;
}

.mission-text  { color: var(--gray-500); font-size: 17px; line-height: 1.82; margin-bottom: 24px; }

.mission-pillars { list-style: none; margin-bottom: 40px; }
.mission-pillars li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 16px; color: var(--gray-700);
}

.pillar-icon {
  width: 30px; height: 30px; background: rgba(244,98,42,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  flex-shrink: 0; margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HOW TO HELP
═══════════════════════════════════════════════════════════ */
.how-to-help { background: var(--bg); }

.help-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }

.help-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.help-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.card-header { padding: 40px 36px 28px; position: relative; }
.help-card:nth-child(1) .card-header { background: linear-gradient(135deg, #1A4731, #2E7D52); }
.help-card:nth-child(2) .card-header { background: linear-gradient(135deg, #F4622A, #FF8C5A); }
.help-card:nth-child(3) .card-header { background: linear-gradient(135deg, #0F2D1E, #1A4731); }

.card-icon  { font-size: 42px; margin-bottom: 16px; }
.card-title { font-family: var(--font-serif); font-size: 28px; color: white; margin-bottom: 8px; }
.card-sub   { color: rgba(255,255,255,0.78); font-size: 15px; }

.card-body  { padding: 28px 36px 36px; }
.card-desc  { color: var(--gray-500); margin-bottom: 20px; line-height: 1.75; }

.amount-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.amount-btn {
  padding: 8px 16px; border: 2px solid var(--gray-200); border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer; background: white;
  color: var(--gray-700); transition: var(--transition); font-family: var(--font-sans);
}
.amount-btn.active, .amount-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(244,98,42,0.06); }

.card-features { list-style: none; margin-bottom: 28px; }
.card-features li {
  padding: 10px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 14px; color: var(--gray-700); display: flex; align-items: center; gap: 8px;
}
.card-features li:last-child { border-bottom: none; }
.check { color: var(--orange); font-weight: 700; }

.card-body .btn { width: 100%; justify-content: center; }
.help-card:nth-child(1) .btn { background: var(--navy); color: white; }
.help-card:nth-child(2) .btn { background: var(--orange); color: white; }
.help-card:nth-child(3) .btn { background: var(--green); color: white; }

/* ═══════════════════════════════════════════════════════════
   IMPACT STORIES
═══════════════════════════════════════════════════════════ */
.stories { background: var(--navy); color: white; }
.stories .eyebrow     { color: var(--gold); }
.stories .section-title  { color: white; }
.stories .section-subtitle { color: rgba(255,255,255,0.68); }

.stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }

.story-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden; transition: var(--transition);
}
.story-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.story-img    { width: 100%; height: 220px; object-fit: cover; }
.story-body   { padding: 24px; }

.story-tag {
  display: inline-block; background: rgba(244,98,42,0.2); color: #FF8C5A;
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}

.story-title   { font-family: var(--font-serif); font-size: 20px; color: white; margin-bottom: 12px; line-height: 1.3; }
.story-excerpt { color: rgba(255,255,255,0.63); font-size: 14px; line-height: 1.72; margin-bottom: 20px; }

.story-link {
  color: var(--gold); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.story-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   OUR REACH
═══════════════════════════════════════════════════════════ */
.reach { background: white; }

.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.reach-map-bg {
  width: 100%; border-radius: 20px;
  background: linear-gradient(135deg, #E8F5EE, #FFF3E0);
  padding: 56px; text-align: center;
}

.reach-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }

.location-card { background: white; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); text-align: center; }
.location-flag { font-size: 36px; margin-bottom: 8px; }
.location-name { font-weight: 700; color: var(--navy); font-size: 18px; margin-bottom: 4px; }
.location-status { font-size: 13px; padding: 4px 14px; border-radius: 50px; display: inline-block; margin-top: 8px; }
.status-active { background: #D1FAE5; color: #065F46; }
.status-soon   { background: #FEF3C7; color: #92400E; }

.reach-text { color: var(--gray-500); font-size: 17px; line-height: 1.82; margin-bottom: 32px; }

.milestones { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.milestone  { display: flex; gap: 16px; align-items: flex-start; }
.milestone-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); margin-top: 6px; flex-shrink: 0; }
.milestone h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.milestone p  { font-size: 14px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════
   SOCIAL FEED
═══════════════════════════════════════════════════════════ */
.social-section { background: var(--bg); }

.social-feed { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }

.social-post { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; }
.social-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.social-post:hover img { transform: scale(1.06); }

.post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.social-post:hover .post-overlay { opacity: 1; }
.post-meta    { color: white; }
.post-network { font-size: 12px; opacity: 0.78; margin-bottom: 3px; }
.post-likes   { font-size: 13px; font-weight: 600; }

.follow-row { display: flex; justify-content: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.follow-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: var(--transition);
}
.follow-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.follow-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.follow-tiktok    { background: #010101; color: white; }
.follow-x         { background: #1A1A1A; color: white; }

/* ═══════════════════════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════════════════════ */
.partners      { background: white; padding: 64px 0; }
.partners-label {
  text-align: center; color: var(--gray-500); font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px;
}
.partners-logos {
  display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.partner-logo {
  height: 48px; min-width: 100px; background: var(--gray-100); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 20px;
  font-size: 12px; font-weight: 700; color: var(--gray-500); letter-spacing: 1px; transition: var(--transition);
}
.partner-logo:hover { background: var(--gray-200); color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #1A4731 0%, #F4622A 100%);
  padding: 96px 0; text-align: center;
}
.cta-banner .eyebrow { color: var(--gold); }
.cta-title    { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 52px); color: white; margin-bottom: 20px; }
.cta-subtitle { color: rgba(255,255,255,0.84); font-size: 18px; max-width: 540px; margin: 0 auto 44px; }
.cta-buttons  { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER / SIGN-UP
═══════════════════════════════════════════════════════════ */
.newsletter { background: var(--bg); }

.newsletter-box {
  background: white; border-radius: 24px; padding: 64px;
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.newsletter-title { font-family: var(--font-serif); font-size: 36px; color: var(--navy); margin-bottom: 16px; }
.newsletter-body  { color: var(--gray-500); line-height: 1.75; }

.mini-stats { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.mini-stat-number { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--navy); }
.mini-stat-label  { font-size: 13px; color: var(--gray-500); }

.signup-form { display: flex; flex-direction: column; gap: 16px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field  { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-field input, .form-field select {
  padding: 14px 16px; border: 2px solid var(--gray-200); border-radius: 10px;
  font-size: 15px; font-family: var(--font-sans); color: var(--text);
  outline: none; transition: var(--transition); background: white; width: 100%;
}
.form-field input:focus, .form-field select:focus { border-color: var(--orange); }
.signup-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-privacy { font-size: 12px; color: var(--gray-500); text-align: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--navy-dark); color: white; padding: 80px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px;
}

.footer .logo-text { color: white; }
.footer-tagline { color: rgba(255,255,255,0.58); margin: 16px 0 28px; font-size: 15px; line-height: 1.75; }

.footer-socials { display: flex; gap: 10px; }
.f-social-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  cursor: pointer; transition: var(--transition);
}
.f-social-icon:hover { background: var(--orange); }

.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 20px; }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-legal   { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer-legal a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-legal a:hover { color: white; }
.tax-badge { background: rgba(255,255,255,0.06); padding: 6px 16px; border-radius: 50px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mission-grid   { grid-template-columns: 1fr; gap: 48px; }
  .reach-grid     { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .newsletter-box { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section        { padding: 64px 0; }
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: white;
    z-index: 999; justify-content: center; align-items: center; gap: 28px;
  }
  .nav-links.open a { color: var(--navy) !important; font-size: 22px; }

  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .help-cards       { grid-template-columns: 1fr; }
  .stories-grid     { grid-template-columns: 1fr; }
  .social-feed      { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr; }
  .newsletter-box   { padding: 36px 24px; }
  .form-row         { grid-template-columns: 1fr; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .reach-locations  { grid-template-columns: 1fr 1fr; }
  .mission-img-accent { display: none; }
  .cta-buttons      { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .social-feed { grid-template-columns: repeat(2,1fr); }
  .follow-row  { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   FOUNDER SECTION
═══════════════════════════════════════════════════════════ */
.founder { background: var(--bg); }

.founder-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }

.founder-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 20px; height: 460px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
}

.founder-name-badge {
  background: var(--orange); color: white;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
}

.founder-role {
  font-size: 16px; font-weight: 600; color: var(--orange);
  margin-bottom: 20px; letter-spacing: 0.5px;
}

.founder-text { color: var(--gray-500); font-size: 17px; line-height: 1.82; margin-bottom: 20px; }

.founder-vision { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }

.vision-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: white; border-radius: 12px;
  box-shadow: var(--shadow);
}

.vision-icon {
  width: 36px; height: 36px; background: rgba(244,98,42,0.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}

.vision-item strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.vision-item p { color: var(--gray-500); font-size: 14px; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FUNDRAISING EVENTS
═══════════════════════════════════════════════════════════ */
.events { background: white; }

.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }

.event-card {
  background: var(--bg); border-radius: 20px; padding: 40px 32px;
  text-align: center; transition: var(--transition);
  border: 2px solid transparent;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--orange); }

.event-icon { font-size: 56px; margin-bottom: 20px; }

.event-card h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); margin-bottom: 14px; }
.event-card p  { color: var(--gray-500); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.event-card .btn { display: inline-flex; }

@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .founder-placeholder { height: 300px; }
}
