:root {
  --navy-950: #071527;
  --navy-900: #0b1f38;
  --navy-800: #123458;
  --gold-500: #c99a3d;
  --gold-400: #dfb75d;
  --beige-100: #f7f2e9;
  --beige-50: #fcfaf6;
  --gray-700: #4f5965;
  --gray-500: #737d87;
  --gray-200: #dfe4e8;
  --white: #fff;
  --success: #1f7a55;
  --danger: #a63c3c;
  --shadow-sm: 0 10px 30px rgba(7, 21, 39, .09);
  --shadow-lg: 0 24px 70px rgba(7, 21, 39, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 220ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--beige-50);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 0 0 8px 8px;
  font-weight: 700;
}

.skip-link:focus { top: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section[id] { scroll-margin-top: 90px; }
.section-alt { background: var(--beige-100); }
.section-dark { color: var(--white); background: var(--navy-950); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { margin: 0 0 18px; color: var(--gray-700); }
.section-dark p, .dark-copy p { color: rgba(0, 0, 0, 0.76); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 9px 24px rgba(201, 154, 61, .22);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition);
}

.btn:hover { transform: translateY(-2px); background: var(--white); }
.btn-dark { color: var(--white); background: var(--navy-900); box-shadow: none; }
.btn-dark:hover { color: var(--navy-950); background: var(--gold-400); }
.btn-outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.6); box-shadow: none; }
.btn-outline:hover { color: var(--navy-950); background: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.topbar {
  color: rgba(255,255,255,.8);
  background: var(--navy-950);
  font-size: .82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 20px;
}

.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--gold-400); }
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--gray-200); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50% 50% 50% 8px;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-logo-mark {
  width: 80px;
  height: 51px;
  background: var(--white);
  border-radius: 6px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text { display: grid; font-weight: 800; line-height: 1.05; }
.brand-text span:first-child { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.05rem; }
.brand-text small { margin-top: 4px; color: var(--gold-500); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--navy-900);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-list, .dropdown-menu { margin: 0; padding: 0; list-style: none; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 9px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover { color: var(--gold-500); }

.dropdown-toggle::after {
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 255px;
  padding: 9px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--gray-700);
  font-size: .84rem;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a.active { color: var(--navy-950); background: var(--beige-100); }
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.nav-item.open > .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-list > .nav-item:nth-last-child(2) > .dropdown-menu { right: 0; left: auto; }
.nav-donate { margin-left: 6px; padding: 11px 17px; font-size: .7rem; }

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero { min-height: min(800px, calc(100vh - 120px)); background-image: url("../images/hero-ministry.jpg"); }
.page-hero { min-height: 390px; background-image: url("../images/contact-bg.jpg"); }
.page-hero.about-hero { background-image: url("../images/about-ministry.jpg"); }
.page-hero.prison-hero { background-image: url("../images/prison-ministry.jpg"); }
.page-hero.widow-hero { background-image: url("../images/widow-orphanage.jpg"); }
.page-hero.leadership-hero { background-image: url("../images/leadership-ministry.jpg"); }
.page-hero.donate-hero { background-image: url("../images/donate-bg.jpg"); }
.page-hero.book-hero { background-image: url("../images/community-prayer.jpg"); }
.page-hero.events-hero { background-image: url("../images/volunteer-support.jpg"); }
.page-hero.vfc-hero { background-image: url("../images/community-prayer.jpg"); }

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(7,21,39,.94) 0%, rgba(7,21,39,.77) 48%, rgba(7,21,39,.2) 100%);
}

.hero-content { max-width: 720px; padding: 100px 0; }
.hero h1 { max-width: 690px; margin-bottom: 22px; }
.hero p { max-width: 610px; color: rgba(255,255,255,.82); font-size: 1.16rem; }
.page-hero-content { max-width: 750px; padding: 78px 0; }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(2.7rem, 6vw, 4.6rem); }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.78); font-size: 1.1rem; }

.breadcrumbs { display: flex; gap: 8px; margin-bottom: 14px; color: var(--gold-400); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs span { color: rgba(255,255,255,.55); }

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.stat { padding: 27px 30px; border-right: 1px solid var(--gray-200); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold-500); font-family: Georgia, serif; font-size: 1.5rem; }
.stat span { color: var(--gray-700); font-size: .8rem; font-weight: 700; text-transform: uppercase; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-feature {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-feature img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--beige-100);
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: none;
}

.founder-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 5px 1px;
}

.founder-caption strong {
  display: block;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.founder-caption span {
  display: block;
  color: var(--gold-500);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-seal {
  display: grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--navy-950) !important;
  background: var(--gold-400);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .82rem !important;
  letter-spacing: 0 !important;
}

.image-note {
  position: absolute;
  right: -25px;
  bottom: 30px;
  max-width: 220px;
  padding: 19px;
  color: var(--white);
  background: var(--navy-900);
  border-left: 4px solid var(--gold-400);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.4;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li { position: relative; padding-left: 28px; color: var(--gray-700); }
.check-list li::before { position: absolute; top: 2px; left: 0; color: var(--gold-500); content: "+ "; font-size: 1.25rem; font-weight: 900; }
.plain-list li::before { position: absolute; top: 9px; left: 4px; width: 7px; height: 7px; content: ""; background: var(--gold-400); border-radius: 50%; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(223,228,232,.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 245px; object-fit: cover; }
.card-body { padding: 28px; }
.card-body p { font-size: .94rem; }
.card-link { color: var(--gold-500); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.card-link:hover { color: var(--navy-900); }

.icon-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50% 50% 50% 8px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.quote-section { position: relative; overflow: hidden; }
.quote-card {
  position: relative;
  max-width: 900px;
  padding: clamp(35px, 7vw, 75px);
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.quote-card::before { position: absolute; top: 18px; left: 35px; color: var(--gold-400); content: open-quote; font-family: Georgia, serif; font-size: 7rem; line-height: 1; opacity: .5; }
.quote-card blockquote { position: relative; margin: 0 0 25px; font-family: Georgia, serif; font-size: clamp(1.3rem, 3vw, 2.1rem); line-height: 1.45; }
.quote-card cite { color: var(--gold-500); font-style: normal; font-weight: 800; }

.cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--navy-950) url("../images/donate-bg.jpg") center/cover no-repeat;
  isolation: isolate;
}
.cta::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(7,21,39,.97), rgba(7,21,39,.64)); }
.cta-content { max-width: 720px; }
.cta p { max-width: 620px; color: rgba(255,255,255,.78); font-size: 1.08rem; }

.band { padding: 45px 0; color: var(--white); background: var(--navy-800); }
.band-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.band h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: steps;
}
.process-card { position: relative; padding: 30px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); counter-increment: steps; }
.process-card::before { display: block; margin-bottom: 15px; color: var(--gold-400); content: "0" counter(steps); font-family: Georgia, serif; font-size: 2.2rem; font-weight: 700; }

.leader-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.leader-card { padding: 28px 20px; text-align: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.leader-avatar { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 19px; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); border: 4px solid var(--gold-400); border-radius: 50%; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; }
.leader-photo { display: block; object-fit: cover; background: var(--beige-100); }
.leader-card h3 { margin-bottom: 5px; font-size: 1.18rem; }
.leader-card p { margin: 0; color: var(--gold-500); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 35px; align-items: start; }
.form-card, .info-card { padding: clamp(25px, 5vw, 45px); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy-900); font-size: .79rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy-950);
  background: var(--beige-50);
  border: 1px solid #ccd3d8;
  border-radius: 8px;
  transition: border var(--transition), box-shadow var(--transition);
}
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,154,61,.18); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin-top: 16px; font-size: .82rem; }
.status-message { display: none; margin-bottom: 22px; padding: 14px 16px; border-radius: 8px; font-weight: 700; }
.status-message.show { display: block; }
.status-message.success { color: #14533a; background: #e3f5ec; border: 1px solid #b8dfcc; }
.status-message.error { color: #7c2929; background: #f9e6e6; border: 1px solid #e9bcbc; }

.amount-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.amount-option input { position: absolute; opacity: 0; pointer-events: none; }
.amount-option span { display: grid; place-items: center; min-height: 48px; padding: 8px; border: 1px solid var(--gray-200); border-radius: 8px; color: var(--navy-900); background: var(--beige-50); font-weight: 800; transition: var(--transition); }
.amount-option input:checked + span { color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); }
.custom-amount { display: none; margin-top: 12px; }
.custom-amount.show { display: grid; }

.contact-list { display: grid; gap: 23px; margin-top: 25px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; }
.contact-item strong { display: block; margin-bottom: 3px; }
.contact-item p, .contact-item a { margin: 0; color: var(--gray-700); font-size: .92rem; }
.contact-item a:hover { color: var(--gold-500); }
.contact-symbol { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy-950); background: var(--gold-400); border-radius: 50%; font-weight: 900; }
.map-placeholder { display: grid; place-items: center; min-height: 390px; color: var(--white); text-align: center; background: linear-gradient(rgba(7,21,39,.82), rgba(7,21,39,.82)), url("../images/contact-bg.jpg") center/cover; border-radius: var(--radius-md); }

.site-footer { color: rgba(255,255,255,.72); background: var(--navy-950); }
.footer-main { padding: 75px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.2fr; gap: 45px; }
.footer-brand .brand-text span:first-child { color: var(--white); }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.65); font-size: .91rem; }
.footer-title { margin-bottom: 22px; color: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a:hover { color: var(--gold-400); }
.subscribe-form { display: flex; gap: 8px; }
.subscribe-form input { min-width: 0; color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.subscribe-form .btn { min-height: 50px; padding-inline: 16px; }
.subscribe-note { min-height: 23px; margin-top: 9px; color: var(--gold-400); font-size: .78rem; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); font-size: .7rem; font-weight: 800; }
.social-links a:hover { color: var(--navy-950); background: var(--gold-400); border-color: var(--gold-400); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; }

[data-reveal] { opacity: 1; transform: none; transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(20px); }
[data-reveal].revealed { opacity: 1; transform: none; }
.section:target [data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .nav-donate { margin-left: auto; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: min(390px, 100%);
    padding: 112px 24px 30px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(7,21,39,.16);
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition), opacity var(--transition);
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .nav-list { display: grid; align-items: stretch; gap: 2px; }
  .nav-link, .dropdown-toggle { justify-content: space-between; width: 100%; padding: 13px 7px; font-size: .83rem; text-align: left; }
  .dropdown-menu { position: static; display: none; min-width: 0; padding: 4px 0 7px 13px; visibility: visible; opacity: 1; border: 0; box-shadow: none; transform: none; }
  .nav-item.open > .dropdown-menu { display: block; }
  .nav-item:hover > .dropdown-menu:not(.mobile-open),
  .nav-item:focus-within > .dropdown-menu:not(.mobile-open) { display: none; }
  .nav-item.open > .dropdown-menu.mobile-open { display: block; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 570px; margin-inline: auto; }
  .leader-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .nav-donate { display: none; }
  .site-nav { padding-top: 95px; }
  .hero { min-height: 680px; }
  .hero::before, .page-hero::before { background: rgba(7,21,39,.78); }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse .split-media { order: initial; }
  .split-media img { min-height: 390px; }
  .founder-feature img { min-height: 0; }
  .image-note { right: 15px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
  .form-layout { grid-template-columns: 1fr; }
  .amount-options { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.05rem; }
  .brand-text small { display: none; }
  .hero { min-height: 620px; }
  .hero-content { padding: 70px 0; }
  .page-hero { min-height: 330px; }
  .cards, .leader-grid, .process, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards .card:last-child:nth-child(odd), .footer-grid > :last-child { grid-column: auto; }
  .split-media img { min-height: 310px; }
  .founder-feature img { min-height: 0; }
  .image-note { position: relative; right: auto; bottom: auto; max-width: none; margin: -35px 14px 0; }
  .stats-strip { margin-top: 0; }
  .stats-grid { border-radius: 0; }
  .stat { padding: 20px 17px; }
  .card-img { height: 220px; }
  .amount-options { grid-template-columns: repeat(2, 1fr); }
  .band-grid, .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


.black-h{
  color: black;
}
.white-h{
  color: white !important;
}
