:root {
  --blue:        #1f4dad;
  --blue-dark:   #163a85;
  --blue-50:     #e8f0fb;
  --blue-100:    #d6e3f6;
  --green:       #5baa34;
  --green-dark:  #4c9128;
  --green-50:    #ecf7e3;
  --green-100:   #d6ecc4;
  --ink:         #0f1b2d;
  --ink-soft:    #2c3a4f;
  --muted:       #5b6878;
  --line:        #e3e7ee;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fa;
  --bg-cream:    #f4f1ea;
  --shadow-sm:   0 1px 2px rgba(15,27,45,.05), 0 1px 3px rgba(15,27,45,.06);
  --shadow:      0 4px 14px rgba(15,27,45,.08);
  --radius:      14px;
  --radius-lg:   22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: 0; color: var(--ink); margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(15,27,45,.2); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline-blue { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn--outline-blue:hover { background: var(--blue-50); }
.btn--white { background: #fff; color: var(--blue); border-color: rgba(31,77,173,.18); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: var(--blue-50); color: var(--blue-dark); }
.btn .ico { display: inline-block; }
.arrow { transform: translateY(-1px); }

/* Eyebrow + section */
.eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.section__title {
  font-size: clamp(28px, 3vw, 38px);
  text-align: center;
  margin: 0 0 12px;
}
.section__lede {
  text-align: center; max-width: 640px; margin: 0 auto 28px;
  color: var(--muted); font-size: 16px;
}
.learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 14px;
  color: var(--green);
}
.learn-more:hover { color: var(--green-dark); }

/* TOPBAR */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.topbar__inner {
  display: flex; align-items: center; gap: 20px;
  height: 84px;
}
.topbar__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.topbar__brand-mark { height: 48px; width: auto; }
.topbar__brand-wordmark {
  display: flex; flex-direction: column;
  font-size: 13px; line-height: 1.15;
  color: var(--blue); font-weight: 600;
  letter-spacing: 0;
}
.topbar__nav {
  display: flex; gap: 28px; flex: 1; justify-content: center;
}
.topbar__nav a {
  color: var(--ink); font-weight: 500; font-size: 15px;
  position: relative; padding: 6px 0;
}
.topbar__nav a:hover { color: var(--green); }
.topbar__nav a.is-active { color: var(--green); }
.topbar__nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--green); border-radius: 2px;
}
.topbar__cta { display: flex; gap: 10px; }
.topbar__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.topbar__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* Tighten topbar at tablet-range widths so 7 nav items + wordmark + CTAs don't overflow */
@media (max-width: 1280px) {
  .topbar__nav { gap: 18px; }
  .topbar__nav a { font-size: 14px; }
  .topbar__brand-wordmark { font-size: 12px; }
}
@media (max-width: 1140px) {
  .topbar__nav a:nth-of-type(n+6) { display: none; }
  .topbar__brand-mark { height: 40px; }
}

/* HERO — background-image with white-fade gradient is set inline on the section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover, cover;
}
.hero__inner {
  position: relative; z-index: 1;
  padding: 80px 24px 120px;
  width: 100%;
}
.hero__copy { max-width: 540px; }
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__title-dark { color: var(--ink); }
.hero__title-green { color: var(--green); }
.hero__title-green-inline { color: var(--green); }
.hero__lede {
  font-size: 16px; color: var(--ink-soft);
  max-width: 440px; margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__wave {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 80px;
  display: block; z-index: 2;
}

/* SERVICES */
.services {
  padding: 48px 0 36px;
  background: #fff;
}
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 22px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-50);
  display: grid; place-items: center;
}
.service-card__icon img { width: 32px; height: 32px; }
.service-card h3 { font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }

/* IMPACT */
.impact { padding: 16px 0 52px; background: #fff; }
.impact__card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: grid; grid-template-columns: 1.05fr 1.4fr;
  gap: 40px; align-items: center;
}
.impact__copy { display: flex; gap: 20px; align-items: flex-start; }
.impact__badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.impact__copy h2 { font-size: 26px; margin: 0 0 6px; }
.impact__copy p { color: var(--muted); margin: 0 0 16px; font-size: 15px; max-width: 360px; }
.impact__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center; align-items: center;
}
.stat { padding: 0 16px; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: rgba(15,27,45,.12);
}
.stat__number {
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0;
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* GRAPHICAL IMPACT SECTIONS */
.opportunity {
  padding: 56px 0 56px;
  background: #fff;
}
.opportunity__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.opportunity__copy {
  padding: 0;
}
.opportunity__copy h2 {
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--blue-dark);
  max-width: 620px;
}
.opportunity__copy h2 span { color: var(--green); }
.opportunity__copy p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 22px;
}
.opportunity__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 780px;
}
.opportunity__stats div {
  border-right: 1px solid var(--line);
  padding: 0 14px;
  color: var(--green);
}
.opportunity__stats svg {
  width: 30px;
  height: 30px;
}
.opportunity__stats div:first-child { padding-left: 0; }
.opportunity__stats div:last-child { border-right: 0; }
.opportunity__stats strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin: 8px 0 4px;
}
.opportunity__stats span {
  display: block;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.45;
}
.opportunity__media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.opportunity__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 900px) {
  .opportunity__grid { grid-template-columns: 1fr; gap: 28px; }
}

.event-feature {
  padding: 0 0 44px;
  background: #fff;
}
.event-feature__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: stretch;
}
.event-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
}
.event-feature__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px 46px;
  box-shadow: var(--shadow-sm);
  align-self: center;
}
.event-feature__panel h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--blue-dark);
}
.event-feature__panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}
.event-feature__panel li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 15px;
}
.event-feature__panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}
.event-feature__panel li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: .68em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.programs {
  padding: 36px 0 52px;
  background: #fff;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: 250px;
}
.program-card__copy {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-card__icon { color: var(--green); }
.program-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.program-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  flex: 1;
}
.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business {
  padding: 0;
  background: #fff;
}
.business__card {
  min-height: 310px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
  background: var(--blue-dark);
  color: #fff;
}
.business__copy {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.business__copy .eyebrow {
  color: #fff;
  opacity: .9;
}
.business__copy h2 {
  color: #fff;
  max-width: 520px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.22;
  margin-bottom: 26px;
}
.business__proof {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.86);
}
.business__proof span {
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 12px;
}
.business__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}

.action-strip {
  background: var(--green);
  color: #fff;
}
.action-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.action-strip__inner a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 64px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,.35);
}
.action-strip__inner a:first-child { border-left: 0; }
.action-strip__inner a:hover {
  background: rgba(0,0,0,.08);
  color: #fff;
}

/* INTERNATIONAL DONATIONS */
.intl { padding: 12px 0 52px; background: #fff; }
.intl .section__title { margin-bottom: 8px; }
.intl__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.intl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.intl-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.intl-card__photo { aspect-ratio: 2 / 1; overflow: hidden; background: var(--bg-soft); }
.intl-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.intl-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.intl-card__logos {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 4px;
}
.logo-chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 13px; color: var(--blue);
}
.logo-chip__text { letter-spacing: 0; }
.partner-chip {
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 4px;
}
.partner-chip small {
  font-size: 9px; letter-spacing: 0.16em; color: var(--muted); font-weight: 700;
}
.partner-chip--blue { color: var(--blue); }
.intl-card h3 { font-size: 17px; margin-top: 4px; }
.intl-card p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.intl-card .learn-more { margin-top: 6px; }
.intl__more { text-align: center; margin-top: 24px; }

/* DONATION CTA */
.cta { padding: 0 0 56px; background: #fff; }
.cta__card {
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 0; align-items: stretch;
  overflow: hidden;
  min-height: 230px;
}
.cta__media { background: var(--blue-50); height: 230px; min-height: 230px; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.cta__copy {
  padding: 36px 48px; align-self: center;
}
.cta__copy h2 { font-size: clamp(24px, 2.4vw, 32px); margin: 0 0 8px; }
.cta__copy p { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--bg-soft); padding: 40px 0 0; color: var(--ink-soft); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.5fr;
  gap: 32px;
  padding-bottom: 28px;
}
.footer h4 { color: var(--ink); font-size: 14px; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--blue); }
.footer__brand p { font-size: 14px; max-width: 280px; margin: 12px 0 18px; line-height: 1.6; }
.footer__brand-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.footer__brand-mark { height: 48px; width: auto; }
.footer__brand-wordmark {
  display: flex; flex-direction: column;
  font-size: 13px; line-height: 1.15;
  color: var(--blue); font-weight: 600;
}
.footer__social { display: flex; gap: 8px; }
.footer__social .soc {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
}
.footer__social .soc:hover { background: var(--blue-dark); }
.footer__signup-col p { color: var(--muted); font-size: 13.5px; margin: 0 0 14px; }
.footer__signup {
  display: flex; gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  align-items: center;
}
.footer__signup input {
  flex: 1; min-width: 0;
  border: 0; outline: none; background: transparent;
  color: var(--ink); font-size: 13.5px;
  padding: 8px 0;
}
.footer__signup input::placeholder { color: var(--muted); }
.footer__signup button {
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: var(--blue); color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
}
.footer__signup button:hover { background: var(--blue-dark); }
.footer__bottom {
  background: var(--blue);
  color: #fff;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 24px;
  font-size: 13px;
  align-items: center;
}
.footer__bottom a { color: #fff; opacity: .9; }
.footer__bottom a:hover { opacity: 1; }
.footer__bottom p { margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    min-height: 480px;
    background-image:
      linear-gradient(to bottom, rgba(255,255,255,.95) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,.2) 100%),
      url('/images/real-cta.jpg?v=20260504-5') !important;
    background-position: right center;
  }
  .hero__inner { padding: 56px 24px 100px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .opportunity__grid,
  .event-feature__grid,
  .business__card { grid-template-columns: 1fr; }
  .opportunity__copy { padding: 28px 24px; }
  .opportunity__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .opportunity__stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 14px 14px 0;
  }
  .opportunity__stats div:nth-last-child(-n+2) { border-bottom: 0; }
  .opportunity__media img,
  .event-feature__media img { min-height: 260px; }
  .opportunity__media { height: 260px; }
  .programs__grid { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 1fr 1fr; }
  .business__proof,
  .action-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .business__card img { min-height: 260px; }
  .intl__grid { grid-template-columns: 1fr; }
  .impact__card { grid-template-columns: 1fr; gap: 24px; }
  .impact__stats { gap: 0; }
  .cta__card { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__signup-col { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .topbar__burger { display: block; }
  .topbar.is-open .topbar__nav,
  .topbar.is-open .topbar__cta {
    display: flex; position: absolute; left: 0; right: 0; top: 84px;
    flex-direction: column; gap: 12px; padding: 16px 24px;
    background: #fff; border-bottom: 1px solid var(--line);
  }
  .services__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .opportunity__stats { grid-template-columns: 1fr; }
  .opportunity__stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
  }
  .opportunity__stats div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .opportunity__stats div:last-child { border-bottom: 0; }
  .program-card { grid-template-columns: 1fr; }
  .program-card img { height: 210px; }
  .opportunity__media { height: 220px; }
  .event-feature__panel,
  .business__copy { padding: 28px 24px; }
  .business__proof { grid-template-columns: 1fr; }
  .action-strip__inner { grid-template-columns: 1fr; }
  .action-strip__inner a {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.35);
  }
  .action-strip__inner a:first-child { border-top: 0; }
  .impact__card { padding: 24px 22px; }
  .impact__stats { grid-template-columns: 1fr; gap: 14px; }
  .stat + .stat::before { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__copy { padding: 32px 24px; }
}

/* ==========================================================================
   SUBPAGES — shared styles for /prime/about/, /prime/services/, etc.
   ========================================================================== */

/* Page hero — smaller than home hero, no background image */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.page-hero__title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 0 0 18px;
}
.page-hero__title-green { color: var(--green); }
.page-hero__lede {
  font-size: 17px; color: var(--ink-soft);
  max-width: 640px; margin: 0 auto;
}

/* Mission / Vision two-card grid */
.mission { padding: 64px 0 40px; background: #fff; }
.mission__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mission-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.mission-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-50); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.mission-card h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.25;
  margin: 0 0 4px;
}
.mission-card p { color: var(--ink-soft); margin: 0; }

/* About story — image + copy split */
.about-story { padding: 56px 0; background: var(--bg-soft); }
.about-story__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px;
  align-items: center;
}
.about-story__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover; max-height: 520px;
}
.about-story__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  margin: 0 0 14px;
}
.about-story__copy p { color: var(--ink-soft); margin: 0 0 14px; }
.about-story__bullets {
  margin: 8px 0 22px; padding: 0; list-style: none;
}
.about-story__bullets li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  color: var(--ink-soft);
}
.about-story__bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-50);
}

/* Centered impact stats variant (for About) */
.opportunity__stats--center {
  max-width: 980px; margin: 0 auto;
}

/* Coverage / Florida block */
.coverage { padding: 56px 0; background: #fff; }
.coverage__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  align-items: center;
}
.coverage__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 14px;
}
.coverage__copy p { color: var(--ink-soft); margin: 0 0 14px; }
.coverage__caption {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); color: var(--green-dark);
  font-weight: 600; font-size: 14.5px;
  padding: 8px 14px; border-radius: 999px;
  margin: 4px 0 18px !important;
}
.coverage__pin { display: inline-flex; color: var(--green); }
.coverage__map {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; justify-content: center;
}
.coverage__map img {
  max-width: 100%; height: auto; max-height: 280px;
}
/* Photo variant — no inner frame, image fills with rounded corners + shadow */
.coverage__map--photo {
  background: transparent; border: 0; padding: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage__map--photo img {
  width: 100%; height: auto; max-height: none;
  display: block;
}

/* Footer flag line — subtle US accent */
.footer__flag-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
  margin: 4px 0 14px;
}
.footer__flag {
  display: inline-flex;
  box-shadow: var(--shadow-sm);
  border-radius: 2px; overflow: hidden;
  line-height: 0;
}

@media (max-width: 900px) {
  .mission__grid,
  .about-story__grid,
  .coverage__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }
  .mission, .coverage { padding: 44px 0; }
  .about-story { padding: 40px 0; }
}

/* Services / Get Involved — chip-style anchor jumpbar */
.services-nav { padding: 28px 0 12px; background: #fff; }
.services-nav__grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.services-nav__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 14.5px;
  transition: all .15s ease;
}
.services-nav__chip:hover {
  background: var(--green-50); border-color: var(--green-100); color: var(--green-dark);
}
.services-nav__ico { display: inline-flex; align-items: center; color: var(--green); }
.services-nav__ico img { width: 22px; height: 22px; }

/* Service / Get-Involved alternating section */
.service-section { padding: 64px 0; background: #fff; scroll-margin-top: 100px; }
.service-section--alt { background: var(--bg-soft); }
.service-section__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.service-section__grid--reverse > .service-section__media { order: -1; }
.service-section__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 14px;
}
.service-section__copy p { color: var(--ink-soft); margin: 0 0 14px; }
.service-section__bullets {
  margin: 8px 0 22px; padding: 0; list-style: none;
}
.service-section__bullets li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  color: var(--ink-soft);
}
.service-section__bullets li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-50);
}
.service-section__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover; max-height: 420px;
}
.service-section__media--video {
  display: flex; justify-content: center;
}
.service-section__media--video video {
  width: auto; max-width: 100%;
  max-height: 560px; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #000;
  display: block;
}

/* Partners — category grid */
.partner-cats { padding: 56px 0; background: #fff; }
.partner-cats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 28px;
}
.partner-cat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.partner-cat__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-50); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.partner-cat h3 { font-size: 18px; margin: 0; }
.partner-cat p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }
.partner-cat__chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}

/* News — featured story card */
.news-featured { padding: 40px 0 24px; background: var(--bg-soft); }
.news-featured__card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.news-featured__media {
  background: var(--bg-soft); min-height: 320px; aspect-ratio: auto;
}
.news-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured__copy {
  padding: 36px 36px; display: flex; flex-direction: column;
  gap: 12px; justify-content: center;
}
.news-featured__copy h2 {
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; margin: 0;
}
.news-featured__copy p { color: var(--ink-soft); margin: 0 0 8px; }

@media (max-width: 1000px) {
  .partner-cats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .service-section { padding: 44px 0; }
  .service-section__grid { grid-template-columns: 1fr; gap: 28px; }
  .service-section__grid--reverse > .service-section__media { order: 0; }
  .news-featured__card { grid-template-columns: 1fr; }
  .news-featured__media { min-height: 240px; }
  .news-featured__copy { padding: 26px 24px 30px; }
  .partner-cats { padding: 40px 0; }
}
@media (max-width: 640px) {
  .partner-cats__grid { grid-template-columns: 1fr; }
  .services-nav__chip { font-size: 13.5px; padding: 9px 14px; }
}
