:root {
  --paper: #f7faf8;
  --white: #ffffff;
  --ink: #14201c;
  --muted: #5f6b66;
  --line: #cfd8d3;
  --forest: #123c31;
  --forest-deep: #0b2922;
  --mint: #dcefe5;
  --coral: #ef695b;
  --coral-dark: #d95044;
  --sun: #f3c957;
  --header-height: 76px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.section {
  padding-block: 132px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.display-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.08;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--sun);
}

.button-primary:hover {
  background: #ffda6e;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: max(32px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(20, 32, 28, 0.14);
  background: rgba(247, 250, 248, 0.97);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-family: Georgia, serif;
  font-size: 24px;
}

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

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:not(.nav-help):hover {
  color: var(--coral-dark);
}

.desktop-nav .nav-help {
  padding: 11px 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--forest);
}

.menu-button,
.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - var(--header-height) - 72px);
  min-height: 560px;
  max-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.closing-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 50% 31%;
}

.hero-shade,
.closing-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 23, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
  padding-bottom: 72px;
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 98px;
  font-weight: 400;
  line-height: 0.9;
}

.hero-lead {
  max-width: 570px;
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-goal {
  width: 310px;
  flex: 0 0 310px;
  padding: 24px 0 4px 28px;
  border-left: 2px solid var(--sun);
}

.hero-goal span,
.hero-goal small {
  display: block;
}

.hero-goal span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-goal strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1.1;
}

.hero-goal small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.hero-scroll {
  position: absolute;
  right: 26px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.fact-line {
  min-height: 144px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fact-grid {
  display: grid;
  min-height: 144px;
  grid-template-columns: 1.4fr 1fr 0.65fr;
}

.fact-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 36px;
  border-left: 1px solid var(--line);
}

.fact-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.fact-grid span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-grid strong {
  font-size: 17px;
  line-height: 1.35;
}

.story-section {
  background: var(--paper);
}

.story-layout {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 74px;
}

.section-index {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 5px;
  color: var(--muted);
}

.section-index span {
  font-family: Georgia, serif;
  font-size: 26px;
}

.section-index i {
  width: 1px;
  height: 100px;
  background: var(--line);
}

.section-index small {
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.story-main {
  max-width: 1060px;
}

.story-main .display-title {
  max-width: 1030px;
}

.story-columns {
  display: grid;
  max-width: 970px;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  margin-top: 48px;
}

.story-columns p {
  margin: 0;
  color: #37443f;
  font-size: 18px;
}

.story-photo {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(240px, 0.9fr);
  margin: 86px 0 0;
  background: var(--forest);
}

.story-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 30%;
}

.story-photo figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  color: var(--white);
}

.story-photo figcaption span {
  margin-bottom: 14px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-photo figcaption small {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.45;
}

.turning-point {
  background: var(--sun);
}

.turning-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.turning-number {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 168px;
  line-height: 0.8;
}

.turning-copy {
  max-width: 660px;
}

.turning-copy .eyebrow {
  color: var(--forest);
}

.turning-copy .display-title {
  font-size: 70px;
}

.turning-copy > p:last-child,
.turning-lead {
  max-width: 620px;
}

.turning-lead {
  margin: 34px 0 20px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
}

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

.timeline-section {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2,
.documents-heading h2,
.social-copy h2,
.treatment-copy h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.08;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  position: relative;
  min-height: 300px;
  padding: 34px 30px 24px;
  border-right: 1px solid var(--line);
}

.timeline li:first-child {
  border-left: 1px solid var(--line);
}

.timeline li::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.timeline time {
  display: block;
  margin-bottom: 50px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.treatment-section {
  padding-block: 126px;
  color: var(--white);
  background: var(--forest-deep);
}

.treatment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 100px;
}

.treatment-copy {
  max-width: 560px;
}

.treatment-copy h2 {
  font-size: 66px;
}

.treatment-copy > p:not(.eyebrow) {
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 800;
}

.light-link {
  color: var(--sun);
}

.estimate {
  align-self: start;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.estimate-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.estimate-top span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.estimate-top strong {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.estimate-top small {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

.estimate-list p {
  display: grid;
  margin: 0;
  padding: 18px 0;
  grid-template-columns: 52px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.estimate-list p span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
}

.estimate-note {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.gallery-section {
  padding-bottom: 0;
  background: var(--paper);
}

.gallery-heading h2 {
  max-width: 900px;
  font-size: 52px;
}

.photo-sequence {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: end;
  gap: 8px;
  padding-inline: 8px;
}

.photo-sequence figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.photo-sequence figure:nth-child(2) {
  align-self: start;
}

.photo-sequence img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.photo-sequence figure:nth-child(2) img {
  height: 540px;
}

.photo-sequence figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(9, 31, 26, 0.85);
  font-size: 13px;
  font-weight: 700;
}

.help-section {
  background: var(--coral);
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 90px;
  align-items: start;
}

.help-copy {
  max-width: 570px;
}

.help-copy .eyebrow {
  color: var(--ink);
}

.help-copy > p:not(.eyebrow) {
  margin-top: 32px;
  font-size: 18px;
}

.help-goal {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 32, 28, 0.45);
}

.help-goal span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.help-goal strong {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.payment-tool {
  padding: 42px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 14px 14px 0 var(--forest);
}

.payment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}

.payment-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-head strong {
  max-width: 260px;
  text-align: right;
  line-height: 1.35;
}

.payment-row {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 18px;
  border-bottom: 1px solid var(--line);
}

.payment-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-row strong {
  grid-column: 1;
  font-size: 22px;
  line-height: 1.25;
}

.payment-row button {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-width: 116px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.payment-row button:hover,
.payment-row button.is-copied {
  color: var(--white);
  background: var(--forest);
}

.button-bank {
  width: 100%;
  margin-top: 26px;
  color: var(--white);
  background: var(--forest);
}

.button-bank:hover {
  background: var(--forest-deep);
}

.qr-open {
  display: grid;
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
}

.qr-open img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  object-position: top;
}

.qr-open span,
.qr-open small {
  display: block;
}

.qr-open strong {
  font-size: 14px;
}

.qr-open small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.payment-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.documents-section {
  background: var(--white);
}

.documents-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.documents-heading .eyebrow {
  margin-bottom: 12px;
}

.documents-heading > p {
  max-width: 440px;
  margin: 0 0 6px auto;
  color: var(--muted);
}

.document-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.document-tabs button {
  position: relative;
  min-width: 150px;
  padding: 15px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.document-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.document-tabs button[aria-selected="true"] {
  color: var(--coral-dark);
}

.document-tabs button[aria-selected="true"]::after {
  background: var(--coral);
}

.document-tabs span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 7px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
}

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

.document-card {
  display: grid;
  min-width: 0;
  min-height: 440px;
  padding: 0;
  grid-template-rows: 300px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease;
}

.document-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.doc-image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e9eeeb;
}

.doc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 260ms ease;
}

.document-card:hover .doc-image img {
  transform: scale(1.025);
}

.doc-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.doc-copy small,
.doc-copy em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.doc-copy strong {
  margin: 8px 0 6px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.document-download {
  grid-template-rows: 300px auto;
}

.download-symbol {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: var(--forest);
  font-size: 38px;
  font-weight: 900;
}

.social-section {
  padding-block: 120px;
  color: var(--white);
  background: #18211e;
}

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

.social-copy h2 {
  font-size: 58px;
}

.social-copy > p:last-child {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.social-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.social-links a {
  display: grid;
  min-height: 104px;
  padding: 22px 8px;
  grid-template-columns: 120px 1fr 32px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 180ms ease, padding-left 180ms ease;
}

.social-links a:hover {
  padding-left: 18px;
  color: var(--sun);
}

.social-links span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 19px;
}

.social-links i {
  font-size: 22px;
  font-style: normal;
}

.closing-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.closing-section > img {
  object-position: center 42%;
}

.closing-shade {
  background: rgba(8, 30, 24, 0.62);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 680px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.closing-inner h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.02;
}

.closing-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.site-footer {
  padding-block: 46px;
  color: var(--white);
  background: #0c1512;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.mobile-donate {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 36px 86px;
  color: var(--white);
  background: rgba(5, 12, 10, 0.96);
}

.lightbox figure {
  display: flex;
  width: min(100%, 1020px);
  height: calc(100svh - 72px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
}

.lightbox figure img {
  min-width: 0;
  max-width: 100%;
  max-height: calc(100% - 46px);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 40px;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 70px;
  font-size: 58px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--forest-deep);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

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

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .section {
    padding-block: 108px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .hero-goal {
    width: 280px;
    flex-basis: 280px;
  }

  .display-title {
    font-size: 50px;
  }

  .story-layout {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 42px;
  }

  .story-photo {
    grid-template-columns: 1.7fr 1fr;
  }

  .turning-number {
    font-size: 126px;
  }

  .turning-copy .display-title {
    font-size: 58px;
  }

  .treatment-layout,
  .help-layout {
    gap: 56px;
  }

  .treatment-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .treatment-copy h2,
  .section-heading h2,
  .documents-heading h2,
  .social-copy h2 {
    font-size: 52px;
  }

  .photo-sequence img {
    height: 560px;
  }

  .photo-sequence figure:nth-child(2) img {
    height: 470px;
  }

  .help-layout {
    grid-template-columns: 0.8fr minmax(500px, 1.2fr);
  }

  .document-card {
    min-height: 390px;
    grid-template-rows: 250px auto;
  }

  .document-download {
    grid-template-rows: 250px auto;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding-block: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 23px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    height: calc(100dvh - var(--header-height));
    padding: 36px 24px 110px;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
  }

  .mobile-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-size: 28px;
  }

  .mobile-nav .mobile-nav-help {
    margin-top: auto;
    border: 0;
    border-radius: 4px;
    color: var(--white);
    background: var(--forest);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
  }

  .hero {
    height: calc(100svh - var(--header-height) - 58px);
    min-height: 600px;
    max-height: 760px;
  }

  .hero-inner {
    gap: 30px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-goal {
    width: 240px;
    flex-basis: 240px;
  }

  .hero-goal strong {
    font-size: 28px;
  }

  .hero-scroll {
    display: none;
  }

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

  .fact-grid > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .story-layout {
    display: block;
  }

  .section-index {
    display: none;
  }

  .story-columns {
    gap: 32px;
  }

  .story-photo {
    grid-template-columns: 1fr;
  }

  .story-photo img {
    height: 560px;
  }

  .story-photo figcaption {
    padding: 30px;
  }

  .turning-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .turning-number {
    font-size: 110px;
  }

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

  .timeline li {
    min-height: 270px;
    border-bottom: 1px solid var(--line);
  }

  .treatment-layout,
  .help-layout,
  .documents-heading,
  .social-layout {
    grid-template-columns: 1fr;
  }

  .treatment-layout,
  .help-layout,
  .social-layout {
    gap: 64px;
  }

  .treatment-copy {
    max-width: 680px;
  }

  .photo-sequence {
    grid-template-columns: repeat(3, 70vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .photo-sequence figure {
    scroll-snap-align: start;
  }

  .photo-sequence img,
  .photo-sequence figure:nth-child(2) img {
    height: 590px;
  }

  .payment-tool {
    max-width: 680px;
  }

  .documents-heading {
    gap: 26px;
  }

  .documents-heading > p {
    margin-left: 0;
  }

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

  .document-card,
  .document-download {
    grid-template-rows: 280px auto;
  }

  .social-links a {
    grid-template-columns: 110px 1fr 32px;
  }

  .closing-inner h2 {
    font-size: 62px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .hero {
    height: calc(100svh - var(--header-height) - 46px);
    min-height: 610px;
    max-height: 720px;
  }

  .hero-image {
    object-position: 48% 28%;
  }

  .hero-shade {
    background: rgba(7, 28, 23, 0.65);
  }

  .hero-inner {
    display: block;
    padding-top: 54px;
    padding-bottom: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 53px;
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero-goal {
    position: absolute;
    right: 14px;
    bottom: 24px;
    left: 14px;
    width: auto;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 0;
  }

  .hero-goal span {
    margin: 0;
  }

  .hero-goal strong {
    margin: 3px 0;
    font-size: 28px;
  }

  .hero-goal small {
    max-width: 330px;
    font-size: 11px;
  }

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

  .fact-grid > div,
  .fact-grid > div:last-child {
    min-height: 105px;
    padding: 20px 18px;
    grid-column: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .display-title,
  .turning-copy .display-title,
  .section-heading h2,
  .documents-heading h2,
  .social-copy h2,
  .treatment-copy h2 {
    font-size: 39px;
    line-height: 1.08;
  }

  .story-columns {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .story-columns p {
    font-size: 16px;
  }

  .story-photo {
    margin-top: 54px;
  }

  .story-photo img {
    height: 470px;
  }

  .story-photo figcaption {
    padding: 24px;
  }

  .story-photo figcaption small {
    font-size: 20px;
  }

  .turning-number {
    font-size: 82px;
  }

  .turning-lead {
    margin-top: 24px;
    font-size: 19px;
  }

  .section-heading {
    display: block;
    margin-bottom: 46px;
  }

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

  .timeline li {
    min-height: 0;
    padding: 28px 22px 34px;
    border-left: 1px solid var(--line);
  }

  .timeline time {
    margin-bottom: 26px;
  }

  .treatment-section {
    padding-block: 76px;
  }

  .treatment-layout {
    gap: 50px;
  }

  .estimate-top {
    display: block;
  }

  .estimate-top strong {
    display: block;
    margin-top: 12px;
    font-size: 46px;
  }

  .gallery-heading h2 {
    font-size: 37px;
  }

  .photo-sequence {
    grid-template-columns: repeat(3, 86vw);
  }

  .photo-sequence img,
  .photo-sequence figure:nth-child(2) img {
    height: 520px;
  }

  .help-layout {
    gap: 48px;
  }

  .help-goal strong {
    font-size: 44px;
  }

  .payment-tool {
    padding: 24px 18px;
    box-shadow: 8px 8px 0 var(--forest);
  }

  .payment-head {
    display: block;
  }

  .payment-head strong {
    display: block;
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .payment-row strong {
    overflow-wrap: anywhere;
    font-size: 19px;
  }

  .payment-row button {
    width: 100%;
    margin-top: 12px;
    grid-row: auto;
    grid-column: 1;
  }

  .document-tabs {
    overflow-x: auto;
  }

  .document-tabs button {
    min-width: 126px;
    padding-inline: 14px;
  }

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

  .document-card,
  .document-download {
    min-height: 410px;
    grid-template-rows: 275px auto;
  }

  .social-section {
    padding-block: 78px;
  }

  .social-layout {
    gap: 44px;
  }

  .social-links a {
    min-height: 94px;
    padding-inline: 2px;
    grid-template-columns: 1fr 28px;
    gap: 8px;
  }

  .social-links span {
    grid-column: 1;
  }

  .social-links strong {
    grid-column: 1;
    font-size: 16px;
  }

  .social-links i {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .closing-section,
  .closing-inner {
    min-height: 600px;
  }

  .closing-section > img {
    object-position: 52% center;
  }

  .closing-inner h2 {
    font-size: 47px;
  }

  .closing-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mobile-donate {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: flex;
    height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--ink);
    background: var(--sun);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-donate strong {
    font-size: 15px;
  }

  .lightbox {
    padding: 62px 12px 28px;
  }

  .lightbox figure {
    height: calc(100svh - 90px);
  }

  .lightbox-arrow {
    top: auto;
    bottom: 10px;
    width: 56px;
    height: 46px;
    font-size: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .toast {
    right: 14px;
    bottom: 82px;
    left: 14px;
    text-align: center;
  }
}

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

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

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