@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("assets/fonts/atkinson-hyperlegible-next.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("assets/fonts/literata-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --ink: #111842;
  --forest: #111b52;
  --forest-dark: #070d31;
  --cream: #f1f4f8;
  --paper: #fbfcff;
  --coral: #a94737;
  --yellow: #d6dbe3;
  --blue: #86c9ec;
  --blue-strong: #176b9a;
  --blue-soft: #dcecf6;
  --blue-faint: #f3f9fd;
  --brick-soft: #fae9e4;
  --silver-soft: #eff0f3;
  --muted: #53617b;
  --footer-muted: #b9c3d7;
  --footer-subtle: #8795b3;
  --line: rgba(17, 24, 66, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 18px 50px rgba(7, 13, 49, 0.14);
  --focus-inner: #fbfcff;
  --focus-outer: #070d31;
  --radius: 1.5rem;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue-strong) var(--silver-soft);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Atkinson Hyperlegible Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

::selection {
  color: var(--forest-dark);
  background: var(--blue);
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: "Literata", Georgia, serif;
  font-variation-settings: "opsz" 80;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--forest-dark);
  transform: translateY(-150%);
}

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

:where(a, button):focus-visible {
  outline: 3px solid var(--focus-inner);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--focus-outer);
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.55rem 1rem;
  color: white;
  background: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: white;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: "Literata", Georgia, serif;
  font-variation-settings: "opsz" 32;
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.3vw, 1.25rem);
}

.site-navigation a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a[aria-current="page"] {
  color: var(--coral);
}

.site-navigation .nav-give {
  padding: 0.65rem 1.15rem;
  color: white;
  background: var(--forest);
  border-radius: 999px;
}

.site-navigation .nav-give:hover {
  color: white;
  background: var(--coral);
}

.menu-toggle {
  display: none;
}

.daily-tools {
  border-block: 1px solid var(--line);
  background: var(--silver-soft);
}

.daily-tools > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: auto;
}

.daily-tools a {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  min-height: 74px;
  padding: 0.85rem 1rem;
  gap: 0.75rem;
  align-items: center;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.daily-tools a:first-child {
  border-left: 1px solid var(--line);
}

.daily-tools a:hover {
  background: var(--paper);
}

.daily-tools svg {
  width: 1.65rem;
  color: var(--blue-strong);
}

.daily-tools span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.daily-tools strong {
  font-size: 0.92rem;
}

.daily-tools small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: min(calc(100% - 2rem), var(--max));
  margin: clamp(3rem, 7vw, 6rem) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.5vw, 5.9rem);
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border: 2px solid var(--forest);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: white;
  background: var(--forest);
}

.button-primary:hover {
  color: white;
  border-color: var(--coral);
  background: var(--coral);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  background: var(--cream);
}

.button-dark {
  margin-top: 2rem;
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.hero-visual {
  position: relative;
  padding: 1rem 0 0 1rem;
}

.hero-visual::before {
  position: absolute;
  inset: 0 1rem 2.75rem 0;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.hero-image {
  position: relative;
  overflow: hidden;
  border: 6px solid var(--paper);
  border-radius: 1.25rem;
  background: var(--silver-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: relative;
  max-width: 34rem;
  margin: 1rem 0 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: right;
}

.freshness-section {
  padding: 1rem;
  background: var(--silver-soft);
  border-block: 1px solid var(--line);
}

.freshness-shell {
  width: min(100%, var(--max));
  margin: auto;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.freshness-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.freshness-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.freshness-heading > p {
  max-width: 34rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.freshness-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.freshness-column {
  min-width: 0;
  padding: 2rem 1rem 0;
}

.freshness-column:first-child {
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.freshness-column + .freshness-column {
  position: relative;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}

.freshness-column + .freshness-column::before {
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.freshness-column-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
  align-items: baseline;
}

.freshness-column-heading h3 {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: 1.55rem;
}

.freshness-column-heading a,
.freshness-empty a {
  color: var(--blue-strong);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.home-event,
.home-post {
  display: grid;
  padding-block: 1.25rem;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.home-event {
  grid-template-columns: 4rem minmax(0, 1fr);
}

.home-event time {
  display: flex;
  width: 4rem;
  height: 4.25rem;
  flex-direction: column;
  justify-content: center;
  color: var(--forest-dark);
  background: var(--blue-soft);
  border-radius: 1rem;
  text-align: center;
  line-height: 1;
}

.home-event time span {
  font-size: 0.8rem;
  font-weight: 700;
}

.home-event time strong {
  margin-top: 0.25rem;
  font-family: "Literata", Georgia, serif;
  font-size: 1.55rem;
}

.home-event p,
.home-post p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.home-event h4,
.home-post h4 {
  margin-bottom: 0.35rem;
  font-family: "Literata", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.home-event h4 a,
.home-post h4 a {
  color: var(--ink);
  text-decoration: none;
}

.home-event h4 a:hover,
.home-post h4 a:hover {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-event div > span,
.home-post div > span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-post {
  grid-template-columns: 7rem minmax(0, 1fr);
}

.home-post-no-image {
  grid-template-columns: 1fr;
}

.home-post-image {
  width: 7rem;
  height: 5.25rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.freshness-empty {
  min-height: 9rem;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.freshness-empty p {
  margin-bottom: 0.75rem;
}

.quick-actions,
.impact-section,
.join-band {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-heading h2,
.split-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.section-heading > p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.action-list {
  margin-top: 3rem;
  border-bottom: 1px solid var(--line);
}

.action-item {
  display: flex;
  justify-content: space-between;
  min-height: 132px;
  padding: 1.75rem 0;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.action-item:hover {
  color: var(--forest);
  background: var(--blue-faint);
  transform: translateX(0.5rem);
}

.action-item h3 {
  margin: 0 0 0.35rem;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.action-item p {
  margin: 0;
  color: var(--muted);
}

.action-item > span {
  color: var(--blue-strong);
  font-size: 1.75rem;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.mission-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.mission-section::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 30rem;
  height: 30rem;
  background: url("assets/mark.png") center / contain no-repeat;
  content: "";
  opacity: 0.06;
}

.mission-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: min(100%, calc(var(--max) + 2rem));
  margin: auto;
  padding: clamp(5rem, 10vw, 9rem) 1rem;
  gap: clamp(3rem, 8vw, 8rem);
}

.mission-intro h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.mission-section h2 em {
  color: var(--blue);
}

.mission-copy > p {
  font-size: 1.2rem;
}

.school-resource-links {
  display: grid;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.mission-list {
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.mission-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
}

.mission-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link.light {
  color: white;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
}

.split-heading > p {
  max-width: 430px;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid article {
  padding: 2.5rem;
  border-right: 1px solid var(--line);
}

.impact-grid article:first-child {
  padding-left: 0;
}

.impact-grid article:last-child {
  border-right: 0;
}

.impact-grid span {
  color: var(--coral);
  font-family: "Literata", Georgia, serif;
  font-size: 2.5rem;
}

.impact-grid h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.25rem;
}

.join-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 4rem;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 4rem;
}

.join-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.join-band > div:last-child {
  align-self: end;
}

.donate-hero {
  padding: 1rem;
  background: var(--brick-soft);
}

.donate-hero-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  width: min(100%, var(--max));
  margin: auto;
  padding-block: clamp(3rem, 7vw, 6rem);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.donate-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
}

.donate-hero-copy > p:first-of-type {
  max-width: 34rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.donate-hero-visual {
  position: relative;
  margin: 0;
  padding: 0 0 1.25rem 1.25rem;
}

.donate-hero-visual::before {
  position: absolute;
  inset: 1.25rem 1.25rem 0 0;
  border: 2px solid var(--blue-strong);
  border-radius: 1.25rem;
  content: "";
}

.donate-hero-visual img {
  position: relative;
  width: 100%;
  height: auto;
  border: 6px solid var(--paper);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.donate-hero-visual figcaption {
  position: relative;
  max-width: 34rem;
  margin: 1rem 0 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: right;
}

.donate-impact,
.fundraising-overview,
.fundraising-outline,
.donate-close {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.donate-impact {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.fundraising-text-hero {
  grid-template-columns: 1fr;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.fundraising-text-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.fundraising-text-hero .donate-hero-copy > p:first-of-type {
  max-width: 56ch;
}

.campaign-status {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.campaign-facts {
  display: flex;
  margin: 0 0 2rem;
  gap: 1rem 3rem;
  flex-wrap: wrap;
}

.campaign-facts dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.campaign-facts dd {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.fundraising-overview {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.fundraising-overview > h2,
.fundraising-impact > h2,
.donate-equity h2 {
  max-width: 24ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.fundraising-list {
  border-bottom: 1px solid var(--line);
}

.fundraising-item {
  padding-block: 1.75rem;
}

.fundraising-item p {
  max-width: 68ch;
}

.fundraising-item .campaign-status {
  margin-block: 0.5rem;
  font-size: 0.9rem;
}

.fundraising-outline {
  padding-top: 2rem;
}

.fundraising-outline .page-outline {
  margin-bottom: 0;
}

.donate-impact.fundraising-impact > ul {
  max-width: none;
  padding: 0;
  list-style: none;
}

.fundraising-impact > ul > li:has(> strong):has(> div) {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  padding: 2rem 0;
  gap: 2rem;
  border-top: 1px solid var(--line);
  align-items: start;
}

.fundraising-impact > ul > li > strong {
  color: var(--coral);
  font-family: "Literata", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.fundraising-impact.prose h3 {
  margin: 0 0 0.5rem;
  font-family: "Literata", Georgia, serif;
  font-size: 1.55rem;
}

.fundraising-impact li p {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
}

.fundraising-body {
  width: min(calc(100% - 2rem), 68ch);
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.fundraising-body,
.fundraising-impact,
.fundraising-overview,
.donate-hero-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.donate-equity {
  padding: 1rem;
  background: var(--paper);
}

.donate-equity-shell {
  width: min(100%, var(--max));
  margin: auto;
  padding: 5rem;
  color: white;
  background: var(--forest);
  border-radius: var(--radius);
}

.donate-equity h2 {
  max-width: 22ch;
}

.donate-equity p {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: var(--footer-muted);
  font-size: 1.1rem;
}

.donate-equity .fundraising-equity a:not(.button) {
  color: var(--blue);
}

.donate-close {
  display: flex;
  justify-content: space-between;
  padding-block: 3rem;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.donate-close p {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.donate-close strong {
  font-size: 1.1rem;
}

body:has(.donate-hero) .site-footer {
  margin-top: 0;
}

.page-hero {
  --page-tone: var(--cream);
  padding: 1rem;
  background: var(--page-tone);
}

.page-hero.coral {
  --page-tone: var(--brick-soft);
}

.page-hero.blue {
  --page-tone: var(--blue-soft);
}

.page-hero.yellow {
  --page-tone: var(--silver-soft);
}

.page-hero > div {
  width: min(100%, var(--max));
  margin: auto;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.page-hero > div > * {
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.page-hero > div > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5rem 0 7rem;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.content-layout > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-hero-guide > div {
  padding-block: 2rem;
}

.page-hero-guide h1 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.content-layout-guide {
  padding-top: 2rem;
}

.prose h2 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 2.25rem 0 0.6rem;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
}

.prose p,
.prose li {
  font-size: 1.05rem;
}

.prose > p,
.prose > ul,
.prose > ol,
.article-body {
  max-width: 68ch;
}

.prose a:not(.button) {
  color: var(--blue-strong);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.65rem;
}

.prose .lead {
  font-family: "Literata", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.45;
}

.prose .callout {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.related-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 4rem;
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-action h2 {
  margin: 0 0 0.6rem;
  padding: 0;
  border: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.related-action p {
  margin: 0;
}

.page-outline {
  margin: 0 0 3.5rem;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
}

.page-outline > strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.page-outline > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.page-outline a {
  color: var(--blue-strong) !important;
  font-size: 0.9rem;
  font-weight: 600 !important;
  text-decoration-thickness: 1px;
}

.prose .card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.prose .card-list li {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.prose iframe {
  width: 100%;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.newsletter-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 0 3rem;
  padding: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.newsletter-signup:last-child {
  margin: 4rem 0 0;
}

.newsletter-signup h2 {
  margin: 0 0 0.35rem;
  padding: 0;
  border: 0;
  font-size: 1.55rem;
}

.newsletter-signup p {
  margin: 0;
  font-size: 0.95rem;
}

.newsletter-current {
  margin: 0 0 5rem;
}

.newsletter-current-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1.5rem;
  align-items: end;
}

.newsletter-current-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.newsletter-current-heading .card-meta {
  margin-bottom: 0.4rem;
}

.newsletter-frame {
  min-height: 72rem !important;
  background: white;
  box-shadow: var(--shadow);
}

.newsletter-archive {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  padding-top: 3rem;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.newsletter-archive h2 {
  margin-top: 0;
  padding: 0;
  border: 0;
}

.newsletter-archive ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.newsletter-archive li {
  margin: 0;
  border-top: 1px solid var(--line);
}

.newsletter-archive li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 0.85rem 0;
  gap: 1rem;
  align-items: center;
  color: var(--ink) !important;
  text-decoration: none;
}

.newsletter-archive li a:hover span {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.newsletter-archive time {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

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

.content-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.content-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.content-card > div {
  padding: 1.35rem;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 0.75rem;
  padding-top: 0;
  border-top: 0;
  font-family: "Literata", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.3;
}

.content-card h2 a,
.content-card h3 a {
  color: var(--ink);
  line-height: 1.35;
  text-decoration: none;
}

.content-card h2 a:hover,
.content-card h3 a:hover {
  color: var(--coral);
}

.card-meta {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.detail-image {
  width: 100%;
  max-height: 560px;
  margin-bottom: 2rem;
  border-radius: 1rem;
  object-fit: cover;
}

.product-image {
  object-fit: contain;
  background: var(--cream);
}

.product-price {
  color: var(--coral);
  font-family: "Literata", Georgia, serif;
  font-size: 2rem !important;
  font-weight: 700;
}

.article-body {
  margin: 2rem 0 3rem;
}

.prose figure {
  max-width: 68ch;
  margin: 2rem 0;
}

.prose img {
  height: auto;
}

.article-body img {
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}

.prose figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-body table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-post {
  width: min(calc(100% - 2rem), 68ch);
  margin: auto;
  padding: clamp(2rem, 4vw, 4rem) 0 3rem;
  font-size: 1.125rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.blog-header {
  margin-bottom: 2rem;
}

.blog-header h1 {
  margin: 1rem 0;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
  font-variation-settings: "opsz" 48;
}

.blog-post .blog-back {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 0.92rem;
}

.blog-post p,
.blog-post li {
  font-size: 1em;
}

.blog-post .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.blog-post .article-body {
  max-width: none;
  margin: 0;
}

.blog-post .article-body > :first-child {
  margin-top: 0;
}

.blog-post p {
  margin-bottom: 1.25rem;
}

.blog-post h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 32;
}

.blog-post h3 {
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.blog-post li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.blog-post li::marker {
  color: var(--muted);
  font-weight: 700;
}

.blog-post li > :last-child {
  margin-bottom: 0;
}

.blog-post li > ul,
.blog-post li > ol {
  margin-top: 0.75rem;
}

.blog-post figure {
  max-width: 100%;
  margin: 2rem 0;
}

.blog-post img {
  margin-inline: auto;
}

.blog-cover img {
  width: auto;
  max-height: 28rem;
  object-fit: contain;
}

.blog-post .blog-end {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.blog-end p {
  margin: 0.75rem 0 0;
}

.transaction-panel {
  margin-block: 2rem;
}

.transaction-field {
  display: grid;
  margin-block: 1rem;
  gap: 0.5rem;
}

.transaction-field label,
.transaction-panel legend {
  font-weight: 700;
}

.transaction-panel input,
.transaction-panel select,
.transaction-panel textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.transaction-panel input[type="checkbox"],
.transaction-panel input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  padding: 0;
  flex-shrink: 0;
  margin-inline-end: 0.5rem;
  accent-color: var(--forest);
}

.transaction-field label:has(input[type="checkbox"]),
.transaction-field label:has(input[type="radio"]) {
  display: flex;
  min-height: 48px;
  align-items: center;
}

.transaction-panel textarea {
  min-height: 6rem;
  resize: vertical;
}

.transaction-actions {
  display: flex;
  flex-wrap: wrap;
  margin-block: 1.5rem;
  gap: 0.75rem;
}

.transaction-status:not(:empty) {
  margin-block: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--blue-soft);
}

.transaction-panel button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.transaction-panel button {
  max-width: 100%;
  white-space: normal;
}

.transaction-item {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.transaction-item h3 {
  margin-top: 0;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 1rem;
  gap: 1rem;
}

.event-facts dt {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
}

.page-aside {
  position: sticky;
  top: 2rem;
}

.aside-card {
  padding: 1.75rem;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.aside-card h2 {
  font-size: 1.8rem;
}

.site-footer {
  margin-top: 7rem;
  padding: 5rem max(1rem, calc((100% - var(--max)) / 2)) 1.5rem;
  color: white;
  background: var(--forest-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 4rem;
}

.brand-light {
  color: white;
}

.footer-brand > p {
  max-width: 350px;
  margin-top: 1.5rem;
  color: var(--footer-muted);
}

.footer-main h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main a {
  margin-bottom: 0.5rem;
  color: white;
  text-decoration: none;
}

.footer-main address {
  margin-bottom: 0.75rem;
  color: var(--footer-muted);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
  color: var(--footer-subtle);
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    position: absolute;
    content: "";
  }

  .menu-icon::before {
    top: -5px;
  }

  .menu-icon::after {
    top: 5px;
  }

  .site-navigation {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(28rem, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a {
    min-height: 46px;
    padding: 0.75rem;
  }

  .site-navigation .nav-give {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero,
  .mission-shell,
  .join-band {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 2rem;
  }

  .hero-copy {
    order: 0;
  }

  .hero-visual {
    order: 1;
    max-width: 48rem;
  }

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

  .daily-tools > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-tools a:nth-child(2) {
    border-right: 0;
  }

  .daily-tools a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .freshness-heading {
    gap: 1rem;
  }

  .freshness-heading h2 {
    max-width: none;
  }

  .freshness-column:first-child {
    padding-inline: 0;
  }

  .freshness-column + .freshness-column {
    margin-top: 1rem;
    padding-inline: 0;
    border-top: 1px solid var(--line);
  }

  .freshness-column + .freshness-column::before {
    display: none;
  }

  .impact-grid article {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-grid article:last-child {
    border-bottom: 0;
  }

  .split-heading,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 0;
  }

  .page-aside {
    position: static;
  }

  .donate-hero-shell {
    grid-template-columns: 1fr;
  }

  .donate-hero-copy {
    order: 0;
  }

  .donate-hero-visual {
    order: 1;
  }

  .donate-equity-shell {
    padding: 3rem;
  }

  .newsletter-signup,
  .newsletter-archive,
  .related-action {
    grid-template-columns: 1fr;
  }

  .newsletter-signup {
    align-items: start;
  }

  .newsletter-signup .button {
    justify-self: start;
  }

  .related-action .button {
    justify-self: start;
  }

  .newsletter-archive {
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .announcement {
    justify-content: center;
    gap: 0.75rem;
  }

  .announcement p {
    display: none;
  }

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

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

  .brand strong {
    font-size: 1.2rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-visual {
    padding: 0.5rem 0 0 0.5rem;
  }

  .hero-visual::before {
    inset: 0 0.5rem 2.25rem 0;
  }

  .hero-caption {
    margin-top: 0.75rem;
    text-align: left;
  }

  .daily-tools a {
    grid-template-columns: 2rem 1fr;
    min-height: 68px;
    padding: 0.75rem;
  }

  .daily-tools svg {
    width: 1.45rem;
  }

  .action-item {
    min-height: 112px;
  }

  .mission-shell {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .join-band {
    padding: 2rem;
    gap: 2rem;
    border-radius: 0;
  }

  .fundraising-impact > ul > li:has(> strong):has(> div) {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .donate-hero-visual {
    padding: 0 0 0.75rem 0.75rem;
  }

  .donate-hero-visual::before {
    inset: 0.75rem 0.75rem 0 0;
  }

  .donate-hero-visual figcaption {
    text-align: left;
  }

  .donate-close {
    display: grid;
    align-items: start;
  }

  .donate-equity-shell {
    padding: 2rem;
  }

  .donate-close .button {
    justify-self: start;
  }

  .page-outline > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

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

  .content-grid,
  .event-facts {
    grid-template-columns: 1fr;
  }

  .home-post {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .home-post-no-image {
    grid-template-columns: 1fr;
  }

  .home-post-image {
    width: 5.5rem;
    height: 4.5rem;
  }

  .newsletter-current-heading {
    display: block;
  }

  .newsletter-current-heading .text-link {
    display: inline-block;
    margin-top: 0.75rem;
  }

  .newsletter-frame {
    min-height: 55rem !important;
  }

  .newsletter-archive li a {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 0.4rem;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    gap: 0.75rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding-inline: 0.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
