:root {
  --navy-950: #092942;
  --navy-900: #103653;
  --blue-800: #164c73;
  --blue-600: #2678a5;
  --sky-100: #dff3fb;
  --sky-50: #f2fbff;
  --gold-500: #f4bd45;
  --gold-300: #ffd879;
  --berry-600: #a83b61;
  --berry-100: #f8e8ee;
  --ink: #152d3d;
  --muted: #587080;
  --paper: #fffefa;
  --white: #ffffff;
  --border: #d9e6ec;
  --shadow: 0 22px 55px rgba(9, 41, 66, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 250, 0.95);
  border-bottom: 1px solid rgba(22, 76, 115, 0.11);
  backdrop-filter: blur(16px);
}

.announcement {
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.84rem;
}

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

.announcement a {
  color: var(--gold-300);
  font-weight: 700;
  text-decoration: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
}

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

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--berry-600);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--berry-600);
  transition: right 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  right: 0;
}

.primary-nav .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--berry-600);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(168, 59, 97, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 74px 0 105px;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.9) 0 12%, transparent 35%),
    linear-gradient(128deg, var(--sky-50), var(--sky-100));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  left: -190px;
  top: 90px;
  border: 46px solid rgba(244, 189, 69, 0.24);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--berry-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold-500);
}

.eyebrow.light {
  color: var(--gold-300);
}

h1,
h2 {
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(3.25rem, 6vw, 5.75rem);
}

h1 em {
  color: var(--berry-600);
  font-weight: inherit;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.5vw, 4.1rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.2;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 30px;
  color: #35576b;
  font-size: 1.19rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 31px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 12px 25px rgba(9, 41, 66, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 28px rgba(9, 41, 66, 0.26);
}

.button-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(9, 41, 66, 0.22);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 12px 25px rgba(244, 189, 69, 0.2);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-pills li {
  padding: 7px 12px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.63);
  border: 1px solid rgba(22, 76, 115, 0.13);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-art-halo {
  position: absolute;
  z-index: -1;
  width: min(95%, 480px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 46% 54% / 53% 45% 55% 47%;
  box-shadow: 0 30px 80px rgba(22, 76, 115, 0.15);
  animation: drift 9s ease-in-out infinite;
}

.hero-art > img {
  width: min(100%, 470px);
  height: auto;
  filter: drop-shadow(0 24px 22px rgba(9, 41, 66, 0.15));
}

.hero-note {
  position: absolute;
  right: -12px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(22, 76, 115, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-note .heart {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--berry-600);
  border-radius: 50%;
}

.hero-note span:last-child {
  display: grid;
}

.hero-note strong {
  color: var(--navy-950);
  font-size: 0.92rem;
}

.hero-note small {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-edge {
  position: absolute;
  right: -2%;
  bottom: -55px;
  left: -2%;
  height: 100px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.welcome,
.programs,
.legacy,
.get-involved {
  padding: 110px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.large-copy {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.55;
}

.welcome-copy p:last-child {
  color: var(--muted);
}

.mission-section {
  padding: 20px 0 90px;
}

.mission-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 55px;
  padding: 70px 78px;
  color: #dcecf3;
  background:
    radial-gradient(circle at 96% 6%, rgba(244, 189, 69, 0.2) 0 12%, transparent 13%),
    var(--navy-950);
  border-radius: 34px 110px 34px 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mission-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  bottom: -98px;
  border: 28px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.mission-badge {
  width: 140px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 0 0 1px var(--gold-500);
}

.mission-card h2 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--white);
}

.mission-card p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.programs {
  background: #f8fbfc;
}

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

.program-card {
  position: relative;
  min-height: 360px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(9, 41, 66, 0.1);
}

.program-card.featured {
  background: var(--sky-50);
  border-color: #bcddea;
}

.program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 68px;
  border-radius: 17px;
}

.program-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.program-icon.blue {
  color: var(--blue-800);
  background: var(--sky-100);
}

.program-icon.gold {
  color: #8a5b00;
  background: #ffedbd;
}

.program-icon.berry {
  color: var(--berry-600);
  background: var(--berry-100);
}

.card-number {
  position: absolute;
  top: 35px;
  right: 32px;
  color: #b8cad4;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.program-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.support-path {
  padding: 105px 0;
  color: #dcebf3;
  background: var(--blue-800);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 95px;
  align-items: center;
}

.support-copy h2 {
  color: var(--white);
}

.support-copy > p:not(.eyebrow):not(.availability-note) {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.availability-note {
  max-width: 530px;
  margin: 19px 0 0;
  color: #bcd9e7;
  font-size: 0.82rem;
}

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

.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.steps strong {
  display: block;
  margin: 1px 0 2px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.steps p {
  margin-bottom: 0;
  color: #c9e0ea;
}

.legacy {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(22, 76, 115, 0.07) 50%, transparent 50.1%),
    var(--paper);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
  align-items: center;
}

.legacy-visual {
  text-align: center;
}

.legacy-frame {
  position: relative;
  aspect-ratio: 0.9;
  display: grid;
  place-items: center;
  padding: 45px;
  background: var(--berry-100);
  border: 12px solid var(--white);
  border-radius: 48% 48% 22px 22px;
  box-shadow: var(--shadow);
}

.legacy-frame::before,
.legacy-frame::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 21px;
  background: var(--gold-500);
  border-radius: 50%;
}

.legacy-frame::before {
  left: 44%;
}

.legacy-frame::after {
  right: 44%;
}

.legacy-monogram {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--berry-600);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.76);
}

.legacy-frame > span {
  position: absolute;
  bottom: 26px;
  color: var(--berry-600);
  font-weight: 800;
}

.year-start {
  left: 30px;
}

.year-end {
  right: 30px;
}

.legacy-visual > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.legacy-copy p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
}

.legacy-copy blockquote {
  margin: 30px 0 0;
  padding: 6px 0 6px 22px;
  color: var(--navy-900);
  border-left: 4px solid var(--gold-500);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.counties {
  padding: 76px 0;
  background: var(--sky-100);
}

.counties-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.counties h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.county-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
}

.county-list i {
  width: 8px;
  height: 8px;
  background: var(--berry-600);
  border-radius: 50%;
}

.involved-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.involved-actions {
  display: grid;
  gap: 12px;
}

.involved-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.involved-actions a:hover,
.involved-actions a:focus-visible {
  transform: translateX(5px);
  border-color: var(--blue-600);
  box-shadow: 0 10px 24px rgba(9, 41, 66, 0.08);
}

.involved-actions span {
  display: grid;
}

.involved-actions strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.involved-actions small {
  color: var(--muted);
  font-size: 0.85rem;
}

.involved-actions b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--white);
  background: var(--berry-600);
  border-radius: 50%;
}

.contact {
  padding: 0 0 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  padding: 58px 65px;
  color: #d4e8f2;
  background: var(--navy-950);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.contact-copy p:last-child {
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-details a,
.contact-details > div {
  display: grid;
  align-content: center;
  min-height: 98px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  text-decoration: none;
}

.contact-details > div:last-child {
  grid-column: 1 / -1;
}

.contact-label {
  margin-bottom: 4px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 70px 0 26px;
  color: #afc7d4;
  background: #061e30;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.95fr auto;
  gap: 55px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-main > p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 28px;
}

.footer-main nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: 123px;
    right: 0;
    left: 0;
    height: calc(100dvh - 123px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 20px;
    background: var(--paper);
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    justify-self: start;
    margin-top: 20px;
    padding: 13px 21px;
    border-bottom: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-art {
    min-height: 410px;
  }

  .hero-note {
    right: 0;
  }

  .welcome-grid,
  .legacy-grid,
  .involved-grid {
    gap: 65px;
  }

  .mission-card {
    padding: 58px 50px;
  }

  .support-grid {
    gap: 55px;
  }

  .contact-card {
    gap: 45px;
    padding: 50px;
  }
}

@media (max-width: 780px) {
  .announcement-inner {
    justify-content: center;
  }

  .announcement-inner > span {
    display: none;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .primary-nav {
    top: 113px;
    height: calc(100dvh - 113px);
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 105px;
  }

  .hero-grid,
  .welcome-grid,
  .program-grid,
  .support-grid,
  .legacy-grid,
  .counties-inner,
  .involved-grid,
  .contact-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .service-pills {
    justify-content: center;
  }

  .hero-art {
    min-height: 430px;
    order: -1;
  }

  .hero-art > img {
    width: min(82%, 390px);
  }

  .hero-note {
    right: 7%;
    bottom: 15px;
  }

  .welcome,
  .programs,
  .legacy,
  .get-involved {
    padding: 82px 0;
  }

  .welcome-grid,
  .legacy-grid,
  .involved-grid {
    gap: 32px;
  }

  .mission-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 30px;
    border-radius: 28px 68px 28px 28px;
  }

  .mission-badge {
    width: 105px;
    font-size: 1.15rem;
  }

  .program-card {
    min-height: 315px;
  }

  .support-path {
    padding: 80px 0;
  }

  .support-grid {
    gap: 45px;
  }

  .legacy {
    background: var(--paper);
  }

  .legacy-visual {
    max-width: 470px;
    margin-inline: auto;
  }

  .legacy-frame {
    max-height: 510px;
  }

  .county-list {
    justify-content: flex-start;
  }

  .contact-card {
    gap: 32px;
    padding: 40px 28px;
  }

  .footer-main {
    gap: 28px;
    justify-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-art {
    min-height: 355px;
  }

  .hero-note {
    right: 0;
    bottom: 0;
  }

  .hero-note .heart {
    display: none;
  }

  .program-card {
    min-height: auto;
  }

  .program-icon {
    margin-bottom: 46px;
  }

  .legacy-monogram {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }

  .county-list {
    flex-wrap: wrap;
    gap: 12px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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