:root {
  --text: #4a6163;
  --muted: #6e7f80;
  --gold: #ffc94b;
  --pale-gold: #ffe4a5;
  --coral: #f17a7e;
  --orange: #f9a66c;
  --cream: #f9faf4;
  --white: #fff;
  --content: 1320px;
  --narrow: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 18px;
}

strong {
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -50px;
  z-index: 20;
  background: var(--text);
  color: var(--white);
  padding: 8px 12px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  align-items: flex-start;
  background: transparent;
  border-radius: 0 0 10px 10px;
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 126px;
  margin: 0 auto;
  max-width: var(--content);
  padding: 0 14px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.45s ease, border-color 0.45s ease, border-radius 0.45s ease, box-shadow 0.45s ease, min-height 0.45s ease, padding 0.45s ease, top 0.45s ease, width 0.45s ease;
  width: min(var(--content), calc(100% - 104px));
  z-index: 30;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(249, 250, 244, 0.96);
  border-color: rgba(74, 97, 99, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(74, 97, 99, 0.13);
  min-height: 74px;
  padding: 0 18px;
  top: 14px;
  width: min(1180px, calc(100% - 64px));
}

@supports (backdrop-filter: blur(12px)) {
  .site-header.is-scrolled,
  .site-header.menu-open {
    backdrop-filter: blur(12px);
  }
}

.brand {
  background: var(--cream);
  border-radius: 0 0 12px 12px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 224px;
  padding: 10px 22px 24px;
  transition: min-height 0.55s ease, padding 0.55s ease, width 0.55s ease, border-radius 0.55s ease;
  width: 180px;
}

.brand img {
  height: 196px;
  object-fit: contain;
  transition: height 0.55s ease, width 0.55s ease;
  width: 110px;
}

.site-header.is-scrolled .brand,
.site-header.menu-open .brand {
  background: transparent;
  border-radius: 999px;
  min-height: 64px;
  padding: 7px 10px;
  width: 58px;
}

.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img {
  height: 50px;
  width: 30px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 42px;
  padding-top: 36px;
  transition: padding-top 0.45s ease;
}

.site-header.is-scrolled .site-nav,
.site-header.menu-open .site-nav {
  padding-top: 13px;
}

.site-nav a {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--coral);
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate.active {
  background: #f2b936;
  color: var(--white);
}

.button:hover {
  filter: brightness(0.92);
}

.site-nav .nav-donate,
.button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 33px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 50px;
  padding: 0 31px;
  text-align: center;
}

.button-dark {
  background: var(--text);
}

.button-coral {
  background: var(--coral);
}

.check {
  align-items: center;
  display: flex;
  gap: 10px;
}

.check input {
  width: auto;
}

.select-shell {
  display: block;
  position: relative;
}

.select-shell::after {
  color: var(--muted);
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.18s ease, color 0.18s ease;
}

.select-shell.open::after {
  color: var(--coral);
  transform: translateY(-50%) rotate(180deg);
}

.select-shell select {
  appearance: none;
  padding-right: 42px;
}

.menu-toggle {
  display: none;
}

#content {
  min-height: 420px;
}

.home-rings-field {
  isolation: isolate;
  overflow: visible;
  position: relative;
}

.home-rings-field::before {
  background: url("/assets/images/rings1.png") center 158px / min(1080px, 82vw) auto no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero {
  min-height: 640px;
  overflow: visible;
  padding: 120px 0 150px;
  position: relative;
}

.hero::after {
  content: none;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(460px, 660px) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: var(--content);
  position: relative;
  width: min(var(--content), calc(100% - 64px));
  z-index: 1;
}

.hero-image {
  margin-top: 6px;
}

.hero-copy {
  padding: 52px 0 0;
}

.eyebrow {
  color: var(--coral);
  display: block;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1;
  margin: 0;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 600px;
}

.hero .button {
  margin-top: 32px;
  min-width: 220px;
}

.section {
  padding: 88px 0;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--content);
  width: min(var(--content), calc(100% - 64px));
}

.two-column {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 660px);
}

.content-copy h1,
.page-title,
.simple-page h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 42px;
}

.content-copy h2,
.section-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 24px;
}

.content-copy h3 {
  color: var(--coral);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 18px;
}

.mission-image img {
  border-radius: 10px;
  height: 500px;
  object-fit: cover;
  width: 660px;
}

.project-band {
  background: var(--pale-gold);
  padding: 58px 0 68px;
}

.project-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 430px));
  max-width: 920px;
}

.project-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 10px;
  min-height: 520px;
  overflow: hidden;
  text-align: center;
}

.project-card-image {
  align-items: center;
  background: linear-gradient(#f3f3f3 0%, #f3f3f3 58%, #a7a7a7 100%);
  display: flex;
  height: 258px;
  justify-content: center;
  overflow: hidden;
}

.project-card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-card-image.logo img {
  height: 118%;
  object-fit: cover;
  object-position: top center;
}

.project-card-body {
  padding: 24px 24px 34px;
}

.project-card h2,
.project-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.round-more {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 27px;
  font-weight: 700;
  height: 65px;
  justify-content: center;
  line-height: 1;
  width: 65px;
}

.partner-news {
  padding: 84px 0;
}

.partner-news-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(420px, 670px) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: var(--content);
  width: min(var(--content), calc(100% - 64px));
}

.partner-box {
  background: var(--orange);
  border-radius: 10px;
  color: var(--white);
  min-height: 300px;
  padding: 40px 50px;
}

.partner-box h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
}

.partner-box h2 {
  color: var(--white);
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 24px;
}

.partner-box p {
  line-height: 1.6;
}

.news-list {
  display: grid;
  gap: 34px;
}

.news-item {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 190px 1fr;
}

.news-thumb {
  background: #bfbfbf;
  border-radius: 10px;
  height: 110px;
  overflow: hidden;
}

.news-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-item h3 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 4px;
}

.news-item time,
.post-date {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.news-item p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.news-more {
  text-align: right;
}

.about-home {
  padding-bottom: 118px;
}

.about-home .content-copy {
  max-width: 730px;
}

.inner-page {
  padding: 285px 0 90px;
}

.inner-page .section-inner {
  max-width: var(--narrow);
  width: min(var(--narrow), calc(100% - 64px));
}

.wide-page .section-inner {
  max-width: var(--content);
  width: min(var(--content), calc(100% - 64px));
}

.simple-page h1 {
  margin-bottom: 34px;
}

.simple-page p,
.article-body p,
.simple-page li {
  font-size: 18px;
  line-height: 1.8;
}

.simple-page ul {
  margin: 18px 0 30px;
  padding-left: 20px;
}

.simple-page .spacer {
  height: 110px;
}

.archive-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(2, minmax(0, 420px));
}

.archive-grid .project-card {
  min-height: 650px;
}

.archive-grid .project-card-image {
  height: 420px;
}

.post-article .section-inner {
  max-width: 980px;
}

.project-detail-page .section-inner {
  max-width: var(--content);
  width: min(var(--content), calc(100% - 64px));
}

.post-article h1 {
  margin-bottom: 26px;
}

.post-article .lead {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.post-featured {
  border-radius: 10px;
  margin: 0 0 34px;
  max-height: 440px;
  object-fit: cover;
  width: 100%;
}

.news-detail-page {
  background: #fff;
}

.news-detail-page .section-inner {
  max-width: 860px;
  width: min(860px, calc(100% - 64px));
}

.news-detail-return {
  align-items: center;
  color: var(--coral);
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  gap: 8px;
  margin-bottom: 18px;
  text-decoration: none;
}

.news-detail-return:hover {
  color: var(--coral-dark);
  text-decoration: none;
}

.news-detail-header {
  margin: 0 auto 34px;
  max-width: 820px;
  text-align: left;
}

.news-detail-header h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  margin: 10px 0 16px;
}

.news-detail-image {
  border-radius: 10px;
  margin: 0 auto 42px;
  max-width: 820px;
  overflow: hidden;
}

.news-detail-image img {
  aspect-ratio: 16 / 8;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-detail-body {
  margin: 0 auto;
  max-width: 820px;
}

.article-body h2 {
  font-size: 30px;
  margin: 34px 0 18px;
}

.article-body blockquote {
  font-style: italic;
  margin: 0 0 12px;
}

.article-body a:not(.button) {
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
}

.article-body .button {
  margin-top: 22px;
}

.news-archive {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
}

.news-archive .news-item {
  grid-template-columns: 250px 1fr;
}

.news-archive .news-thumb {
  height: 150px;
}

.anbi-page {
  background:
    linear-gradient(180deg, #fff 0%, #fff 70%, rgba(249, 250, 244, 0.48) 100%);
}

.anbi-hero {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  margin-bottom: 112px;
}

.anbi-hero > div {
  align-content: center;
  display: grid;
}

.anbi-hero h1 {
  font-size: 56px;
  line-height: 1;
  margin: 0 0 24px;
  max-width: 720px;
}

.anbi-hero .lead {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 760px;
}

.anbi-status-card,
.anbi-card {
  background: var(--white);
  border: 1px solid rgba(74, 97, 99, 0.12);
  border-radius: 10px;
  box-shadow: 0 20px 58px rgba(74, 97, 99, 0.1);
}

.anbi-status-card {
  align-content: center;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.anbi-status-card::before {
  border: 18px solid rgba(255, 201, 75, 0.32);
  border-radius: 50%;
  content: "";
  height: 170px;
  position: absolute;
  right: -52px;
  top: -52px;
  width: 170px;
}

.anbi-status-card span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.anbi-status-card strong {
  color: var(--gold);
  display: block;
  font-size: 58px;
  line-height: 1;
  margin: 14px 0 8px;
}

.anbi-status-card p,
.anbi-card p {
  margin: 0;
}

.anbi-info-grid,
.anbi-lower-grid {
  display: grid;
  gap: 24px;
}

.anbi-info-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.anbi-lower-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 24px;
}

.anbi-card {
  padding: 30px;
}

.anbi-card h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.anbi-intro-card {
  background: var(--cream);
}

.anbi-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.anbi-detail-list div {
  border-bottom: 1px solid rgba(74, 97, 99, 0.12);
  display: grid;
  gap: 12px;
  grid-template-columns: 210px 1fr;
  padding: 14px 0;
}

.anbi-detail-list div:first-child {
  padding-top: 0;
}

.anbi-detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.anbi-detail-list dt,
.anbi-board-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.anbi-detail-list dd {
  margin: 0;
}

.anbi-board-list {
  display: grid;
  gap: 12px;
}

.anbi-board-list div {
  background: rgba(255, 228, 165, 0.32);
  border-radius: 10px;
  display: grid;
  gap: 4px;
  padding: 18px;
}

.anbi-board-list strong {
  display: block;
  font-size: 17px;
}

.anbi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 12px;
  margin-top: 34px;
}

.anbi-actions .button {
  min-height: 44px;
  padding: 0 24px;
}

.donation-page {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 201, 75, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 58%, rgba(255, 228, 165, 0.38) 100%);
}

.donation-layout {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 620px);
}

.donation-intro {
  max-width: 590px;
  padding-top: 24px;
}

.donation-intro h1 {
  margin-bottom: 24px;
}

.donation-intro .lead {
  font-size: 19px;
  line-height: 1.7;
}

.trust-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.trust-list span {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 700;
}

.trust-list span::before {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  content: "✓";
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.donation-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(74, 97, 99, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(74, 97, 99, 0.12);
  padding: 34px;
}

.donation-card h2 {
  font-size: 25px;
  margin-bottom: 22px;
}

.donation-form {
  display: grid;
  gap: 24px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group > label,
.form-label {
  font-weight: 800;
  line-height: 1.35;
}

.segmented,
.amount-grid {
  display: grid;
  gap: 8px;
}

.segmented {
  grid-template-columns: repeat(3, 1fr);
}

.amount-grid {
  grid-template-columns: repeat(3, 1fr);
}

.choice-pill {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(74, 97, 99, 0.22);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
}

.choice-pill:has(input:checked) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="tel"],
.donation-form input[type="number"],
.donation-form select,
.newsletter-form input {
  background: #fff;
  border: 1px solid rgba(74, 97, 99, 0.26);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  min-height: 52px;
  padding: 10px 16px;
  width: 100%;
}

.donation-form input:focus,
.donation-form select:focus,
.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 201, 75, 0.22);
  outline: 0;
}

.donation-form .select-shell select {
  padding-right: 42px;
}

.custom-amount {
  align-items: center;
  display: grid;
  grid-template-columns: 36px 1fr;
}

.custom-amount span {
  color: var(--muted);
  font-weight: 800;
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: -4px 0 0;
}

.form-message {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.form-message.error {
  color: #a43b3f;
}

.donation-submit {
  justify-self: stretch;
  min-height: 56px;
}

.confirmation {
  max-width: 760px;
}

.site-footer {
  background: var(--pale-gold);
  overflow: hidden;
  position: relative;
}

.footer-rings {
  background: url("/assets/images/rings2.png") bottom center / auto no-repeat;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.footer-inner {
  display: grid;
  gap: 58px;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--content);
  min-height: 340px;
  padding: 84px 0 74px;
  position: relative;
  width: min(var(--content), calc(100% - 64px));
  z-index: 1;
}

.site-footer h2 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.site-footer p {
  font-size: 16px;
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-form label {
  font-size: 13px;
  font-weight: 800;
}

.newsletter-form > div {
  display: grid;
  gap: 8px;
}

.newsletter-form .button {
  min-height: 44px;
  width: 100%;
}

.policy-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px !important;
  gap: 12px;
  justify-content: flex-end;
  margin: 0;
}

.policy-links a {
  text-decoration: none;
  text-underline-offset: 3px;
}

.policy-links button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 3px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  gap: 24px;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: -34px;
  text-align: left;
}

.hosting-credit {
  margin: 0;
  margin-right: auto;
}

.policy-links {
  margin-left: auto;
}

.hosting-credit a,
.cookie-banner a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}

.cookie-banner {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(74, 97, 99, 0.12);
  border-radius: 8px;
  bottom: 20px;
  box-shadow: 0 20px 60px rgba(74, 97, 99, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: 980px;
  padding: 20px;
  position: fixed;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 980px);
  z-index: 60;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button-coral {
  background: var(--coral);
}

.facebook,
.icon-line {
  color: var(--coral);
}

.facebook::before {
  content: "●";
  font-size: 12px;
  margin-right: 10px;
}

.icon-line {
  color: var(--text);
}

.icon-line::first-line {
  color: var(--text);
}

.trust-list span::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

.facebook::before {
  content: "\f39e";
  font-family: "Font Awesome 6 Brands";
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero-inner,
  .two-column,
  .partner-news-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .site-header {
    align-items: center;
    min-height: 84px;
    padding: 0;
    width: calc(100% - 16px);
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    border-radius: 18px;
    min-height: 64px;
    padding: 0 12px;
    top: 10px;
    width: calc(100% - 24px);
  }

  .brand {
    border-radius: 0 0 3px 3px;
    min-height: 86px;
    padding: 7px 7px 9px;
    width: 70px;
  }

  .brand img {
    height: 74px;
    width: 46px;
  }

  .menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(74, 97, 99, 0.18);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    display: grid;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    padding: 0;
    place-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 42px;
  }

  .menu-toggle::before {
    content: "\f0c9";
    display: block;
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 900;
    height: 1em;
    line-height: 1;
    text-align: center;
    width: 1em;
  }

  .menu-toggle[aria-expanded="true"]::before {
    content: "\f00d";
    font-size: 16px;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
  }

  .menu-toggle span {
    display: none;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(74, 97, 99, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 46px rgba(74, 97, 99, 0.16);
    display: none;
    gap: 4px;
    left: 0;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding: 10px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-radius: 12px;
    font-size: 15px;
    padding: 12px 14px;
  }

  .site-nav a.active {
    background: rgba(255, 201, 75, 0.18);
  }

  .site-nav .nav-donate {
    border-radius: 12px;
    justify-content: center;
    margin-top: 4px;
    min-height: 44px;
    padding: 12px 16px;
  }

  .hero {
    min-height: 0;
    padding: 86px 8px 70px;
  }

  .home-rings-field::before {
    background-position: center 112px;
    background-size: 640px auto;
  }

  .hero::after {
    content: none;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1;
  }

  .hero .button {
    margin-top: 16px;
    min-height: 48px;
    min-width: 148px;
  }

  .hero-inner,
  .section-inner,
  .partner-news-grid,
  .inner-page .section-inner,
  .wide-page .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .section {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .inner-page {
    padding-top: 170px;
    padding-bottom: 42px;
  }

  .content-copy h1,
  .page-title,
  .simple-page h1 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .content-copy h2,
  .section-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .content-copy h3 {
    font-size: 14px;
  }

  p,
  .simple-page p,
  .article-body p,
  .simple-page li {
    font-size: 14px;
    line-height: 1.7;
  }

  .two-column {
    gap: 24px;
  }

  .mission-image img {
    height: auto;
    width: 100%;
  }

  .project-band {
    padding: 24px 0 34px;
  }

  .project-grid,
  .archive-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .project-card,
  .archive-grid .project-card {
    min-height: 0;
  }

  .project-card-image,
  .archive-grid .project-card-image {
    height: 215px;
  }

  .project-card h2,
  .project-card h3 {
    font-size: 18px;
  }

  .partner-news {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .partner-news-grid {
    gap: 28px;
  }

  .partner-box {
    min-height: 250px;
    padding: 28px 26px;
  }

  .partner-box h2 {
    font-size: 22px;
  }

  .news-item,
  .news-archive .news-item {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-detail-page .section-inner,
  .project-detail-page .section-inner {
    width: calc(100% - 32px);
  }

  .news-detail-body {
    padding-top: 24px;
  }

  .news-detail-image img {
    aspect-ratio: 4 / 3;
  }

  .news-thumb,
  .news-archive .news-thumb {
    height: 154px;
  }

  .news-more {
    text-align: right;
  }

  .about-home {
    padding-bottom: 52px;
  }

  .simple-page .spacer {
    height: 40px;
  }

  .anbi-hero,
  .anbi-info-grid,
  .anbi-lower-grid,
  .anbi-detail-list div {
    grid-template-columns: 1fr;
  }

  .anbi-hero {
    align-items: start;
    gap: 20px;
    margin-bottom: 58px;
  }

  .anbi-hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .anbi-hero .lead {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .anbi-status-card {
    min-height: 190px;
    padding: 24px;
  }

  .anbi-status-card strong {
    font-size: 48px;
  }

  .anbi-card {
    padding: 22px;
  }

  .anbi-card h2 {
    font-size: 22px;
  }

  .anbi-detail-list div {
    gap: 4px;
  }

  .anbi-actions {
    display: grid;
    gap: 10px;
  }

  .anbi-actions .button {
    justify-content: center;
    width: 100%;
  }

  .donation-wrap {
    padding: 0 10px;
  }

  .donation-layout,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .donation-card {
    padding: 22px;
  }

  .amount-grid {
    grid-template-columns: 1fr;
  }

  .segmented {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 44px 0 34px;
  }

  .site-footer h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .site-footer p {
    font-size: 14px;
  }

  .cookie-banner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .hosting-credit {
    margin-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
    text-align: left;
  }

  .policy-links {
    justify-content: flex-start;
  }
}
