:root {
  --navy: #223d63;
  --navy-deep: #18314f;
  --blue: #7fa8c9;
  --blue-soft: #dbeaf5;
  --blue-faint: #edf5fb;
  --cream: #f6f4ef;
  --sand: #ebe6dd;
  --white: #ffffff;
  --text: #30435a;
  --muted: #4f6278;
  --success: #7aa66d;
  --success-deep: #658c5b;
  --blue-action: #456a8f;
  --blue-action-hover: #38587a;
  --success-action: #53764a;
  --success-action-hover: #45623d;
  --border: rgba(34, 61, 99, 0.12);
  --border-strong: rgba(34, 61, 99, 0.18);
  --shadow: 0 22px 52px rgba(18, 33, 56, 0.11);
  --shadow-soft: 0 14px 30px rgba(18, 33, 56, 0.08);
  --shadow-lg: 0 34px 84px rgba(16, 30, 55, 0.2);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
  --section-pad: 64px;
  --section-pad-mobile: 48px;
  --wave-divider-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1325' height='126' viewBox='0 0 1325 126'%3E%3Cpath d='M18 33C131 10 244 10 357 33S583 56 696 33 922 10 1035 33 1261 56 1307 33' fill='none' stroke='%237FA8C9' stroke-width='11' stroke-linecap='round'/%3E%3Cpath d='M18 84C131 61 244 61 357 84S583 107 696 84 922 61 1035 84 1261 107 1307 84' fill='none' stroke='%237FA8C9' stroke-width='11' stroke-linecap='round'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.donation-modal-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 61, 99, 0.22);
  outline-offset: 3px;
}

.page-shell {
  width: min(100%, 1380px);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 30, 45, 0.08);
  overflow: hidden;
  position: relative;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.92);
}

.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;
}

.donation-launchers {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(247, 250, 253, 0.98) 100%);
  border-bottom: 1px solid rgba(34, 61, 99, 0.08);
  box-shadow: 0 12px 28px rgba(18, 33, 56, 0.06);
}

.site-header .container {
  width: min(calc(100% - 56px), 1320px);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.5vw, 26px);
  min-height: 84px;
  padding: 10px 0;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-left {
  justify-content: flex-start;
  padding-right: clamp(14px, 1.4vw, 26px);
}

.header-center {
  justify-content: center;
  width: 100%;
}

.header-right {
  justify-content: flex-end;
  padding-left: clamp(14px, 1.4vw, 26px);
}

.header-nav {
  min-width: 0;
  width: 100%;
}

.header-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.1vw, 18px);
  min-width: 0;
}

.header-nav-links > a,
.header-nav-parent {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  padding: 5px 0;
  border-radius: 0;
  color: rgba(34, 61, 99, 0.88);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  position: relative;
  line-height: 1.1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition), opacity var(--transition);
}

.header-nav-group {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-nav-parent-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-nav-parent {
  gap: 8px;
}

.header-subnav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 61, 99, 0.14);
  border-radius: 14px;
  background: rgba(127, 168, 201, 0.08);
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.header-subnav-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform var(--transition);
}

.header-subnav-toggle:hover,
.header-subnav-toggle:focus-visible {
  background: rgba(127, 168, 201, 0.14);
  border-color: rgba(34, 61, 99, 0.22);
  box-shadow: 0 0 0 4px rgba(127, 168, 201, 0.18);
  transform: translateY(-1px);
}

.header-nav-parent::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  opacity: 0.72;
  order: 2;
  transition: transform var(--transition), opacity var(--transition);
}

.header-nav-links > a::after,
.header-nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 168, 201, 0) 0%, rgba(127, 168, 201, 0.92) 50%, rgba(127, 168, 201, 0) 100%);
  opacity: 0;
  transform: scaleX(0.58);
  transition: opacity var(--transition), transform var(--transition);
}

.header-nav-links > a:hover,
.header-nav-links > a:focus-visible,
.header-nav-parent:hover,
.header-nav-parent:focus-visible {
  color: var(--navy-deep);
  opacity: 0.92;
}

.header-nav-links > a.is-active,
.header-nav-parent.is-active,
.header-nav-group.is-active-group .header-nav-parent {
  color: var(--navy-deep);
}

.header-nav-links > a:hover::after,
.header-nav-links > a:focus-visible::after,
.header-nav-links > a.is-active::after,
.header-nav-parent:hover::after,
.header-nav-parent:focus-visible::after,
.header-nav-parent.is-active::after,
.header-nav-group.is-active-group .header-nav-parent::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-nav-group:hover .header-nav-parent::before,
.header-nav-group:focus-within .header-nav-parent::before {
  opacity: 1;
  transform: rotate(225deg) translateY(-1px);
}

.header-subnav {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 240px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 251, 0.98) 100%);
  border: 1px solid rgba(34, 61, 99, 0.08);
  box-shadow: 0 20px 40px rgba(17, 33, 55, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 30;
}

.header-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(127, 168, 201, 0.08);
  color: rgba(34, 61, 99, 0.9);
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.25;
  white-space: normal;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-subnav a:hover,
.header-subnav a:focus-visible,
.header-subnav a.is-active {
  background: rgba(127, 168, 201, 0.16);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.header-nav-group:hover .header-subnav,
.header-nav-group:focus-within .header-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(34, 61, 99, 0.14);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 245, 251, 0.96) 100%);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(18, 33, 56, 0.08);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(34, 61, 99, 0.22);
  box-shadow: 0 16px 28px rgba(18, 33, 56, 0.1);
}

.menu-toggle-lines {
  display: grid;
  gap: 5px;
}

.menu-toggle-lines span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.menu-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 144px;
  aspect-ratio: 320 / 213;
  line-height: 0;
}

.header-brand .brand-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: width var(--transition), transform var(--transition);
}

.brand-picture {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 213;
}

.header-actions,
.button-row,
.mini-tags,
.section-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-20,
.icon-shell svg,
.faq-toggle-icon svg,
.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 20px;
}

.brand-box {
  width: min(100%, 340px);
  display: block;
  aspect-ratio: 320 / 213;
  line-height: 0;
}

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

.footer-brand .brand-box {
  width: min(100%, 300px);
}

.header-actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), min-height var(--transition), padding var(--transition), font-size var(--transition);
}

.header-nav-actions {
  display: none;
}

.site-header.menu-open {
  box-shadow: 0 18px 42px rgba(18, 33, 56, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue-action);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(69, 106, 143, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-action-hover);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid rgba(127, 168, 201, 0.65);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue-faint);
}

.btn-soft {
  background: rgba(24, 49, 79, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: rgba(24, 49, 79, 0.84);
}

.btn-success {
  background: var(--success-action);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(83, 118, 74, 0.28);
}

.btn-success:hover,
.btn-success:focus-visible {
  background: var(--success-action-hover);
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.96), 0 0 0 6px rgba(34, 61, 99, 0.24);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn:disabled::after {
  display: none;
}

.site-header.is-condensed {
  box-shadow: 0 10px 24px rgba(18, 33, 56, 0.08);
}

.site-header.is-condensed .header-actions .btn {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.72rem;
}

.site-header.is-condensed .header-brand .brand-logo {
  transform: scale(0.9);
}

.hero,
.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay, linear-gradient(90deg, rgba(24, 49, 79, 0.82) 0%, rgba(24, 49, 79, 0.56) 38%, rgba(24, 49, 79, 0.22) 100%)),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(127, 168, 201, 0.22), transparent 28%);
  pointer-events: none;
  z-index: 1;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position, center);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: end;
}

.hero-layout,
.page-hero-inner {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: 64px 0 104px;
}

.page-hero-inner {
  padding: 62px 0 86px;
  max-width: 860px;
}

.hero-copy {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(24, 49, 79, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.page-hero .eyebrow,
.section-header .section-kicker,
.stack-copy > .section-kicker,
.panel-copy > .section-kicker,
.cta-copy > .section-kicker,
.faq-toggle-label,
.board-toggle-label {
  display: none;
}

.hero-copy h1,
.page-hero h1,
.section-title,
.story-copy h2,
.cta-copy h2,
.newsletter-copy h3,
.panel-title,
.faq-question-text,
.profile-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy);
}

.hero-copy h1,
.page-hero h1 {
  color: var(--white);
  line-height: 0.92;
  margin: 0 0 12px;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.hero-copy h2,
.page-hero p {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  margin: 0 0 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  max-width: 760px;
}

.page-hero p {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.14;
  max-width: 760px;
}

.hero-copy .lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.07rem;
  overflow-wrap: anywhere;
}

.hero-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  max-width: 720px;
  margin-top: 4px;
}

.hero-cloud .mini-tag,
.hero-cloud .btn {
  flex: 0 0 auto;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  text-align: center;
}

.surface-card,
.path-card,
.stat-card,
.feature-card,
.story-card,
.tier-card,
.resource-card,
.profile-card,
.placeholder-card,
.info-card,
.newsletter,
.disclosure-card,
.contact-card,
.volunteer-band,
.giving-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.newsletter-copy h3,
.story-copy h2,
.cta-copy h2,
.contact-card h3,
.panel-title {
  margin: 0 0 12px;
  line-height: 1;
}

.section-copy,
.card-copy,
.path-card p,
.feature-card p,
.story-card p,
.tier-card p,
.resource-card p,
.profile-card p,
.placeholder-card p,
.info-card p,
.contact-card p,
.newsletter-copy p,
.faq-answer,
.helper-text {
  color: var(--muted);
}

.section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-header {
  max-width: 840px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-navy .section-kicker,
.cta-copy .section-kicker {
  color: #c7dcef;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.section-navy .section-title,
.cta-copy h2 {
  color: var(--white);
}

.section-navy .section-copy,
.cta-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.section-copy {
  margin: 0;
  font-size: 1.02rem;
}

.section-actions {
  margin-top: 18px;
}

.section-actions-centered {
  justify-content: center;
}

.wave-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.wave-divider::before {
  content: "";
  width: min(100%, 760px);
  aspect-ratio: 1325 / 126;
  background: center / contain no-repeat var(--wave-divider-svg);
}

.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(34, 61, 99, 0.08);
  border-bottom: 1px solid rgba(34, 61, 99, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  padding: 26px 24px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  position: relative;
}

.stat-card + .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(34, 61, 99, 0.12);
}

.stat-value {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-text {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-layout,
.two-column,
.cta-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.stack-copy,
.story-copy,
.cta-copy,
.contact-stack,
.panel-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.stack-copy p,
.story-copy p,
.contact-stack p,
.panel-copy p {
  margin: 0;
  color: var(--muted);
}

.media-frame,
.media-tall,
.story-photo,
.profile-photo,
.placeholder-photo,
.cta-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(127, 168, 201, 0.18), rgba(34, 61, 99, 0.08));
  border: 1px solid rgba(34, 61, 99, 0.08);
}

.media-frame {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.media-tall {
  min-height: 500px;
  box-shadow: var(--shadow);
}

.story-photo {
  aspect-ratio: 4 / 3;
}

.cta-photo {
  min-height: 360px;
  box-shadow: var(--shadow);
}

.media-frame img,
.media-tall img,
.story-photo img,
.profile-photo img,
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(24, 49, 79, 0.14);
}

.summary-grid,
.feature-grid,
.path-grid,
.step-grid,
.tier-grid,
.resource-grid,
.story-grid,
.profile-grid,
.faq-list,
.board-summary-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.summary-grid.home-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}

.summary-grid > *,
.feature-grid > *,
.path-grid > *,
.step-grid > *,
.tier-grid > *,
.resource-grid > *,
.story-grid > *,
.profile-grid > *,
.board-summary-grid > * {
  min-width: 0;
}

.summary-grid,
.feature-grid,
.path-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mission-values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.mission-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-inline: auto;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tier-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.profile-grid {
  grid-template-columns: repeat(3, 1fr);
}

.surface-card,
.path-card,
.feature-card,
.story-card,
.tier-card,
.resource-card,
.profile-card,
.placeholder-card,
.info-card,
.contact-card,
.giving-summary,
.volunteer-band {
  padding: 24px;
}

.summary-card,
.feature-card,
.resource-card {
  display: grid;
  gap: 16px;
  align-content: start;
  height: 100%;
}

.contact-card,
.info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-content: stretch;
  height: 100%;
}

.summary-card-centered {
  text-align: center;
  justify-items: center;
}

.summary-card-centered .icon-shell {
  margin-inline: auto;
}

.icon-shell {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-faint);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(127, 168, 201, 0.2);
}

.card-title,
.path-title,
.step-card h3,
.story-card h3,
.resource-card h3,
.tier-card h3,
.faq-question-text,
.profile-name,
.contact-card h3,
.summary-card h3,
.feature-card h3,
.info-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1;
}

.summary-card h3,
.feature-card h3,
.path-title,
.resource-card h3,
.story-card h3,
.contact-card h3,
.info-card h3 {
  font-size: 1.95rem;
}

.card-title-sm {
  font-size: 1.55rem;
}

.summary-card p,
.feature-card p,
.path-card p,
.contact-card p,
.info-card p,
.story-card p,
.resource-card p,
.tier-card p {
  margin: 0;
}

.path-card {
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(127, 168, 201, 0.12), transparent 34%);
  pointer-events: none;
}

.path-card > * {
  position: relative;
  z-index: 1;
}

.path-link,
.text-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid rgba(127, 168, 201, 0.46);
  background: linear-gradient(180deg, #ffffff 0%, #edf5fb 100%);
  box-shadow: 0 12px 24px rgba(34, 61, 99, 0.1);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.84rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  align-self: flex-start;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.path-link::after,
.text-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 45%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.path-link:hover,
.path-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  background: linear-gradient(180deg, #fdfefe 0%, #e3eef8 100%);
  color: var(--navy);
  border-color: rgba(127, 168, 201, 0.72);
  box-shadow: 0 16px 30px rgba(34, 61, 99, 0.14);
  transform: translateY(-2px);
}

.path-link:hover::after,
.path-link:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(120%);
}

.disclosure-toggle:focus-visible {
  background: rgba(237, 245, 251, 0.64);
}

.step-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(127, 168, 201, 0.18);
}

.step-card p,
.giving-summary p {
  margin: 0;
}

.giving-summary {
  background: linear-gradient(180deg, #fafdff 0%, #f2f8fd 100%);
  border: 1px solid rgba(127, 168, 201, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.giving-summary-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.giving-summary strong {
  display: block;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.giving-summary small,
.giving-note {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 16px;
  background: rgba(127, 168, 201, 0.18);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(24, 49, 79, 0.1);
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue) 0%, var(--success) 100%);
}

.tier-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.tier-card.featured {
  border-color: rgba(122, 166, 109, 0.4);
  box-shadow: 0 24px 48px rgba(122, 166, 109, 0.16);
}

.impact-grid {
  gap: 20px;
}

.impact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(127, 168, 201, 0.26);
  box-shadow: 0 20px 40px rgba(18, 33, 56, 0.09);
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, rgba(127, 168, 201, 0.3) 0%, rgba(127, 168, 201, 0.95) 52%, rgba(127, 168, 201, 0.3) 100%);
}

.impact-card.featured::before {
  background: linear-gradient(90deg, rgba(122, 166, 109, 0.35) 0%, rgba(122, 166, 109, 0.95) 52%, rgba(122, 166, 109, 0.35) 100%);
}

.impact-card-title {
  font-size: 1.88rem;
}

.impact-card-copy {
  flex: 1 1 auto;
  margin: 0;
}

.impact-card .btn {
  width: 100%;
  margin-top: auto;
}

.tier-label,
.profile-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(127, 168, 201, 0.12);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-amount {
  font-size: 2.3rem;
  line-height: 1;
  color: var(--navy);
  font-weight: 800;
}

.tier-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tier-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.tier-list li::before {
  content: "\2022";
  color: var(--success);
  font-weight: 900;
}

.tier-card .btn,
.story-card .text-link,
.path-card .path-link,
.info-card .text-link,
.contact-card .text-link {
  margin-top: auto;
}

.resource-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.resource-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.resource-card .text-link {
  margin-top: auto;
}

.path-card p,
.info-card p,
.contact-card p,
.story-body p,
.resource-card > div:last-child p {
  flex: 1 1 auto;
}

.story-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.summary-card h3,
.feature-card h3,
.path-title,
.story-card h3,
.resource-card h3,
.tier-card h3,
.profile-name,
.board-toggle-title,
.faq-question-text,
.impact-card-title {
  overflow-wrap: anywhere;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  flex: 1;
}

.volunteer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #f8fbff 0%, #edf5fb 100%);
}

.volunteer-band p,
.volunteer-band ul {
  margin: 0;
  color: var(--muted);
}

.volunteer-points {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.volunteer-points li {
  display: flex;
  gap: 10px;
}

.volunteer-points li::before {
  content: "\2022";
  color: var(--success);
  font-weight: 900;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #214267 0%, #6f99bc 100%);
  color: var(--white);
  isolation: isolate;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.cta-banner::before {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -70px;
}

.cta-banner::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -50px;
}

.cta-layout {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
}

.cta-copy p {
  margin: 0;
  max-width: 640px;
}

.disclosure-stack,
.faq-groups {
  display: grid;
  gap: 24px;
}

.faq-group {
  display: grid;
  gap: 14px;
}

.faq-group-header h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.faq-group-header p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-compact {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

.disclosure-card {
  overflow: hidden;
}

.disclosure-toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle-text {
  display: grid;
  gap: 6px;
}

.faq-question-text {
  font-size: 1.6rem;
}

.faq-toggle-label,
.board-toggle-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
}

.faq-toggle-icon,
.board-toggle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-faint);
  color: var(--navy);
  transition: transform var(--transition), background var(--transition);
  flex: 0 0 40px;
}

.disclosure.open .faq-toggle-icon,
.disclosure.open .board-toggle-icon {
  transform: rotate(45deg);
  background: rgba(127, 168, 201, 0.24);
}

.disclosure-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.disclosure-panel[hidden] {
  display: none;
}

.disclosure.open .disclosure-panel {
  grid-template-rows: 1fr;
}

.disclosure-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.faq-expand {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.faq-more {
  width: 100%;
}

.faq-more[hidden] {
  display: none;
}

.faq-more-toggle {
  min-width: 240px;
}

.board-disclosures {
  display: grid;
  gap: 16px;
}

.board-toggle {
  padding: 22px 24px;
}

.board-toggle-copy {
  display: grid;
  gap: 8px;
}

.board-toggle-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.board-toggle-meta {
  margin: 0;
  color: var(--muted);
}

.board-status-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(237, 245, 251, 0.8);
  border: 1px solid rgba(127, 168, 201, 0.24);
  color: var(--muted);
}

.board-panel {
  padding: 0 24px 24px;
}

.board-panel .profile-grid {
  margin-top: 6px;
}

.board-placeholder-shell {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px 20px;
  border-radius: 22px;
  border: 1px dashed rgba(127, 168, 201, 0.52);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.board-expand-note {
  margin: 0;
  color: var(--muted);
}

.board-placeholder-grid {
  margin-top: 4px;
}

.board-placeholder-grid[hidden] {
  display: none;
}

.profile-card,
.placeholder-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
}

.profile-photo,
.placeholder-photo {
  aspect-ratio: 4 / 5;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(180deg, #fafdff 0%, #edf5fb 100%);
}

.placeholder-photo span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  opacity: 0.72;
}

.profile-meta {
  display: grid;
  gap: 10px;
}

.profile-name {
  font-size: 2rem;
}

.profile-role {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.placeholder-card {
  border-style: dashed;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.contact-grid {
  align-items: start;
}

.contact-hub {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
}

.contact-form-stage-centered {
  justify-content: center;
  min-height: 0;
}

.contact-card,
.info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-stage {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(34, 61, 99, 0.12);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(24, 49, 79, 0.68) 0%, rgba(24, 49, 79, 0.44) 42%, rgba(24, 49, 79, 0.24) 100%),
    url("../images/family-produce-aisle-960.jpg") center / cover no-repeat;
}

.contact-form-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(127, 168, 201, 0.12) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.2), transparent 26%);
  pointer-events: none;
}

.contact-form-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 22px 44px rgba(18, 33, 56, 0.18);
  backdrop-filter: blur(12px) saturate(120%);
}

.contact-form-shell-wide {
  width: min(100%, 760px);
}

.contact-form-copy {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(237, 245, 251, 0.9);
  border: 1px solid rgba(127, 168, 201, 0.28);
}

.field label {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(34, 61, 99, 0.16);
  outline: none;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5.25 7 9l4-3.75' fill='none' stroke='%23223d63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-right: 48px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(127, 168, 201, 0.2);
}

.field-checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 4px 0 0;
  padding: 0;
  border-radius: 5px;
  border: 1px solid rgba(34, 61, 99, 0.22);
  box-shadow: none;
  accent-color: var(--navy);
}

.field-checkbox label {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.helper-text {
  font-size: 0.92rem;
  margin: -2px 0 0;
}

.form-status {
  margin: 0;
  min-height: 1.45em;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--success-deep);
}

.form-status.is-error {
  color: #a63a3a;
}

.newsletter {
  padding: 26px;
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form .form-row {
  grid-template-columns: repeat(2, 1fr);
}

.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(34, 61, 99, 0.16);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.newsletter-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(127, 168, 201, 0.16);
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(34, 61, 99, 0.1);
  transition: transform var(--transition), background var(--transition);
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-faint);
}

footer {
  background: #f5f8fb;
  border-top: 1px solid rgba(34, 61, 99, 0.08);
  padding: 34px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
  align-items: start;
}

.footer-brand {
  display: block;
  min-width: 0;
}

.footer-statement {
  width: 100%;
  margin: 18px 0 14px;
}

.footer-brand-copy {
  margin: 0;
  max-width: min(100%, 90ch);
  line-height: 1.6;
}

.footer-brand-copy,
.footer-col p,
.footer-col a,
.footer-note {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.footer-col p {
  margin: 0 0 4px;
}

.footer-col p:last-of-type {
  margin-bottom: 0;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--navy);
}

.footer-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 61, 99, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 12px;
}

.data-snapshot-grid,
.data-chart-grid,
.data-note-grid,
.data-county-grid {
  display: grid;
  gap: 20px;
}

.data-snapshot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.data-chart-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.data-note-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.data-county-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.data-chart-card,
.data-gap-card,
.data-county-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(127, 168, 201, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.data-chart-card h3,
.data-gap-card h3,
.data-county-card h3 {
  margin: 0 0 8px;
}

.data-chart-intro,
.data-gap-card p,
.data-county-card p,
.data-source {
  color: var(--muted);
}

.data-chart-list,
.data-gap-metrics {
  display: grid;
  gap: 16px;
}

.data-chart-row,
.data-gap-row {
  display: grid;
  gap: 8px;
}

.data-chart-head,
.data-gap-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--navy);
  font-weight: 700;
}

.data-chart-head strong,
.data-gap-head strong {
  font-size: 1rem;
  white-space: nowrap;
}

.data-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(127, 168, 201, 0.18);
  overflow: hidden;
}

.data-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy-deep) 0%, #3e648d 100%);
}

.data-fill-soft {
  background: linear-gradient(90deg, #7fa8c9 0%, #a9c8df 100%);
}

.data-callout {
  display: grid;
  gap: 16px;
}

.data-callout p {
  margin: 0;
}

.data-inline-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(127, 168, 201, 0.09);
  border: 1px solid rgba(127, 168, 201, 0.18);
  color: var(--navy);
}

.data-metric-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.data-metric-block {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(127, 168, 201, 0.18);
}

.data-metric-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.data-metric-block span {
  color: var(--muted);
  font-size: 0.93rem;
}

.data-county-card .section-kicker {
  margin-bottom: 8px;
}

.data-county-metric {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.data-county-metric strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.data-source {
  margin-top: 18px;
  font-size: 0.9rem;
}

.data-source-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.data-table {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.data-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(34, 61, 99, 0.1);
}

.data-table-row:first-child {
  padding-top: 0;
  border-top: none;
}

.data-table-label {
  display: grid;
  gap: 4px;
}

.data-table-label strong {
  color: var(--navy);
  font-size: 1rem;
}

.data-table-label span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.data-table-value {
  color: var(--navy-deep);
  font-size: 1.18rem;
  font-weight: 800;
  white-space: nowrap;
}

.data-table-source {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.data-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.references-disclosure {
  max-width: 920px;
  margin: 0 auto;
}

.references-disclosure .disclosure-toggle {
  padding-top: 20px;
  padding-bottom: 20px;
}

.references-disclosure .faq-toggle-label {
  margin-bottom: 2px;
}

.data-source-list a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-food-data .section-kicker,
.page-food-data .faq-toggle-label {
  color: var(--blue-action);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.donation-section {
  scroll-margin-top: 116px;
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.donation-layout-centered {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.donation-shell {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(127, 168, 201, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.donation-shell-centered {
  gap: 20px;
}

.donation-copy {
  display: grid;
  gap: 16px;
}

.donation-copy p,
.donation-copy ul {
  margin: 0;
  color: var(--muted);
}

.donation-points {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.donation-points li {
  display: flex;
  gap: 10px;
}

.donation-points li::before {
  content: "\2022";
  color: var(--success);
  font-weight: 900;
}

.donation-frame {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(219, 234, 245, 0.66) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(34, 61, 99, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

#fr-placed-form-container-48118 {
  width: 100%;
  min-height: 220px;
  margin: 0 auto;
  display: block;
}

#fr-placed-form-container-48118.has-embed {
  min-height: clamp(720px, 82vh, 860px);
}

#fr-placed-form-container-48118 iframe {
  display: block;
  width: 100%;
  min-height: clamp(720px, 82vh, 860px);
  height: clamp(720px, 82vh, 860px);
  margin: 0 auto;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.donation-fallback {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(127, 168, 201, 0.48);
}

.donation-fallback[hidden] {
  display: none;
}

.donation-fallback p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header .container {
    width: min(calc(100% - 44px), 1320px);
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) 138px minmax(0, 1fr);
    gap: 18px;
  }

  .header-left {
    padding-right: 18px;
  }

  .header-right {
    padding-left: 18px;
  }

  .header-brand {
    width: 138px;
  }

  .header-nav-links {
    gap: 16px;
  }

  .header-nav-links a {
    font-size: 0.84rem;
  }

  .header-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.71rem;
  }

  .summary-grid,
  .feature-grid,
  .path-grid,
  .tier-grid,
  .profile-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-grid.home-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

}

@media (max-width: 1200px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) 138px minmax(0, 1fr);
    gap: 16px;
    min-height: 80px;
    padding: 8px 0;
  }

  .header-menu-toggle {
    display: grid;
  }

  .header-left,
  .header-right {
    padding: 0;
  }

  .header-nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(400px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 251, 0.98) 100%);
    border: 1px solid rgba(34, 61, 99, 0.08);
    box-shadow: 0 26px 46px rgba(17, 33, 55, 0.12);
    z-index: 25;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .site-header.menu-open .header-nav-links {
    display: flex;
  }

  .header-nav-links > a,
  .header-nav-parent {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(127, 168, 201, 0.08);
    font-size: 0.88rem;
  }

  .header-nav-links > a::after,
  .header-nav-parent::after {
    display: none;
  }

  .header-nav-group {
    width: 100%;
    display: grid;
    gap: 8px;
  }

  .header-nav-parent-wrap {
    width: 100%;
    gap: 8px;
  }

  .header-nav-parent {
    flex: 1 1 auto;
  }

  .header-nav-parent::before {
    display: none;
  }

  .header-subnav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-subnav {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 0 14px;
    border: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header-nav-group.is-open .header-subnav {
    display: grid;
  }

  .header-nav-group.is-open .header-subnav-toggle::before {
    transform: rotate(225deg) translateY(-1px);
  }

  .header-subnav a {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(127, 168, 201, 0.14);
    font-size: 0.84rem;
  }

  .header-nav-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(34, 61, 99, 0.08);
  }

  .header-nav-actions .btn {
    flex: 1 1 auto;
  }

  .header-brand {
    width: 138px;
  }

  .header-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) 122px minmax(0, 1fr);
    gap: 12px;
    min-height: 76px;
  }

  .header-brand {
    width: 122px;
  }

  .hero-layout,
  .split-layout,
  .two-column,
  .cta-layout,
  .contact-grid,
  .volunteer-band,
  .donation-layout {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.67rem;
  }

  .stats-grid,
  .step-grid,
  .story-grid,
  .profile-grid,
  .resource-grid,
  .data-brief-grid,
  .data-snapshot-grid,
  .data-county-grid {
    grid-template-columns: 1fr 1fr;
  }

  .summary-grid,
  .feature-grid,
  .path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card + .stat-card::before {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-statement {
    margin: 16px 0 12px;
  }

  .newsletter-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-stage {
    min-height: 520px;
  }

  .contact-form-shell {
    width: 100%;
    margin: 0 auto;
    align-self: center;
  }
}

@media (max-width: 760px) {
  .header-shell {
    display: flex;
    justify-content: flex-start;
    min-height: 72px;
    gap: 8px;
  }

  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    pointer-events: none;
  }

  .header-center .header-brand {
    width: 112px;
    pointer-events: auto;
  }

  .header-left,
  .header-right {
    width: auto;
    flex: 0 0 auto;
    z-index: 1;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    justify-content: flex-end;
    width: 80px;
  }

  .header-actions {
    width: 80px;
    justify-content: flex-end;
    gap: 0;
    overflow: hidden;
  }

  .header-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    justify-content: center;
    padding-inline: 0;
    font-size: 0.64rem;
  }

  .header-actions .btn-outline {
    display: none !important;
  }

  .header-nav-actions {
    flex-direction: column;
  }

  .header-nav-actions .btn {
    width: 100%;
  }

  .data-chart-grid,
  .data-note-grid,
  .data-county-grid,
  .data-snapshot-grid,
  .data-metric-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-shell {
    margin: 0;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header .container {
    width: min(calc(100% - 28px), 1260px);
  }

  .header-shell {
    display: flex;
    justify-content: flex-start;
    min-height: 68px;
    padding: 7px 0;
  }

  .header-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .header-center {
    width: 102px;
  }

  .header-center .header-brand {
    width: 102px;
  }

  .header-right {
    display: none;
  }

  .header-actions .btn {
    min-height: 36px;
    width: 100%;
    min-width: 0;
    padding: 8px 0;
    font-size: 0.58rem;
  }

  .site-header.is-condensed .header-actions .btn {
    min-height: 36px;
    padding: 8px 0;
    font-size: 0.56rem;
  }

  .header-nav-links {
    top: calc(100% + 8px);
    width: auto;
    right: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .page-hero-inner {
    padding: 44px 0 70px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
    line-height: 0.94;
  }

  .hero-copy h2 {
    font-size: 1.52rem;
    line-height: 1.08;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 2.14rem;
    line-height: 1.02;
  }

  .page-hero p {
    font-size: 1.06rem;
    line-height: 1.2;
  }

  .hero-copy .lead {
    font-size: 0.98rem;
  }

  .hero-cloud {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .hero-cloud .btn,
  .hero-cloud .mini-tag {
    width: 100%;
  }

  .button-row,
  .section-actions,
  .cta-actions {
    flex-direction: column;
  }

  .path-link,
  .text-link {
    width: 100%;
    align-self: stretch;
  }

  .summary-grid,
  .feature-grid,
  .path-grid,
  .stats-grid,
  .step-grid,
  .tier-grid,
  .resource-grid,
  .story-grid,
  .profile-grid,
  .data-brief-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid.home-summary {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .surface-card,
  .path-card,
  .feature-card,
  .story-body,
  .tier-card,
  .resource-card,
  .profile-card,
  .placeholder-card,
  .info-card,
  .contact-card,
  .newsletter,
  .disclosure-toggle,
  .board-panel,
  .giving-summary,
  .donation-shell,
  .volunteer-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-card {
    padding: 0;
  }

  .brand-box {
    width: min(100%, 260px);
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-statement {
    margin: 14px 0 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-stage {
    padding: 18px;
    min-height: auto;
  }

  .contact-form-shell {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .donation-frame {
    padding: 12px;
  }

  #fr-placed-form-container-48118.has-embed,
  #fr-placed-form-container-48118 iframe {
    min-height: clamp(680px, 74vh, 780px);
    height: clamp(680px, 74vh, 780px);
  }
}
