:root {
  --navy: #173447;
  --navy-dark: #0e2838;
  --ivory: #f7f3eb;
  --paper: #fffdf8;
  --sand: #eee4d5;
  --teal: #27635d;
  --teal-light: #dbe8e4;
  --teal-wash: #e5efeb;
  --orange: #b8492d;
  --orange-dark: #92351f;
  --orange-light: #f3d9cf;
  --charcoal: #24343b;
  --muted: #5d6a6e;
  --line: #cbd0c9;
  --yellow: #efcf55;
  --shadow: 0 18px 45px rgba(23, 52, 71, 0.13);
  --serif: Charter, "Bitstream Charter", Cambria, Georgia, serif;
  --sans: Aptos, "Segoe UI", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

.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;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  flex: 0 1 260px;
}

.brand img {
  width: 225px;
  height: auto;
}

.menu-toggle {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.header-inner nav {
  position: absolute;
  inset: 100% 0 auto;
  display: none;
  padding: 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.header-inner nav[data-open="true"] {
  display: grid;
}

.header-inner nav a {
  padding: 0.8rem 0.55rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 52, 71, 0.12);
}

.header-inner nav .help-link {
  color: var(--teal);
}

.header-inner nav .nav-donate {
  margin-top: 0.5rem;
  color: white;
  background: var(--orange);
  border: 0;
  text-align: center;
}

main {
  overflow: hidden;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 11vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.7rem);
  line-height: 1.04;
}

h3 {
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}

.kicker,
.section__label {
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker--light {
  color: #f6d46c;
}

.hero-lead,
.section__lead {
  max-width: 760px;
  color: #45565c;
  font-size: clamp(1.08rem, 3vw, 1.3rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.72rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button span {
  font-size: 1.2em;
}

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

.button--primary:hover {
  color: white;
  background: var(--orange-dark);
}

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

.button--secondary:hover {
  color: white;
  background: var(--navy);
}

.button--light {
  color: var(--navy);
  background: var(--ivory);
}

.button--light:hover {
  color: var(--navy);
  background: white;
}

.button--outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover {
  color: var(--navy);
  background: white;
}

.home-hero,
.page-hero {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-block: clamp(3.4rem, 10vw, 7rem);
}

.home-hero {
  display: grid;
  gap: 2.5rem;
  color: white;
  background-color: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.home-hero h1 {
  color: var(--ivory);
}

.home-hero h1 em {
  color: #f2ce68;
  font-style: normal;
}

.home-hero .kicker {
  color: #f2ce68;
}

.home-hero .hero-lead {
  color: #dce7e5;
}

.home-hero .button--secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.home-hero .button--secondary:hover {
  color: var(--navy);
  background: white;
}

.fact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 0;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.home-hero .fact-line {
  color: #d1dfdc;
}

.fact-line li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--teal);
  font-weight: 900;
}

.home-hero .fact-line li::before {
  color: #f2ce68;
}

.photo {
  margin: 0;
}

.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.photo--hero {
  position: relative;
  margin-bottom: 0.65rem;
}

.photo--hero::before {
  content: "";
  position: absolute;
  inset: -0.65rem 0.65rem -0.65rem -0.65rem;
  z-index: -1;
  border: 2px solid var(--teal);
}

.home-hero .photo--hero::before,
.page-hero--media .photo--hero::before {
  border-color: #f2ce68;
}

.equipment-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem max(1rem, calc((100% - var(--max)) / 2));
  color: var(--navy);
  background: #efd16b;
  font-size: 0.94rem;
  line-height: 1.45;
  text-decoration: none;
}

.equipment-ribbon span[aria-hidden] {
  flex: none;
  font-size: 1.5rem;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-block: clamp(4rem, 10vw, 7.5rem);
  border-top: 1px solid var(--line);
}

main > .section:nth-of-type(even) {
  background-color: var(--sand);
  box-shadow: 0 0 0 100vmax var(--sand);
  clip-path: inset(0 -100vmax);
}

main > .section:nth-of-type(odd):not(.home-hero):not(.page-hero):not(.field-note):not(.closing-cta):not(.form-section):not(.donation-layout):not(.legal-page):not(.thanks) {
  background-color: var(--teal-wash);
  box-shadow: 0 0 0 100vmax var(--teal-wash);
  clip-path: inset(0 -100vmax);
}

.section__lead {
  margin-bottom: 2.2rem;
}

.mission-grid {
  display: grid;
  gap: 2.1rem;
  margin-top: 2.5rem;
}

.mission-card {
  min-height: 100%;
  padding: 1.25rem;
  background: rgba(255, 253, 248, 0.72);
  border-top: 4px solid var(--navy);
  box-shadow: 0 10px 28px rgba(23, 52, 71, 0.08);
}

.mission-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.mission-card__number {
  color: #9aa3a2;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mission-card h3 {
  margin: 1.15rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.mission-card a {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  color: #16443f;
  background: var(--teal-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status--orange {
  color: #732913;
  background: var(--orange-light);
}

.status--navy {
  color: white;
  background: var(--navy);
}

.field-note,
.closing-cta {
  padding: clamp(3.5rem, 10vw, 7rem) max(1rem, calc((100% - var(--max)) / 2));
  color: white;
  background: var(--navy);
}

.field-note {
  display: grid;
  gap: 2rem;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.field-note h2,
.closing-cta h2 {
  color: white;
}

.field-note p {
  color: #e3e9e8;
  font-size: 1.05rem;
}

.closing-cta {
  background: var(--teal);
  border-top: 7px solid var(--orange);
}

.path-grid,
.detail-grid,
.value-grid,
.leader-list,
.record-grid,
.help-grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2.4rem;
}

.path-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  box-shadow: 0 10px 24px rgba(23, 52, 71, 0.07);
  text-decoration: none;
}

.path-grid a:hover {
  border-color: var(--orange);
}

.path-grid a > span:first-child {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-grid a strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.3;
}

.path-grid a > span:last-child {
  font-size: 1.4rem;
}

.trust-layout {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

.quote {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.18;
}

.trust-list {
  border-top: 1px solid var(--line);
}

.trust-list a {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.trust-list span {
  color: var(--muted);
}

.closing-cta {
  text-align: left;
}

.closing-cta h2 {
  max-width: 880px;
}

.page-hero {
  min-height: 46vh;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  background-color: var(--teal-wash);
  box-shadow: 0 0 0 100vmax var(--teal-wash);
  clip-path: inset(0 -100vmax);
  border-bottom: 1px solid rgba(39, 99, 93, 0.2);
}

.page-hero--media {
  color: white;
  background-color: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-hero--media h1 {
  color: var(--ivory);
}

.page-hero--media .kicker {
  color: #f2ce68;
}

.page-hero--media .hero-lead {
  color: #dce7e5;
}

.page-hero--media .button--secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.page-hero--media .button--secondary:hover {
  color: var(--navy);
  background: white;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 4.5rem);
}

.page-hero > .kicker:first-child,
.page-hero > div > .kicker:first-child {
  margin-top: 0;
}

.page-hero--split,
.page-hero--media,
.page-hero--donate {
  display: grid;
  gap: 2.5rem;
}

.status-board,
.notice {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
}

.status-board h2 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-board dl {
  margin: 0;
}

.status-board dl div {
  display: grid;
  grid-template-columns: minmax(100px, 0.8fr) 1.2fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.status-board dt {
  color: var(--muted);
}

.status-board dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.emergency-band,
.truth-band {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem max(1rem, calc((100% - var(--max)) / 2));
  color: var(--navy);
  background: #f2dd8d;
}

.emergency-band strong,
.truth-band strong {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.limit-grid,
.status-story {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.limit-grid > div,
.status-story > div,
.detail-grid article,
.value-grid article,
.leader-list article,
.record-grid article,
.help-grid article {
  padding-top: 1rem;
  border-top: 3px solid var(--teal);
}

.status-story h3 {
  margin: 1rem 0 0.5rem;
}

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

.process li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process h3,
.process p {
  margin-bottom: 0.35rem;
}

.form-section {
  display: grid;
  gap: 2rem;
  padding: clamp(4rem, 10vw, 7rem) max(1rem, calc((100% - var(--max)) / 2));
  background: var(--teal-light);
}

.form-section__intro h2 {
  max-width: 680px;
}

.form {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid rgba(23, 52, 71, 0.22);
  box-shadow: var(--shadow);
}

.form__heading {
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.form__heading h2 {
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.form__grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
}

.field__label,
.check-group legend {
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea,
.money-input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--charcoal);
  background: white;
  border: 1px solid #829095;
  border-radius: 3px;
}

.field input[type="file"] {
  padding: 0.55rem;
}

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

.field__hint,
.form__note,
.form-disclosure {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.field [aria-invalid="true"] {
  border-color: #a32616;
  box-shadow: 0 0 0 2px rgba(163, 38, 22, 0.15);
}

.check-group {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
}

.check-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.check-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check-grid input,
.consent input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 0.15rem;
  accent-color: var(--teal);
}

.consent {
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-disclosure {
  padding: 0.8rem;
  color: #4c4122;
  background: #fff3c5;
  border-left: 4px solid #d6a908;
}

.form__status {
  margin-top: 1rem;
}

.form__status[data-state="error"] {
  padding: 0.8rem;
  color: #7a1b10;
  background: #f9dfd7;
}

.form__status[data-state="success"] {
  padding: 0.8rem;
  color: #153f39;
  background: var(--teal-light);
}

.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 1.2rem 2rem 1.2rem 0;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  padding: 0 0 1.2rem;
  color: var(--muted);
}

.equipment-list,
.milestone-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.equipment-list > div,
.milestone-list > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.equipment-list span,
.milestone-list span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-list p,
.milestone-list p {
  margin-bottom: 0;
}

.equipment-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.safety-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.safety-strip > div {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.safety-strip strong {
  color: var(--navy);
}

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

.check-list li {
  position: relative;
  padding: 0.95rem 0 0.95rem 2rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.4rem;
}

.notice--warm {
  background: #fff3c5;
  border-left-color: var(--orange);
}

.donation-layout {
  display: grid;
  gap: 2.3rem;
  padding: clamp(4rem, 10vw, 7rem) max(1rem, calc((100% - var(--max)) / 2));
  color: white;
  background: var(--navy);
}

.donation-layout h2,
.donation-layout h3 {
  color: white;
}

.donation-layout .check-list {
  border-color: rgba(255, 255, 255, 0.25);
}

.donation-layout .check-list li {
  border-color: rgba(255, 255, 255, 0.2);
}

.donation-layout .check-list li::before {
  color: #f6d46c;
}

.donation-form {
  padding: 1.25rem;
  color: var(--charcoal);
  background: var(--paper);
}

.donation-form fieldset {
  padding: 0;
  margin: 0 0 1.4rem;
  border: 0;
}

.donation-form legend {
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-weight: 850;
}

.segmented,
.amounts {
  display: grid;
  gap: 0.55rem;
}

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

.segmented label {
  position: relative;
}

.segmented input {
  position: absolute;
  opacity: 0;
}

.segmented span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
}

.segmented input:checked + span {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.segmented input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.amounts {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
}

.amounts button {
  min-height: 48px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  font-weight: 850;
  cursor: pointer;
}

.amounts button[aria-pressed="true"] {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.money-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.3rem;
  padding-block: 0;
}

.money-input input {
  min-height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
}

.donation-review {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.donation-review[data-state="success"] {
  padding: 1rem;
  background: var(--teal-light);
}

.value-grid article > span,
.leader-list article > span,
.record-grid article > span {
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  counter-reset: metrics;
  background: var(--line);
}

.metric-list li {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 1rem 1rem 1rem 4.2rem;
  color: var(--navy);
  background: var(--paper);
  counter-increment: metrics;
  font-weight: 750;
}

.metric-list li::before {
  content: counter(metrics, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-routes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.contact-routes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem max(1rem, calc((100% - var(--max)) / 2));
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.contact-routes a:hover {
  background: var(--teal-light);
}

.legal-page,
.thanks {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.legal-page h1,
.thanks h1 {
  max-width: 800px;
}

.legal-page h2 {
  margin: 2.5rem 0 0.6rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.legal-meta {
  padding-bottom: 1.2rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.address-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  font-style: normal;
  background: var(--paper);
  border: 1px solid var(--line);
}

.legacy-note {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem max(1rem, calc((100% - var(--max)) / 2));
  color: #57370f;
  background: #fff3c5;
  border-bottom: 1px solid #e5c661;
  font-size: 0.86rem;
}

.site-footer {
  padding: 3rem max(1rem, calc((100% - var(--max)) / 2)) 1.5rem;
  color: #d7e0e0;
  background: #0e2838;
}

.footer-intro img {
  width: min(100%, 300px);
  filter: brightness(0) invert(1);
}

.footer-intro p {
  max-width: 520px;
  margin-top: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 2rem;
  padding: 2.4rem 0;
  margin-top: 2rem;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer nav div {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.site-footer nav strong {
  margin-bottom: 0.35rem;
  color: #f6d46c;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 1.4rem;
  padding: 1.8rem 0;
}

.footer-contact > div {
  display: grid;
  gap: 0.4rem;
}

.footer-contact p {
  color: #f2dd8d;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  padding-top: 1rem;
  color: #aebbbb;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
}

@media (min-width: 680px) {
  .segmented,
  .amounts {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .form__grid,
  .check-grid,
  .path-grid,
  .detail-grid,
  .value-grid,
  .leader-list,
  .record-grid,
  .help-grid,
  .metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field:has(textarea),
  .field:has(input[type="file"]) {
    grid-column: 1 / -1;
  }

  .mission-grid,
  .status-story,
  .limit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .process li {
    grid-template-columns: 90px 1fr;
  }

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

  .safety-strip > div {
    padding-inline: 1.4rem;
  }

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

  .contact-routes a {
    padding-inline: 1.4rem;
  }

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

@media (min-width: 920px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .menu-toggle {
    display: none;
  }

  .header-inner nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .header-inner nav a {
    padding: 0.58rem 0.7rem;
    font-size: 0.9rem;
    border: 0;
  }

  .header-inner nav .nav-donate {
    margin: 0 0 0 0.25rem;
    padding-inline: 1rem;
  }

  .home-hero,
  .page-hero--media,
  .page-hero--split,
  .page-hero--donate {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .home-hero {
    min-height: calc(100vh - 130px);
  }

  .home-hero .photo img,
  .page-hero--media .photo img {
    aspect-ratio: 5 / 6;
  }

  .section {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 3rem;
  }

  .section__label {
    padding-top: 0.7rem;
  }

  .field-note,
  .trust-layout,
  .form-section,
  .donation-layout,
  .footer-contact {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

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

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

  .leader-list,
  .record-grid,
  .help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .emergency-band,
  .truth-band {
    grid-template-columns: 240px 1fr;
  }

  .form {
    padding: 1.8rem;
  }

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

@media (min-width: 1180px) {
  .brand img {
    width: 255px;
  }

  .header-inner nav a {
    padding-inline: 0.88rem;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 0.85fr 1.45fr;
    gap: 3rem;
  }

  .footer-intro {
    padding-top: 2.4rem;
  }

  .site-footer nav {
    margin: 0;
    border-top: 0;
  }

  .footer-contact,
  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media print {
  .menu-toggle,
  .button-row,
  .equipment-ribbon,
  .site-footer {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }

  a {
    color: black;
  }
}
