/* CFDC — Bayside-style layout; US nonprofit accurate content */
:root {
  --blue: #0072bc;
  --blue-dark: #005a96;
  --blue-deep: #001726;
  --blue-light: #eaf9ff;
  --green: #00a550;
  --green-soft: #71be44;
  --orange: #f79252;
  --gold: #e0a01a;
  --gray: #505050;
  --gray-line: #e6e6e6;
  --white: #fff;
  --max: 1440px;
  --max-sm: 1100px;
  --header-h: 100px;
  --font: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--gray);
  line-height: 1.25;
  margin: 0 0 0.55em;
}
p { margin: 0 0 1em; }
ul.plain { padding-left: 1.2em; }
ul.plain li { margin-bottom: 0.4em; }

.grid-container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.grid-container-small { width: 100%; max-width: var(--max-sm); margin: 0 auto; padding: 0 24px; }
.section-padding-tb { padding: 80px 0; }
.section-padding-top { padding-top: 80px; padding-bottom: 40px; }
.center { text-align: center; }
.blue { color: var(--blue) !important; }
.white { color: var(--white) !important; }
.blue-light-bg { background: var(--blue-light); }
.green-bg { background: var(--green); }
.blue-bg { background: var(--blue); }
.white-bg { background: var(--white); }
.subscribe-bg { background: linear-gradient(180deg, #f4f8fb, #eaf9ff); }

.button {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--white); color: var(--blue); }
.btn-blue2 { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.btn-blue2:hover { background: var(--white); color: var(--blue-dark); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--white); color: var(--green); }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--white); color: var(--orange); }
.btn-gold { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--white); color: var(--blue-deep); border-color: var(--white); }
.more-info { display: inline-block; margin-top: 10px; color: var(--blue); font-weight: 700; font-size: 14px; }
.more-info::after { content: " →"; }
.more-info.green, .program-card .more-info { color: var(--green); }

/* Header */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-line);
}
.header-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: var(--header-h); max-width: var(--max); margin: 0 auto; padding-left: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--blue-deep); }
.site-logo img { width: 72px; height: 72px; object-fit: contain; }
.site-logo span { font-weight: 800; font-size: 15px; line-height: 1.2; max-width: 160px; color: var(--blue); }
.header-nav { display: flex; align-items: stretch; margin-left: auto; }
.primary-menu { list-style: none; margin: 0; padding: 0 12px; display: flex; align-items: stretch; }
.primary-menu > li { position: relative; display: flex; align-items: center; }
.primary-menu > li > a {
  display: flex; align-items: center; height: 100%; padding: 0 16px;
  color: var(--gray); font-weight: 600; font-size: 15px;
}
.primary-menu > li > a:hover,
.primary-menu > li:hover > a,
.primary-menu > li.active > a { color: var(--blue); }
.primary-menu .has-children > a::after {
  content: ""; margin-left: 6px; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px);
}
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); box-shadow: 0 12px 30px rgba(0, 23, 38, 0.12);
  list-style: none; margin: 0; padding: 10px 0; z-index: 50;
}
.primary-menu > li:hover > .sub-menu { display: block; }
.sub-menu a { display: block; padding: 10px 18px; color: var(--gray); font-size: 14px; font-weight: 500; }
.sub-menu a:hover { background: var(--blue-light); color: var(--blue); }
.header-donate { display: flex; align-items: stretch; }
.header-donate a {
  display: flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--white); font-weight: 800; font-size: 16px;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 0 34px; min-width: 140px;
}
.header-donate a:hover { background: var(--green); color: var(--white); }
.nav-toggle {
  display: none; border: 1px solid var(--gray-line); background: var(--white);
  width: 46px; height: 46px; margin: auto 16px auto 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--blue); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--blue-deep); }
.slide { position: relative; display: none; min-height: clamp(420px, 68vh, 620px); }
.slide.is-active { display: block; animation: fadeSlide 0.6s ease; }
@keyframes fadeSlide { from { opacity: 0.4; } to { opacity: 1; } }
.slide > img { width: 100%; height: clamp(420px, 68vh, 620px); object-fit: cover; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 23, 38, 0.72), rgba(0, 23, 38, 0.35) 55%, rgba(0, 23, 38, 0.2));
}
.slide-content {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  max-width: 760px; padding: 0 8vw; color: var(--white);
}
.slide-content h1 {
  color: var(--white); font-size: clamp(1.85rem, 4.2vw, 3rem); font-weight: 800;
  margin-bottom: 1.25rem; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hero-dots { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--white);
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.is-active { background: var(--white); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border: 0; background: rgba(255, 255, 255, 0.9);
  color: var(--blue); font-size: 22px; cursor: pointer; border-radius: 50%;
}
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

.block-1-inner h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--blue);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.block-1-inner p { max-width: 700px; margin: 0.75rem auto 0; font-size: 1.05rem; }

.about_blocks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 40px; }
.about_block { grid-column: span 2; position: relative; overflow: hidden; background: var(--blue-deep); }
.about_block:nth-child(1), .about_block:nth-child(2) { grid-column: span 3; }
.about_block a { display: block; color: var(--white); }
.about_block img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.about_block:hover img { transform: scale(1.05); }
.about_block .slide-content {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0, 23, 38, 0.85));
  max-width: none; justify-content: flex-end;
}
.about_block h4 { color: var(--white); margin: 0; font-size: 1.25rem; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-feature .item { padding: 10px 20px; }
.home-feature h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.25em; font-weight: 800; }
.home-feature h4 { font-size: 1.05rem; margin-bottom: 0.5em; }
.home-feature p { max-width: 300px; margin: 0 auto; font-size: 0.95rem; }

.programs-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0; }
.program-track-wrap { position: relative; margin-top: 28px; padding-bottom: 40px; }
.program-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 320px);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 20px;
}
.program-card-outer { scroll-snap-align: start; }
.program-card {
  border-radius: 10px; overflow: hidden; height: 100%; background: var(--white);
  border: 1px solid var(--gray-line); display: flex; flex-direction: column; min-height: 380px;
}
.program-card .image { aspect-ratio: 460 / 300; overflow: hidden; }
.program-card .image img { width: 100%; height: 100%; object-fit: cover; }
.program-card .content { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.program-card h4 { color: var(--blue); font-size: 1.15rem; }
.program-card p { font-size: 0.95rem; flex: 1; }
.more-info-bottom { margin-top: auto; }

.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.involve-card { position: relative; min-height: 300px; overflow: hidden; background: var(--blue-deep); }
.involve-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.45s ease; }
.involve-card:hover img { transform: scale(1.06); }
.involve-card .overlay {
  position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0, 23, 38, 0.88));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white);
}
.involve-card h4 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.4rem; }
.involve-card p { color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; font-size: 0.95rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.news-card { background: var(--white); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.news-card img { width: 100%; height: 170px; object-fit: cover; }
.news-card .body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.news-card .date { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); font-weight: 700; margin-bottom: 8px; }
.news-card h4 { color: var(--blue-deep); font-size: 1.05rem; }
.news-card p { font-size: 0.9rem; flex: 1; }

.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin-top: 28px; }
.partner-pill { padding: 14px 22px; border: 1px solid var(--gray-line); color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.subscribe-box { max-width: 560px; margin: 28px auto 0; }
.subscribe-box form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.subscribe-box input[type="email"] { flex: 1; min-width: 220px; padding: 14px 16px; border: 1px solid var(--gray-line); font: inherit; }

.page-hero {
  position: relative; min-height: 280px; display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; background: var(--blue-deep);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0, 23, 38, 0.85)); }
.page-hero .inner {
  position: relative; z-index: 1; padding: 48px 24px 36px; max-width: var(--max); margin: 0 auto; width: 100%;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-hero p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0.6rem 0 0; }

.content-section { padding: 70px 0; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.feature-row.reverse .copy { order: 2; }
.feature-row img { width: 100%; height: 340px; object-fit: cover; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { border: 1px solid var(--gray-line); background: var(--white); padding: 22px; }
.info-card h3 { color: var(--blue); font-size: 1.15rem; }

.fact-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 2rem; }
.fact-table th, .fact-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--gray-line); vertical-align: top; }
.fact-table th { width: 38%; color: var(--blue-deep); font-weight: 700; background: var(--blue-light); }

.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.leader-grid.single { grid-template-columns: 1fr; max-width: 720px; }
.leader-card {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px;
  border: 1px solid var(--gray-line); padding: 20px; background: var(--white);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.leader-card:hover {
  border-color: rgba(0, 114, 188, 0.35);
  box-shadow: 0 10px 28px rgba(0, 23, 38, 0.08);
}
.leader-avatar {
  width: 88px; height: 88px; background: var(--blue); color: var(--white);
  display: grid; place-items: center; font-size: 1.55rem; font-weight: 800;
  flex-shrink: 0;
}
.leader-avatar.gold { background: linear-gradient(145deg, #c4870f, #e0a01a); color: var(--blue-deep); }
.leader-avatar.green { background: var(--green); }
.leader-card h3 { margin-bottom: 0.2rem; font-size: 1.15rem; color: var(--blue-deep); }
.leader-card .role { color: var(--green); font-weight: 700; margin-bottom: 0.55rem; font-size: 0.92rem; }
.leader-card p { margin: 0; font-size: 0.95rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.team-block { margin-top: 48px; }
.team-block > h2 { color: var(--blue); margin-bottom: 0.4rem; }
.team-block > .lead-text { color: var(--gray); margin-bottom: 1.5rem; max-width: 62ch; }

@media (max-width: 900px) {
  .leader-grid { grid-template-columns: 1fr; }
}

.donate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; }
.donate-card {
  border: 1px solid var(--gray-line); background: var(--white); padding: 22px 16px; text-align: center;
  cursor: pointer; font: inherit; color: inherit; width: 100%;
}
.donate-card.active, .donate-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(0, 165, 80, 0.12); }
.donate-card .amount { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.donate-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; }
.panel { border: 1px solid var(--gray-line); padding: 24px; background: var(--white); }
.tax-note { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 14px 16px; margin: 18px 0; }
.disclaimer {
  background: #fff8e8; border: 1px solid #f0d9a0; padding: 14px 16px; margin: 18px 0; font-size: 0.95rem; color: #5a4a20;
}

.form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue-deep); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-line); font: inherit; color: var(--gray); background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.form-success { display: none; background: #e8f8ef; border: 1px solid #b6e3c7; color: #1d6b3f; padding: 12px 14px; }
.form-success.show { display: block; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.contact-item { margin-bottom: 18px; }
.contact-item h3 { color: var(--blue); font-size: 1rem; margin-bottom: 4px; }
.cta-band {
  background: var(--blue); color: var(--white); padding: 36px;
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
}
.cta-band h2 { color: var(--white); margin: 0 0 6px; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.9); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Blog */
.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.article h1 { color: var(--blue-deep); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.article-hero-img { width: 100%; height: 320px; object-fit: cover; margin: 24px 0; }
.article-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-line); }

/* ========== FOOTER (upgraded) ========== */
.site-footer {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(0, 114, 188, 0.35), transparent 42%),
    radial-gradient(ellipse at 90% 20%, rgba(224, 160, 26, 0.12), transparent 40%),
    linear-gradient(180deg, #012338 0%, #001726 55%, #000f18 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-soft), var(--blue), var(--gold));
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 0 0 0.35rem;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  font-size: 0.98rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-main {
  padding: 52px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.85fr 1.15fr;
  gap: 36px 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 4px;
}

.footer-brand .legal-line {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.footer-brand > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-soft);
}

.site-footer h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-contact-list .ico {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  opacity: 0.9;
  color: var(--gold);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-verify {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(113, 190, 68, 0.45);
  background: rgba(113, 190, 68, 0.1);
  color: #c8efb0;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-verify:hover { color: var(--white); border-color: var(--green-soft); }

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  padding: 18px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--gold); }

.footer-bottom .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .about_blocks { grid-template-columns: repeat(2, 1fr); }
  .about_block, .about_block:nth-child(1), .about_block:nth-child(2) { grid-column: span 1; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); padding-bottom: 16px;
  }
  .header-nav.open { display: flex; }
  .primary-menu { flex-direction: column; padding: 8px 16px; }
  .primary-menu > li { display: block; }
  .primary-menu > li > a { padding: 12px 8px; height: auto; }
  .sub-menu { position: static; display: none; box-shadow: none; padding-left: 12px; }
  .primary-menu > li.open > .sub-menu { display: block; }
  .header-donate { display: none; }
  .stats-row, .involve-grid, .feature-row, .feature-row.reverse .copy,
  .donate-layout, .contact-layout, .footer-grid, .card-grid, .donate-grid, .form-row, .news-grid,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }
  .footer-cta-actions { justify-content: flex-start; }
  .feature-row.reverse .copy { order: 0; }
  .site-logo span { display: none; }
}
@media (max-width: 640px) {
  .slide-content { padding: 0 24px; }
  .hero-arrow { display: none; }
  .section-padding-tb { padding: 56px 0; }
  .footer-main { padding: 40px 0 28px; }
}
