:root {
  --plum: #062d55;
  --plum-deep: #012348;
  --plum-soft: #6a997d;
  --gold: #f2b737;
  --gold-soft: #f7dda0;
  --teal: #6a997d;
  --teal-soft: #e2eee7;
  --rose: #9b6b32;
  --ink: #172536;
  --muted: #5f6872;
  --paper: #fffdf8;
  --cream: #f6f3e9;
  --line: #d9ddd9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(1, 35, 72, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  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.6;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(67, 36, 95, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 24px rgba(49, 28, 60, 0.08);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  display: block;
  width: 218px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--plum-deep);
  background: var(--gold);
  border-radius: 50% 50% 50% 12px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.02;
}

.brand-name small {
  margin-top: 3px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  background: var(--cream);
}

nav .nav-cta {
  color: var(--white);
  background: var(--plum);
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  background: var(--plum-deep);
}

section {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  min-height: 720px;
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 770px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.45rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.2rem);
}

.hero-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 10px 24px rgba(67, 36, 95, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--plum-deep);
}

.button-secondary {
  color: var(--plum-deep);
  border-color: var(--line);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--plum-soft);
  background: var(--cream);
}

.founding-note {
  max-width: 660px;
  margin: 25px 0 0;
  padding: 14px 16px;
  color: #5f4a1d;
  background: #fff5d9;
  border-left: 4px solid var(--gold);
  border-radius: 3px 12px 12px 3px;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 48% 48% 24% 40%;
  background:
    radial-gradient(circle at 70% 25%, rgba(242, 183, 55, 0.8) 0 8%, transparent 8.5%),
    radial-gradient(circle at 35% 70%, rgba(106, 153, 125, 0.38), transparent 44%),
    linear-gradient(145deg, #e4edf4, #f7edc9 60%, #e1eee9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% 24%;
  height: 56%;
  border: 48px solid rgba(67, 36, 95, 0.13);
  border-radius: 50%;
}

.sun-orbit {
  position: absolute;
  top: 11%;
  left: 16%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(67, 36, 95, 0.18);
  border-radius: 50%;
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(45, 23, 63, 0.2);
}

.dot-one { top: 10%; left: 17%; }
.dot-two { top: 60%; right: -2%; background: var(--teal); }
.dot-three { bottom: -1%; left: 31%; background: var(--rose); }

.impact-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(45, 23, 63, 0.14);
  backdrop-filter: blur(14px);
}

.impact-main {
  top: 31%;
  left: 12%;
  width: 66%;
  padding: 28px;
  border-radius: 24px;
}

.impact-main strong {
  display: block;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.mini-label,
.result-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.impact-small {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
}

.impact-small span {
  color: var(--rose);
  font-size: 1rem;
}

.impact-food { top: 13%; right: 8%; }
.impact-learn { bottom: 12%; left: 10%; }
.impact-culture { right: 8%; bottom: 24%; }

.programs-section {
  padding: 84px 0 96px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.program-card {
  position: relative;
  grid-column: span 2;
  min-height: 310px;
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.program-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.food-card { --accent: #aa5d26; --accent-soft: #f6e1c7; }
.mentor-card { --accent: var(--teal); --accent-soft: var(--teal-soft); }
.culture-card { --accent: var(--rose); --accent-soft: #f3dce4; }
.resource-card { --accent: var(--plum); --accent-soft: #eadff0; }
.learning-card { --accent: #967019; --accent-soft: #f8e9bd; }

.card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #a69ca8;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.program-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--accent);
  border-radius: 13px;
  font-size: 1.2rem;
  font-weight: 900;
}

.program-card h3 {
  margin-bottom: 10px;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

.program-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.status-tag {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 22px;
  display: inline-flex;
  padding: 6px 9px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.board-section {
  margin-top: 88px;
  padding-top: 78px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.board-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.board-heading h2 {
  margin-bottom: 0;
}

.board-heading > p {
  max-width: 540px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.board-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 290px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(1, 35, 72, 0.07);
}

.youth-card {
  grid-column: 1 / -1;
  border-color: rgba(242, 183, 55, 0.55);
  background: linear-gradient(110deg, #ffffff, #fffaf0);
}

.board-portrait {
  display: block;
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--cream);
  border-radius: 16px;
}

.board-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 22%, rgba(242, 183, 55, 0.4), transparent 20%),
    linear-gradient(145deg, var(--teal), var(--plum));
  text-align: center;
}

.board-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.board-placeholder small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.board-content {
  padding: 6px 4px 4px 0;
}

.board-role {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-content h3 {
  margin-bottom: 12px;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.board-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.58;
}

.action-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(1260px, calc(100% - 40px));
  margin-bottom: 70px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-panel,
.finder-panel {
  padding: clamp(34px, 5vw, 64px);
}

.support-panel {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 10% 90%, rgba(230, 173, 47, 0.18), transparent 34%),
    linear-gradient(150deg, var(--plum), var(--plum-deep));
}

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

.support-intro {
  margin-bottom: 26px;
}

.support-list {
  display: grid;
  gap: 10px;
}

.support-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 16px;
  color: var(--white);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.support-item:hover,
.support-item:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.support-item strong,
.support-item small {
  display: block;
}

.support-item strong {
  font-size: 0.95rem;
}

.support-item small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.support-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--plum-deep);
  background: var(--gold);
  border-radius: 9px;
  font-size: 0.62rem;
  font-weight: 900;
}

.giving-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 24px;
  padding: 15px;
  color: #f8edcf;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  font-size: 0.77rem;
}

.giving-note > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--plum-deep);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 900;
}

.giving-note p {
  margin: 0;
}

.finder-panel {
  background: var(--paper);
}

.finder-heading p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  padding: 7px 10px;
  color: #205e58;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.privacy-pill span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.65rem;
}

.finder-step + .finder-step {
  margin-top: 26px;
}

.finder-step.is-disabled {
  opacity: 0.46;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--plum-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.step-label span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-size: 0.7rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.choice {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  transition: border 150ms ease, background 150ms ease, color 150ms ease;
}

.choice:hover:not(:disabled),
.choice:focus-visible:not(:disabled) {
  border-color: var(--plum-soft);
  background: #f6f0f8;
}

.choice.is-selected {
  color: var(--white);
  border-color: var(--plum);
  background: var(--plum);
}

.choice:disabled {
  cursor: not-allowed;
}

.finder-result {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #d7c6a0;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff8e8, #fffdf8);
}

.finder-result h3 {
  margin: 0 0 9px;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.finder-result > p {
  color: var(--muted);
}

.next-steps {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
}

.next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px 12px;
  background: rgba(230, 173, 47, 0.12);
  border-radius: 10px;
  font-size: 0.82rem;
}

.next-step span:first-child {
  color: var(--teal);
  font-weight: 900;
}

.text-button {
  color: var(--plum);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copy-status {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--teal) !important;
  font-size: 0.75rem;
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 40px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-brand {
  grid-row: span 4;
  align-self: start;
}

.footer-logo {
  width: 245px;
  height: 84px;
}

footer p {
  max-width: 680px;
  margin: 0;
  text-align: right;
}

.footer-contact {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-weight: 800;
}

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

.footer-contact a:hover {
  color: var(--purple);
}

.footer-note,
.privacy-footer {
  color: #766e78;
}

:focus-visible {
  outline: 3px solid rgba(230, 173, 47, 0.78);
  outline-offset: 3px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(700px, 100%);
    min-height: 480px;
    margin-inline: auto;
  }

  .program-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .program-card {
    grid-column: span 2;
  }

  .program-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .board-card {
    grid-template-columns: 140px 1fr;
  }

  .board-portrait {
    width: 140px;
  }

  .action-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 10px 12px;
  }

  .site-logo {
    width: 164px;
    height: 46px;
  }

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

  section,
  footer {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 46px;
    min-height: auto;
    padding: 64px 0 70px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 36% 36% 22% 32%;
  }

  .impact-main {
    top: 29%;
    left: 8%;
    width: 74%;
    padding: 22px;
  }

  .impact-food { top: 11%; right: 5%; }
  .impact-learn { bottom: 10%; left: 5%; }
  .impact-culture { right: 3%; bottom: 25%; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .programs-section {
    padding: 68px 0 76px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card:nth-child(4) {
    grid-column: auto;
    min-height: 270px;
  }

  .board-section {
    margin-top: 64px;
    padding-top: 60px;
  }

  .board-heading,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .board-heading {
    gap: 16px;
  }

  .board-card {
    grid-template-columns: 118px 1fr;
    gap: 15px;
    min-height: auto;
    padding: 14px;
  }

  .board-portrait {
    width: 118px;
    border-width: 4px;
  }

  .board-content {
    padding-top: 2px;
  }

  .board-content h3 {
    font-size: 1.28rem;
  }

  .board-content > p:last-child {
    font-size: 0.75rem;
  }

  .action-section {
    width: calc(100% - 20px);
    margin-bottom: 42px;
    border-radius: 22px;
  }

  .support-panel,
  .finder-panel {
    padding: 36px 22px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .footer-logo {
    width: 220px;
    height: 76px;
  }

  footer p {
    text-align: left;
  }

  .footer-contact {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

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