/* =================================================
   S.O.A.R. HOPE — Redesigned Website
   Theme: Warm & Inspiring
   Colors: Deep Teal + Warm Amber/Gold
   Fonts: Playfair Display + Inter
   ================================================= */

/* --- DESIGN TOKENS --- */
:root {
  --primary:        #0B5E6F;
  --primary-dark:   #084B5A;
  --primary-mid:    #0D7690;
  --primary-light:  #1A9BAF;
  --primary-pale:   #E6F4F7;

  --accent:         #E8921C;
  --accent-dark:    #C47510;
  --accent-light:   #F5B535;
  --accent-pale:    #FEF3E2;

  --bg:             #FFFEF9;
  --bg-warm:        #F8F1E4;
  --bg-section:     #F2EBD9;
  --bg-dark:        #0C2B33;
  --text:           #1A2832;
  --text-body:      #3C5060;
  --text-muted:     #6B7C8A;
  --text-light:     #97A8B3;
  --white:          #FFFFFF;
  --border:         #E0D7C8;
  --border-light:   #EDE8DF;

  --font-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --container: 1200px;
  --nav-h:     80px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.18);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --t-fast: 0.15s ease;
  --t:      0.25s ease;
  --t-slow: 0.4s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw,  4rem);  font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-body); line-height: 1.7; }
.lead { font-size: 1.15rem; color: var(--text-body); line-height: 1.75; }

/* --- LAYOUT --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
section { padding: var(--sp-24) 0; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: var(--sp-3);
}
.section-title { margin-bottom: var(--sp-4); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin-bottom: var(--sp-10); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.875rem 2rem; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  transition: all var(--t); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,146,28,.35); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-outline-teal { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline-teal:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: background var(--t), box-shadow var(--t);
}
.nav.hero-nav { background: transparent; }
.nav.scrolled {
  background: rgba(255,254,249,0.96); backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: var(--sp-3); }
.nav-logo-img { height: 52px; max-height: 52px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.nav-logo-mark {
  width: 44px; height: 44px; background: var(--primary); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.nav-logo-tagline { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.nav.hero-nav .nav-logo-name,
.nav.hero-nav .nav-logo-tagline { color: var(--white); }
.nav.hero-nav .nav-logo-tagline { color: rgba(255,255,255,0.75); }

.nav-links { display: flex; align-items: center; gap: var(--sp-1); }
.nav-link {
  padding: var(--sp-2) var(--sp-4); font-size: 0.9rem; font-weight: 500;
  color: var(--text); border-radius: var(--r-full); transition: all var(--t);
}
.nav-link:hover { color: var(--primary); background: var(--primary-pale); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav.hero-nav .nav-link { color: rgba(255,255,255,0.88); }
.nav.hero-nav .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-donate {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 0.6rem 1.5rem !important; border-radius: var(--r-full) !important; font-weight: 600 !important;
}
.nav.hero-nav .nav-donate { background: var(--accent) !important; }
.nav-donate:hover {
  background: var(--accent-dark) !important; transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,146,28,.35) !important;
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 32px; padding: var(--sp-2); }
.nav-hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }
.nav.hero-nav .nav-hamburger span { background: var(--white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg); z-index: 999; flex-direction: column; gap: var(--sp-2);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: var(--sp-3) var(--sp-4); font-size: 1rem; font-weight: 500;
  color: var(--text); border-radius: var(--r-md); transition: all var(--t);
}
.nav-mobile-link:hover { background: var(--primary-pale); color: var(--primary); }
.nav-mobile-donate {
  background: var(--accent) !important; color: var(--white) !important;
  text-align: center; margin-top: var(--sp-2); font-weight: 600 !important;
}

/* --- HOME HERO --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,58,72,.9) 0%, rgba(11,94,111,.78) 45%, rgba(11,94,111,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-16)) var(--sp-6) var(--sp-16); width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(232,146,28,.2); border: 1px solid rgba(232,146,28,.4);
  color: var(--accent-light); padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.hero h1 { color: var(--white); max-width: 750px; margin-bottom: var(--sp-5); text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: var(--sp-8); line-height: 1.75; }
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,.65); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounceY 2.5s infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* --- MISSION STRIP --- */
.mission-strip { background: var(--primary); padding: var(--sp-8) 0; }
.mission-strip .container { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.mission-strip-icon {
  flex-shrink: 0; width: 56px; height: 56px; background: rgba(255,255,255,.15);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
}
.mission-strip-text { flex: 1; }
.mission-strip-text h3 { color: var(--white); font-size: 1.25rem; margin-bottom: var(--sp-1); }
.mission-strip-text p { color: rgba(255,255,255,.8); font-size: 0.95rem; }
.mission-strip .btn { flex-shrink: 0; }

/* --- STATS SECTION --- */
.stats { background: var(--bg-dark); padding: var(--sp-20) 0; position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,146,28,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.stat-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: var(--sp-10) var(--sp-8); text-align: center; transition: all var(--t);
}
.stat-card:hover { background: rgba(255,255,255,.08); border-color: rgba(232,146,28,.3); transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--accent-light); line-height: 1; margin-bottom: var(--sp-3);
}
.stat-divider { width: 40px; height: 2px; background: var(--accent); margin: var(--sp-3) auto; }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,.72); line-height: 1.5; }

/* --- PROBLEM SECTION --- */
.problem { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.problem-image { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.problem-image img { width: 100%; height: 500px; object-fit: cover; }
.problem-image-badge {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6); right: var(--sp-6);
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4);
}
.problem-badge-icon {
  width: 48px; height: 48px; background: var(--accent-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.problem-badge-text { font-size: 0.88rem; color: var(--text-body); }
.problem-badge-text strong { font-weight: 700; color: var(--text); display: block; font-size: 1rem; }
.problem-content h2 { margin-bottom: var(--sp-5); }
.problem-content p { margin-bottom: var(--sp-5); font-size: 1.02rem; }

/* --- HOW WE HELP --- */
.how-we-help { background: var(--bg-warm); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-12); }
.help-card {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-sm); transition: all var(--t); border: 1px solid var(--border-light);
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-pale); }
.help-icon {
  width: 60px; height: 60px; background: var(--primary-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5);
}
.help-icon svg { width: 28px; height: 28px; color: var(--primary); }
.help-card h3 { font-size: 1.2rem; margin-bottom: var(--sp-3); }
.help-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--sp-20) 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,146,28,.1) 0%, transparent 70%); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { color: var(--white); max-width: 600px; margin: 0 auto var(--sp-5); }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 500px; margin: 0 auto var(--sp-8); }
.cta-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + var(--sp-12)) 0 var(--sp-12);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%); border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--accent-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-4); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5); }
.breadcrumb a { font-size: 0.83rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.35); font-size: 0.83rem; }
.breadcrumb .crumb-current { font-size: 0.83rem; color: rgba(255,255,255,.88); }

/* --- ABOUT: STORY --- */
.story { background: var(--bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.story-image { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.story-image img { width: 100%; height: 460px; object-fit: cover; }
.story-content p { margin-bottom: var(--sp-5); font-size: 1.02rem; }
.soar-meaning {
  background: var(--bg-warm); border-radius: var(--r-lg); padding: var(--sp-6);
  margin-top: var(--sp-6); border-left: 4px solid var(--accent);
}
.soar-meaning h4 { color: var(--text); margin-bottom: var(--sp-4); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.soar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.soar-letter { text-align: center; }
.soar-char { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.soar-word { font-size: 0.75rem; font-weight: 600; color: var(--text-body); letter-spacing: 0.04em; text-transform: uppercase; margin-top: var(--sp-1); }

/* --- ABOUT: MISSION & VISION --- */
.mission-vision { background: var(--bg-warm); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); margin-top: var(--sp-12); }
.mv-card {
  background: var(--white); border-radius: var(--r-xl); padding: var(--sp-10); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.mv-card-icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5);
}
.mv-card-icon.teal { background: var(--primary-pale); }
.mv-card-icon.gold { background: var(--accent-pale); }
.mv-card-icon.teal svg { color: var(--primary); }
.mv-card-icon.gold svg { color: var(--accent); }
.mv-card h3 { margin-bottom: var(--sp-4); }
.mv-card p { font-size: 1.02rem; }

/* --- ABOUT: APPROACH --- */
.approach { background: var(--bg-dark); }
.approach .section-label { color: var(--accent-light); }
.approach .section-title { color: var(--white); }
.approach .section-subtitle { color: rgba(255,255,255,.7); }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); margin-top: var(--sp-12); }
.approach-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: var(--sp-8); transition: all var(--t);
}
.approach-card:hover { background: rgba(255,255,255,.08); border-color: rgba(232,146,28,.35); transform: translateY(-4px); }
.approach-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(232,146,28,.3); line-height: 1; margin-bottom: var(--sp-3); }
.approach-card h3 { color: var(--white); margin-bottom: var(--sp-3); }
.approach-card p { color: rgba(255,255,255,.68); font-size: 0.95rem; }

/* --- ABOUT: TEAM --- */
.team { background: var(--bg-warm); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-12); }
.team-grid-4 { grid-template-columns: repeat(4, 1fr); }
.team-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--t); border: 1px solid var(--border-light); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { width: 100%; height: 220px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-avatar {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar.alt { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); }
.team-initials { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(255,255,255,.9); }
.team-info { padding: var(--sp-6); }
.team-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: var(--sp-1); }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.team-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- DONATE: ZEFFY EMBED --- */
.donate-embed-section { background: var(--bg-warm); padding: var(--sp-20) 0; }
.zeffy-embed-wrapper { max-width: 860px; margin: 0 auto; box-shadow: var(--shadow-lg); border-radius: 16px; overflow: hidden; }
.donate-trust-line { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: var(--sp-5); }

/* --- DONATE: HERO TIERS --- */
.donate-tiers { background: var(--bg); }
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
.tier-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6); text-align: center; transition: all var(--t); position: relative;
}
.tier-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card.featured { border-color: var(--accent); background: var(--accent-pale); }
.tier-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-full); white-space: nowrap;
}
.tier-emoji { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.tier-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: var(--sp-1); }
.tier-name { font-weight: 700; color: var(--text); font-size: 1rem; margin-bottom: var(--sp-3); }
.tier-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: var(--sp-6); line-height: 1.55; }

/* --- DONATE: IMPACT BREAKDOWN --- */
.impact-breakdown { background: var(--bg-warm); }
.breakdown-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-16); align-items: center; margin-top: var(--sp-12); }
.breakdown-text p { font-size: 1.02rem; margin-bottom: var(--sp-5); }
.breakdown-bars { display: flex; flex-direction: column; gap: var(--sp-5); }
.breakdown-item { display: flex; flex-direction: column; gap: var(--sp-2); }
.breakdown-label { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; }
.breakdown-bar { height: 10px; background: var(--border); border-radius: var(--r-full); overflow: hidden; }
.breakdown-bar-fill { height: 100%; background: var(--primary); border-radius: var(--r-full); width: 0%; transition: width 1.5s ease; }
.breakdown-bar-fill.accent { background: var(--accent); }
.breakdown-bar-fill.teal-light { background: var(--primary-light); }

/* --- DONATE: CTA --- */
.donate-cta-section { background: var(--bg); }
.donate-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--r-xl); padding: var(--sp-16) var(--sp-12); text-align: center;
  position: relative; overflow: hidden;
}
.donate-cta-box::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%); border-radius: 50%;
}
.donate-cta-box h2 { color: var(--white); max-width: 500px; margin: 0 auto var(--sp-4); }
.donate-cta-box p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: var(--sp-8); }

/* --- CONTACT: FORM --- */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-16); margin-top: var(--sp-12); align-items: start; }
.contact-info h3 { margin-bottom: var(--sp-5); }
.contact-info > p { font-size: 1.02rem; margin-bottom: var(--sp-6); }
.contact-details { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-detail { display: flex; align-items: flex-start; gap: var(--sp-4); }
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--primary-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail-text { font-size: 0.93rem; color: var(--text-body); }
.contact-detail-text strong { display: block; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--r-xl); padding: var(--sp-10);
  box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
}
.form-group { margin-bottom: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: var(--sp-2); letter-spacing: 0.03em; }
input, textarea, select {
  width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: 0.95rem; color: var(--text); background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, textarea:focus, select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,94,111,.1); background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: var(--primary-pale); border: 1px solid var(--primary-light);
  border-radius: var(--r-md); padding: var(--sp-6); color: var(--primary-dark);
  text-align: center; font-size: 0.95rem;
}

/* --- PROJECT UPDATES --- */
.updates { background: var(--bg-warm); }
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-12); }
.update-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--t); border: 1px solid var(--border-light);
}
.update-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.update-date { background: var(--primary); color: var(--white); padding: var(--sp-3) var(--sp-5); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.update-body { padding: var(--sp-6); }
.update-tag {
  display: inline-block; background: var(--accent-pale); color: var(--accent-dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full); margin-bottom: var(--sp-3);
}
.update-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: var(--sp-3); font-family: var(--font-heading); line-height: 1.3; }
.update-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--sp-4); }
.update-link { font-size: 0.83rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t); }
.update-link:hover { gap: 8px; }

/* --- FOOTER --- */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.8); }
.footer-main { padding: var(--sp-20) 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-10); }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer-logo-mark { width: 44px; height: 44px; background: var(--primary); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: var(--sp-6); }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.footer-social-link:hover { background: var(--accent); transform: translateY(-2px); }
.footer-social-link svg { width: 17px; height: 17px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-5); font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: var(--sp-6) 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-bottom a:hover { color: var(--white); }

/* --- SCROLL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* --- SCROLL TO TOP --- */
.scroll-top {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6); width: 48px; height: 48px;
  background: var(--accent); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px);
  transition: all var(--t); z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; color: var(--white); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .tiers-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 768px) {
  :root { --sp-24: 4rem; --sp-20: 3.5rem; }
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .problem-grid, .story-grid, .contact-grid, .breakdown-grid,
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid, .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .help-grid, .approach-grid, .team-grid, .updates-grid { grid-template-columns: 1fr; }
  .soar-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-strip .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
}
