:root {
  --red: #D00000;
  --red-hover: #A30000;
  --blue: #006494;
  --green: #2B8C6F;
  --green-text: #24755D;
  --red-tint: #F9E0E0;
  --blue-tint: #E0ECF2;
  --green-tint: #E6F1EE;
  --ink: #2A2927;
  --gray: #6B6A67;
  --line: #E8E6E2;
  --cream: #FDFBF7;
  --paper: #FFFDF6;
  --white: #FFFFFF;
  --shadow: 0 22px 60px rgba(42, 41, 39, 0.15);
  --soft-shadow: 0 12px 30px rgba(42, 41, 39, 0.11);
  --hover-shadow: 0 26px 58px rgba(42, 41, 39, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(224, 236, 242, 0.55), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(230, 241, 238, 0.65), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

main,
section,
.site-footer {
  overflow-x: clip;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    rgba(255, 253, 246, 0.96);
  background-size: 18px 18px, 18px 18px, auto;
  border-bottom: 0;
  box-shadow: 0 14px 30px rgba(42, 41, 39, 0.13), 0 3px 0 rgba(255, 255, 255, 0.82) inset;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  left: 45%;
  top: -4px;
  z-index: 2;
  width: 132px;
  height: 16px;
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    rgba(208, 0, 0, 0.82);
  background-size: 12px 12px, 12px 12px, auto;
  box-shadow: 0 4px 12px rgba(208, 0, 0, 0.18);
  transform: translateX(-50%) rotate(-1deg);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(42, 41, 39, 0.16), 0 3px 0 rgba(255, 255, 255, 0.85) inset;
  background:
    linear-gradient(rgba(0, 100, 148, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.04) 1px, transparent 1px),
    rgba(255, 253, 246, 0.98);
  background-size: 18px 18px, 18px 18px, auto;
}

.nav-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

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

.brand strong {
  display: block;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.2;
}

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

.nav-links a {
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    var(--blue-tint);
  background-size: 12px 12px, 12px 12px, auto;
  color: var(--blue);
}

.nav-links .nav-cta {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    var(--red);
  background-size: 12px 12px, 12px 12px, auto;
  color: var(--white);
  margin-left: 6px;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(208, 0, 0, 0.17);
  overflow: visible;
}

.nav-links .nav-cta:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    var(--red-hover);
  background-size: 12px 12px, 12px 12px, auto;
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto -24px;
}

.breadcrumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(232, 230, 226, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    rgba(255, 253, 246, 0.9);
  background-size: 14px 14px, 14px 14px, auto;
  box-shadow: 0 8px 18px rgba(42, 41, 39, 0.06);
  list-style: none;
  padding: 8px 12px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--gray);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumbs li + li::before {
  content: ">";
  margin-right: 8px;
  color: var(--green-text);
  font-family: "Playpen Sans", Arial, sans-serif;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  padding: 72px 0 64px;
}

.section-clip::after {
  display: none;
}

.hero-grid,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-text);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playpen Sans", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.3vw, 4.2rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

p {
  margin: 0;
}

.hero-subhead {
  max-width: 38rem;
  margin-top: 22px;
  color: var(--gray);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-subhead strong {
  color: var(--ink);
  font-weight: 900;
}

.hero-subhead strong span {
  color: var(--red);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 800;
}

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

.home-hero-actions {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
  align-items: start;
}

.home-hero-actions .btn-paper {
  grid-column: 1 / -1;
  width: max-content;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  padding: 14px 22px;
  text-decoration: none;
  transform: rotate(-0.3deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: rotate(0deg) translateY(-2px);
}

.btn-primary {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    var(--red);
  background-size: 12px 12px, 12px 12px, auto;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(208, 0, 0, 0.2), inset 0 -4px 0 rgba(42, 41, 39, 0.13);
}

.btn-primary:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    var(--red-hover);
  background-size: 12px 12px, 12px 12px, auto;
}

.btn-secondary {
  background:
    linear-gradient(rgba(0, 100, 148, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.12) 1px, transparent 1px);
  background-color: transparent;
  background-size: 12px 12px, 12px 12px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(42, 41, 39, 0.08);
}

.btn-paper {
  background:
    repeating-linear-gradient(to bottom, transparent 0 12px, rgba(107, 106, 103, 0.13) 13px 14px),
    var(--paper);
  border: 1px solid var(--line);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(42, 41, 39, 0.08);
}

.btn-paper::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 5px;
  border-radius: 999px;
  background: rgba(43, 140, 111, 0.18);
  pointer-events: none;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo,
.story-photo,
.centre-card figure,
.scrap-photo,
.pin-card,
.certificate-preview {
  --photo-rotate: 1deg;
  --photo-hover-rotate: -0.8deg;
  position: relative;
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(var(--photo-rotate));
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
  will-change: transform;
}

.hero-photo:hover,
.story-photo:hover,
.pin-card:hover,
.scrap-photo:hover,
.certificate-preview:hover,
.centre-card figure:hover,
.centre-card:hover figure {
  box-shadow: var(--hover-shadow);
  filter: saturate(1.03);
  transform: rotate(var(--photo-hover-rotate)) translateY(-6px) scale(1.015);
}

.hero-photo {
  overflow: visible;
  border: 12px solid var(--white);
  border-radius: var(--radius);
  --photo-rotate: 1.2deg;
  --photo-hover-rotate: -0.7deg;
}

.hero-photo img:not(.paper-tape) {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  object-fit: cover;
  object-position: center 45%;
}

.hero-photo figcaption,
.pin-card figcaption,
.scrap-photo figcaption {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 12px 12px;
  text-align: center;
}

.hero-photo figcaption span {
  color: var(--red);
}

.paper-tape {
  position: absolute;
  z-index: 3;
  width: clamp(94px, 12vw, 156px);
  height: 44px;
  pointer-events: none;
  filter: drop-shadow(0 5px 8px rgba(42, 41, 39, 0.18));
}

.tape-one {
  left: 8%;
  top: -28px;
  transform: rotate(-9deg);
}

.tape-two {
  bottom: 18px;
  right: -26px;
  transform: rotate(18deg);
}

.tape-three {
  left: 50%;
  top: -22px;
  width: 138px;
  height: 38px;
  overflow: hidden;
  background: url("paper eelements/washi-tape-cliparts/washi-tape-clipart5.svg") center / contain no-repeat;
  transform: translateX(-50%) rotate(-4deg);
}

.impact-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.impact-strip div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 29px, rgba(107, 106, 103, 0.16) 30px 31px),
    var(--paper);
}

.impact-strip strong {
  color: var(--red);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
}

.impact-strip span {
  color: var(--gray);
  font-weight: 800;
}

.notebook-section,
.programs,
.centres,
.support,
.partners,
.faq,
.final-cta {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 132px) 0;
}

.notebook-section > *,
.programs > *,
.story-band > *:not(.torn),
.centres > *,
.support > *,
.partners > *,
.faq > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.notebook-section,
.programs,
.centres,
.partners,
.final-cta {
  --section-bg: var(--cream);
}

.support {
  --section-bg: var(--paper);
}

.faq {
  --section-bg: var(--green-tint);
}

.story-band {
  --section-bg: var(--blue-tint);
}

.notebook-section {
  --tear-image: url("paper eelements/torn border 1.svg");
}

.programs {
  --tear-image: url("paper eelements/torn border 2.svg");
}

.story-band {
  --tear-image: url("paper eelements/torn border 3.svg");
}

.centres {
  --tear-image: url("paper eelements/torn border 1.svg");
}

.support {
  --tear-image: url("paper eelements/torn border 2.svg");
}

.partners {
  --tear-image: url("paper eelements/torn border 3.svg");
  padding-top: clamp(32px, 4.5vw, 58px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.faq {
  --tear-image: url("paper eelements/torn border 1.svg");
}

.final-cta {
  --tear-image: url("paper eelements/torn border 2.svg");
}

.notebook-section,
.programs,
.centres,
.partners,
.final-cta {
  background: var(--section-bg);
}

.notebook-section::before,
.programs::before,
.story-band::before,
.centres::before,
.support::before,
.faq::before,
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: -56px;
  z-index: 0;
  width: calc(100vw + 40px);
  height: 112px;
  background: var(--tear-image) center bottom / 100% 100% no-repeat;
  pointer-events: none;
  transform: translateX(-50%);
}

.notebook-section::before,
.programs::before,
.story-band::before,
.centres::before,
.support::before,
.faq::before,
.final-cta::before {
  filter: none;
}

.notebook-section {
  background: var(--section-bg);
  padding-top: clamp(112px, 11vw, 148px);
}

.education-grid,
.story-grid,
.support-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 78px);
  align-items: center;
}

.notebook-page {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 48px, rgba(208, 0, 0, 0.55) 49px 51px, transparent 52px),
    repeating-linear-gradient(to bottom, transparent 0 31px, rgba(107, 106, 103, 0.18) 32px 33px),
    var(--paper);
  box-shadow: var(--soft-shadow);
  padding: clamp(28px, 5vw, 56px) clamp(26px, 5vw, 60px) clamp(28px, 5vw, 56px) clamp(64px, 8vw, 92px);
}

.notebook-page h2 {
  max-width: 11ch;
  margin-bottom: 22px;
}

.notebook-page p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--ink);
  font-size: 1.06rem;
}

.notebook-page p + p {
  margin-top: 14px;
}

.notebook-page .margin-note {
  display: inline-block;
  margin-top: 24px;
  color: var(--red);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-weight: 800;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.pin-card {
  width: min(82%, 390px);
  border: 10px solid var(--white);
  border-bottom-width: 0;
  border-radius: 5px;
  --photo-rotate: -3deg;
  --photo-hover-rotate: -0.8deg;
}

.pin-card::before,
.scrap-photo::before,
.centre-card figure::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 96px;
  height: 28px;
  background: rgba(43, 140, 111, 0.45);
  box-shadow: 0 2px 5px rgba(42, 41, 39, 0.12);
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
}

.pin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pin-card-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72%, 340px);
  --photo-rotate: 5deg;
  --photo-hover-rotate: 2deg;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-subhead {
  max-width: 48rem;
  margin-top: 14px;
  color: var(--gray);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.program-card:hover,
.note-card:hover,
.doc-card:hover,
.contact-card:hover,
.timeline-item:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-3px);
}

.program-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-tint);
}

.program-card:nth-child(2)::after {
  background: var(--green-tint);
}

.program-card:nth-child(3)::after {
  background: var(--red-tint);
}

.card-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--white);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-weight: 800;
}

.card-mark.blue {
  background: var(--blue);
}

.card-mark.green {
  background: var(--green);
}

.card-mark.red {
  background: var(--red);
}

.card-mark.icon-mark {
  width: 76px;
  height: 76px;
  min-width: 76px;
  aspect-ratio: 1;
  flex: 0 0 76px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: var(--blue);
}

.card-mark.icon-mark.blue {
  background: transparent;
  color: var(--blue);
}

.card-mark.icon-mark.green {
  background: transparent;
  color: var(--green);
}

.card-mark.icon-mark.red {
  background: transparent;
  color: var(--red);
}

.card-mark img,
.note-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.note-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  aspect-ratio: 1;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: transparent;
}

.note-icon.green {
  border-color: var(--green);
  background: transparent;
}

.note-icon.red {
  border-color: var(--red);
  background: transparent;
}

.program-card p {
  margin: 16px 0 24px;
  color: var(--gray);
}

.program-card a,
.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.donation-grid .program-card a::before,
.support-action-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.program-card a::after,
.text-link::after {
  content: " ->";
}

.story-band {
  position: relative;
  overflow: hidden;
  background: var(--blue-tint);
  margin: 0;
  padding: clamp(86px, 10vw, 128px) 0;
}

.story-band .torn {
  display: none;
}

.torn-top {
  top: -1px;
  transform: rotate(180deg);
}

.torn-bottom {
  bottom: -1px;
}

.story-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 20px;
  color: var(--ink);
  font-size: 1.08rem;
}

.story-copy .soft-note {
  display: inline-block;
  max-width: 48ch;
  margin: 20px 0 8px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 16px;
}

.story-photo {
  border: 10px solid var(--white);
  border-radius: var(--radius);
  --photo-rotate: 2deg;
  --photo-hover-rotate: -0.4deg;
}

.story-photo img:not(.paper-tape) {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.centre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.centre-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  padding: 18px;
}

.centre-card figure {
  border: 8px solid var(--white);
  border-radius: 5px;
  --photo-rotate: -1.5deg;
  --photo-hover-rotate: 0.4deg;
}

.centre-card:nth-child(2) figure {
  --photo-rotate: 1.5deg;
  --photo-hover-rotate: -0.4deg;
}

.centre-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.label {
  color: var(--green-text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.centre-card h3 {
  margin: 4px 0 12px;
}

.centre-card p:last-child {
  color: var(--gray);
}

.support {
  background:
    repeating-linear-gradient(to bottom, transparent 0 32px, rgba(107, 106, 103, 0.1) 33px 34px),
    var(--paper);
}

.support-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.support-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.scrap-photo {
  border: 8px solid var(--white);
  border-bottom-width: 0;
  border-radius: 5px;
  --photo-rotate: -2deg;
  --photo-hover-rotate: 0.3deg;
}

.scrap-photo:nth-child(2) {
  margin-top: 48px;
  --photo-rotate: 3deg;
  --photo-hover-rotate: 0.8deg;
}

.scrap-photo:nth-child(3) {
  margin-top: 16px;
  --photo-rotate: -4deg;
  --photo-hover-rotate: -1.2deg;
}

.scrap-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.partners .section-inner {
  position: relative;
  min-height: clamp(280px, 30vw, 390px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  align-items: end;
  gap: 18px clamp(26px, 5vw, 64px);
}

.partners .section-heading,
.partner-row {
  position: relative;
  z-index: 1;
}

.partners .section-heading {
  grid-column: 1 / 3;
  width: min(100%, 1080px);
  max-width: none;
}

.partners .section-heading h2 {
  max-width: none;
}

.paper-crumple {
  position: absolute;
  right: clamp(4px, 5vw, 70px);
  top: 58%;
  z-index: 0;
  width: min(38vw, 440px);
  opacity: 0.62;
  filter: drop-shadow(0 26px 38px rgba(42, 41, 39, 0.16));
  transform: translateY(-50%) rotate(7deg);
  pointer-events: none;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / 3;
  max-width: min(100%, 1080px);
}

.partner-row span,
.partner-row a {
  min-width: min(100%, 220px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  padding: 11px 16px;
  box-shadow: 0 6px 18px rgba(42, 41, 39, 0.06);
  text-align: center;
  text-decoration: none;
}

.social-section .page-split {
  align-items: center;
}

.social-section .page-section-copy p:not(.eyebrow) {
  max-width: 34rem;
}

.social-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(42, 41, 39, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(42, 41, 39, 0.18);
}

.social-cta.facebook {
  background: var(--blue);
}

.social-cta.instagram {
  background: var(--red);
}

.social-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.social-photo-grid .scrap-photo {
  margin-top: 0;
}

.social-photo-grid .scrap-photo:nth-child(2) {
  margin-top: 58px;
  --photo-rotate: 3deg;
  --photo-hover-rotate: 0.8deg;
}

.social-photo-grid .scrap-photo img {
  aspect-ratio: 3 / 4;
}

.faq {
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 236, 242, 0.58), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.84), rgba(230, 241, 238, 0.72));
}

.faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
}

.faq .section-heading {
  position: relative;
  margin-bottom: 0;
  padding: 28px 28px 30px 76px;
  background:
    linear-gradient(90deg, transparent 0 38px, rgba(208, 0, 0, 0.38) 39px 41px, transparent 42px),
    repeating-linear-gradient(to bottom, transparent 0 31px, rgba(107, 106, 103, 0.13) 32px 33px),
    rgba(255, 253, 246, 0.88);
  border: 1px solid rgba(232, 230, 226, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(42, 41, 39, 0.08);
}

.faq .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.6vw, 3.9rem);
}

.faq-note {
  max-width: 28rem;
  margin-top: 18px;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgba(232, 230, 226, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    rgba(255, 253, 246, 0.94);
  background-size: 16px 16px, 16px 16px, auto;
  box-shadow: 0 10px 24px rgba(42, 41, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

details[open] {
  box-shadow: 0 16px 34px rgba(42, 41, 39, 0.1);
}

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

summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  padding: 20px 22px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green-text);
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--gray);
  padding: 0 22px 24px;
  font-size: 1.02rem;
}

.page-hero {
  padding: clamp(72px, 10vw, 122px) 0 clamp(54px, 8vw, 90px);
}

.page-hero-grid,
.page-split,
.doc-grid,
.contact-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero-copy p:not(.eyebrow),
.page-section-copy p,
.contact-card p,
.doc-card p {
  color: var(--gray);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 18px;
}

.page-section {
  position: relative;
  padding: clamp(70px, 9vw, 118px) 0;
}

.page-section.paper {
  background:
    repeating-linear-gradient(to bottom, transparent 0 32px, rgba(107, 106, 103, 0.1) 33px 34px),
    var(--paper);
}

.page-section.blue {
  background: var(--blue-tint);
}

.page-section.green {
  background: var(--green-tint);
}

.page-section-copy h2 {
  max-width: 12ch;
  margin-bottom: 20px;
}

.page-section-copy p + p {
  margin-top: 16px;
}

.note-card,
.doc-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 16px 16px, 16px 16px, auto;
  box-shadow: var(--soft-shadow);
  padding: clamp(22px, 3vw, 34px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.note-card h3,
.doc-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.contact-card-heading .note-icon {
  margin-bottom: 0;
}

.contact-card-heading h3 {
  margin-bottom: 0;
}

.note-card p,
.doc-card p,
.contact-card p {
  color: var(--gray);
}

.note-card p + p,
.doc-card p + p,
.contact-card p + p {
  margin-top: 12px;
}

.contact-line {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  align-items: center;
}

.contact-line + .contact-line {
  margin-top: 18px;
}

.contact-line img {
  width: 44px;
  height: 44px;
  justify-self: center;
  object-fit: contain;
}

.contact-line img[src*="Map pin"] {
  width: 52px;
  height: 52px;
}

.contact-line p {
  margin: 0;
  line-height: 1.45;
}

.certificate-card {
  align-self: stretch;
}

.certificate-preview {
  position: relative;
  display: block;
  margin: 4px 0 22px;
  border: 8px solid var(--white);
  border-radius: 5px;
  background: var(--white);
  --photo-rotate: 1deg;
  --photo-hover-rotate: -0.5deg;
}

.certificate-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  z-index: 2;
  width: 116px;
  height: 30px;
  background: rgba(43, 140, 111, 0.42);
  box-shadow: 0 3px 7px rgba(42, 41, 39, 0.14);
  transform: translateX(-50%) rotate(-5deg);
}

.certificate-preview img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    var(--red);
  background-size: 12px 12px, 12px 12px, auto;
  color: var(--white);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(208, 0, 0, 0.16);
}

.doc-link:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    var(--red-hover);
  background-size: 12px 12px, 12px 12px, auto;
}

.two-card-grid,
.value-grid,
.story-list,
.donation-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

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

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

.support-action-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-tint);
}

.support-action-card {
  padding-bottom: 42px;
}

.support-action-card:nth-child(2)::after {
  background: var(--blue-tint);
}

.doc-grid,
.contact-grid {
  align-items: start;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-section > .mini-gallery {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
}

.mini-gallery .scrap-photo {
  border-bottom-width: 8px;
}

.timeline {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  align-items: center;
  min-height: 220px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-left: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 16px 16px, 16px 16px, auto;
  box-shadow: var(--soft-shadow);
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.timeline-item .note-icon {
  margin-bottom: 0;
}

.timeline-item strong {
  color: var(--red);
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 1.32rem;
}

.timeline-item p {
  grid-column: 1 / -1;
  max-width: 32rem;
  margin: 0;
  color: var(--gray);
  font-size: 1.1rem;
}

.simple-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.simple-list li {
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.55);
  padding: 12px 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.final-cta {
  padding-top: 96px;
}

.final-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 58px, rgba(208, 0, 0, 0.45) 59px 61px, transparent 62px),
    repeating-linear-gradient(to bottom, transparent 0 31px, rgba(107, 106, 103, 0.14) 32px 33px),
    var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
}

.final-card h2 {
  max-width: 14ch;
  margin: 0 auto;
}

.final-card .hero-actions {
  justify-content: center;
}

.donate-widget {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 70;
  transform: translateY(-50%);
}

.donate-tab {
  position: relative;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  width: 52px;
  min-height: 132px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(208, 0, 0, 0.26);
  cursor: pointer;
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  padding: 18px 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    var(--red);
  background-size: 12px 12px, 12px 12px, auto;
}

.donate-panel {
  position: absolute;
  right: calc(100% + 0px);
  top: 50%;
  width: min(310px, calc(100vw - 86px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px;
  transform: translate(18px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.donate-widget.is-open .donate-panel {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}

.donate-widget.is-open .donate-tab {
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    var(--red-hover);
  background-size: 12px 12px, 12px 12px, auto;
}

.donate-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.qr-image {
  width: 100%;
  max-width: 220px;
  margin: 10px auto 14px;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.donate-help {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 16px;
}

.donate-panel .btn {
  width: 100%;
  font-size: 0.86rem;
  padding-inline: 12px;
}

.site-footer {
  --section-bg: var(--ink);
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--white);
  margin-top: 20px;
  padding: 72px 0 34px;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: -56px;
  z-index: 0;
  width: calc(100vw + 40px);
  height: 112px;
  background: url("paper eelements/torn border 3.svg") center bottom / 100% 100% no-repeat;
  filter: none;
  pointer-events: none;
  transform: translateX(-50%);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(170px, 0.58fr) minmax(230px, 0.82fr) minmax(310px, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 58px);
  margin: 0 auto;
}

.footer-brand img {
  width: 78px;
  margin-bottom: 12px;
}

.footer-brand strong {
  display: block;
  font-family: "Playpen Sans", Arial, sans-serif;
  font-size: 1.1rem;
}

.footer-contact {
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playpen Sans", Arial, sans-serif;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.footer-inner a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 9px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.footer-social a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  margin: 32px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s ease, transform 0.68s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.js .hero-photo.reveal.is-visible,
.js .story-photo.reveal.is-visible,
.js .scrap-photo.reveal.is-visible,
.js .pin-card.reveal.is-visible,
.js .certificate-preview.reveal.is-visible {
  transform: rotate(var(--photo-rotate));
}

.js .hero-photo.reveal.is-visible:hover,
.js .story-photo.reveal.is-visible:hover,
.js .scrap-photo.reveal.is-visible:hover,
.js .pin-card.reveal.is-visible:hover,
.js .certificate-preview.reveal.is-visible:hover {
  box-shadow: var(--hover-shadow);
  filter: saturate(1.03);
  transform: rotate(var(--photo-hover-rotate)) translateY(-6px) scale(1.015);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 96px 0 auto 0;
    display: grid;
    gap: 8px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background:
      linear-gradient(rgba(0, 100, 148, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 100, 148, 0.035) 1px, transparent 1px),
      var(--paper);
    background-size: 18px 18px, 18px 18px, auto;
    padding: 16px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: 8px;
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .page-hero-grid,
  .page-split,
  .doc-grid,
  .contact-grid,
  .education-grid,
  .story-grid,
  .support-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .partners .section-inner {
    min-height: 320px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .paper-crumple {
    right: 0;
    top: 60%;
    width: min(58vw, 340px);
    opacity: 0.34;
  }

  .hero-copy {
    order: 2;
  }

  .hero-photo-wrap {
    order: 1;
  }

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

  .social-photo-grid .scrap-photo,
  .social-photo-grid .scrap-photo:nth-child(2) {
    margin-top: 0;
    --photo-rotate: 0deg;
    --photo-hover-rotate: -1deg;
  }

  h1 {
    max-width: 12ch;
  }

  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero-actions {
    width: min(100%, 460px);
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    justify-content: center;
    margin-inline: auto;
  }

  .home-hero-actions .btn {
    width: 100%;
    padding-inline: 20px;
  }

  .home-hero-actions .btn-paper {
    justify-self: center;
    width: max-content;
    max-width: 100%;
    padding-inline: 24px;
  }

  .card-grid,
  .centre-grid,
  .two-card-grid,
  .value-grid,
  .story-list,
  .donation-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .centre-card {
    grid-template-columns: minmax(220px, 0.75fr) 1fr;
  }
}

@media (max-width: 720px) {
  .site-header::before {
    width: 96px;
    height: 13px;
    top: -3px;
  }

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

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 70px;
  }

  .brand strong {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .nav-links {
    inset: 84px 0 auto 0;
    max-height: calc(100vh - 84px);
  }

  .breadcrumbs {
    margin-top: 12px;
    margin-bottom: -16px;
  }

  .breadcrumbs ol {
    padding: 7px 10px;
  }

  .hero {
    padding-top: 40px;
  }

  .partners .section-inner {
    min-height: 300px;
  }

  .paper-crumple {
    top: 66%;
    right: 0;
    width: min(62vw, 250px);
    opacity: 0.28;
  }

  .hero-photo {
    border-width: 8px;
  }

  .hero-photo img {
    aspect-ratio: 3 / 4;
    object-position: center center;
  }

  .hero-photo-wrap .tape-two,
  .hero-photo .tape-two {
    right: 8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .home-hero-actions {
    width: min(100%, 430px);
    grid-template-columns: repeat(2, minmax(138px, 1fr));
    justify-content: center;
    margin-inline: auto;
  }

  .home-hero-actions .btn {
    width: 100%;
  }

  .home-hero-actions .btn-paper {
    width: max-content;
    max-width: 100%;
    padding-inline: 22px;
  }

  .impact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px;
  }

  .impact-strip div {
    min-height: 148px;
    place-items: center;
    align-content: center;
    padding: 24px 16px;
    text-align: center;
  }

  .impact-strip strong {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .impact-strip span {
    max-width: 12ch;
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .notebook-page {
    padding-left: 42px;
    background:
      linear-gradient(90deg, transparent 0 26px, rgba(208, 0, 0, 0.55) 27px 29px, transparent 30px),
      repeating-linear-gradient(to bottom, transparent 0 31px, rgba(107, 106, 103, 0.18) 32px 33px),
      var(--paper);
  }

  .final-card {
    background:
      repeating-linear-gradient(to bottom, transparent 0 31px, rgba(107, 106, 103, 0.14) 32px 33px),
      var(--paper);
    padding-inline: 26px;
  }

  .photo-stack {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .pin-card,
  .pin-card-small {
    position: relative;
    inset: auto;
    width: 100%;
    --photo-rotate: 0deg;
    --photo-hover-rotate: -1deg;
  }

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

  .centre-card img {
    aspect-ratio: 4 / 3;
  }

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

  .scrap-photo,
  .scrap-photo:nth-child(2),
  .scrap-photo:nth-child(3) {
    margin-top: 0;
    --photo-rotate: 0deg;
    --photo-hover-rotate: -1deg;
  }

  .support-gallery .scrap-photo:nth-child(3),
  .mini-gallery .scrap-photo:nth-child(3) {
    width: calc(50% - 7px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .scrap-photo img {
    aspect-ratio: 4 / 3;
  }

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

  .donate-widget {
    right: 0;
  }

  .donate-tab {
    width: 50px;
    min-height: 112px;
    padding: 14px 10px;
  }
}

@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;
  }

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

@media (max-width: 720px) {
  main,
  main > section,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
