:root {
    --ink: #171511;
    --ink-soft: #3f3a33;
    --muted: #70695f;
    --paper: #f8f7f3;
    --paper-deep: #efede6;
    --white: #ffffff;
    --line: rgba(23, 21, 17, 0.13);
    --line-strong: rgba(23, 21, 17, 0.24);
    --red: #9b2435;
    --red-dark: #6f1826;
    --green: #174a3b;
    --gold: #caa45d;
    --blue: #28566f;
    --shadow: 0 24px 70px rgba(23, 21, 17, 0.12);
    --max: 1240px;
    --radius: 7px;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body::selection {
    color: var(--white);
    background: var(--red);
}

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

button,
input,
textarea,
select {
    font: inherit;
    letter-spacing: 0;
}

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

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

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 100px;
    padding: 8px max(22px, calc((100vw - var(--max)) / 2));
    color: var(--white);
    background: rgba(16, 15, 13, 0.97);
    border-bottom: 1px solid rgba(202, 164, 93, 0.32);
    backdrop-filter: blur(16px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 310px;
}

.brand-mark img {
    width: 84px;
    height: 84px;
    padding: 2px;
    object-fit: contain;
    background: var(--white);
    border: 2px solid rgba(202, 164, 93, 0.78);
    border-radius: 6px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.22);
}

.brand-mark strong,
.brand-mark small {
    display: block;
    letter-spacing: 0;
}

.brand-mark strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.05;
}

.brand-mark small {
    margin-top: 3px;
    color: rgba(202, 164, 93, 0.9);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 750;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
    border-color: var(--gold);
}

.site-nav .nav-donate {
    min-height: 42px;
    padding: 0 17px;
    color: var(--ink);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate:focus-visible {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
}

.language-switcher select {
    width: 58px;
    height: 38px;
    padding: 0 7px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 850;
}

.language-switcher select:focus {
    border-color: var(--gold);
    outline: 2px solid rgba(202, 164, 93, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 42px;
    padding: 9px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero-section {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: calc(100svh - 112px);
    padding: 78px max(22px, calc((100vw - var(--max)) / 2));
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(15, 14, 12, 0.94) 0%, rgba(15, 14, 12, 0.82) 43%, rgba(15, 14, 12, 0.46) 72%, rgba(15, 14, 12, 0.32)),
        linear-gradient(180deg, rgba(15, 14, 12, 0.18), rgba(15, 14, 12, 0.7)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(15, 14, 12, 0.58));
}

.hero-inner,
.section,
.stats-band {
    width: min(100%, var(--max));
    margin-inline: auto;
}

.hero-inner {
    display: block;
}

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

.hero-media {
    display: none;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 76px;
    line-height: 0.98;
}

.hero-subtitle {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 23px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-secondary {
    color: var(--ink);
    background: transparent;
    border-color: var(--line-strong);
}

.hero-section .button-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
}

.button:hover,
.button:focus-visible {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.hero-note {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.stats-band > div {
    min-width: 0;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.stats-band > div:last-child {
    border-right: 0;
}

.stats-band strong,
.stats-band span {
    display: block;
}

.stats-band strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.1;
}

.stats-band span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.section {
    padding-block: 96px;
    scroll-margin-top: 92px;
}

.section + .section {
    border-top: 1px solid var(--line);
}

.section-intro {
    max-width: 760px;
}

.section-intro-wide {
    max-width: 920px;
}

.section-intro h2,
.about-heading h2,
.donation-copy h2,
.content-hero h1 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 54px;
    line-height: 1.04;
}

.section-intro > p:last-child,
.about-heading > p:last-child,
.donation-copy > p:last-child,
.content-hero > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.mission-section {
    padding-top: 110px;
}

.about-heading {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 36px 70px;
    align-items: end;
    margin-bottom: 52px;
}

.about-heading .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -18px;
}

.about-heading h2,
.about-heading > p:last-child {
    margin-bottom: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 56px;
    align-items: start;
}

.about-identity-card {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
    border-radius: var(--radius);
}

.about-identity-card > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-photo-mark {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    color: var(--white);
    background: rgba(16, 15, 13, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    backdrop-filter: blur(12px);
}

.about-photo-mark img {
    width: 44px;
    height: 44px;
    padding: 4px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}

.about-photo-mark span {
    font-size: 12px;
    font-weight: 800;
}

.about-identity > p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.mission-grid {
    display: grid;
    gap: 30px;
}

.mission-quote {
    margin-bottom: 0;
    padding: 0 0 28px;
    color: var(--ink);
    border-bottom: 1px solid var(--line-strong);
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.25;
}

.mission-copy span,
.campaign-detail span {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.mission-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-pillars article {
    min-width: 0;
    padding: 22px 18px;
    border-right: 1px solid var(--line);
}

.about-pillars article:last-child {
    border-right: 0;
}

.about-pillars strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 19px;
}

.about-pillars h3 {
    margin: 10px 0 7px;
    font-size: 19px;
    line-height: 1.2;
}

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

.values-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-block: 0;
    background: var(--ink);
    border: 0 !important;
}

.value-item {
    min-height: 245px;
    padding: 34px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.value-item:nth-child(3n) {
    border-right: 0;
}

.value-item h3 {
    margin: 0 0 13px;
    color: var(--white);
    font-size: 25px;
}

.value-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.campaigns-section .section-intro {
    margin-bottom: 42px;
}

.campaigns-visual {
    position: relative;
    height: 440px;
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: var(--radius);
}

.campaigns-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaigns-visual figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(470px, calc(100% - 36px));
    padding: 18px;
    color: var(--white);
    background: rgba(16, 15, 13, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    backdrop-filter: blur(12px);
}

.campaigns-visual figcaption span,
.campaigns-visual figcaption strong {
    display: block;
}

.campaigns-visual figcaption span {
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.campaigns-visual figcaption strong {
    font-size: 17px;
    line-height: 1.45;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.campaign-card {
    display: grid;
    min-width: 0;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.campaign-card:nth-child(2n) {
    border-right: 0;
}

.campaign-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.campaign-topline span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 24px;
}

.campaign-topline strong {
    color: var(--red);
    font-size: 11px;
    text-transform: uppercase;
}

.campaign-card h3 {
    margin: 0 0 11px;
    font-size: 32px;
    line-height: 1.1;
}

.campaign-card > div > p {
    color: var(--muted);
}

.campaign-detail {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.campaign-detail p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

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

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

.news-card {
    min-width: 0;
}

.news-card.is-hidden {
    display: none;
}

.news-card-image {
    display: block;
    overflow: hidden;
    background: var(--paper-deep);
    border-radius: var(--radius);
}

.news-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.news-card-image.is-contain img,
.content-cover.is-contain img {
    padding: 12%;
    object-fit: contain;
    background: var(--paper-deep);
}

.news-card-body {
    padding-top: 18px;
}

.news-card-body time {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 11px;
    font-weight: 850;
}

.news-card-body h3 {
    margin: 0 0 11px;
    font-size: 27px;
    line-height: 1.13;
    overflow-wrap: anywhere;
}

.news-card-body h3 a:hover,
.news-card-body h3 a:focus-visible {
    color: var(--red);
}

.news-card-body p {
    display: -webkit-box;
    margin: 0 0 15px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
}

.news-more::after {
    content: "→";
    color: var(--red);
    font-size: 16px;
}

.news-load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.news-load-more button {
    min-height: 46px;
    padding: 0 20px;
    color: var(--white);
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
}

.news-load-more button:hover,
.news-load-more button:focus-visible {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.governance-section {
    width: 100%;
    max-width: none;
    padding-inline: max(22px, calc((100vw - var(--max)) / 2));
    color: var(--white);
    background: var(--green);
    border-top: 0 !important;
}

.governance-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: 64px;
    width: min(100%, var(--max));
    margin-inline: auto;
}

.governance-intro {
    position: sticky;
    top: 122px;
    align-self: start;
}

.governance-intro h2,
.governance-intro > p:last-child {
    color: var(--white);
}

.governance-intro > p:last-child {
    color: rgba(255, 255, 255, 0.68);
}

.governance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.governance-list article {
    min-width: 0;
    padding: 25px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.governance-list article:nth-child(2n) {
    border-right: 0;
}

.governance-list h3 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: 23px;
    line-height: 1.18;
}

.governance-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

.team-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.team-slider-controls {
    display: flex;
    gap: 8px;
}

.team-slider-controls button {
    width: 44px;
    height: 44px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 24px;
}

.team-slider-controls button:hover,
.team-slider-controls button:focus-visible {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.team-slider-viewport {
    overflow: hidden;
}

.team-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 420ms ease;
}

.team-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.team-slide-photo {
    position: relative;
    margin: 0;
    background: var(--paper-deep);
}

.team-slide-photo > img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
}

.team-slide-photo.is-contain > img {
    padding: 16%;
    object-fit: contain;
}

.team-slide-photo figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(16, 15, 13, 0.82);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.team-slide-photo figcaption span {
    color: var(--gold);
}

.team-slide-content {
    padding: 20px;
}

.team-slide-content .role {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.team-slide-content h3 {
    margin: 0 0 9px;
    font-size: 25px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.team-slide-content > p:last-of-type {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.team-person-links {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 800;
}

.team-person-links a {
    color: var(--green);
    border-bottom: 1px solid currentColor;
}

.team-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.team-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(23, 21, 17, 0.25);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.team-slider-dots button[aria-current="true"] {
    width: 24px;
    background: var(--red);
    border-radius: 999px;
}

.donation-section {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 56px;
    align-items: center;
}

.donation-aside {
    position: relative;
    min-height: 520px;
}

.donation-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
}

.donation-panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 20px;
    color: var(--white);
    background: rgba(16, 15, 13, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px;
    backdrop-filter: blur(12px);
}

.donation-panel p {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.donation-panel p:last-child {
    margin-bottom: 0;
}

.donation-panel strong {
    color: var(--white);
}

.contact-section {
    display: grid;
    grid-template-columns: 0.46fr 0.54fr;
    gap: 56px;
    align-items: end;
    padding-top: 76px;
    padding-bottom: 76px;
}

.contact-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-strong);
}

.contact-grid > a,
.contact-grid > span,
.contact-socials {
    padding: 15px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.contact-grid > a:hover {
    color: var(--red);
}

.contact-socials {
    display: flex;
    gap: 8px;
}

.social-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.social-icon-link::before {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.social-icon-facebook::before {
    content: "f";
}

.social-icon-instagram::before {
    content: "◎";
    font-size: 19px;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    width: 100%;
    padding: 42px max(22px, calc((100vw - var(--max)) / 2));
    color: rgba(255, 255, 255, 0.72);
    background: #11100e;
    border-top: 1px solid rgba(202, 164, 93, 0.28);
}

.site-footer > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer img {
    width: 70px;
    height: 70px;
    padding: 3px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid rgba(202, 164, 93, 0.7);
    border-radius: 5px;
}

.site-footer p {
    margin: 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
}

.footer-resources {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 11px;
}

.social-icon-footer {
    width: 30px;
    height: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.content-page {
    width: min(100%, var(--max));
    min-height: calc(100vh - 200px);
    margin-inline: auto;
    padding: 54px 22px 90px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumb a:hover {
    color: var(--red);
}

.content-hero {
    max-width: 900px;
    padding: 36px 0 48px;
}

.content-hero h1 {
    font-size: 62px;
    overflow-wrap: anywhere;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 50px;
    align-items: start;
}

.article-shell .article-hero {
    position: sticky;
    top: 120px;
    padding-top: 18px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    padding-top: 16px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
}

.content-cover {
    margin: 0;
    overflow: hidden;
    background: var(--paper-deep);
    border-radius: var(--radius);
}

.content-cover img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}

.article-content {
    grid-column: 2;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.85;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure {
    margin-bottom: 22px;
}

.article-content h2,
.article-content h3 {
    margin: 34px 0 14px;
    color: var(--ink);
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.article-content figcaption {
    margin-top: 7px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 12px;
}

.article-content a {
    color: var(--red);
    text-decoration: underline;
}

.article-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 14px;
}

.article-content th,
.article-content td {
    padding: 11px 12px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.article-content th {
    color: var(--ink);
    background: var(--paper-deep);
}

.article-actions {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.content-card-grid {
    margin-top: 18px;
}

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

.gallery-list-item {
    min-width: 0;
}

.gallery-list-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-list-item span {
    display: block;
    margin-top: 12px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gallery-grid figure {
    margin: 0;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-grid figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 15px;
    }

    .site-nav a:not(.nav-donate) {
        font-size: 12px;
    }

    .hero-copy h1 {
        font-size: 66px;
    }

    .about-layout,
    .governance-shell,
    .donation-section {
        gap: 38px;
    }

    .team-slide {
        flex-basis: calc((100% - 20px) / 2);
    }

    .news-card-body h3 {
        font-size: 24px;
    }
}

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

    .brand-mark {
        min-width: 0;
    }

    .brand-mark img {
        width: 72px;
        height: 72px;
    }

    .brand-mark strong {
        font-size: 23px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav:not(.is-static) {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        color: var(--white);
        background: #171511;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 7px;
        box-shadow: var(--shadow);
    }

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

    .site-nav:not(.is-static) a {
        min-height: 44px;
        padding: 0 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-nav:not(.is-static) .nav-donate {
        justify-content: center;
        margin-top: 8px;
    }

    .site-nav:not(.is-static) .language-switcher {
        padding: 8px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-nav:not(.is-static) .language-switcher select {
        width: 100%;
    }

    .hero-section {
        min-height: 620px;
        padding-block: 70px;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

    .about-heading,
    .about-layout,
    .governance-shell,
    .donation-section,
    .contact-section,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .about-heading .section-kicker {
        margin-bottom: -8px;
    }

    .about-identity {
        max-width: 620px;
    }

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

    .value-item:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .value-item:nth-child(2n) {
        border-right: 0;
    }

    .governance-intro,
    .article-shell .article-hero {
        position: static;
    }

    .article-content {
        grid-column: 1;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

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

    .brand-mark span {
        display: none;
    }

    .section {
        padding: 70px 18px;
    }

    .hero-section {
        min-height: 590px;
        padding: 58px 18px;
        background-position: 62% center;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .stats-band,
    .values-section,
    .campaign-grid,
    .news-card-grid,
    .governance-list,
    .gallery-list,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-band > div {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-band > div:last-child {
        border-bottom: 0;
    }

    .section-intro h2,
    .about-heading h2,
    .donation-copy h2,
    .content-hero h1 {
        font-size: 39px;
    }

    .about-heading {
        gap: 18px;
        margin-bottom: 34px;
    }

    .mission-quote {
        font-size: 27px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-pillars article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-pillars article:last-child {
        border-bottom: 0;
    }

    .value-item,
    .value-item:nth-child(3n) {
        min-height: 0;
        padding: 27px;
        border-right: 0;
    }

    .campaigns-visual {
        height: 380px;
    }

    .campaign-card,
    .campaign-card:nth-child(2n) {
        padding: 24px 0;
        border-right: 0;
    }

    .team-slider-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-slide {
        flex-basis: 100%;
    }

    .governance-section {
        padding-inline: 18px;
    }

    .governance-list article,
    .governance-list article:nth-child(2n) {
        border-right: 0;
    }

    .donation-aside,
    .donation-photo {
        min-height: 460px;
        height: 460px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 34px 18px;
    }

    .footer-resources {
        justify-content: flex-start;
    }

    .content-page {
        padding: 36px 18px 70px;
    }

    .content-hero {
        padding: 22px 0 34px;
    }

    .content-hero h1 {
        font-size: 42px;
    }

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

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