:root {
  --sfa-navy: #012f6c;
  --sfa-royal-blue: #073583;
  --sfa-lime: #bbe902;
  --sfa-soft-grey: #d0d2d2;
  --sfa-light-grey: #eef0f1;
  --sfa-white: #ffffff;
  --ink: var(--sfa-navy);
  --muted: #526071;
  --paper: var(--sfa-white);
  --surface: var(--sfa-white);
  --line: var(--sfa-soft-grey);
  --green: var(--sfa-royal-blue);
  --green-deep: var(--sfa-navy);
  --gold: var(--sfa-lime);
  --coral: var(--sfa-royal-blue);
  --blue: var(--sfa-light-grey);
  --shadow: 0 18px 48px rgba(1, 47, 108, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--sfa-lime);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(1, 47, 108, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.brand-name {
  max-width: 190px;
  color: currentColor;
  font-size: 0.98rem;
  line-height: 1.05;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav a:not(.nav-donate) {
  opacity: 0.9;
}

.site-nav a.is-active:not(.nav-donate) {
  color: var(--sfa-royal-blue);
  opacity: 1;
}

.nav-donate,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-donate {
  color: var(--ink);
  background: var(--gold);
}

.button.primary {
  color: #fff;
  background: var(--sfa-navy);
}

.button.primary:hover {
  background: var(--sfa-royal-blue);
}

.button:hover,
.nav-donate:hover,
.activity-card a:hover,
.program-preview-card a:hover,
.contact-actions a:hover,
.footer-columns a:hover {
  transform: translateY(-1px);
}

.button.accent,
.accent-button {
  color: var(--sfa-navy);
  background: var(--sfa-lime);
}

.outline-button {
  color: var(--sfa-navy);
  border: 1px solid var(--sfa-navy);
  background: transparent;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle svg,
.program-card svg,
.contact-actions svg,
.credential-card svg,
.compliance-grid svg,
.profile-card svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  min-height: clamp(660px, 88svh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 47, 108, 0.92) 0%, rgba(1, 47, 108, 0.72) 50%, rgba(1, 47, 108, 0.26) 100%),
    linear-gradient(0deg, rgba(1, 47, 108, 0.32), rgba(1, 47, 108, 0.04) 42%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 88px auto 42px;
}

.hero-content {
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sfa-royal-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sfa-lime);
}

.section-kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--sfa-lime);
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(1, 47, 108, 0.58);
  backdrop-filter: blur(14px);
}

.hero-trust-panel p {
  margin: 0 0 8px;
  color: var(--sfa-lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-trust-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.hero-trust-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust-panel li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 750;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--sfa-white);
}

.proof-strip a {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 24px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
  transition: background 160ms ease;
}

.proof-strip a:hover {
  background: var(--sfa-light-grey);
}

.proof-strip a:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip strong {
  color: var(--sfa-navy);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.12;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.page-hero {
  padding: clamp(128px, 15vw, 180px) clamp(20px, 5vw, 64px) clamp(64px, 8vw, 96px);
  color: var(--sfa-white);
  background:
    linear-gradient(90deg, rgba(1, 47, 108, 0.94), rgba(7, 53, 131, 0.82)),
    url("/sfa-community-hero.png") center / cover;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-hero .section-kicker,
.page-hero .section-kicker::after {
  color: var(--sfa-lime);
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.button.light {
  color: var(--sfa-white);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.split,
.story,
.impact,
.donate,
.contact,
.intro-band,
.get-involved-home {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mission-copy {
  display: grid;
  gap: 18px;
}

.intro-band {
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-link-grid a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sfa-navy);
  background: var(--sfa-light-grey);
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease;
}

.quick-link-grid a:hover {
  border-color: var(--sfa-royal-blue);
  background: var(--surface);
}

.story {
  align-items: center;
  background: var(--sfa-light-grey);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-note {
  padding: clamp(28px, 4vw, 42px);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-note span {
  display: block;
  margin-bottom: 14px;
  color: var(--sfa-royal-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-note p {
  color: var(--sfa-navy);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.work-band {
  background: var(--sfa-white);
  color: var(--sfa-navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-band .section-kicker,
.work-band .section p,
.team-band .section-kicker {
  color: var(--sfa-royal-blue);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-cta {
  margin-top: 24px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.program-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-preview-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.program-preview-card i,
.snapshot-grid i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--sfa-navy);
  background: var(--sfa-lime);
}

.program-preview-card svg,
.snapshot-grid svg,
.social-links svg {
  width: 20px;
  height: 20px;
}

.program-preview-card span {
  color: var(--sfa-royal-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.program-preview-card h3 {
  margin: 0;
  color: var(--sfa-navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.program-preview-card a {
  margin-top: auto;
  color: var(--sfa-royal-blue);
  font-weight: 900;
}

.program-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.program-card svg {
  color: var(--gold);
}

.program-card h3,
.management-card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
}

.program-card a {
  align-self: end;
  color: var(--sfa-royal-blue);
  font-weight: 900;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.program-card p,
.team-band p {
  color: var(--muted);
}

.impact {
  background: var(--sfa-light-grey);
}

.impact-panel {
  position: sticky;
  top: 108px;
}

.impact-panel p:last-child {
  margin-top: 22px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step span {
  color: var(--coral);
  font-size: 1.7rem;
  font-weight: 900;
}

.team-band {
  background: var(--blue);
  color: var(--sfa-navy);
}

.activities {
  background: var(--sfa-white);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.activity-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.activity-card.featured {
  grid-column: span 3;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.activity-media {
  min-height: 340px;
  height: 100%;
  background: var(--sfa-light-grey);
}

.activity-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.activity-media.compact {
  min-height: 190px;
  margin: -26px -26px 6px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.activity-media.compact img {
  height: 190px;
  min-height: 190px;
}

.activity-copy {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.activity-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--sfa-navy);
  background: var(--sfa-lime);
}

.activity-icon svg {
  width: 22px;
  height: 22px;
}

.activity-meta {
  margin: 0;
  color: var(--sfa-royal-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-card h3 {
  margin: 0;
  color: var(--sfa-navy);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
}

.activity-card a {
  color: var(--sfa-royal-blue);
  font-weight: 900;
}

.activity-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--sfa-light-grey);
}

.activity-note p {
  font-weight: 800;
  color: var(--sfa-navy);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
}

.info-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.info-panel,
.value-grid article,
.advisor-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.info-panel h3,
.value-grid h3,
.advisor-card h3 {
  margin: 0 0 10px;
  color: var(--sfa-navy);
  font-size: 1.28rem;
}

.pillar-grid {
  display: grid;
  gap: 18px;
}

.pillar-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.pillar-card h2 {
  margin: 0;
  color: var(--sfa-navy);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.pillar-card h3 {
  margin: 6px 0 -4px;
  color: var(--sfa-royal-blue);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-story-links {
  display: grid;
  gap: 8px;
}

.related-story-links a {
  color: var(--sfa-royal-blue);
  font-weight: 900;
}

.story-featured-image {
  padding-bottom: 0;
}

.story-featured-image figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.story-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-featured-image figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.program-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.program-link-grid a {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--sfa-navy);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.program-link-grid svg {
  flex: 0 0 auto;
  color: var(--sfa-royal-blue);
}

.story-body {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.story-body article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.story-body h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.accountability-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.accountability-list article {
  padding: 24px;
  border-radius: 8px;
  background: var(--sfa-light-grey);
}

.accountability-list h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--sfa-royal-blue);
}

.partner-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-columns > article {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.snapshot-grid img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.snapshot-grid h3 {
  margin: 0 0 8px;
}

.accountability-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 88px);
  background: var(--sfa-light-grey);
}

.get-involved-home {
  align-items: center;
  color: var(--sfa-white);
  background: var(--sfa-navy);
}

.get-involved-home .section-kicker,
.get-involved-home h2,
.get-involved-home p {
  color: var(--sfa-white);
}

.get-involved-home .section-kicker::after {
  background: var(--sfa-lime);
}

.cta-stack {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(360px, 100%);
}

.get-involved-home .outline-button {
  color: var(--sfa-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: inherit;
  font-weight: 850;
}

.social-links.home {
  margin-top: 24px;
}

.social-links.footer {
  margin-top: 16px;
}

.social-links.footer a {
  color: var(--sfa-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.management-card,
.board-panel {
  display: grid;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.management-card {
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.role-label {
  margin: 0;
  color: var(--sfa-royal-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.board-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--sfa-navy);
  background: var(--sfa-light-grey);
  font-weight: 800;
}

.avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--sfa-navy);
  background: var(--sfa-lime);
  font-weight: 900;
}

.governance {
  background: var(--paper);
}

.governance .section-heading p {
  max-width: 760px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.authority-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 0.55fr);
  gap: 24px;
  align-items: center;
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(1, 47, 108, 0.08);
}

.authority-card a {
  display: grid;
  min-height: 156px;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sfa-white);
}

.authority-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.authority-card h3,
.profile-card h3,
.focus-panel h3 {
  margin: 10px 0 10px;
  color: var(--sfa-navy);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.authority-card p {
  color: var(--muted);
}

.legal-profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.profile-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.profile-card svg {
  color: var(--sfa-royal-blue);
}

.profile-card dl,
.credential-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.profile-card dl div,
.credential-card dl div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.profile-card dt,
.credential-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card dd,
.credential-card dd {
  margin: 0;
  color: var(--sfa-navy);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 18px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 8px;
  color: var(--sfa-white);
  background: var(--sfa-navy);
}

.focus-panel .section-kicker,
.focus-panel p,
.focus-panel h3 {
  color: var(--sfa-white);
}

.focus-panel .section-kicker::after {
  background: var(--sfa-lime);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  min-height: 315px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 33, 30, 0.07);
}

.credential-card svg {
  color: var(--green);
}

.credential-card h3,
.governance-details h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
}

.credential-card p,
.governance-details p {
  color: var(--muted);
}

.governance-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.governance-details article {
  padding: 26px;
  border-radius: 8px;
  background: var(--sfa-light-grey);
}

.advisor-list {
  columns: 2;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--sfa-navy);
  font-weight: 750;
}

.advisor-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.involvement-pathways {
  background: var(--surface);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sfa-light-grey);
}

.pathway-card h3 {
  margin: 0;
  color: var(--sfa-navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.pathway-card p {
  color: var(--muted);
}

.pathway-card .clean-list {
  align-self: end;
  margin-top: 6px;
  color: var(--sfa-navy);
  font-weight: 800;
}

.donate {
  align-items: center;
  background: var(--surface);
}

.donate p {
  margin-top: 18px;
  max-width: 650px;
}

.donate .button {
  justify-self: end;
  box-shadow: var(--shadow);
}

.join {
  background: var(--sfa-light-grey);
}

.join-form {
  display: grid;
  gap: 20px;
  max-width: 980px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 33, 30, 0.07);
}

.form-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: clamp(22px, 4vw, 44px);
  max-width: 980px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 33, 30, 0.07);
}

.form-card h3 {
  margin: 0 0 14px;
  color: var(--sfa-navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.form-card h2 {
  margin: 6px 0 16px;
  color: var(--sfa-navy);
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  line-height: 1.05;
}

.form-card.live-form h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.form-card .clean-list {
  margin: 0;
}

.form-card-action {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  color: var(--sfa-white);
  background: var(--sfa-navy);
}

.form-card-action p {
  color: rgba(255, 255, 255, 0.78);
}

.form-card-action .form-note {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.form-card-action code {
  color: var(--sfa-lime);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.join-form label {
  display: grid;
  gap: 8px;
}

.join-form label span {
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--sfa-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.join-form textarea {
  resize: vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  outline: 3px solid rgba(187, 233, 2, 0.34);
  border-color: var(--gold);
}

.message-field {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 520px;
  font-size: 0.94rem;
}

.faq {
  background: var(--sfa-white);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.06);
}

.faq-list h3,
.compliance-grid h3 {
  margin: 0 0 10px;
  color: var(--sfa-navy);
  font-size: 1.2rem;
}

.compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(32px, 6vw, 88px);
  background: var(--sfa-light-grey);
}

.compliance-grid {
  display: grid;
  gap: 16px;
}

.compliance-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(1, 47, 108, 0.07);
}

.compliance-grid svg {
  margin-bottom: 14px;
  color: var(--sfa-royal-blue);
}

.contact {
  background: var(--sfa-light-grey);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sfa-navy);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: color 160ms ease, padding-left 160ms ease;
}

.contact-actions a:hover {
  padding-left: 8px;
  color: var(--sfa-royal-blue);
}

.social-soon {
  min-height: 56px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 7vw, 72px) clamp(20px, 5vw, 64px) 28px;
  color: #fff;
  background: var(--sfa-navy);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand > div {
  min-width: 0;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
}

.footer-brand h2 {
  margin: 0 0 6px;
  max-width: 330px;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns h3 {
  margin: 0 0 6px;
  color: var(--sfa-lime);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a,
.footer-links a {
  color: var(--sfa-white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(32px, 8vw, 92px);
  background: var(--paper);
}

.not-found img {
  width: 84px;
  height: 84px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
}

.not-found p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.support-help {
  background: var(--surface);
}

.support-help-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.support-help-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sfa-light-grey);
}

.support-help-grid h3 {
  margin: 0;
  color: var(--sfa-navy);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.08;
}

.support-help-grid article:hover,
.pathway-card:hover,
.activity-card:hover,
.value-grid article:hover {
  border-color: rgba(7, 53, 131, 0.32);
  box-shadow: 0 14px 34px rgba(1, 47, 108, 0.08);
}

.activity-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.activity-card:hover {
  transform: translateY(-2px);
}

.story-cta .cta-stack {
  justify-self: end;
}

.donor-ready {
  background: var(--surface);
}

.donor-contact {
  background: var(--sfa-light-grey);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 10px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-donate {
    justify-content: center;
    margin-top: 4px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    max-width: 140px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 40px));
    margin: 92px auto 38px;
  }

  .hero-content {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 3.45rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-trust-panel {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip a {
    min-height: 106px;
    padding: 22px 20px;
  }

  .proof-strip a:nth-child(2) {
    border-right: 0;
  }

  .split,
  .story,
  .impact,
  .donate,
  .contact,
  .intro-band,
  .get-involved-home,
  .compliance {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .program-preview-grid,
  .support-help-grid,
  .activity-grid,
  .activity-card.featured,
  .program-link-grid,
  .pathway-grid,
  .form-card,
  .credential-grid,
  .authority-grid,
  .authority-card,
  .legal-profile,
  .focus-panel,
  .focus-list,
  .governance-details,
  .team-layout,
  .partner-columns,
  .snapshot-grid,
  .accountability-snapshot,
  .form-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .board-list {
    grid-template-columns: 1fr;
  }

  .advisor-list {
    columns: 1;
  }

  .impact-panel {
    position: static;
  }

  .donate .button {
    justify-self: start;
  }

  .activity-media,
  .activity-media img {
    min-height: 250px;
  }

  .activity-card.featured {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }

  .activity-card.featured .activity-media,
  .activity-card.featured .activity-copy {
    width: 100%;
    max-width: 100%;
  }

  .cta-stack {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero {
    min-height: 92svh;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.2vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(1, 47, 108, 0.86) 0%, rgba(1, 47, 108, 0.58) 74%, rgba(1, 47, 108, 0.22) 100%);
  }

  .proof-strip,
  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip a {
    border-right: 0;
  }

  .program-preview-card {
    min-height: auto;
    padding: 22px;
  }

  .social-links a {
    min-width: 0;
    flex: 1 1 140px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .management-card {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-brand img {
    width: 56px;
    height: 56px;
  }

  .social-links.footer a {
    flex: 1 1 120px;
  }
}
