/* Einundzwanzig Neubrandenburg Charity Eisbaden
   Mobile-First. Keine externen Fonts, keine Frameworks. */

:root {
    --color-background: #F8FBFC;
    --color-surface: #EAF2F5;
    --color-primary: #075985;
    --color-accent: #38BDF8;
    --color-text: #101820;
    --color-text-muted: #52616B;
    --color-orange: #F59E0B;
    --color-white: #ffffff;

    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --text-body: 1.0625rem;
    --text-lead: 1.25rem;
    --text-h1: clamp(2.25rem, 8vw, 4.5rem);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --radius: 1rem;
    --radius-pill: 999px;
    --container: 72rem;
    --header-height: 4.75rem;
    --focus-ring: 0.1875rem solid var(--color-accent);
    --shadow-soft: 0 0.6rem 1.6rem rgba(16, 24, 32, 0.06);
    --shadow-lift: 0 1rem 2rem rgba(7, 89, 133, 0.1);
    --ease: 0.18s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 0.75rem);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--color-text);
}

:focus {
    outline: none;
}

:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 0.2rem;
}

.skip-link {
    position: absolute;
    left: var(--space-sm);
    top: -4rem;
    z-index: 200;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-sm);
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 251, 252, 0.9);
    border-bottom: 1px solid rgba(7, 89, 133, 0.08);
    box-shadow: 0 0.25rem 1.1rem rgba(7, 89, 133, 0.04);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header--over-hero {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.site-header--over-hero:not(.is-scrolled):not(.is-open) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header--over-hero:not(.is-scrolled):not(.is-open) .site-logo-kicker,
.site-header--over-hero:not(.is-scrolled):not(.is-open) .site-logo-name,
.site-header--over-hero:not(.is-scrolled):not(.is-open) .nav-toggle {
    color: var(--color-white);
    text-shadow: 0 0.15rem 0.9rem rgba(7, 45, 68, 0.7);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: var(--header-height);
}

.site-logo {
    margin: 0;
}

.site-logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    color: inherit;
    text-decoration: none;
}

.site-logo-mark {
    display: block;
    width: 3.15rem;
    height: 3.15rem;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
    background: var(--color-white);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.site-logo-kicker {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.site-logo-name {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-right: -0.45rem;
    border: 0;
    border-radius: 0.75rem;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
}

.js .nav-toggle {
    display: inline-flex;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 1.35rem;
    height: 0.125rem;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -0.38rem;
}

.nav-toggle-icon::after {
    top: 0.38rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.site-nav ul,
.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav {
    flex: 1 0 100%;
}

.site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: var(--space-sm) 0 var(--space-md);
}

.js .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding-inline: 1rem;
    background: var(--color-background);
    border-bottom: 1px solid rgba(7, 89, 133, 0.08);
    box-shadow: 0 1rem 2rem rgba(16, 24, 32, 0.06);
}

.js .site-nav.is-open {
    display: block;
}

.site-nav a,
.footer-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.site-nav a {
    display: flex;
    align-items: center;
    padding: 0.55rem 0;
    min-height: 2.75rem;
}

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

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    color: var(--color-white);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 0.85rem) 0 1.35rem;
    text-align: center;
}

.hero-organizers {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin: 0 auto var(--space-md);
    padding: 0;
    width: 100%;
    max-width: 38rem;
}

.hero-organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.85rem;
    background: rgba(248, 251, 252, 0.94);
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.hero-organizer img {
    width: auto;
    max-width: 100%;
    max-height: 2.35rem;
    object-fit: contain;
}

.hero-paths {
    display: grid;
    gap: 1rem;
    margin: 0 auto var(--space-md);
    width: 100%;
    max-width: 36rem;
}

.hero-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.hero-path .btn {
    width: 100%;
}

.hero-path-link {
    color: rgba(248, 251, 252, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.hero-path-link:hover {
    color: var(--color-white);
}

.section-heading--wide {
    max-width: 22ch;
    margin-inline: auto;
    text-align: center;
}

.section-prose {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
}

.section-prose p {
    max-width: none;
    color: var(--color-text-muted);
}

.form-callout {
    max-width: 46rem;
    width: 100%;
    margin: var(--space-md) auto 0;
    padding: 1rem 1.15rem;
    background: var(--color-white);
    border-radius: var(--radius);
    border-left: 0.25rem solid var(--color-orange);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.section-alt .form-callout {
    background: var(--color-background);
}

.form-callout-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.form-callout p {
    margin: 0;
    max-width: none;
    color: var(--color-text);
}

.wall-quote {
    max-width: 38rem;
    margin: var(--space-md) auto var(--space-lg);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    text-align: center;
}

.project-list {
    list-style: none;
    margin: var(--space-md) auto 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 46rem;
}

.project-card {
    padding: 1.15rem 1.2rem;
    border-radius: 1.25rem;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.section-alt .project-card {
    background: var(--color-background);
}

.project-card-image {
    display: block;
    margin: 0 0 0.85rem;
    overflow: hidden;
    border-radius: 0.85rem;
}

.project-card-image img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.project-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
}

.project-card-org {
    margin: 0 0 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.project-card-summary {
    margin: 0;
    max-width: none;
}

.logo-slider {
    margin: var(--space-md) auto var(--space-lg);
    width: 100%;
}

.logo-slider-frame {
    overflow: hidden;
}

.logo-slider-track {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0.25rem 0.15rem 0.75rem;
    list-style: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
}

.logo-slider-track::-webkit-scrollbar {
    display: none;
}

.logo-slider-slide {
    flex: 0 0 min(16rem, 78%);
    scroll-snap-align: start;
}

.site-partners {
    padding: var(--space-xl) 0;
    background: var(--color-surface);
    border-top: 0.0625rem solid rgba(7, 89, 133, 0.1);
}

.partners-heading {
    margin: 0 auto var(--space-md);
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    max-width: 22ch;
    text-align: center;
}

.partners-empty {
    margin: 0 auto;
    max-width: 42rem;
    color: var(--color-text-muted);
    text-align: center;
}

.partner-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    width: 100%;
    max-width: 52rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 6.5rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.partner-tile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    color: var(--color-text);
    text-decoration: none;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
}

.partner-tile img {
    max-height: 3.25rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.partner-name {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(7, 45, 68, 0.78) 0%,
        rgba(7, 45, 68, 0.42) 26%,
        rgba(16, 24, 32, 0.18) 48%,
        rgba(7, 45, 68, 0.5) 76%,
        rgba(7, 45, 68, 0.82) 100%
    );
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #075985;
}

.hero-media img,
.hero-fallback {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 68%;
}

.hero-fallback {
    background:
        radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.7), transparent 42%),
        radial-gradient(ellipse at 50% 78%, rgba(7, 89, 133, 0.28), transparent 50%),
        linear-gradient(180deg, #d7eef8 0%, #eaf2f5 38%, #9ec5d6 68%, #075985 100%);
}

.hero-signet {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

.hero-eyebrow {
    margin: 0 0 var(--space-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 0.2rem 1.1rem rgba(7, 45, 68, 0.45);
}

.hero-eyebrow::after {
    content: "";
    display: block;
    width: 2rem;
    height: 0.18rem;
    margin-top: 0.65rem;
    margin-inline: auto;
    border-radius: var(--radius-pill);
    background: var(--color-orange);
}

.hero h1 {
    margin: 0 auto var(--space-md);
    max-width: 16ch;
    font-size: clamp(2.15rem, 10vw, 4.25rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--color-white);
    text-shadow: 0 0.35rem 1.5rem rgba(7, 45, 68, 0.4);
}

.hero h1 span {
    display: block;
}

.hero-claim {
    margin: 0 0 var(--space-sm);
    font-size: clamp(1.2rem, 4.5vw, 1.7rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-white);
}

.hero-subline,
.hero-note {
    max-width: 38rem;
    margin-inline: auto;
    color: rgba(248, 251, 252, 0.88);
}

.site-main p {
    max-width: 38rem;
    margin-inline: auto;
    color: var(--color-text-muted);
}

.hero-subline {
    margin: 0 auto var(--space-lg);
}

.hero-note {
    margin: 0 auto var(--space-md);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.hero .btn-primary {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
}

.hero .btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.hero .btn-secondary {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.35rem;
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-scroll-icon {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 0.125rem solid currentColor;
    border-bottom: 0.125rem solid currentColor;
    transform: rotate(45deg);
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(0.35rem) rotate(45deg);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 0.125rem solid transparent;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 0.2rem;
}

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

.btn-primary:hover {
    background: #064c71;
    border-color: #064c71;
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

.hero-note {
    margin: 0 auto;
    font-size: 0.875rem;
}

.site-main {
    padding: var(--space-xl) 0 var(--space-2xl);
    min-height: 50vh;
    text-align: center;
}

.site-main h1 {
    margin-inline: auto;
}

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0 0 var(--space-md);
}

h1 {
    font-size: var(--text-h1);
}

.lead {
    margin: 0 auto var(--space-sm);
    font-size: var(--text-lead);
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
}

.site-credit {
    margin-top: var(--space-md);
    padding: var(--space-md) 0;
    background:
        linear-gradient(180deg, rgba(7, 89, 133, 0.06), rgba(7, 89, 133, 0.02)),
        var(--color-background);
    border-top: 0.0625rem solid rgba(7, 89, 133, 0.12);
}

.site-credit-kicker {
    margin: 0 0 var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
}

.site-credit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 52rem;
    margin-inline: auto;
}

.site-credit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 8.5rem;
    padding: 1.35rem 1.4rem 1.2rem;
    color: var(--color-text);
    text-align: center;
    text-decoration: none;
    background: var(--color-surface);
    border: 0.0625rem solid rgba(7, 89, 133, 0.12);
    border-radius: 1.1rem;
    box-shadow: 0 0.75rem 1.75rem rgba(7, 89, 133, 0.08);
}

.site-credit-card:hover,
.site-credit-card:focus-visible {
    color: var(--color-text);
    border-color: rgba(7, 89, 133, 0.28);
    box-shadow: 0 1rem 2rem rgba(7, 89, 133, 0.14);
}

.site-credit-logo {
    display: block;
    width: min(100%, 17.5rem);
    height: auto;
    max-height: 2.85rem;
    object-fit: contain;
}

.site-credit-role {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.35;
}

.site-footer {
    padding: var(--space-md) 0;
    background: var(--color-surface);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem 1.5rem;
    text-align: center;
}

.footer-brand,
.footer-contact {
    margin: 0;
}

.footer-name {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-fullname,
.footer-contact p {
    margin: 0.2rem 0 0;
    color: var(--color-text-muted);
}

.footer-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: var(--color-primary);
    overflow-wrap: anywhere;
}

.legal-page {
    text-align: left;
}

.legal-page h1 {
    text-align: center;
}

.legal-page h2 {
    margin-top: var(--space-lg);
    margin-inline: auto;
    font-size: 1.35rem;
    max-width: 28rem;
    text-align: center;
}

.legal-page p,
.legal-page li {
    color: var(--color-text);
    max-width: 42rem;
}

.legal-page p,
.legal-callout {
    margin-inline: auto;
}

.legal-page ul {
    margin: 0 auto var(--space-md);
    padding-left: 1.2rem;
    max-width: 42rem;
    text-align: left;
}

.legal-callout {
    max-width: 42rem;
    padding: 1rem 1.15rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    border-left: 0.25rem solid var(--color-orange);
    color: var(--color-text);
    text-align: left;
}

.legal-placeholder {
    display: inline-block;
    padding: 0.05em 0.4em;
    border-radius: 0.3rem;
    background: rgba(7, 89, 133, 0.1);
    color: var(--color-primary);
    font-weight: 700;
}

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

.section {
    padding: var(--space-xl) 0;
    scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.section-alt {
    background: var(--color-surface);
}

.section-heading {
    font-size: clamp(1.85rem, 6vw, 3.1rem);
    max-width: 18ch;
    margin: 0 auto var(--space-sm);
    text-align: center;
}

.section-text,
.section-contact {
    max-width: 38rem;
    margin-inline: auto;
    color: var(--color-text-muted);
    text-align: center;
}

.section-contact a,
.footer-fullname,
.site-credit-card {
    overflow-wrap: anywhere;
}

.highlight {
    margin: 0 auto var(--space-sm);
    font-size: clamp(1.4rem, 4vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    text-align: center;
}

.steps {
    list-style: none;
    margin: var(--space-lg) 0 0;
    padding: 0;
    display: grid;
    gap: var(--space-lg);
}

.step-number {
    display: block;
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--color-primary);
}

.step-title {
    margin: 0.4rem 0 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.site-form {
    position: relative;
    margin: var(--space-lg) auto 0;
    max-width: 46rem;
    width: 100%;
    text-align: left;
}

.form-status {
    margin: 0 auto var(--space-md);
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 46rem;
    width: 100%;
    text-align: left;
}

.form-status p {
    margin: 0;
    max-width: none;
}

.form-status-success {
    background: #e8f6ee;
    color: #14532d;
    border-left: 0.25rem solid #15803d;
}

.form-status-error {
    background: #fdecec;
    color: #7f1d1d;
    border-left: 0.25rem solid #b91c1c;
}

.form-grid {
    display: grid;
    gap: var(--space-md);
}

.field label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    max-width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
    border: 0.125rem solid rgba(7, 89, 133, 0.22);
    border-radius: 0.85rem;
    background: var(--color-white);
    color: var(--color-text);
    font: inherit;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.field textarea {
    resize: vertical;
    min-height: 7rem;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.field-check input:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 0.15rem;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #b91c1c;
    background: #fff7f7;
}

.req {
    font-weight: 500;
    color: var(--color-text-muted);
}

.field-error {
    margin: 0.4rem 0 0;
    color: #b91c1c;
    font-size: 0.9375rem;
}

.field-check label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 500;
}

.field-check input {
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.15rem;
    flex: 0 0 auto;
    accent-color: var(--color-primary);
}

.hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

button.btn {
    font-family: inherit;
    cursor: pointer;
}

button.btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.site-form > p {
    text-align: center;
}

.field-hint {
    margin: 0.4rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.amount-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.amount-fieldset legend {
    padding: 0;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.amount-options {
    display: grid;
    gap: 0.5rem;
}

.amount-options label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    min-height: 3rem;
    padding: 0.7rem 0.9rem;
    border: 0.125rem solid rgba(7, 89, 133, 0.22);
    border-radius: 0.85rem;
    background: var(--color-white);
    font-weight: 500;
    cursor: pointer;
}

.amount-options input {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    accent-color: var(--color-primary);
}

.amount-fieldset[aria-invalid="true"] .amount-options label {
    border-color: #b91c1c;
}

.field input[type="file"] {
    padding: 0.55rem;
    background: var(--color-white);
}

.carousel {
    margin: var(--space-md) auto 0;
    width: 100%;
    max-width: 52rem;
}

.carousel-frame {
    overflow: hidden;
    border-radius: 1.25rem;
    background: var(--color-background);
    box-shadow: var(--shadow-soft);
}

.carousel-track {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.carousel-slide figure {
    margin: 0;
    aspect-ratio: 16 / 10;
}

.carousel-slide img,
.carousel-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.carousel-placeholder {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.75), transparent 45%),
        linear-gradient(160deg, #d7eef8 0%, #9ec5d6 55%, #075985 100%);
}

.carousel-slide:nth-child(2) .carousel-placeholder {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.55), transparent 40%),
        linear-gradient(200deg, #eaf2f5 0%, #7fb3c9 60%, #0b4f73 100%);
}

.carousel-slide:nth-child(3) .carousel-placeholder {
    background:
        linear-gradient(180deg, #f8fbfc 0%, #c5e0ec 40%, #38bdf8 100%);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: var(--space-sm);
}

.carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 0.125rem solid var(--color-primary);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.empty-state {
    padding: var(--space-sm) 0 var(--space-md);
    text-align: center;
}

.supporter-preview,
.supporter-grid,
.organizer-grid {
    list-style: none;
    margin: var(--space-md) auto var(--space-lg);
    padding: 0;
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 64rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.supporter-tile,
.organizer-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 9rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--ease), transform var(--ease);
}

.supporter-tile:hover,
.organizer-tile:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-0.15rem);
}

.section-alt .supporter-tile,
.section-alt .organizer-tile {
    background: var(--color-background);
}

.supporter-tile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    height: 100%;
    color: var(--color-text);
    text-decoration: none;
}

.supporter-tile a:hover {
    color: var(--color-primary);
}

.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6.25rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.85rem;
    background: var(--color-background);
}

.page-supporters .supporter-logo,
.section-alt .supporter-logo {
    background: var(--color-surface);
}

.supporter-tile img,
.organizer-tile img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.organizer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 5.5rem;
}

.organizer-tile img {
    max-height: 5.25rem;
}

.supporter-logo img {
    max-height: 4.75rem;
}

.organizer-tile {
    min-height: 8.5rem;
    padding: 1.15rem 1rem;
}

.supporter-name,
.organizer-name {
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.page-supporters .empty-state {
    margin: var(--space-lg) auto;
}

.supporter-cta {
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg);
    border-radius: 1.5rem;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    max-width: 42rem;
    text-align: center;
}

.supporter-cta h2 {
    margin-bottom: 0.4rem;
}

.supporter-cta .highlight {
    margin-bottom: var(--space-md);
}

.supporter-cta p:last-child {
    margin-bottom: 0;
}

.mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(248, 251, 252, 0.92);
    border-top: 1px solid rgba(7, 89, 133, 0.1);
    box-shadow: 0 -0.4rem 1.25rem rgba(16, 24, 32, 0.06);
    backdrop-filter: blur(0.9rem);
    -webkit-backdrop-filter: blur(0.9rem);
}

.js .mobile-actions {
    display: none;
}

.js .mobile-actions.is-visible {
    display: grid;
}

.mobile-actions .btn {
    min-height: 2.85rem;
    padding-inline: 0.55rem;
    font-size: 0.875rem;
    box-shadow: none;
}

body.hero-passed.has-mobile-actions {
    padding-bottom: 5.25rem;
}

body.nav-open .mobile-actions {
    visibility: hidden;
}

@media (max-width: 379px) {
    .container {
        width: min(100% - 1.5rem, var(--container));
    }

    .hero h1 {
        font-size: clamp(2.15rem, 13.5vw, 3.4rem);
    }

    .supporter-preview,
    .supporter-grid,
    .organizer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-actions .btn {
        font-size: 0.8125rem;
        padding-inline: 0.4rem;
    }
}

@media (max-height: 720px) {
    .hero-content {
        padding-top: calc(var(--header-height) + 0.55rem);
        padding-bottom: 1.1rem;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.6rem);
        margin-bottom: 0.7rem;
        max-width: 14ch;
    }

    .hero-claim {
        font-size: 1.125rem;
        margin-bottom: 0.45rem;
    }

    .hero-subline {
        margin-bottom: 0.9rem;
    }

    .hero-actions {
        margin-bottom: 0.65rem;
        gap: 0.5rem;
    }

    .hero-note {
        margin-bottom: 0.45rem;
    }
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        flex: 1 1 12rem;
        max-width: 18rem;
    }
}

@media (min-width: 768px) {
    .mobile-actions,
    .js .mobile-actions,
    .js .mobile-actions.is-visible {
        display: none;
    }

    body.hero-passed.has-mobile-actions {
        padding-bottom: 0;
    }

    .hero-content {
        padding-bottom: 2.5rem;
    }

    .hero-organizers {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 52rem;
    }

    .hero-paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        max-width: 40rem;
        margin-inline: auto;
    }

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

    .logo-slider-slide {
        flex-basis: 14.5rem;
    }

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

    .footer-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr) auto;
        align-items: center;
        gap: 1rem 2rem;
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }

    .site-credit {
        margin-top: var(--space-md);
        padding: var(--space-lg) 0;
    }

    .site-credit-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-xl);
    }

    .carousel-frame {
        border-radius: 1.5rem;
    }

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

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

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

    .field-wide,
    .field-check,
    .amount-fieldset {
        grid-column: 1 / -1;
    }

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

@media (min-width: 1024px) {
    .nav-toggle,
    .js .nav-toggle {
        display: none;
    }

    .site-nav,
    .js .site-nav,
    .js .site-nav.is-open {
        display: block;
        position: static;
        flex: 0 1 auto;
        padding-inline: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .site-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.25rem 1.35rem;
        padding: 0;
    }

    .site-nav a {
        padding: 0.45rem 0;
        min-height: 2.5rem;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 5.5vw, 4.75rem);
        max-width: 16ch;
    }

    .hero-content {
        justify-content: flex-start;
        padding: calc(var(--header-height) + 2rem) 0 3.5rem;
    }

    .site-header--over-hero:not(.is-scrolled):not(.is-open) .site-nav a {
        color: var(--color-white);
        text-shadow: 0 0.15rem 0.9rem rgba(7, 45, 68, 0.7);
    }

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

    .organizer-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1440px) {
    .container {
        width: min(100% - 3rem, 80rem);
    }

    .section {
        padding: 7rem 0;
    }
}

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

    .carousel-track {
        scroll-behavior: auto;
    }

    .hero-scroll-icon {
        animation: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .supporter-tile:hover,
    .organizer-tile:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .js [data-reveal] {
        opacity: 0;
        transform: translateY(1.75rem);
        filter: blur(0.35rem);
        transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    }

    .js [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .js [data-reveal-stagger] > * {
        opacity: 0;
        transform: translateY(1.15rem);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .js [data-reveal].is-visible [data-reveal-stagger] > *,
    .js [data-reveal-stagger].is-visible > * {
        opacity: 1;
        transform: none;
    }

    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(1),
    .js [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(2),
    .js [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(3),
    .js [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(4),
    .js [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(5),
    .js [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
    .js [data-reveal].is-visible [data-reveal-stagger] > *:nth-child(6),
    .js [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.4s; }

    .js [data-hero-copy] > * {
        opacity: 0;
        transform: translateY(1.1rem);
        animation: hero-copy-in 0.8s ease forwards;
    }

    .js [data-hero-copy] > *:nth-child(1) { animation-delay: 0.05s; }
    .js [data-hero-copy] > *:nth-child(2) { animation-delay: 0.14s; }
    .js [data-hero-copy] > *:nth-child(3) { animation-delay: 0.22s; }
    .js [data-hero-copy] > *:nth-child(4) { animation-delay: 0.3s; }
    .js [data-hero-copy] > *:nth-child(5) { animation-delay: 0.38s; }
    .js [data-hero-copy] > *:nth-child(6) { animation-delay: 0.46s; }
    .js [data-hero-copy] > *:nth-child(7) { animation-delay: 0.54s; }
    .js [data-hero-copy] > *:nth-child(8) { animation-delay: 0.62s; }

    @keyframes hero-copy-in {
        to {
            opacity: 1;
            transform: none;
        }
    }
}
