:root {
  color-scheme: dark;
  --ink: #f1f3ee;
  --muted: #b9c0b8;
  --dim: #8f988f;
  --line: rgba(210, 224, 205, 0.18);
  --panel: rgba(19, 25, 20, 0.84);
  --panel-solid: #141a15;
  --page: #080b09;
  --green: #b7d58c;
  --green-dark: #162116;
  --paper: #f4f1e9;
  --paper-ink: #10130f;
  --paper-muted: #4c534c;
  --max: 1180px;
  --reading: 720px;
  --radius: 4px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  --font-display: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(112, 139, 85, 0.12), transparent 28rem),
    linear-gradient(180deg, #0c100d 0%, var(--page) 28rem);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--page);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 19, 15, 0.16);
  background: rgba(244, 241, 233, 0.96);
  backdrop-filter: blur(18px);
  color: var(--paper-ink);
}

.nav-shell {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand picture {
  display: block;
}

.brand img {
  width: clamp(280px, 24vw, 320px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 1.2vw, 1.1rem);
  font-size: 0.78rem;
}

.desktop-nav a {
  color: var(--paper-muted);
  text-decoration: none;
}

.desktop-nav a[aria-current="page"] {
  color: var(--paper-ink);
}

.desktop-nav .nav-cta {
  border: 1px solid var(--paper-ink);
  color: var(--paper-ink);
  padding: 0.55rem 0.78rem;
}

.site-header a:hover,
.desktop-nav .nav-cta:hover {
  color: #31542d;
}

.site-header a:focus-visible,
.site-header summary:focus-visible {
  outline-color: #31542d;
}

.mobile-nav {
  display: none;
}

.page-shell {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
}

.section:first-child {
  border-top: 0;
}

.section-compact {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 500;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.6rem;
  font-size: clamp(2.75rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.85rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.event-hero h1 {
  max-width: 1100px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

p {
  margin-top: 0;
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.reading {
  max-width: var(--reading);
}

.reading p,
.reading li {
  color: var(--muted);
}

.hero {
  min-height: calc(100svh - 96px);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

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

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

.hero-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% center;
}

.hero-image figcaption,
.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: #e7ebe4;
  font-size: 0.76rem;
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.7rem 1.05rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--ink);
  color: var(--page);
}

.button-primary {
  border-color: var(--green);
  background: var(--green);
  color: #0d120e;
}

.button-primary:hover {
  border-color: #d6e8bd;
  background: #d6e8bd;
}

.button-quiet {
  border-color: var(--line);
  color: var(--muted);
}

.resource-link {
  margin: 1.5rem 0 0;
  border-left: 2px solid var(--green);
  padding: 0.15rem 0 0.15rem 1rem;
}

.resource-link a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.resource-link p {
  max-width: 620px;
  margin: 0.4rem 0 0;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.5;
}

.resource-link-compact {
  margin-top: 1.25rem;
}

.resource-link-compact a {
  color: var(--green);
  font-size: 0.86rem;
}

.resource-link-compact p {
  font-size: 0.78rem;
}

.file-meta {
  white-space: nowrap;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

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

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

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

.program-card,
.info-card,
.funding-item,
.faq-item,
.legal-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.program-card,
.info-card {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.program-card p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.program-card p,
.info-card p {
  color: var(--muted);
}

.status {
  display: inline-flex;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(183, 213, 140, 0.38);
  padding: 0.3rem 0.55rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.program-card ul,
.check-list,
.plain-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.program-card li,
.check-list li,
.plain-list li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.program-card li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--green);
}

.funding-summary {
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(183, 213, 140, 0.08), transparent 55%),
    var(--panel);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.funding-number {
  margin: 0 0 0.35rem;
  color: var(--green);
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.funding-period {
  color: var(--muted);
  font-size: 0.95rem;
}

.funding-list {
  display: grid;
  gap: 0.75rem;
}

.funding-item {
  padding: 1rem 1.1rem;
}

.funding-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.funding-item h3 {
  margin: 0;
  font-size: 1rem;
}

.funding-amount {
  color: var(--green);
  font-weight: 700;
}

.funding-item p {
  margin: 0.45rem 0 0;
  color: var(--dim);
  font-size: 0.88rem;
}

.funding-bar {
  height: 3px;
  margin-top: 0.9rem;
  background: rgba(183, 213, 140, 0.12);
}

.funding-bar span {
  display: block;
  width: var(--share);
  height: 100%;
  background: var(--green);
}

.photo-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.quote {
  max-width: 760px;
  margin: 0;
  border-left: 2px solid var(--green);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.quote footer {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.85rem;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 1.05rem;
  right: 1.25rem;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 760px;
  padding: 0 1.25rem 1.3rem;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.legal-note {
  padding: 1rem 1.1rem;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

.legal-note strong {
  color: var(--muted);
}

.cta-band {
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(183, 213, 140, 0.12), transparent 65%),
    var(--panel);
}

.cta-band h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
}

.cta-band p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.contact-card {
  max-width: 820px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-card .email {
  display: inline-block;
  margin: 0.5rem 0 1.5rem;
  color: var(--green);
  font-size: clamp(1.15rem, 3vw, 2rem);
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #050706;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  color: var(--dim);
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem 4rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: clamp(210px, 22vw, 260px);
  height: auto;
}

.footer-description {
  max-width: 470px;
  margin-bottom: 0.7rem;
}

.footer-contact {
  margin: 0;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  margin: 0.35rem 0;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    min-width: 46px;
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(16, 19, 15, 0.28);
    cursor: pointer;
    list-style: none;
    color: var(--paper-ink);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav[open] nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(82vw, 310px);
    display: grid;
    border: 1px solid rgba(16, 19, 15, 0.22);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    border-bottom: 1px solid rgba(16, 19, 15, 0.14);
    padding: 0.8rem 1rem;
    color: var(--paper-muted);
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
    color: #31542d;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-image,
  .hero-image img {
    min-height: 420px;
  }

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

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .page-shell {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding: 2.25rem 0 4.5rem;
  }

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

  .hero-image,
  .hero-image img {
    min-height: 350px;
  }

  .split,
  .split-balanced,
  .card-grid,
  .card-grid-three,
  .program-card.featured,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card.featured {
    display: block;
  }

  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-legal {
    grid-column: auto;
  }
}

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

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