/*
Theme Name: EWB Theme
Theme URI: https://educationwithoutboundaries.info
Description: Custom theme for Education Without Boundaries non-profit website
Author: Education Without Boundaries
Version: 1.0
License: Private
*/
/* ============================================================
   EDUCATION WITHOUT BOUNDARIES — GLOBAL STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162538;
  --teal:        #0E7C7B;
  --teal-light:  #1A9997;
  --gold:        #D4A843;
  --gold-light:  #F0C860;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --text:        #2C3E50;
  --text-light:  #5A6A7A;
  --border:      #E0D9CF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 12px rgba(13,27,42,.07);
  --shadow-md:  0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-light); line-height: 1.8; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
  display: block;
}
.section-title { margin-bottom: 1.25rem; }
.section-body  { font-size: 1.05rem; max-width: 60ch; }

/* ── Layout ── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,.0);
  backdrop-filter: blur(0);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
  padding: 1.4rem 0;
}
.site-header.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.2);
  padding: .9rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-donate {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.3rem !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
}
.nav-donate:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,.4);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  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 {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .9rem; line-height: 1.8; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: .85rem;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

/* ── 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-1497486751825-1233686d5d80?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .28;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(14,124,123,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 8rem 0 6rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--gold-light);
  padding: .45rem 1.1rem;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}
.hero h1 strong {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  max-width: 54ch;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.hero-stat {
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: .35rem;
  letter-spacing: .05em;
}

/* ── Mission Band ── */
.mission-band {
  background: var(--teal);
  padding: 3.5rem 0;
}
.mission-band-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.mission-band h2 {
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.mission-band h2 strong {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.mission-band p {
  color: rgba(255,255,255,.85);
  flex: 1;
}

/* ── Programs Section ── */
.programs { background: var(--cream); }
.programs-header { text-align: center; margin-bottom: 3.5rem; }
.programs-header .section-body { margin-inline: auto; }
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-card-img {
  height: 220px;
  overflow: hidden;
}
.program-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.program-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.program-card h3 { margin-bottom: .75rem; }
.program-card p { font-size: .95rem; flex: 1; }
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 1.5rem;
  transition: gap var(--transition);
}
.program-card-link:hover { gap: .7rem; }

/* ── Impact ── */
.impact { background: var(--navy); }
.impact-header { text-align: center; margin-bottom: 4rem; }
.impact-header .section-label { color: var(--gold); }
.impact-header h2 { color: var(--white); }
.impact-header p { color: rgba(255,255,255,.7); margin-inline: auto; }
.impact-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.impact-card:hover { background: rgba(255,255,255,.09); border-color: var(--gold); }
.impact-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.impact-card h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.impact-card p { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ── Story / About Split ── */
.story-section { padding: 6rem 0; }
.story-img-wrap { position: relative; }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute;
  bottom: 2rem; right: -2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.story-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.story-badge p { font-size: .8rem; color: var(--text-light); margin-top: .25rem; }
.story-content { padding-left: 2rem; }
.story-content p { margin-bottom: 1.25rem; }
.story-values { display: flex; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.value-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
}
.value-chip::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Testimonial ── */
.testimonial-section { background: var(--cream); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: .8;
  display: block;
  margin-bottom: .5rem;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; font-size: .95rem; color: var(--navy); }
.testimonial-author span { font-size: .82rem; color: var(--text-light); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(212,168,67,.08);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.cta-banner h2 { color: var(--white); max-width: 700px; margin-inline: auto; margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 50ch; margin-inline: auto; margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ── */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: .5rem; }

/* ── About Page ── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--teal);
}
.value-card h4 { color: var(--navy); margin-bottom: .5rem; font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.value-card p { font-size: .9rem; }

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--white);
}
.team-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--navy); }
.team-card p { font-size: .85rem; margin-top: .25rem; }

/* ── Scholarships ── */
.scholarship-steps {
  counter-reset: step;
}
.step-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num {
  counter-increment: step;
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.criteria-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.criteria-item {
  display: flex;
  gap: .75rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.criteria-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: .9rem;
}

/* ── Book Printing ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--gold); }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon.gold { background: var(--gold); color: var(--navy); }
.contact-info-item h4 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Donate ── */
.donate-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.amount-btn {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--teal);
  background: rgba(14,124,123,.05);
  color: var(--teal);
}
.freq-toggle {
  display: flex;
  background: var(--cream);
  border-radius: 8px;
  padding: .25rem;
  margin-bottom: 2rem;
  gap: .25rem;
}
.freq-btn {
  flex: 1;
  padding: .6rem 1rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}
.freq-btn.active {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.donation-impact-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.donation-impact-list li:last-child { border-bottom: none; }
.donation-impact-list .icon { color: var(--teal); font-size: 1.1rem; margin-top: .1rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }
.text-teal  { color: var(--teal) !important; }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.divider-center { margin-inline: auto; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up  { animation: fadeUp .8s ease forwards; }
.fade-in  { animation: fadeIn .8s ease forwards; }
.delay-1  { animation-delay: .15s; opacity: 0; }
.delay-2  { animation-delay: .3s; opacity: 0; }
.delay-3  { animation-delay: .45s; opacity: 0; }
.delay-4  { animation-delay: .6s; opacity: 0; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .mission-band-inner { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .story-badge { right: 0; }
  .story-content { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .criteria-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; }
}
