```css
:root{
  /* Brand */
  --primary: #01143E;      /* deep navy */
  --secondary: #2A355F;    /* muted navy */

  /* Text */
  --text: #1F1F1F;
  --muted: #5F6368;

  /* Backgrounds */
  --bg: #FBFBFD;
  --alt: #F1F3F8;

  /* UI */
  --line: rgba(31,31,31,.12);
  --shadow: 0 18px 50px rgba(1,20,62,.12);
  --shadow2: 0 10px 28px rgba(1,20,62,.10);

  /* Layout */
  --radius: 16px;
  --wrap: 1120px;
}

/* ===========================
   RESET
   =========================== */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
a{ color: inherit; }

/* Skip link */
.skip{
  position:absolute;
  left:-999px;
  top:12px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
}
.skip:focus{ left:12px; z-index:999; }

/* ===========================
   HIDE DUPLICATE NAV ROW (UNDER HEADER)
   (Prevents the second row of links you saw)
   =========================== */
.topbar + nav,
.topbar + .nav,
.topbar + .wrap nav,
.topbar ~ .subnav,
.topbar ~ .secondary-nav,
.topbar ~ .page-links,
.topbar ~ .nav-secondary,
.topbar ~ .links-row,
.topbar ~ .menu-row{
  display: none !important;
}

/* ===========================
   HEADER / NAV
   LOGO LEFT — LINKS + DONATE RIGHT
   =========================== */
.topbar{
  position: relative; /* not sticky */
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-grid{
  display: grid;
  grid-template-columns: auto 1fr; /* logo | right side */
  align-items: center;
  padding: 16px 0;
  gap: 18px;
}

/* Make header consistent across ALL pages */
.topbar{
  background: #fff;                 /* avoids weird transparency on banners */
  backdrop-filter: none;            /* prevents banner/hero blur oddities */
}

.header-grid{
  min-height: 96px;                 /* consistent header height */
}

/* If a page starts with a hero/banner, prevent any overlap or weird gap */
main > :first-child{
  margin-top: 0 !important;
}
.hero{
  margin-top: 0 !important;
}


/* Logo left */
.brand-center{
  grid-column: 1;
  display: flex;
  align-items: center;
}

.logo-img{
  height: 120px; /* adjust bigger/smaller */
  width: auto;
  display: block;
}

/* Right side: links + donate */
.nav-right{
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

/* Nav links (no pills) */
.nav{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .02em;
  padding: 6px 4px;
}

.nav a:hover{
  text-decoration: underline;
  text-underline-offset: 7px;
}

/* Optional active state */
.nav a.active{
  text-decoration: underline;
  text-underline-offset: 7px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow2);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn.outline{
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.btn.small{ padding: 10px 12px; border-radius: 12px; }
.btn.full{ width: 100%; }

/* Donate button on right */
.btn-donate{
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 16px;
}

/* ===========================
   HERO
   =========================== */
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:flex-end;

  background-image:
    url("https://images.unsplash.com/photo-1459183885421-5cc683b8dbba?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.18) 60%, rgba(0,0,0,.10));
}

.hero-inner{
  position: relative;
  width: 100%;
  padding: 36px 0 34px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:end;
}

.breadcrumb{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin-bottom: 10px;
}

.hero-copy h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.lead{
  margin: 0 0 16px;
  font-size: 18px;
  max-width: 65ch;
  color: rgba(255,255,255,.86);
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Panel */
.panel{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel h2{ margin: 0 0 10px; font-size: 18px; letter-spacing: -0.01em; }

.bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 8px 0; }

.fine{ margin: 10px 0 0; color: var(--muted); font-size: 13px; }

/* ===========================
   SECTIONS
   =========================== */
.section{ padding: 54px 0; }
.section.alt{
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{ max-width: 820px; margin-bottom: 18px; }
.section-head h2{ margin: 0 0 10px; font-size: 30px; letter-spacing: -0.02em; }
.section-head p{ margin: 0; color: var(--muted); }

/* Stats */
.stats-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.stat{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.stat-num{
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label{ color: var(--muted); }

/* Cards */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.card-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 8px; }
.card h3{ margin: 0; letter-spacing: -0.01em; }
.card p{ margin: 10px 0 0; color: var(--muted); }

/* Stories */
.story-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.story{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.story:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }

.story-img{
  height: 160px;
  background: linear-gradient(135deg, rgba(16,18,20,.10), rgba(16,18,20,.02));
}
.story-body{ padding: 16px; }
.story-body h3{ margin: 0 0 8px; letter-spacing: -0.01em; }
.story-body p{ margin: 0 0 12px; color: var(--muted); }

.link{
  color: var(--primary);
  text-decoration:none;
  font-weight: 900;
}
.link:hover{ text-decoration: underline; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.contact-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}

/* Footer */
.footer{ padding: 26px 0; background: #fff; }
.footer-inner{
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

/* ===========================
   DONATE PAGE — IMPROVED SPACING + LOWER CTA
   (Works with the new <div class="donate-cta"> wrapper)
   =========================== */

/* More space between donate tiles + prevent weird stretching */
.donate-grid{
  gap: 22px;                 /* space between cards */
  align-items: start;        /* stops equal-height stretching */
}

/* Make donate cards a vertical layout so we can push CTA to the bottom */
.donate-card{
  display: flex;
  flex-direction: column;
  padding: 22px;             /* more breathing room than default .card */
  min-height: 340px;         /* gives room so CTA can sit lower */
}

/* Keep top content tidy */
.donate-card .card-top{ margin-bottom: 10px; }

/* Push the CTA (button + fine text) lower in the card */
.donate-card .donate-cta{
  margin-top: auto;          /* KEY: moves CTA to bottom */
  padding-top: 18px;         /* extra breathing room above CTA */
}

/* Keep fine text attached close to the button */
.donate-card .donate-cta .btn{
  margin-bottom: 8px;
}
.donate-card .donate-cta .fine{
  margin-top: 0;
}

/* Panel inside Cash App card: spacing */
.donate-card .panel{
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 980px){
  .donate-card{
    min-height: auto;        /* natural height on mobile */
    padding: 20px;
  }
  .donate-grid{
    gap: 14px;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero{ min-height: 560px; }
  .stats-row{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid3{ grid-template-columns: 1fr; }
  .story-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .header-grid{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .brand-center{
    justify-content: center;
  }

  .nav-right{
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .logo-img{ height: 100px; }
  .nav{ gap: 16px; }
}
```
