:root {
  --ink: #18211f;
  --muted: #62706a;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d9ded6;
  --green: #1d6b50;
  --green-deep: #104735;
  --maroon: #8f2832;
  --gold: #c2932e;
  --blue: #315f85;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(15, 24, 21, 0.52);
  color: #fff;
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.solid,
.site-header.is-scrolled {
  background: rgba(16, 30, 26, 0.96);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

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

.brand-mark {
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.brand small {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 0.75rem;
  line-height: 1.1;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  font-size: 0.9rem;
}

.main-nav a {
  opacity: 0.88;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.icon-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button svg,
.icon-button svg,
.programme-card svg,
.document-link svg,
.payment-readiness svg,
.trust-list svg,
.contact-email svg,
.governance-grid svg {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.button-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 40, 50, 0.28);
}

.button-primary:hover,
.button-primary:focus {
  background: #7b2029;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.danger-button {
  background: #fff;
  border-color: #e2b8b8;
  color: #8a1d1d;
}

.hero {
  min-height: 78vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(11, 21, 18, 0.82) 0%, rgba(11, 21, 18, 0.55) 45%, rgba(11, 21, 18, 0.2) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff;
  max-width: 820px;
  padding: clamp(140px, 20vh, 220px) clamp(20px, 5vw, 76px) 70px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.page-shell h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 24px 0 30px;
  max-width: 680px;
}

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

.official-strip {
  background: var(--green-deep);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.official-strip > div {
  background: rgba(255, 255, 255, 0.06);
  min-width: 0;
  padding: 22px clamp(18px, 4vw, 64px);
}

.official-strip span {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.official-strip strong {
  display: block;
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 900px;
}

.section-heading.compact {
  max-width: 760px;
}

.section h2,
.page-shell h2,
.page-hero h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 18px;
}

.section p,
.page-shell p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.section-copy {
  max-width: 720px;
}

.text-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 850;
  margin-top: 12px;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.trust-list {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-list > div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 18px;
}

.trust-list > div:last-child {
  border-bottom: 0;
}

.trust-list svg {
  color: var(--green);
}

.mission-card {
  background: var(--green-deep);
  color: #fff;
  min-height: 320px;
  padding: clamp(24px, 4vw, 38px);
}

.mission-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.35;
  margin: 0 0 26px;
}

.mission-card a {
  color: #fff;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.media-band {
  background: #e9eee7;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  padding-bottom: clamp(28px, 5vw, 60px);
  padding-top: clamp(28px, 5vw, 60px);
}

.story-led-section {
  background: #fbfaf6;
  padding-bottom: clamp(64px, 8vw, 120px);
}

.story-lead {
  max-width: 920px;
}

.story-lead h2 {
  max-width: 780px;
}

.story-feature {
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  margin-top: 34px;
}

.story-feature img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.story-feature article {
  align-self: center;
  padding: clamp(26px, 4vw, 46px);
}

.story-feature span,
.story-card-grid span {
  color: var(--maroon);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.story-feature h3 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

.story-feature p {
  color: var(--muted);
}

.story-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.story-card-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 22px;
}

.story-card-grid svg {
  color: var(--green);
  height: 30px;
  margin-bottom: 18px;
  width: 30px;
}

.story-card-grid h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  margin: 0 0 12px;
}

.story-card-grid p {
  color: var(--muted);
  flex: 1;
  font-size: 0.96rem;
}

.story-card-grid a {
  color: var(--green);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.process-steps {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.process-steps > div {
  background: var(--green-deep);
  color: #fff;
  min-height: 230px;
  padding: 24px;
}

.process-steps span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 30px;
}

.process-steps h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.programme-overview {
  background: #eef3ef;
}

.upm-home {
  background: linear-gradient(135deg, #f7f5ef 0%, #e5edf0 100%);
}

.upm-home .section-heading {
  border-left: 6px solid var(--green);
  max-width: 820px;
  padding-left: clamp(20px, 3vw, 34px);
}

.upm-hero {
  background: linear-gradient(135deg, #102f35, #1d6b50);
}

.upm-hero::before {
  background: linear-gradient(90deg, rgba(10, 24, 26, 0.78), rgba(10, 24, 26, 0.28));
}

.upm-pillars {
  background: #eef3ef;
}

.media-band figure {
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 0;
}

.media-band img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-band figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 10px 12px;
}

.programme-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.programme-card {
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 22px;
}

.programme-card svg {
  color: var(--blue);
  height: 28px;
  margin-bottom: 20px;
  width: 28px;
}

.programme-card h3,
.news-list h3,
.governance-grid h2 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.programme-card p {
  font-size: 0.96rem;
  min-height: 90px;
}

.programme-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.impact-band {
  align-items: center;
  background: var(--green-deep);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.impact-band p,
.impact-band h2 {
  color: #fff;
}

.impact-list {
  display: grid;
  gap: 12px;
}

.impact-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  text-decoration: none;
}

.impact-list svg {
  height: 22px;
  width: 22px;
}

.donate-section {
  background: #f1eadc;
}

.donation-layout,
.split-section,
.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  margin-top: 32px;
}

.operational-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.form-row {
  display: grid;
  gap: 6px;
}

label,
legend {
  color: #33413c;
  font-size: 0.88rem;
  font-weight: 760;
}

input,
select,
textarea {
  background: #fbfcfa;
  border: 1px solid #cfd7d1;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 107, 80, 0.16);
  outline: 0;
}

.amount-picker {
  border: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr) minmax(120px, 1.4fr);
  margin: 0;
  padding: 0;
}

.amount-picker legend {
  grid-column: 1 / -1;
}

.amount-picker button {
  background: #edf3ee;
  border: 1px solid #cbd9cf;
  color: var(--green-deep);
  cursor: pointer;
  font-weight: 800;
  min-height: 44px;
}

.amount-picker button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.check-row {
  align-items: start;
  color: var(--muted);
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
  font-weight: 500;
}

.check-row input {
  height: 18px;
  margin-top: 4px;
  min-height: 0;
  width: 18px;
}

.form-status {
  color: var(--green);
  font-size: 0.92rem;
  margin: 0;
  min-height: 24px;
}

.donation-summary {
  background: var(--green-deep);
  color: #fff;
  padding: clamp(22px, 4vw, 34px);
}

.donation-summary > span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.donation-summary strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.donation-summary p {
  color: rgba(255, 255, 255, 0.76);
}

.payment-readiness {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
}

.payment-readiness div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.support-photo {
  aspect-ratio: 5 / 3;
  margin-top: 28px;
  object-fit: cover;
  width: 100%;
}

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

.document-link {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 20px;
  text-decoration: none;
}

.document-link:hover,
.document-link:focus {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(24, 33, 31, 0.12);
}

.document-link svg {
  color: var(--maroon);
  height: 28px;
  width: 28px;
}

.document-link small {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.news-section {
  background: #e6edf0;
}

.news-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.news-list article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #cad8df;
  padding: 22px;
}

.news-list time {
  color: var(--blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-section {
  background: var(--green-deep);
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-email {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  font-weight: 800;
  gap: 10px;
  margin-top: 14px;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-email.dark {
  color: #fff;
}

.cta-stack {
  align-self: center;
  display: grid;
  gap: 12px;
}

.quick-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quick-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  display: flex;
  font-weight: 800;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
}

.quick-links svg {
  height: 20px;
  width: 20px;
}

.operations-panel {
  padding-bottom: 46px;
  padding-top: 28px;
}

.operations-panel details {
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1100px;
}

.operations-panel summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 850;
  justify-content: space-between;
  list-style: none;
  padding: 18px 20px;
}

.operations-panel summary::-webkit-details-marker {
  display: none;
}

.operations-content {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
}

.operations-content p {
  flex-basis: 100%;
  margin: 0;
}

.site-footer {
  background: #121a18;
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr) minmax(220px, 1fr);
  padding: 34px clamp(20px, 5vw, 76px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 6px 0 0;
}

.site-footer a {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.photo-credit {
  font-size: 0.9rem;
}

.subpage {
  background: #fbfaf6;
}

.page-hero {
  background: var(--green-deep);
  color: #fff;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 76px) 70px;
  position: relative;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(11, 21, 18, 0.86) 0%, rgba(11, 21, 18, 0.66) 52%, rgba(11, 21, 18, 0.28) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.page-hero > div {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.page-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  max-width: 720px;
}

.contact-hero {
  background: linear-gradient(135deg, var(--green-deep), #263f4f);
}

.contact-hero::before {
  background: linear-gradient(90deg, rgba(11, 21, 18, 0.68), rgba(11, 21, 18, 0.26));
}

.page-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 132px 22px 70px;
}

.page-shell .lead {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 780px;
}

.content-grid {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
}

.article-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-copy p:first-child {
  margin-top: 0;
}

.values-section {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 24px;
}

.values-section article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}

.values-section svg,
.programme-detail svg {
  color: var(--green);
  height: 30px;
  margin-bottom: 14px;
  width: 30px;
}

.values-section h2 {
  font-size: 1.25rem;
}

.clean-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 20px;
}

.subnav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px clamp(20px, 5vw, 76px);
  position: sticky;
  top: 72px;
  z-index: 10;
}

.subnav a {
  background: #edf3ee;
  color: var(--green-deep);
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
}

.programme-detail {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 60px);
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
}

.programme-detail.alt {
  background: #eef3ef;
}

.news-archive {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.news-archive article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 30px);
}

.news-archive time {
  color: var(--blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.news-archive h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.story-page-intro {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.story-chapter {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 60px);
  grid-template-columns: 120px minmax(0, 820px);
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 76px);
}

.story-chapter.alt {
  background: #eef3ef;
}

.chapter-number {
  color: var(--maroon);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.story-chapter article {
  max-width: 820px;
}

.story-chapter h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 0 0 22px;
}

.story-chapter p {
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section h2 {
  font-size: 1.4rem;
}

.governance-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.governance-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}

.governance-grid svg {
  color: var(--green);
  height: 28px;
  margin-bottom: 12px;
  width: 28px;
}

.document-table {
  margin-top: 42px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  background: var(--surface);
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

th,
td {
  border: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf3ee;
  color: #2d3a35;
}

@media (max-width: 1040px) {
  .programme-grid,
  .document-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .story-feature img {
    min-height: 320px;
  }

  .media-band {
    grid-template-columns: 1fr 1fr;
  }

  .media-band figure:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 66px;
  }

  .icon-button {
    display: inline-flex;
  }

  .main-nav {
    background: rgba(16, 30, 26, 0.98);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 66px 0 auto;
    padding: 12px 20px 20px;
    position: fixed;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0;
    width: 100%;
  }
}

@media (max-width: 920px) {
  .official-strip {
    grid-template-columns: 1fr;
  }

  .official-strip > div {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 74vh;
  }

  .hero-overlay {
    background: rgba(11, 21, 18, 0.7);
  }

  .hero-content {
    padding-top: 132px;
  }

  .official-strip,
  .intro-grid,
  .content-grid,
  .story-page-intro,
  .donation-layout,
  .split-section,
  .contact-section,
  .site-footer,
  .governance-grid,
  .programme-detail,
  .impact-band,
  .story-chapter {
    grid-template-columns: 1fr;
  }

  .media-band,
  .programme-grid,
  .document-grid,
  .news-list,
  .values-section,
  .story-card-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 420px;
    padding-top: 126px;
  }

  .subnav {
    top: 66px;
  }

  .story-chapter {
    gap: 12px;
  }

  .chapter-number {
    font-size: 2.4rem;
  }

  .media-band figure:first-child {
    grid-column: auto;
  }

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

  .amount-picker input {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.9rem;
  }

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

  .brand-mark {
    height: 38px;
    width: 38px;
  }

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

  .button {
    width: 100%;
  }

  .main-nav.always-visible {
    display: none;
  }
}
