/* =============================================
   GAZHP — Clean & Light Redesign
   ============================================= */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Logo-derived palette — used sparingly */
  --green-dark:   #1c5928;   /* logo hand/text — headings, nav logo */
  --green-mid:    #2e8b57;   /* medium green — tags, icons, borders */
  --green-light:  #e8f5ed;   /* very light mint — section backgrounds */
  --teal:         #00a89c;   /* teal — tags, hover accents */
  --red-cta:      #c94040;   /* caduceus red — primary donate CTA */
  --red-hover:    #b03030;
  --navy:         #0a2540;   /* deep navy — dark sections, banners */
  --gold:         #d9a527;   /* gold — accents on dark backgrounds */

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #faf9f7;
  --gray-50:      #f7f8f8;
  --gray-100:     #eff1f0;
  --gray-200:     #dde2df;
  --gray-400:     #8fa498;
  --gray-600:     #4a5e53;
  --gray-800:     #1e2e27;
  --black:        #111a15;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.10);
  --transition:   .22s ease;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-head:    'Playfair Display', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.8;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
/* Primary CTA = red (from caduceus) */
.btn-primary { background: var(--red-cta); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Green button */
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: #245f2f; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Teal button */
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #008f85; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Outline */
.btn-outline-dark { border: 2px solid var(--gray-800); color: var(--gray-800); }
.btn-outline-dark:hover { background: var(--gray-800); color: var(--white); }

.btn-outline-white { border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ========================================
   NAVBAR — white, clean
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 56px; width: auto; display: block; }
.nav-logo > span { display: none; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--gray-600);
  font-size: .9rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); background: var(--green-light); }
.nav-donate {
  background: var(--red-cta) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm);
}
.nav-donate:hover { background: var(--red-hover) !important; color: var(--white) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 28px 24px;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--gray-100);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--gray-800); font-size: 1.05rem; font-weight: 500; padding: 13px 16px; border-radius: var(--radius-sm); border-bottom: 1px solid var(--gray-100); }
.mobile-nav a:hover { color: var(--green-dark); background: var(--green-light); }
.mobile-nav .btn-primary { margin-top: 14px; text-align: center; justify-content: center; }

/* ========================================
   HERO — light, airy
   ======================================== */
.hero {
  min-height: 100vh;
  background: var(--off-white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--green-light);
  clip-path: ellipse(90% 80% at 80% 50%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--green-mid);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 22px;
}
.hero-title span { color: var(--green-dark); }
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-item { }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.hero-stat-label { font-size: .75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-badge-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--black); }
.hero-badge-text span { font-size: .76rem; color: var(--gray-400); }

/* ========================================
   MISSION STRIP
   ======================================== */
.mission-strip { background: var(--green-dark); padding: 24px 0; }
.mission-strip-inner { display: flex; align-items: center; gap: 16px; justify-content: center; text-align: center; flex-wrap: wrap; }
.mission-strip p { color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 500; font-style: italic; }
.mission-strip strong { font-weight: 800; font-style: normal; color: var(--white); }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 3px solid var(--green-mid);
}
.about-badge-num { font-size: 2rem; font-weight: 900; color: var(--green-dark); }
.about-badge-label { font-size: .75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }

.about-content .section-sub { margin-bottom: 24px; }
.about-bullets { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.about-bullet { display: flex; gap: 14px; align-items: flex-start; }
.bullet-dot {
  width: 26px; height: 26px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid #c2e0cc;
}
.bullet-text strong { display: block; font-weight: 600; color: var(--black); font-size: .93rem; }
.bullet-text span { font-size: .87rem; color: var(--gray-600); }
.origin-note {
  background: var(--green-light);
  border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-top: 22px;
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.origin-note strong { color: var(--green-dark); }

/* ========================================
   PROGRAMS
   ======================================== */
.programs { background: var(--gray-50); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.program-img img { width: 100%; height: 100%; object-fit: cover; }
.program-body { padding: 24px; }
.program-num { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.program-name { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.program-desc { font-size: .87rem; color: var(--gray-600); line-height: 1.7; }
.programs-cta { text-align: center; margin-top: 44px; }

/* ========================================
   HOW WE WORK
   ======================================== */
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.how-card {
  display: flex; gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  align-items: flex-start;
}
.how-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); }
.how-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.how-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.how-body p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; }

/* ========================================
   STATS
   ======================================== */
.stats { background: var(--green-dark); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { color: var(--white); }
.stat-number { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ========================================
   DONATE
   ======================================== */
.donate { background: var(--off-white); }
.donate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.donate-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
  position: relative;
}
.donate-card.featured { border-color: var(--green-mid); border-width: 2px; }
.donate-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-dark); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.donate-icon { font-size: 2.2rem; margin-bottom: 14px; }
.donate-title { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.donate-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 24px; }
.donate-amounts { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.amount-btn {
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: .84rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); background: none; color: var(--gray-800);
  transition: var(--transition);
}
.amount-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.donate-cta { text-align: center; margin-top: 40px; }
.donate-note { font-size: .84rem; color: var(--gray-400); margin-top: 10px; }
.donate-note span { color: var(--green-mid); font-weight: 600; }

/* ========================================
   TEAM
   ======================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo {
  aspect-ratio: 1;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 18px; }
.team-name { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.team-role { font-size: .76rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.team-cta { text-align: center; margin-top: 40px; }

/* ========================================
   DIFFERENTIATORS
   ======================================== */
.diff { background: var(--navy); }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.diff-card { display: flex; gap: 18px; align-items: flex-start; padding: 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); }
.diff-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.diff-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.diff-body p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { background: var(--green-dark); padding: 80px 0; text-align: center; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
   ======================================== */
footer { background: var(--black); color: rgba(255,255,255,.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-img { filter: brightness(0) invert(1); height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: .88rem; color: rgba(255,255,255,.7);
}
.social-link:hover { background: var(--teal); color: var(--white); }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; font-size: .86rem; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--teal); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom a { color: var(--teal); }
.nonprofit-badge {
  background: rgba(46,139,87,.15);
  border: 1px solid rgba(46,139,87,.3);
  color: #6fcf97;
  padding: 4px 12px; border-radius: 100px;
  font-size: .73rem; font-weight: 600;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  background: var(--green-light);
  padding: 140px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--black); margin-bottom: 14px; }
.page-hero p { font-size: 1.08rem; color: var(--gray-600); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: .82rem; color: var(--gray-400); }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--gray-200); }

/* ========================================
   TIMELINE
   ======================================== */
.timeline { position: relative; padding-left: 44px; margin-top: 44px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green-mid), transparent); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -38px; top: 8px; width: 12px; height: 12px; background: var(--green-mid); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green-mid); }
.timeline-date { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 5px; }
.timeline-text { font-size: .92rem; color: var(--gray-600); line-height: 1.65; }
.timeline-text strong { color: var(--black); font-weight: 600; }

/* ========================================
   VALUES
   ======================================== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.value-card { padding: 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); border-left: 3px solid var(--green-mid); }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.value-card p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; }

/* ========================================
   MEMBERSHIP
   ======================================== */
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.membership-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.membership-card.recommended { border-color: var(--green-mid); }
.membership-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.membership-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-mid); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.membership-icon { font-size: 2.4rem; margin-bottom: 18px; }
.membership-type { font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.membership-fee { font-size: 1.9rem; font-weight: 900; color: var(--green-dark); margin-bottom: 8px; }
.membership-fee span { font-size: .95rem; font-weight: 500; color: var(--gray-400); }
.membership-fee-tiers { margin-bottom: 18px; }
.fee-row { display: flex; align-items: baseline; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 6px; }
.fee-row:last-child { margin-bottom: 0; }
.fee-amount { font-size: 1.45rem; font-weight: 900; color: var(--green-dark); line-height: 1.2; }
.fee-note { font-size: .76rem; color: var(--gray-400); font-weight: 500; }
.membership-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 22px; }
.membership-features { text-align: left; margin-bottom: 28px; }
.membership-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--gray-600); margin-bottom: 9px; }
.membership-features li::before { content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; background-color: var(--green-mid); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat; }
.membership-apply { width: 100%; justify-content: center; margin-top: auto; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; margin-top: 52px; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 22px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 42px; height: 42px; background: var(--green-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.contact-detail-text span { font-size: .86rem; color: var(--gray-600); }
.contact-social { margin-top: 28px; }
.contact-social h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-800); margin-bottom: 12px; }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.contact-form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-800); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .9rem; color: var(--gray-800);
  background: var(--gray-50); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-mid); background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,139,87,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: .95rem; }
.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--black); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500;
  transform: translateY(100px); opacity: 0; transition: var(--transition);
  z-index: 9999; max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ========================================
   ICONS
   ======================================== */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: middle; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 22px; height: 22px; }
.icon-xl { width: 26px; height: 26px; }
.icon-2xl { width: 34px; height: 34px; }
.icon-3xl { width: 40px; height: 40px; }

/* Override sizes within specific containers so SVGs match prior emoji presence */
.hero-badge-icon .icon { width: 20px; height: 20px; color: var(--green-mid); }
.bullet-dot .icon { width: 12px; height: 12px; stroke-width: 3; }
.how-icon .icon { width: 22px; height: 22px; color: var(--green-mid); }
.donate-icon .icon { width: 34px; height: 34px; color: var(--green-mid); margin-bottom: 0; }
.diff-icon .icon { width: 22px; height: 22px; color: var(--green-mid); }
.membership-icon .icon { width: 36px; height: 36px; color: var(--green-mid); margin-bottom: 0; }
.contact-icon .icon { width: 18px; height: 18px; color: var(--green-mid); }
.footer-contact-item .icon { width: 16px; height: 16px; color: var(--teal); margin-top: 3px; }
.social-link .icon { width: 16px; height: 16px; }
.nonprofit-badge .icon { width: 12px; height: 12px; stroke-width: 2.5; margin-right: 4px; vertical-align: -2px; }
.btn .icon { width: 16px; height: 16px; margin-right: 6px; vertical-align: -3px; }
.btn-lg .icon { width: 18px; height: 18px; vertical-align: -4px; }
.toast .icon { width: 18px; height: 18px; color: #ff6b8a; }

/* Initial-circle team photo placeholder */
.team-photo-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--green-dark); background: linear-gradient(135deg, #cfe9d7 0%, #a8d8b7 100%); letter-spacing: 0.02em; }

/* Program-icon (used on about.html) — colored circular tile */
.program-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.program-icon .icon { width: 26px; height: 26px; }
.program-icon.purple { background: #ede4fb; color: #7b4ddb; }
.program-icon.blue { background: #e1edff; color: #2563d4; }
.program-icon.green { background: var(--green-light); color: var(--green-dark); }

/* Header pill that previously sat next to a globe emoji */
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow-pill .icon { width: 14px; height: 14px; }

/* ========================================
   NEWS
   ======================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.news-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-100); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.news-date { font-size: .76rem; color: var(--gray-400); font-weight: 600; }
.news-card-title { font-size: 1.08rem; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 10px; }
.news-card-excerpt { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.news-readmore { font-size: .85rem; font-weight: 700; color: var(--green-mid); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.news-card:hover .news-readmore { gap: 11px; }
.news-readmore .icon { width: 15px; height: 15px; }

/* Category badge */
.news-tag { display: inline-block; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 11px; border-radius: 100px; }
.news-tag.opportunity { background: #fdeef0; color: var(--red-cta); }
.news-tag.fundraising { background: #fff4e0; color: #b9750a; }
.news-tag.donation { background: var(--green-light); color: var(--green-dark); }
.news-tag.partnership { background: #e3f0fb; color: #2061a8; }
.news-tag.update { background: var(--gray-100); color: var(--gray-600); }

/* Featured / lead story */
.news-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 40px; transition: var(--transition);
}
.news-featured:hover { box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.news-featured-img { overflow: hidden; min-height: 320px; background: var(--gray-100); }
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.news-featured:hover .news-featured-img img { transform: scale(1.04); }
.news-featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.news-featured-title { font-family: var(--font-head); font-size: 1.7rem; color: var(--black); line-height: 1.25; margin: 14px 0 14px; }
.news-featured-excerpt { font-size: .95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }

/* ========================================
   ARTICLE (single news post)
   ======================================== */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-head { margin-bottom: 32px; }
.article-title { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--black); line-height: 1.2; margin: 16px 0 14px; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: .85rem; color: var(--gray-400); flex-wrap: wrap; }
.article-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 36px; box-shadow: var(--shadow-md); }
.article-body p { font-size: 1.02rem; color: var(--gray-800); line-height: 1.8; margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--black); margin: 38px 0 14px; }
.article-body h3 { font-size: 1.18rem; font-weight: 700; color: var(--black); margin: 30px 0 10px; }
.article-body ul { margin: 0 0 22px 24px; list-style: disc; }
.article-body li { font-size: 1.02rem; color: var(--gray-800); line-height: 1.75; margin-bottom: 9px; }
.article-body img { width: 100%; border-radius: var(--radius-md); margin: 28px 0; box-shadow: var(--shadow-sm); }
.article-body figure { margin: 28px 0; }
.article-body figcaption { font-size: .82rem; color: var(--gray-400); text-align: center; margin-top: 10px; font-style: italic; }
.article-body strong { color: var(--black); font-weight: 700; }
.article-body blockquote {
  border-left: 3px solid var(--green-mid); padding: 14px 24px; margin: 28px 0;
  background: var(--green-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--gray-800); font-size: 1.05rem; line-height: 1.7;
}
.article-source { font-size: .82rem; color: var(--gray-400); margin-top: 8px; }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--green-mid); margin-bottom: 8px; }
.article-back .icon { width: 16px; height: 16px; }
.article-nav { border-top: 1px solid var(--gray-200); margin-top: 48px; padding-top: 28px; display: flex; justify-content: center; }

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero { background: var(--green-light); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-grid { grid-template-columns: 1fr 1fr; }
  .membership-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 240px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .programs-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-body { padding: 28px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
