:root {
    --ink: #2b2540;
    --paper: #ffffff;
    --paper-2: #f6f3fc;
    --brass: #7b5cc8;
    --brass-deep: #5b32b4;
    --magenta: #fb397d;
    --sky: #74b6e6;
    --mute: #6c6580;
    --line: rgba(92, 70, 150, 0.12);
    --shadow: 0 16px 44px rgba(91, 50, 180, 0.10);
    --shadow-soft: 0 8px 24px rgba(91, 50, 180, 0.07);
    --wrap: 1400px;
    --gutter: clamp(1.25rem, 5vw, 4rem);
    --header-h: 5.5rem;
}

* { box-sizing: border-box; }

html {
    margin: 0;
    min-height: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--paper);
    color: var(--ink);
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

.scroll-top {
    position: fixed;
    right: clamp(1rem, 2.5vw, 2.25rem);
    bottom: clamp(1rem, 2.5vw, 2.25rem);
    z-index: 70;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--magenta), #e62071);
    color: #fff;
    box-shadow: 0 12px 30px rgba(212, 27, 102, 0.28), 0 3px 10px rgba(91, 50, 180, 0.16);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem) scale(0.82);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 17px 34px rgba(212, 27, 102, 0.34), 0 5px 14px rgba(91, 50, 180, 0.18);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(123, 92, 200, 0.35);
    outline-offset: 4px;
}

.scroll-top svg {
    width: 1.45rem;
    height: 1.45rem;
}

@media (max-width: 600px) {
    .scroll-top {
        width: 3rem;
        height: 3rem;
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-top { transition: opacity 0.01ms, visibility 0.01ms; }
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

main, .site-footer, .contact, .partners, .business, .people-section, .slideshow, .promo-video, .donor, .donate {
    position: relative;
    z-index: 1;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: var(--header-h);
    padding: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(16px);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header-inner {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

body {
    padding-top: var(--header-h);
}

.brand {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.brand-logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.brand-mark {
    width: 0.85rem;
    height: 2.4rem;
    border-radius: 99px;
    background: linear-gradient(180deg, #cbb6f2 0%, var(--brass) 55%, var(--brass-deep) 100%);
    box-shadow: 0 0 18px rgba(123, 92, 200, 0.45);
}

.brand strong {
    display: block;
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.brand em {
    display: block;
    font-style: normal;
    color: var(--mute);
    font-size: 0.82rem;
    line-height: 1.2;
    margin-top: 0.05rem;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 85;
    display: flex;
    gap: 0.35rem 1.15rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: min(100%, var(--wrap));
    height: var(--header-h);
    padding: 0 var(--gutter);
    transform: translateX(-50%);
    pointer-events: none;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: auto;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    color: var(--ink);
}

.nav-donate {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.15;
    padding: 0.45rem 0.9rem 0.5rem;
    background: var(--magenta);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
}

.nav-donate-label {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-donate-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.nav-donate-arrow {
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
}

.nav-donate:hover {
    background: var(--brass-deep);
    color: #fff !important;
}

.nav-social {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    pointer-events: auto;
}

.nav-social-title,
.nav-social-label {
    display: none;
}

.nav-social-link {
    display: grid;
    place-items: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 999px;
    color: var(--ink) !important;
    background: rgba(123, 92, 200, 0.10);
}

.nav-social-link:hover {
    color: #fff !important;
    background: var(--brass);
}

.nav-social-link svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    padding: 0.55rem;
    font: inherit;
    z-index: 60;
}

.menu-toggle-bars {
    display: grid;
    gap: 5px;
    width: 1.35rem;
}

.menu-toggle-bars span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    border-radius: 99px;
    transition: transform 0.22s ease, opacity 0.22s ease, background 0.25s ease;
    transform-origin: center;
}

body.is-home .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

body.is-home .site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(var(--header-h) + 4.25rem);
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgb(211 220 255 / 0.94) 0%,
        rgb(211 220 255 / 0.62) 42%,
        rgb(211 220 255 / 0.18) 72%,
        rgb(211 220 255 / 0) 100%
    );
    transition: opacity 0.25s ease;
}

body.is-home.is-scrolled .site-header,
body.is-home.nav-open .site-header {
    background: rgb(255 255 255 / 0.96);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
}

body.is-home.is-scrolled .site-header::before,
body.is-home.nav-open .site-header::before {
    opacity: 0;
}

body.nav-open .menu-toggle-bars span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .menu-toggle-bars span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle-bars span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(43, 37, 64, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1079px) {
    .menu-toggle { display: inline-flex; }

    .site-nav {
        left: auto;
        right: 0;
        z-index: 75;
        width: min(22rem, 88vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 5.5rem 1.6rem 2rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.15rem;
        background: rgb(255 255 255 / 0.98);
        box-shadow: -18px 0 40px rgba(91, 50, 180, 0.12);
        transform: translateX(100%);
        transition: transform 0.32s ease;
        overflow-y: auto;
        pointer-events: auto;
    }

    body.nav-open .site-nav {
        transform: translateX(0);
    }

    .site-nav a {
        display: block;
        padding: 0.7rem 0.2rem;
        font-size: 0.92rem;
        border-bottom: 1px solid var(--line);
    }

    .site-nav .nav-donate {
        margin-top: 1.25rem;
        align-items: flex-start;
        padding: 0.85rem 1.1rem;
        border-bottom: 0;
        border-radius: 12px;
        width: 100%;
    }

    .nav-social {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-social-title {
        display: block;
        grid-column: 1 / -1;
        margin-bottom: 0.05rem;
        color: var(--mute);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .site-nav .nav-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        height: 2.8rem;
        padding: 0.55rem 0.7rem;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: var(--paper-2);
        font-size: 0.76rem;
        letter-spacing: 0.03em;
        text-transform: none;
    }

    .site-nav .nav-social-link svg {
        width: 1.15rem;
        height: 1.15rem;
        color: var(--brass-deep);
    }

    .nav-social-label {
        display: inline;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav, .nav-backdrop, .menu-toggle-bars span, .site-header {
        transition: none;
    }
}

/* Ludzie Fundacji */
.people-section {
    margin: 0 0 2.5rem;
}

.people-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.people-head .eyebrow {
    color: var(--magenta);
}

.people-head h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.people-head .muted {
    margin: 0;
    max-width: 36rem;
    font-size: 1em;
    line-height: 1.6;
    white-space: normal;
}

.people-group + .people-group {
    margin-top: 1.75rem;
}

.people-group-title {
    margin: 0 0 1rem;
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.people-section .home-grid .thumb img {
    object-position: center top;
}

.people-section .people-grid-fill {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.people-section .people-grid-fill .post-card {
    display: block;
    width: 100%;
    margin: 0;
}

.people-section .person-initials {
    color: var(--brass-deep);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.people-section .home-grid .post-card .person-description p {
    margin: 0 0 0.65rem;
    padding: 0;
    color: #3d3750;
    font-size: 1em;
    line-height: 1.6;
}

.people-section .person-description p:last-child {
    margin-bottom: 0;
}

.people-section .home-grid .post-card .person-description blockquote {
    margin: 0.75rem 0 0;
    padding: 0.55rem 0 0.05rem 0.85rem;
    border-left: 2px solid rgba(251, 57, 125, 0.65);
    color: var(--mute);
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .people-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

nav {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

main {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 3.5rem var(--gutter) 5rem;
}

main.has-slideshow {
    padding-top: 2.5rem;
}

.slideshow {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: min(68vh, 36rem);
    background: #2b2540;
    overflow: hidden;
}

.slideshow-track {
    position: relative;
    min-height: min(68vh, 36rem);
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.slideshow-slide.is-active {
    position: relative;
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slideshow-slide img,
.slideshow-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-fallback {
    background: linear-gradient(135deg, #3d2f5c, var(--brass-deep));
}

.slideshow-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43, 37, 64, 0.78) 0%, rgba(43, 37, 64, 0.32) 48%, rgba(43, 37, 64, 0.10) 100%);
}

.slideshow-copy {
    position: relative;
    z-index: 2;
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: clamp(3rem, 8vh, 5.5rem) var(--gutter);
    color: #f7f4ff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: min(68vh, 36rem);
}

.slideshow-copy h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 0.85rem;
    max-width: 14ch;
}

.slideshow-copy p {
    margin: 0 0 1.4rem;
    max-width: 38ch;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(247, 244, 255, 0.88);
}

.slideshow-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.75rem 1.25rem;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(251, 57, 125, 0.32);
}

.slideshow-btn:hover {
    background: var(--brass-deep);
}

.slideshow-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
}

.slideshow-dots button {
    width: 0.65rem;
    height: 0.65rem;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slideshow-dots button.is-active {
    background: #fff;
}

@media (max-width: 720px) {
    .slideshow-copy { padding-bottom: 3.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .slideshow-slide { transition: none; }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--brass-deep);
    margin: 0 0 0.75rem;
}

.page h1 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 1.5rem;
}

.page-home h1 {
    max-width: 12ch;
}

.prose p {
    margin: 0 0 1rem;
    color: #3d3750;
}

.prose .lead {
    font-size: 1.2rem;
    color: var(--ink);
}

.prose a { color: var(--brass-deep); }

.contact {
    position: relative;
    z-index: 1;
    padding: 3.75rem 0 3.25rem;
    background: var(--paper-2);
}

.contact-inner {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.contact-copy {
    max-width: 40rem;
    margin: 0 0 1.75rem;
}

.contact-copy .eyebrow {
    color: var(--brass-deep);
}

.contact-copy h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.7rem;
    color: var(--ink);
}

.contact-copy > p {
    margin: 0;
    color: var(--mute);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 44ch;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.45rem 1.35rem 1.35rem;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.contact-ids {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
}

.contact-ids div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--line);
}

.contact-ids dt {
    color: var(--mute);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-ids dd {
    margin: 0;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.contact-account {
    margin: 0;
    display: grid;
    gap: 0.2rem;
}

.contact-account span {
    color: var(--mute);
    font-size: 0.82rem;
}

.contact-account strong {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.contact-account a {
    margin-top: 0.35rem;
    color: var(--brass-deep);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-account a:hover {
    color: var(--magenta);
}

.contact-list {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    color: var(--ink);
}

.contact-list svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    color: var(--magenta);
}

.contact-list a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--brass-deep);
}

.contact-mail {
    min-width: 0;
    width: 100%;
    justify-content: center;
}

.contact-social-lead {
    margin: 0 0 1rem;
    color: var(--mute);
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-social {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: var(--paper-2);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.contact-social-link svg {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--brass-deep);
}

.contact-social-link:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--brass-deep);
}

@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.site-footer {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: rgb(255 255 255 / 0.78);
}

.site-footer-inner {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 2.75rem var(--gutter) 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(10rem, 0.8fr) minmax(12rem, 1fr);
    gap: 2rem 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: #fff;
    margin: 0 0 0.9rem;
}

.footer-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-logo strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-logo em {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: rgb(255 255 255 / 0.62);
}

.footer-brand > p {
    margin: 0 0 1.1rem;
    max-width: 36ch;
    line-height: 1.55;
    font-size: 0.95rem;
}

.footer-donate {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-donate:hover {
    background: var(--brass);
    color: #fff;
}

.footer-label {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.5);
}

.footer-nav {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.footer-nav a,
.footer-aside a {
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-aside a:hover {
    color: #ffd0e0;
}

.footer-aside p {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
}

.footer-social a:hover {
    background: var(--magenta);
    color: #fff;
}

.footer-social svg {
    width: 1.05rem;
    height: 1.05rem;
}

.site-footer-bar {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 1rem var(--gutter) 1.25rem;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgb(255 255 255 / 0.5);
}

.site-footer-bar p { margin: 0; }

.site-footer-bar a {
    color: rgb(255 255 255 / 0.5);
    text-decoration: none;
}

.site-footer-bar a:hover {
    color: #fff;
}

@media (max-width: 860px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-top: 2.25rem;
    }
}

@media (max-width: 720px) {
    :root { --header-h: 5rem; }
    .brand strong { font-size: 1.05rem; }
    .brand em { display: none; }
    .brand-logo { height: 44px; }
}

main.wide { max-width: none; }

.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.75rem;
}
.cat-pills a {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--mute);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}
.cat-pills a:hover {
    color: var(--ink);
    background: #ece7f6;
}
.cat-pills a[aria-current="page"] {
    background: var(--ink);
    color: #fff;
    font-weight: 700;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .post-grid { grid-template-columns: repeat(3, 1fr); }
}
.post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    padding-bottom: 1.05rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.post-card h2, .post-card h3 {
    font-family: Figtree, "Segoe UI", sans-serif;
    margin: 0.35rem 0;
    font-weight: 600;
    padding: 0 1rem;
}
.post-card h2 a, .post-card h3 a { text-decoration: none; color: inherit; }
.post-card time, .post-card p { color: var(--mute); font-size: 0.92rem; padding: 0 1rem; }
.post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #8b8498;
    font-size: 0.78rem;
    font-weight: 450;
    letter-spacing: 0;
}
.post-date-icon {
    width: 0.82rem;
    height: 0.82rem;
    flex-shrink: 0;
    color: #a39bb3;
    opacity: 0.85;
}
.post-card .pill-link { margin-left: 1rem; }
.thumb, .thumb-empty {
    display: block;
    aspect-ratio: 16/10;
    background: var(--paper-2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.post-card .thumb,
.post-card .thumb-empty {
    border-radius: 0;
    margin-bottom: 0.85rem;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.pill-link {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brass-deep);
    text-decoration: none;
    margin-right: 0.4rem;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
    color: var(--mute);
    margin: 0 0 1.35rem;
}
.post-meta .pill-link { margin-left: 0; }
.post-single h1 {
    font-size: clamp(1.9rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 0.85rem;
}
.post-single .eyebrow a {
    color: inherit;
    text-decoration: none;
}
.post-single .eyebrow a:hover { color: var(--magenta); }
.hero-img {
    margin: 0 0 1.6rem;
}
.hero-img-frame {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: var(--paper-2);
    aspect-ratio: 1 / 1;
    max-height: min(28rem, 82vw);
    cursor: zoom-in;
}
.hero-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-img figcaption,
.gallery-grid figcaption {
    margin: 0.5rem 0.15rem 0;
    color: var(--mute);
    font-size: 0.84rem;
    line-height: 1.4;
}
.prose img { max-width: 100%; height: auto; border-radius: 12px; }
.prose h2,
.gallery h2,
.attachments h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.8rem 0 0.75rem;
}
.prose ul, .prose ol { color: #3d3750; padding-left: 1.2rem; }
.prose li[data-list="bullet"] { list-style-type: disc; }
.prose li[data-list="ordered"] { list-style-type: decimal; }
.prose .ql-ui { display: none; }
.prose blockquote {
    margin: 1.4rem 0;
    padding: 0.2rem 0 0.2rem 1rem;
    border-left: 3px solid var(--magenta);
    color: var(--mute);
}
.attachments ul { margin: 0; padding-left: 1.2rem; }
.attachments a { color: var(--brass-deep); font-weight: 700; text-decoration: none; }
.video iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 12px; }
.gallery {
    margin-top: 2.1rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}
.gallery-grid figure {
    margin: 0;
    min-width: 0;
}
.gallery-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: var(--paper-2);
    aspect-ratio: 1;
    cursor: zoom-in;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(43, 37, 64, 0.28) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
    transform: scale(1.045);
}
.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
    opacity: 1;
}
.gallery-grid figure:only-child {
    grid-column: 1 / -1;
    max-width: 22rem;
}
.gallery figure.missing, .thumb-empty {
    display: grid;
    place-items: center;
    min-height: 100px;
    background: var(--paper-2);
    color: var(--mute);
    font-size: 0.8rem;
    padding: 0.5rem;
    text-align: center;
    border-radius: 14px;
}
body.lightbox-open {
    overflow: hidden;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 4.2rem 4.5rem 3.4rem;
    background: rgba(43, 37, 64, 0.92);
}
.lightbox[hidden] {
    display: none;
}
.lightbox-figure {
    margin: 0;
    max-width: min(1100px, 100%);
    max-height: 100%;
    text-align: center;
}
.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 8.5rem);
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    object-fit: contain;
}
.lightbox-caption {
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}
.lightbox-count {
    position: absolute;
    left: 50%;
    bottom: 1.05rem;
    margin: 0;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.lightbox-close {
    top: 0.85rem;
    right: 1rem;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.7rem;
    line-height: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--magenta);
}
.lightbox-nav {
    top: 50%;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}
.lightbox-nav.is-prev { left: 0.9rem; }
.lightbox-nav.is-next { right: 0.9rem; }
.lightbox-nav::before {
    content: "";
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    margin: 0 auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.lightbox-nav.is-prev::before { transform: rotate(-135deg); }
.lightbox-nav.is-next::before { transform: rotate(45deg); }
@media (min-width: 721px) {
    .hero-img-frame {
        aspect-ratio: 10 / 9;
        max-height: 26rem;
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.95rem;
    }
}
@media (max-width: 720px) {
    .lightbox {
        padding: 3.6rem 1rem 3.2rem;
    }
    .lightbox-nav.is-prev { left: 0.35rem; }
    .lightbox-nav.is-next { right: 0.35rem; }
}
.pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
    color: var(--mute);
    font-size: 0.9rem;
}
.pager a {
    color: var(--brass-deep);
    text-decoration: none;
    font-weight: 700;
}
.pager a:hover { color: var(--magenta); }

.page-home {
    max-width: 46rem;
}

.home-feed {
    margin-top: 0;
    padding: 3.5rem 0 1.5rem;
}

.home-feed-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.home-feed-head .eyebrow {
    color: var(--brass-deep);
}

.home-feed-head h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.home-grid {
    display: block;
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 640px) {
    .home-grid { column-count: 2; }
}
@media (min-width: 960px) {
    .home-grid { column-count: 3; }
}

.home-grid .post-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.5rem;
    break-inside: avoid;
    border: 1px solid var(--line);
}

.home-grid .thumb {
    aspect-ratio: auto;
    margin-bottom: 0;
}

.home-grid .thumb img {
    width: 100%;
    height: auto;
    min-height: 290px;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.home-grid .thumb-logo {
    display: grid;
    place-items: center;
    min-height: 8.5rem;
    padding: 1.6rem 1.25rem;
    background: var(--paper-2);
}

.home-grid .thumb-logo img {
    width: auto;
    max-width: 72%;
    height: auto;
    max-height: 4.6rem;
    object-fit: contain;
}

.post-card-body {
    padding: 0.95rem 1rem 0.15rem;
}

.home-grid .post-card h2,
.home-grid .post-card h3 {
    font-size: 1.5rem;
    line-height: 1.22;
    padding: 0;
    margin: 0.3rem 0 15px;
    font-weight: 700;
}

.home-grid .post-card .pill-link { margin-left: 0; }
.home-grid .post-card time,
.home-grid .post-card p { padding: 0; }
.home-grid .post-card p {
    margin: 0 0 0.65rem;
    line-height: 1.5;
    font-size: 0.95rem;
}
.home-grid .post-card time {
    display: inline-flex;
    margin-bottom: 0.15rem;
    font-size: 0.78rem;
}

.btn-text { color: var(--brass-deep); text-decoration: none; font-weight: 700; }

@media (max-width: 860px) {
    .home-feed { padding-top: 2.5rem; }
    .home-feed-head { flex-direction: column; align-items: flex-start; }
}

.donate {
    position: relative;
    width: 100%;
    margin-top: 8px;
    padding: 3.75rem 0;
    overflow: hidden;
    background: var(--paper-2);
}

.donate-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.donate-bg img {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    max-width: none;
    object-fit: cover;
    object-position: center 35%;
    filter: blur(18px) brightness(1.28) saturate(1.08);
}

.donate-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(246 243 252 / 0.62) 0%, rgb(255 255 255 / 0.50) 45%, rgb(246 243 252 / 0.64) 100%);
}

.donate-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
    gap: 2.4rem 3rem;
    align-items: center;
}

.donate-copy .eyebrow {
    color: var(--brass-deep);
}

.donate-copy h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.85rem;
    color: var(--ink);
}

.donate-copy > p {
    margin: 1rem 0 1.35rem;
    color: var(--mute);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 44ch;
}

.donate-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
}

.donate-amount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.6rem;
    padding: 0.62rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.donate-amount:hover,
.donate-amount:focus-visible {
    border-color: var(--magenta);
    color: var(--magenta);
    background: #fff7fa;
}

.donate-amount.is-featured {
    border-color: transparent;
    background: var(--magenta);
    color: #fff;
    box-shadow: 0 8px 18px rgba(251, 57, 125, 0.22);
}

.donate-amount.is-featured:hover,
.donate-amount.is-featured:focus-visible {
    background: var(--brass-deep);
    color: #fff;
}

.donate-amount-other {
    font-weight: 600;
    color: var(--brass-deep);
}

.donate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 15.5rem;
    padding: 0.8rem 1.2rem 0.85rem 1rem;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(251, 57, 125, 0.28);
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.donate-btn:hover {
    background: var(--brass-deep);
    transform: translateY(-1px);
}

.donate-btn-alt {
    background: #fff;
    color: var(--ink);
    box-shadow: none;
    border-color: var(--line);
}

.donate-btn-alt:hover {
    background: #fff;
    color: var(--brass-deep);
    border-color: rgb(91 50 180 / 0.28);
    box-shadow: var(--shadow-soft);
}

.donate-btn-alt .donate-btn-icon {
    color: var(--magenta);
}

.donate-btn-icon {
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 auto;
}

.donate-btn small {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.88;
}

.donate-btn strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}

.donate-iban-hint {
    margin: 1.1rem 0 0;
    color: var(--mute);
    font-size: 0.9rem;
}

.donate-iban-hint a {
    color: var(--brass-deep);
    font-weight: 700;
    text-decoration: none;
}

.donate-iban-hint a:hover {
    color: var(--magenta);
}

.donate-trust {
    display: grid;
    gap: 1rem;
    padding: 1.6rem 1.5rem 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.donate-logo {
    display: grid;
    place-items: center;
    width: 100%;
    background: var(--paper-2);
    border-radius: 16px;
    padding: 1.15rem 1.35rem;
}

.donate-logo img {
    display: block;
    width: 100%;
    max-width: 16.5rem;
    height: auto;
}

.donate-trust-note {
    margin: 0;
    color: var(--mute);
    font-size: 0.92rem;
    line-height: 1.55;
}

.donate-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.donate-methods li {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 860px) {
    .donate { padding: 2.75rem 0; }
    .donate-inner { grid-template-columns: 1fr; gap: 1.6rem; }
    .donate-copy > p { max-width: none; }
    .donate-copy .donate-btn { min-width: 0; flex: 1 1 14rem; }
}

.donor {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 2.5rem;
    padding: 4.5rem 0;
    overflow: hidden;
}

.donor-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.donor-bg img {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    max-width: none;
    object-fit: cover;
    object-position: center 40%;
    filter: blur(18px) brightness(1.28) saturate(1.08);
}

.donor-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(211 220 255 / 0.62) 0%, rgb(255 255 255 / 0.48) 45%, rgb(211 220 255 / 0.58) 100%);
}

.donor-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.donor-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.72fr);
    gap: 2rem 2.4rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.4rem 2.2rem 2.2rem;
    background: rgb(255 255 255 / 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgb(255 255 255 / 0.55);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.donor-panel .eyebrow {
    color: var(--brass-deep);
}

.donor-panel h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--ink);
}

.donor-lead {
    margin: 0 0 1.25rem;
    color: var(--mute);
    font-size: 1.02rem;
    line-height: 1.6;
}

.donor-iban-box {
    padding: 1.1rem 1.2rem 1.15rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin: 0 0 1rem;
}

.donor-bank {
    margin: 0 0 0.35rem;
    color: var(--mute);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.donor-iban {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.donor-iban strong {
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
    line-height: 1.35;
}

.donor-copy {
    border: 0;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: var(--paper-2);
    color: var(--brass-deep);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.donor-copy:hover {
    background: #d3dcff;
}

.donor-note {
    margin: 0;
    color: var(--mute);
    font-size: 0.98rem;
    line-height: 1.55;
}

.donor-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.donor-actions .donate-btn {
    min-width: 0;
    width: 100%;
}

@media (max-width: 860px) {
    .donor { padding: 3rem 0; }
    .donor-panel {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 1.6rem 1.25rem 1.45rem;
    }
    .donor-iban { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
    .donate-actions,
    .donor-actions {
        gap: 0.55rem;
    }

    .donate-btn,
    .donate-copy .donate-btn,
    .donor-actions .donate-btn,
    .donate-box .donate-btn {
        flex: none;
        width: 100%;
        min-width: 0;
        min-height: 3.4rem;
        padding: 0.65rem 0.85rem;
        gap: 0.65rem;
        border-radius: 10px;
        box-shadow: 0 7px 18px rgba(251, 57, 125, 0.2);
    }

    .donate-btn-icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .donate-btn small {
        font-size: 0.65rem;
    }

    .donate-btn strong {
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .donor-bg img,
    .donate-bg img { filter: blur(10px); }
}

.partners {
    width: 100%;
    margin-top: 0;
    background: var(--paper-2);
    padding: 3.5rem 0 3.25rem;
}

main .partners {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 3rem;
}

.partners-inner {
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.partners-copy {
    max-width: 40rem;
    margin: 0 0 1.75rem;
}

.partners-copy .eyebrow {
    color: var(--brass-deep);
}

.partners-copy h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.7rem;
    color: var(--ink);
}

.partners-copy p {
    margin: 0;
    color: var(--mute);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 42ch;
}

.partners-viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 1.15rem;
    width: max-content;
    animation: partners-scroll 72s linear infinite;
}

.partners-viewport:hover .partners-track {
    animation-play-state: paused;
}

.partners-logo {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 200px;
    height: 128px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 0.9rem 1.05rem;
}

.partners-logo img {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes partners-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 860px) {
    .partners { padding: 2.75rem 0 2.5rem; }
    .partners-copy { margin-bottom: 1.35rem; }
    .partners-copy p { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track { animation: none; }
    .donate-btn { transition: none; }
    .donate-btn:hover { transform: none; }
}

.business {
    position: relative;
    width: 100%;
    padding: clamp(4.25rem, 8vw, 7.25rem) 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 12%, rgba(251, 57, 125, 0.1), transparent 24rem),
        radial-gradient(circle at 88% 88%, rgba(116, 182, 230, 0.14), transparent 28rem),
        linear-gradient(145deg, #f7f3fd 0%, #f1ebfb 58%, #f8f5fd 100%);
    color: var(--ink);
}

.business-inner {
    position: relative;
    z-index: 2;
    width: min(100%, var(--wrap));
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.business-orb {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(91, 50, 180, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.business-orb-one { top: -13rem; right: -10rem; width: 33rem; height: 33rem; }
.business-orb-two { bottom: -18rem; left: -13rem; width: 40rem; height: 40rem; }

.business-head {
    margin-bottom: clamp(2.25rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    align-items: end;
    gap: clamp(2rem, 7vw, 7rem);
}

.business-head .eyebrow {
    margin-bottom: 0.8rem;
    color: var(--brass-deep);
}

.business-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.business-head h2 span { color: var(--brass-deep); }

.business-intro {
    padding-left: 1.4rem;
    border-left: 3px solid var(--magenta);
}

.business-intro p {
    margin: 0;
    color: var(--mute);
    font-size: clamp(0.98rem, 1.5vw, 1.12rem);
    line-height: 1.65;
}

.business-intro p + p { margin-top: 0.8rem; }

.business-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.business-value {
    min-height: 15rem;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(9px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.business-value:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 92, 200, 0.28);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.business-value-accent {
    background: linear-gradient(145deg, rgba(251, 57, 125, 0.09), rgba(123, 92, 200, 0.1));
}

.business-value-icon {
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: 1.8rem;
    display: grid;
    place-items: center;
    border-radius: 0.8rem;
    background: rgba(251, 57, 125, 0.16);
    color: var(--magenta);
}

.business-value:nth-child(2n) .business-value-icon {
    background: rgba(116, 182, 230, 0.13);
    color: var(--brass-deep);
}

.business-value-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.business-value h3 {
    margin: 0 0 0.6rem;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.25;
}

.business-value p {
    margin: 0;
    color: var(--mute);
    font-size: 0.92rem;
    line-height: 1.55;
}

.business-cta {
    margin-top: 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(123, 92, 200, 0.16);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.76);
}

.business-cta > div { display: grid; }
.business-cta span { color: var(--mute); font-size: 0.83rem; }
.business-cta strong { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.5rem); }

.business-cta a {
    min-height: 3.15rem;
    padding: 0.75rem 1.15rem 0.75rem 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--magenta);
    color: #fff;
    box-shadow: 0 12px 28px rgba(251, 57, 125, 0.24);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(251, 57, 125, 0.32);
}

.business-cta a svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .business-head { grid-template-columns: 1fr; align-items: start; gap: 1.75rem; }
    .business-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .business { padding: 3.5rem 0; }
    .business-head h2 br { display: none; }
    .business-intro { padding-left: 1rem; }
    .business-values { grid-template-columns: 1fr; }
    .business-value { min-height: 0; padding: 1.2rem; }
    .business-value-icon { margin-bottom: 1.1rem; }
    .business-cta { align-items: stretch; flex-direction: column; }
    .business-cta a { justify-content: center; }
}

.help {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.help-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.help-head .eyebrow {
    color: var(--brass-deep);
}

.help-head h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 860px) {
    .help-head { flex-direction: column; align-items: flex-start; }
}

[data-reveal].will-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

[data-reveal].is-in .post-card {
    animation: reveal-up 0.72s cubic-bezier(.22, 1, .36, 1) both;
}

[data-reveal].is-in .post-card:nth-child(1) { animation-delay: 0.05s; }
[data-reveal].is-in .post-card:nth-child(2) { animation-delay: 0.12s; }
[data-reveal].is-in .post-card:nth-child(3) { animation-delay: 0.19s; }
[data-reveal].is-in .post-card:nth-child(4) { animation-delay: 0.26s; }
[data-reveal].is-in .post-card:nth-child(5) { animation-delay: 0.33s; }
[data-reveal].is-in .post-card:nth-child(6) { animation-delay: 0.4s; }

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.archive-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.archive-head .eyebrow {
    color: var(--brass-deep);
}

.archive-head h1 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.archive-head .muted {
    margin: 0;
    white-space: nowrap;
}

.archive-description {
    width: 100%;
    max-width: none;
    margin: -0.4rem 0 2rem;
    padding: clamp(1.1rem, 2.5vw, 1.55rem) clamp(1.15rem, 3vw, 1.8rem);
    border: 1px solid var(--line);
    border-left: 4px solid var(--magenta);
    border-radius: 0 1rem 1rem 0;
    background: linear-gradient(120deg, rgba(246, 243, 252, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: var(--shadow-soft);
}

.archive-description > :first-child { margin-top: 0; }
.archive-description > :last-child { margin-bottom: 0; }

.archive-empty {
    margin: 0;
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: var(--mute);
    background: var(--paper-2);
    border-radius: 16px;
}

.archive-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 25%;
    gap: 1.75rem;
    align-items: stretch;
}

.archive .home-grid {
    column-count: 2;
}

.archive .people-section .home-grid {
    column-count: 3;
}

.archive-side {
    min-width: 0;
    height: 100%;
}

.archive-side-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    display: grid;
    gap: 1.1rem;
}

.donate-box {
    padding: 1.25rem 1.15rem 1.2rem;
    background: var(--paper-2);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.motto {
    margin: 0;
}

.motto-card {
    position: relative;
    margin: 0;
    padding: 1.45rem 1.3rem 1.35rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.motto-mark {
    display: block;
    margin: 0 0 0.35rem;
    color: var(--magenta);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 0.7;
}

.motto-card p {
    margin: 0 0 1.05rem;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.38;
}

.motto-card footer {
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute);
}

.donate-box .eyebrow {
    color: var(--brass-deep);
}

.donate-box h2 {
    font-family: Figtree, "Segoe UI", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.55rem;
}

.donate-box > p {
    margin: 0 0 0.95rem;
    color: var(--mute);
    font-size: 0.9rem;
    line-height: 1.5;
}

.donate-box .donate-amounts {
    margin-bottom: 0.95rem;
}

.donate-box .donate-amount {
    min-width: 0;
    flex: 1 1 calc(50% - 0.55rem);
    padding: 0.5rem 0.55rem;
    font-size: 0.88rem;
}

.donate-box .donate-actions {
    flex-direction: column;
    gap: 0.55rem;
}

.donate-box .donate-btn {
    min-width: 0;
    width: 100%;
}

@media (max-width: 960px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }
    .archive .home-grid {
        column-count: 1;
    }
    .archive .people-section .home-grid {
        column-count: 2;
    }
    .people-section .people-grid-fill {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .archive-side-sticky,
    .donate-box {
        position: static;
    }
}

@media (max-width: 640px) {
    .archive .people-section .home-grid,
    .people-section .people-grid-fill {
        column-count: 1;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .archive-head { flex-direction: column; align-items: flex-start; }
}

.article-tools,
.article-related {
    padding: 1.25rem 1.15rem 1.2rem;
    background: var(--paper-2);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.article-tools .eyebrow,
.article-related .eyebrow {
    color: var(--brass-deep);
}

.article-share {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 0.95rem;
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
}

.article-share-btn:hover {
    border-color: rgb(91 50 180 / 0.28);
    color: var(--brass-deep);
}

.article-share-btn svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    color: var(--magenta);
}

.article-tools .btn-text {
    display: inline-block;
    margin-bottom: 0.55rem;
}

.article-donate-link {
    display: inline-block;
    color: var(--magenta);
    font-weight: 700;
    text-decoration: none;
}

.article-donate-link:hover { color: var(--brass-deep); }

.article-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.article-related a {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
}

.article-related img,
.article-related .thumb-empty {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
    min-height: 0;
}

.article-related img.is-logo {
    object-fit: contain;
    background: #fff;
    padding: 0.35rem;
}

.article-related a span {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-related a:hover span { color: var(--magenta); }

.post-adjacent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    margin-top: 2.4rem;
    padding-top: 1.85rem;
    border-top: 1px solid var(--line);
}

.post-adjacent-card {
    display: grid;
    grid-template-columns: 7.2rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    min-height: 6.5rem;
    padding: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.post-adjacent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.post-adjacent-card.is-next {
    text-align: right;
    grid-template-columns: minmax(0, 1fr) 7.2rem;
}

.post-adjacent-card.is-next .post-adjacent-media { order: 2; }
.post-adjacent-card.is-next .eyebrow { justify-self: end; }

.post-adjacent-media {
    display: block;
    width: 7.2rem;
    height: 5.4rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--paper-2);
}

.post-adjacent-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-adjacent-media.is-logo img {
    object-fit: contain;
    padding: 0.7rem;
}

.post-adjacent-copy {
    display: grid;
    align-content: center;
    min-width: 0;
}

.post-adjacent-copy .eyebrow {
    margin: 0 0 0.3rem;
    color: var(--brass-deep);
}

.post-adjacent-copy strong {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.28;
}

@media (max-width: 720px) {
    .post-adjacent { grid-template-columns: 1fr; }
    .post-adjacent-card.is-next {
        text-align: left;
        grid-template-columns: 7.2rem minmax(0, 1fr);
    }
    .post-adjacent-card.is-next .post-adjacent-media { order: 0; }
}

.muted { color: var(--mute); }

.promo-video {
    --video-shift: -150px;
    width: 100%;
    margin-top: calc(var(--header-h) * -1);
    background: #120f1c;
    overflow: hidden;
}

.promo-video-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 18rem;
    overflow: hidden;
    background: #120f1c;
}

.promo-video-poster,
.promo-video-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.promo-video-poster {
    inset: auto;
    left: 50%;
    bottom: var(--video-shift);
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: calc(100% - var(--video-shift));
    object-fit: cover;
    object-position: center;
    transform: translateX(-50%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.promo-video.is-playing .promo-video-poster {
    opacity: 0;
    pointer-events: none;
}

.promo-video-cover {
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.promo-video-cover iframe {
    position: absolute;
    top: auto;
    bottom: var(--video-shift);
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: calc(100% - var(--video-shift));
    border: 0;
    max-width: none;
    transform: translateX(-50%);
    pointer-events: none;
}

.promo-video-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.promo-video-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding: 4rem var(--gutter) 1.2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 15, 28, 0.78) 100%);
    color: #fff;
}

.promo-video-bar p {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.promo-video-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.promo-video-sound,
.promo-video-full {
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.promo-video-sound {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.promo-video.is-unmuted .promo-video-sound,
.promo-video-sound[aria-pressed="true"] {
    background: var(--magenta);
}

.promo-video-full {
    background: #fff;
    color: var(--ink);
}

.promo-video-play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    background: var(--magenta);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(251, 57, 125, 0.32);
}

.promo-video-scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 4.4rem;
    color: #fff;
    text-decoration: none;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 8px rgba(18, 15, 28, 0.55));
}

.promo-video-mouse {
    position: relative;
    display: block;
    width: 2.25rem;
    height: 3.35rem;
    border: 3px solid currentColor;
    border-radius: 999px;
}

.promo-video-mouse span {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    width: 0.28rem;
    height: 0.68rem;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    animation: promo-scroll-wheel 1.7s ease-in-out infinite;
}

.promo-video-scroll svg {
    width: 1.8rem;
    height: 1.8rem;
    animation: promo-scroll-arrow 1.7s ease-in-out infinite;
}

@keyframes promo-scroll-wheel {
    0% { opacity: 0; transform: translate(-50%, -0.08rem); }
    30% { opacity: 1; }
    75%, 100% { opacity: 0; transform: translate(-50%, 0.52rem); }
}

@keyframes promo-scroll-arrow {
    0%, 25%, 100% { opacity: 0.45; transform: translateY(-0.08rem); }
    60% { opacity: 1; transform: translateY(0.22rem); }
}

.promo-video.is-blocked .promo-video-play {
    display: inline-flex;
}

.promo-video.is-playing .promo-video-play,
.promo-video.is-stopped .promo-video-play {
    display: none;
}

@media (max-width: 720px) {
    .promo-video {
        --video-shift: -24px;
    }

    .promo-video-stage {
        height: 50vh;
        height: 50svh;
        min-height: 0;
    }

    .promo-video-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding: 2.4rem var(--gutter) 0.65rem;
    }

    .promo-video-bar p {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .promo-video-actions {
        gap: 0.35rem;
    }

    .promo-video-sound,
    .promo-video-full {
        padding: 0.32rem 0.68rem;
        font-size: 0.72rem;
    }

    .promo-video-play {
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
    }

    .promo-video-scroll {
        display: none;
    }
}

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

    .promo-video-mouse span,
    .promo-video-scroll svg {
        animation: none;
    }
    [data-reveal],
    [data-reveal].will-reveal,
    [data-reveal].is-in .post-card {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
    .post-card:hover,
    .donate-btn:hover,
    .gallery-thumb:hover img,
    .gallery-thumb:focus-visible img {
        transform: none;
    }
    .gallery-thumb img {
        transition: none;
    }
}
