/* =============================================
   GLOBALWORX FOUNDATION — DESIGN SYSTEM
   Colors: Navy #1B2B5E | Gold #C8972B
   Fonts: Oswald (headlines) + Inter (body)
   ============================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #1B2B5E;
  --navy-dark: #111e42;
  --navy-light: #243672;
  --gold: #C8972B;
  --gold-light: #e0ad40;
  --gold-dark: #a97a1e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f0eff0;
  --mid-gray: #999;
  --dark-gray: #333;
  --text: #1a1a1a;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-subtitle.white { color: rgba(255,255,255,0.8); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
.text-center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,43,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ============================
   HEADER / NAVIGATION
   ============================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-text .brand span { color: var(--gold); }
.logo-text .tagline-small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.nav-donate-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
}
.nav-donate-btn:hover {
  background: var(--gold-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-donate {
  margin: 12px 24px 4px;
  background: var(--gold);
  color: white;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
}

/* Page spacer for fixed header */
.page-top { padding-top: 72px; }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,30,66,0.92) 0%, rgba(27,43,94,0.85) 50%, rgba(17,30,66,0.95) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow .line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   IMPACT COUNTER SECTION
   ============================ */
.impact-bar {
  background: var(--gold);
  padding: 0;
}
.impact-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}
.impact-stat {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
  transition: background var(--transition);
}
.impact-stat:last-child { border-right: none; }
.impact-stat:hover { background: rgba(0,0,0,0.08); }
.impact-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.impact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ============================
   MISSION STATEMENT BAND
   ============================ */
.mission-band {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.mission-band .mission-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}
.mission-band .mission-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* ============================
   PROBLEM SECTION
   ============================ */
.problem-section {
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-visual {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  color: white;
}
.problem-stat-block {
  margin-bottom: 24px;
}
.problem-stat-block .big-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.problem-stat-block .big-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.problem-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 24px 0; }
.problem-content .section-subtitle { margin: 0 0 1.5rem; max-width: 100%; }
.problem-points { display: flex; flex-direction: column; gap: 16px; margin-top: 1.5rem; }
.problem-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.problem-point .icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.problem-point p { font-size: 0.95rem; color: #444; }

/* ============================
   PROGRAMS SECTION
   ============================ */
.programs-section { background: var(--white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.program-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.program-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,43,94,0.07);
  color: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.program-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.program-card h4 span { color: var(--gold); }
.program-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }
.programs-cta { text-align: center; margin-top: 2.5rem; }

/* ============================
   WHO WE SERVE SECTION
   ============================ */
.serve-section { background: var(--navy); }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.serve-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.serve-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.serve-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.serve-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* ============================
   DONATE SECTION
   ============================ */
.donate-section { background: var(--off-white); }
.donate-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.donate-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: #e8e8e8;
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.donate-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: all var(--transition);
}
.donate-tab.active {
  background: var(--navy);
  color: var(--white);
}
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
}
.donate-amount-btn {
  padding: 14px 24px;
  border: 2px solid #ddd;
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 90px;
  text-align: center;
}
.donate-amount-btn:hover, .donate-amount-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.donate-custom {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  gap: 8px;
  transition: border-color var(--transition);
}
.donate-custom:focus-within { border-color: var(--gold); }
.donate-custom span { color: #999; font-size: 0.9rem; }
.donate-custom input {
  border: none;
  outline: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  width: 80px;
  background: transparent;
}
.donate-stripe-box {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 520px;
  margin: 0 auto;
}
.donate-stripe-box .stripe-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
  margin-top: 16px;
  justify-content: center;
}
.donate-stripe-box .stripe-note svg { width: 16px; height: 16px; }
#stripe-card-element {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: #fafafa;
  margin-bottom: 12px;
}
.payment-icons { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 12px; }
.payment-icons img { height: 24px; }

/* Donation impact text */
.donate-impact {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 16px;
  background: rgba(27,43,94,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.donate-impact p { font-size: 0.9rem; color: var(--navy); font-style: italic; }

/* ============================
   GET INVOLVED BAND
   ============================ */
.get-involved-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
}
.gi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.gi-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.gi-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.gi-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.gi-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.gi-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================
   ABOUT PAGE
   ============================ */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.founder-photo {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid var(--gold);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-placeholder {
  font-size: 4rem;
  color: var(--mid-gray);
}
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.vision-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.vision-year {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.vision-card h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 8px; }
.vision-card p { font-size: 0.85rem; color: #666; }

/* ============================
   PROGRAMS PAGE
   ============================ */
.programs-list { display: flex; flex-direction: column; gap: 40px; }
.program-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}
.program-row:hover { box-shadow: var(--shadow); }
.program-row-icon-area { text-align: center; }
.program-row-icon {
  width: 80px;
  height: 80px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.program-row-icon-area .program-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.program-row-icon-area .program-name span { color: var(--gold); }
.program-row-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.program-row-content p { font-size: 0.95rem; color: #555; margin-bottom: 16px; }
.program-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(27,43,94,0.08);
  color: var(--navy);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ============================
   WHO WE SERVE PAGE
   ============================ */
.serve-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.serve-full-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--transition);
  text-align: center;
}
.serve-full-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.serve-full-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.serve-full-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.serve-full-card p { font-size: 0.9rem; color: #666; }

/* ============================
   IMPACT PAGE
   ============================ */
.stats-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix { color: var(--gold); }
.stat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform var(--transition);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 24px; height: 24px; fill: white; }
.testimonial-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-card span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 12px; font-style: italic; }
.testimonial-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* Financials */
.financials-section {
  background: var(--off-white);
}
.financials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.finance-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.finance-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.finance-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.finance-card p { font-size: 0.85rem; color: #666; }
.candid-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 32px;
  max-width: 480px;
}
.candid-badge .badge-logo {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: white;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.candid-badge-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.candid-badge-text p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* ============================
   GET INVOLVED PAGE
   ============================ */
.corporate-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.tier-card {
  background: var(--white);
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.tier-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-card:hover:not(.featured) {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.tier-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tier-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0 16px;
}
.tier-price sub { font-size: 1rem; color: #999; font-family: 'Inter', sans-serif; }
.tier-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; text-align: left; }
.tier-benefits li { font-size: 0.82rem; color: #555; display: flex; gap: 8px; align-items: flex-start; }
.tier-benefits li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Volunteer */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.volunteer-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.volunteer-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.volunteer-card p { font-size: 0.88rem; color: #666; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  color: white;
}
.contact-info-box h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,151,43,0.15);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.social-links-box { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.social-links-box h4 { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* Form */
.contact-form-box { background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fafafa;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================
   LEGAL PAGES
   ============================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.5rem; color: var(--navy); margin: 2rem 0 0.75rem; font-family: 'Oswald', sans-serif; }
.legal-content p { font-size: 0.95rem; color: #444; margin-bottom: 1rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: #444; margin-bottom: 0.5rem; }
.legal-date { font-size: 0.85rem; color: #888; margin-bottom: 2rem; font-style: italic; }

/* ============================
   NEWSLETTER BAND
   ============================ */
.newsletter-band {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.newsletter-band h2 { color: var(--white); margin-bottom: 8px; font-size: 1.8rem; }
.newsletter-band p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ============================
   FOOTER
   ============================ */
#site-footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 300px; }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand-text {
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================
   UTILITIES
   ============================ */
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.divider { border: none; border-top: 1px solid #e5e5e5; margin: 40px 0; }
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}
.gold-line.left { margin-left: 0; }

/* Alert/Notice box */
.notice-box {
  background: rgba(27,43,94,0.06);
  border: 1px solid rgba(27,43,94,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--navy);
  margin: 16px 0;
}
.notice-box strong { color: var(--gold); }

/* ============================
   ANIMATIONS
   ============================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .impact-stat:nth-child(2) { border-right: none; }
  .impact-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.25); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero-content { padding: 80px 20px 60px; }
  .programs-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-cards { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { aspect-ratio: 1; max-width: 260px; }
  .vision-cards { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 1fr; }
  .stats-full { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .financials-grid { grid-template-columns: 1fr; }
  .corporate-tiers { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .impact-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .impact-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .impact-stat:last-child { border-bottom: none; }
  .donate-amounts { flex-direction: row; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-full-grid { grid-template-columns: 1fr; }
  .stats-full { grid-template-columns: 1fr; }
  .impact-bar-inner { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .donate-links-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ---- STRIPE PAYMENT LINK BUTTONS ---- */
.donate-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 12px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}
.donate-link-btn:hover {
  border-color: var(--gold);
  background: rgba(200,151,43,0.06);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,151,43,0.2);
}
.donate-link-btn.popular {
  border-color: var(--gold);
  background: rgba(200,151,43,0.08);
}
.popular-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 10px;
  position: absolute;
  top: -10px;
  right: 10px;
}
.donate-link-btn.custom {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-size: 1rem;
}
.donate-link-btn.custom:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
