
:root {
    --green: #009058;
    --green-dark: #007447;
    --green-soft: #eaf6ef;
    --navy: #071a35;
    --navy-soft: #24354d;
    --cream: #faf8f3;
    --paper: #ffffff;
    --line: #dfe7e2;
    --muted: #5f6b78;
    --max: 1240px;
    --shadow: 0 18px 50px rgba(7, 26, 53, .08);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    color: var(--navy);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.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;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(7,26,53,.07);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(calc(100% - 40px), 1380px);
    height: 78px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    text-decoration: none;
}
.brand img {
    width: 176px;
    height: auto;
}
.brand-tagline {
    margin-top: 2px;
    padding-left: 2px;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: .01em;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 2.3vw, 38px);
    font-size: .95rem;
    font-weight: 650;
}

.desktop-nav a,
.footer-grid a {
    transition: color .2s ease;
}
.desktop-nav a:hover,
.footer-grid a:hover { color: var(--green); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-donate {
    color: var(--green-dark);
    border-color: var(--green);
    background: #fff;
}
.btn-donate:hover { background: var(--green-soft); }

.btn-outline {
    color: var(--green-dark);
    border-color: #9bcfba;
    background: transparent;
}
.btn-outline:hover { background: var(--green-soft); }

.btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.btn-large {
    min-height: 54px;
    padding-inline: 26px;
}

.menu-toggle, .mobile-menu { display: none; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - 78px);
    overflow: hidden;
    background: #dce7df;
}

.hero-slides {
    position: relative;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .85s ease, visibility .85s ease;
}

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

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center right;
    transform: scale(1.015);
    transition: transform 8s ease-out;
}

.hero-slide.is-active .hero-media {
    transform: scale(1.04);
}

.hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(249, 251, 249, .97) 0%,
            rgba(249, 251, 249, .88) 30%,
            rgba(249, 251, 249, .42) 49%,
            rgba(0, 0, 0, .03) 72%,
            rgba(0, 0, 0, .08) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 94px;
    padding-bottom: 102px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: .01em;
}

.hero h1,
.hero-title {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3.2rem, 6.1vw, 5.8rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 850;
}

.hero h1 span,
.hero-title span,
.mission-copy h2 span { color: var(--green); }

.hero-lead {
    max-width: 570px;
    margin: 28px 0 0;
    color: var(--navy-soft);
    font-size: 1.16rem;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.hero-text-link,
.text-link {
    color: var(--green-dark);
    font-weight: 800;
}

.hero-text-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,144,88,.3);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 38px;
    color: #314155;
    font-size: .91rem;
    font-weight: 650;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.hero-dots,
.hero-pause {
    pointer-events: auto;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 8px 24px rgba(7,26,53,.10);
    backdrop-filter: blur(8px);
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(7,26,53,.28);
    cursor: pointer;
    transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--green);
}

.hero-dot:focus-visible,
.hero-pause:focus-visible {
    outline: 3px solid rgba(0,144,88,.35);
    outline-offset: 3px;
}

.hero-pause {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(7,26,53,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7,26,53,.10);
    backdrop-filter: blur(8px);
}

.hero-pause-icon {
    font-size: .85rem;
    line-height: 1;
}

/* Base sections */
.section { padding: 82px 0; }

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-heading.compact { margin-bottom: 30px; }

.section-heading h2,
.mission-copy h2,
.faq-inner h2,
.closing-inner h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.section-heading p:last-child { margin-bottom: 0; }

/* Mission */
.mission {
    background: var(--cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 64px;
}

.mission-art {
    color: var(--green-dark);
    min-height: 280px;
    display: grid;
    place-items: center;
}
.mission-art svg { width: min(100%, 470px); }

.mission-copy p:not(.section-kicker) {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.06rem;
}
.mission-copy .text-link { display: inline-flex; margin-top: 12px; gap: 10px; }

/* Steps */
.steps {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    position: relative;
    padding: 12px 14px;
    text-align: center;
}
.step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 46%;
    right: -22px;
    color: #a6cbb9;
    font-weight: 900;
}

.step-number {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 850;
}

.step-icon {
    height: 68px;
    display: grid;
    place-items: center;
    font-size: 3.1rem;
    line-height: 1;
    color: var(--navy);
}

.step h3 {
    margin: 14px 0 8px;
    font-size: 1.05rem;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}

/* Countries */
.countries {
    position: relative;
    padding-top: 72px;
    padding-bottom: 82px;
    background: #f3f8f5;
    border-top: 1px solid #e3ece7;
    border-bottom: 1px solid #e3ece7;
}

.countries + .steps {
    padding-top: 82px;
}

.country-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.country-item {
    min-height: 62px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 750;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.country-item:hover {
    border-color: #a7cdbb;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(7,26,53,.06);
}

.flag {
    position: relative;
    width: 26px;
    height: 20px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(7,26,53,.12);
    border-radius: 2px;
}
.flag::before,
.flag::after,
.flag i {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
}

.flag-at::before { top:0; height:33.333%; background:#ed2939; }
.flag-at i { top:33.333%; height:33.333%; background:#fff; }
.flag-at::after { bottom:0; height:33.333%; background:#ed2939; }

.flag-hu::before { top:0; height:33.333%; background:#ce2939; }
.flag-hu i { top:33.333%; height:33.333%; background:#fff; }
.flag-hu::after { bottom:0; height:33.333%; background:#477050; }

.flag-pl::before { top:0; height:50%; background:#fff; }
.flag-pl::after { bottom:0; height:50%; background:#dc143c; }
.flag-pl i { display:none; }

.plus-box {
    position: relative;
    width: 26px;
    height: 26px;
    display: block;
    border: 1px solid #b9c8bf;
    border-radius: 3px;
}
.plus-box::before,
.plus-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-dark);
    transform: translate(-50%, -50%);
}
.plus-box::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.country-arrow { color: var(--green); }

/* Paths */
.paths {
    padding-top: 42px;
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.path-card {
    min-height: 300px;
    padding: 48px;
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}
.path-card::before {
    content: "";
    position: absolute;
    inset: 0;
}
.path-card > div { position: relative; z-index: 1; max-width: 460px; }
.path-card h2 { margin: 0 0 12px; font-size: 2rem; }
.path-card p:not(.section-kicker) { color: #3b495a; }
.path-self {
    background:
        linear-gradient(120deg, #eff9f3 0%, #f9fbf8 62%, #e6f1ea 100%);
}
.path-self::before {
    background:
        radial-gradient(circle at 84% 74%, rgba(0,144,88,.14), transparent 28%);
}
.path-send {
    background:
        linear-gradient(120deg, #eef6ff 0%, #fbfdff 58%, #e9f2fb 100%);
}
.path-send::before {
    background:
        radial-gradient(circle at 84% 28%, rgba(35,112,197,.12), transparent 26%);
}

/* Values */
.values { background: var(--cream); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.values-grid article {
    padding-right: 26px;
    border-right: 1px solid #dfe4df;
}
.values-grid article:last-child { border-right: 0; }

.value-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--green-dark);
    font-size: 2rem;
}
.values-grid h3 { margin: 0 0 8px; }
.values-grid p { margin: 0; color: var(--muted); }

/* FAQ */
.faq-strip {
    padding: 60px 0;
    background: #fff;
}

.faq-inner {
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fbf8f1;
    border-radius: 14px;
}
.faq-inner h2 { font-size: 2rem; }
.faq-inner p:last-child { margin-bottom: 0; color: var(--muted); }

/* Closing */
.closing-cta {
    color: #fff;
    background:
        linear-gradient(110deg, rgba(0,80,50,.96), rgba(0,126,78,.93)),
        url('/assets/img/landing-page/hero-train-window.jpg') center/cover;
}

.closing-inner {
    max-width: 900px;
    padding: 78px 0;
    text-align: center;
}
.closing-inner .section-kicker { color: #d7f1e4; }
.closing-inner p:not(.section-kicker) {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.88);
}
.closing-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.closing-cta .btn-primary {
    background: #fff;
    color: var(--green-dark);
}
.closing-cta .btn-primary:hover { background: #f0f8f4; }

/* Footer */
.site-footer {
    padding: 56px 0 24px;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand img { width: 180px; }
.footer-brand p { max-width: 360px; color: var(--muted); }

.footer-grid h3 {
    margin: 0 0 14px;
    font-size: .95rem;
}
.footer-grid a {
    display: block;
    margin: 8px 0;
    color: #425163;
    font-size: .92rem;
}

.muted { color: #7a8590 !important; font-size: .9rem; }

.footer-social {
    margin-top: 38px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: minmax(190px, .8fr) minmax(0, 2.2fr);
    gap: 28px 42px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.footer-social-heading h3 {
    margin: 0 0 7px;
    font-size: .95rem;
}

.footer-social-heading p {
    margin: 0;
    max-width: 320px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.footer-social-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.footer-social-link {
    min-width: 0;
    min-height: 72px;
    padding: 13px 14px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--navy) !important;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-social-link:hover {
    border-color: #9ccdb5;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(7,26,53,.06);
}

.footer-social-link strong,
.footer-social-link small {
    display: block;
}

.footer-social-link strong {
    color: var(--navy);
    font-size: .91rem;
}

.footer-social-link small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--muted);
    font-size: .76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef7f2;
    color: var(--green);
}

.footer-social-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.footer-social-icon-x {
    font-size: 1rem;
    font-weight: 850;
}

.footer-social-link.is-coming-soon {
    opacity: .66;
    cursor: default;
}

.footer-social-link.is-coming-soon:hover {
    border-color: var(--line);
    transform: none;
    box-shadow: none;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: #74808c;
    font-size: .85rem;
}

/* Responsive */
@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: 190px 1fr auto;
        gap: 14px;
    }
    .desktop-nav { gap: 18px; font-size: .88rem; }
    .header-actions .btn-donate { display: none; }
    .hero { min-height: calc(100svh - 78px); }
}

@media (max-width: 900px) {
    .header-inner {
        height: 70px;
        grid-template-columns: 1fr auto;
    }
    .desktop-nav,
    .header-actions { display: none; }
    .menu-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
    }
    .menu-toggle span:not(.sr-only) {
        width: 20px;
        height: 2px;
        background: var(--navy);
    }
    .mobile-menu {
        width: min(calc(100% - 32px), 520px);
        margin: 0 auto 16px;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
    }
    .mobile-menu:not([hidden]) { display: block; }
    .mobile-menu > a {
        display: block;
        padding: 12px 10px;
        font-weight: 750;
    }
    .mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 8px;
        margin-top: 8px;
    }

    .hero {
        min-height: calc(100svh - 70px);
        background: #dce7df;
    }
    .hero-slides { min-height: inherit; }
    .hero-slide.is-active {
        min-height: inherit;
        padding-bottom: 0;
    }
    .hero-media {
        inset: 0;
        height: auto;
        background-position: 68% center;
    }
    .hero-slide:nth-child(2) .hero-media { background-position: 72% center; }
    .hero-slide:nth-child(3) .hero-media { background-position: 74% center; }
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(249,251,249,.96) 0%,
                rgba(249,251,249,.90) 38%,
                rgba(249,251,249,.72) 62%,
                rgba(249,251,249,.28) 82%,
                rgba(7,26,53,.10) 100%),
            linear-gradient(90deg,
                rgba(249,251,249,.82) 0%,
                rgba(249,251,249,.56) 58%,
                rgba(249,251,249,.14) 100%);
    }
    .hero-content {
        min-height: inherit;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 56px;
        padding-bottom: 116px;
    }
    .hero h1,
    .hero-title { font-size: clamp(3rem, 10vw, 4.8rem); }
    .hero-lead { max-width: 540px; }
    .hero-trust { gap: 12px; }
    .hero-controls { bottom: 18px; justify-content: center; }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .mission-art { min-height: 190px; }
    .mission-art svg { width: min(100%, 360px); }

    .steps-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
    .step:not(:last-child)::after { display: none; }

    .country-list { grid-template-columns: 1fr 1fr; }

    .path-grid,
    .values-grid { grid-template-columns: 1fr 1fr; }
    .values-grid article:nth-child(2) { border-right: 0; }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .brand img { width: 158px; }

    .mobile-actions { grid-template-columns: 1fr; }

    .hero-slide.is-active { padding-bottom: 0; }
    .hero-media { height: auto; background-position: 66% center; }
    .hero-slide:nth-child(2) .hero-media { background-position: 69% center; }
    .hero-slide:nth-child(3) .hero-media { background-position: 72% center; }
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(249,251,249,.87) 0%,
                rgba(249,251,249,.78) 30%,
                rgba(249,251,249,.57) 54%,
                rgba(249,251,249,.22) 76%,
                rgba(7,26,53,.08) 100%),
            linear-gradient(90deg,
                rgba(249,251,249,.70) 0%,
                rgba(249,251,249,.34) 62%,
                rgba(249,251,249,.04) 100%);
    }
    .hero-content {
        min-height: inherit;
        padding-top: 26px;
        padding-bottom: 100px;
    }
    .hero .eyebrow {
        margin-bottom: 10px;
        font-size: .92rem;
    }
    .hero h1,
    .hero-title {
        font-size: clamp(2.28rem, 11.4vw, 3.3rem);
        line-height: .98;
        max-width: 92%;
    }
    .hero-lead {
        max-width: 90%;
        margin-top: 18px;
        font-size: .95rem;
        line-height: 1.48;
    }
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }
    .hero-actions .btn { width: 100%; }
    .hero-text-link { text-align: center; }
    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 24px;
        font-size: .82rem;
    }

    .section { padding: 62px 0; }
    .section-heading { margin-bottom: 34px; }

    .steps-grid,
    .country-list,
    .path-grid,
    .values-grid { grid-template-columns: 1fr; }

    .step { display: grid; grid-template-columns: 38px 64px 1fr; grid-template-rows: auto auto; text-align: left; align-items: center; }
    .step-number { grid-column: 1; grid-row: 1 / 3; margin: 0; }
    .step-icon { grid-column: 2; grid-row: 1 / 3; height: auto; font-size: 2.4rem; }
    .step h3 { grid-column: 3; margin: 0 0 4px; }
    .step p { grid-column: 3; }

    .country-item { min-height: 58px; }

    .path-card {
        min-height: 250px;
        padding: 34px 28px;
    }

    .values-grid article {
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid #dfe4df;
    }
    .values-grid article:last-child { border-bottom: 0; }

    .faq-inner {
        padding: 30px 24px;
        align-items: stretch;
        flex-direction: column;
    }

    .closing-actions {
        flex-direction: column;
    }
    .closing-actions .btn { width: 100%; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-social {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-social-links {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .footer-social-links { grid-template-columns: 1fr; }
}

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

/* Dedicated FAQ page */
.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
    color: var(--green-dark);
}

.faq-page {
    background: #fff;
}

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 82% 28%, rgba(0,144,88,.12), transparent 24%),
        linear-gradient(135deg, #f5faf7 0%, #ffffff 58%, #f8f5ed 100%);
    border-bottom: 1px solid var(--line);
}

.faq-hero::after {
    content: "?";
    position: absolute;
    right: max(4vw, 34px);
    top: 50%;
    transform: translateY(-52%);
    color: rgba(0,144,88,.07);
    font-size: clamp(12rem, 23vw, 24rem);
    line-height: .8;
    font-weight: 900;
    pointer-events: none;
}

.faq-hero-inner {
    position: relative;
    z-index: 1;
}

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

.faq-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.faq-hero-copy > p:last-child {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.13rem;
    line-height: 1.7;
}

.faq-workspace {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 104px;
}

.faq-sidebar-card {
    padding: 26px;
    background: var(--cream);
    border: 1px solid #ece7dc;
    border-radius: 16px;
}

.faq-sidebar-card .section-kicker {
    margin-bottom: 16px;
    font-size: .88rem;
}

.faq-categories {
    display: grid;
    gap: 5px;
}

.faq-categories a {
    padding: 11px 12px;
    border-radius: 9px;
    color: #465466;
    font-size: .93rem;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.faq-categories a:hover,
.faq-categories a.is-active {
    color: var(--green-dark);
    background: #fff;
    transform: translateX(2px);
}

.faq-content {
    min-width: 0;
}

.faq-workshop-note {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    align-items: start;
    padding: 28px 30px;
    background: #edf8f2;
    border: 1px solid #cce8da;
    border-radius: 16px;
}

.faq-note-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-workshop-note h2,
.faq-empty h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -.025em;
}

.faq-workshop-note p,
.faq-empty p {
    margin: 10px 0 0;
    color: var(--muted);
}

.faq-empty {
    min-height: 390px;
    margin-top: 26px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 54px 30px;
    text-align: center;
    border: 1px dashed #cfdad4;
    border-radius: 18px;
    background: #fcfdfc;
}

.faq-empty-mark {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--green-dark);
    background: var(--green-soft);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 850;
}

.faq-empty p {
    max-width: 580px;
}

.faq-anchor-targets {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-contact-band {
    padding: 38px 0;
    background: var(--cream);
    border-top: 1px solid #ece7dc;
}

.faq-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.faq-contact-inner .section-kicker {
    margin-bottom: 4px;
}

.faq-contact-inner p:last-child {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 900px) {
    .faq-hero {
        padding: 72px 0 66px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-categories {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .faq-hero {
        padding: 58px 0 54px;
    }

    .faq-hero::after {
        right: -32px;
        font-size: 15rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-workshop-note {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .faq-empty {
        min-height: 320px;
        padding: 42px 22px;
    }

    .faq-contact-inner {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Language switcher */
.language-switcher {
    position: relative;
    margin-right: 2px;
}
.language-switcher::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #68746e;
    border-bottom: 2px solid #68746e;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.language-switcher select {
    appearance: none;
    -webkit-appearance: none;
    min-height: 42px;
    padding: 8px 38px 8px 15px;
    border: 1px solid #d9e1dd;
    border-radius: 999px;
    background: #fff;
    color: #596760;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
}
.language-switcher select:hover,
.language-switcher select:focus-visible {
    border-color: #b8c8c0;
    color: var(--green-dark);
    outline: none;
}

.language-switcher select option {
    padding: 7px 12px;
    font-size: .9rem;
    line-height: 1.6;
}
.footer-partner-placeholder {
    display: block;
    margin: 8px 0;
    color: #425163;
    font-size: .92rem;
    cursor: default;
}

.mobile-language-switcher { display: flex; gap: 10px; padding: 12px 0 4px; }
.mobile-language-switcher a { padding: 8px 12px; border: 1px solid #d9e1dd; border-radius: 999px; text-decoration: none; color: #596760; font-weight: 750; }
.mobile-language-switcher a.is-active { border-color: var(--green); color: var(--green-dark); background: var(--green-soft); }

/* Cookie consent */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner {
    position: fixed;
    z-index: 1000;
    left: 18px;
    right: 18px;
    bottom: 18px;
}
.cookie-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    border: 1px solid #dfe7e3;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 60px rgba(20, 36, 29, .18);
}
.cookie-kicker { margin: 0 0 4px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 850; }
.cookie-copy h2, .cookie-modal-card h2 { margin: 0 0 8px; font-size: 1.25rem; }
.cookie-copy p { max-width: 760px; margin: 0 0 7px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.cookie-copy a { color: var(--green-dark); font-weight: 700; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 330px; }
.cookie-settings-link { grid-column: 1 / -1; border: 0; background: transparent; color: #4f6259; text-decoration: underline; cursor: pointer; font: inherit; }
.cookie-reopen { position: fixed; z-index: 900; right: 16px; bottom: 16px; border: 1px solid #d7e1dc; border-radius: 999px; background: #fff; color: #496057; padding: 8px 12px; display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: .78rem; box-shadow: 0 5px 20px rgba(0,0,0,.08); cursor: pointer; }
.cookie-reopen-icon { width: 15px; height: 15px; flex: 0 0 auto; color: var(--green-dark); }
.cookie-modal { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(10, 18, 14, .58); }
.cookie-modal-card { position: relative; width: min(650px, 100%); max-height: min(780px, calc(100vh - 40px)); overflow: auto; padding: 30px; border-radius: 20px; background: #fff; box-shadow: 0 25px 90px rgba(0,0,0,.25); }
.cookie-modal-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #f0f4f2; font-size: 1.5rem; cursor: pointer; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; padding: 18px; border: 1px solid #e2e8e5; border-radius: 14px; }
.cookie-category p { margin: 5px 0 0; color: var(--muted); font-size: .88rem; }
.cookie-always-on { flex: 0 0 auto; color: var(--green-dark); font-size: .78rem; font-weight: 800; }
.cookie-toggle-row input { width: 22px; height: 22px; accent-color: var(--green); }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.cookie-modal-open { overflow: hidden; }

.privacy-shell { padding: 74px 0 90px; }
.privacy-shell .prose { max-width: 850px; }
.privacy-shell h1 { font-size: clamp(2.7rem, 6vw, 5rem); margin: 0 0 20px; }
.privacy-shell h2 { margin-top: 42px; }
.privacy-note { padding: 18px 20px; border-radius: 14px; background: #fff6dd; border: 1px solid #f0d99d; }

@media (max-width: 1050px) { .language-switcher { display: none; } }
@media (max-width: 760px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
    .cookie-banner-inner { grid-template-columns: 1fr; padding: 18px; gap: 16px; }
    .cookie-actions { min-width: 0; }
    .cookie-modal-card { padding: 25px 20px; }
    .cookie-modal-actions { flex-direction: column; }
}

/* Pre-launch notice */
.prelaunch-modal[hidden] { display: none !important; }
.prelaunch-modal {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(8, 18, 13, .72);
    backdrop-filter: blur(5px);
}
.prelaunch-modal-card {
    width: min(660px, 100%);
    padding: clamp(26px, 5vw, 44px);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(0,0,0,.32);
    text-align: left;
}
.prelaunch-kicker {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.prelaunch-modal-card h2 { margin: 0 0 16px; font-size: clamp(1.65rem, 4vw, 2.35rem); line-height: 1.12; }
.prelaunch-modal-card p:not(.prelaunch-kicker) { margin: 0 0 25px; color: var(--muted); line-height: 1.7; }
.prelaunch-modal-card .btn { min-width: 220px; }
.prelaunch-modal-open { overflow: hidden; }

/* FAQ editorial content */
.faq-principle {
    padding: 32px 34px;
    background: linear-gradient(135deg, #edf8f2 0%, #f8fcfa 100%);
    border: 1px solid #cce8da;
    border-radius: 18px;
}
.faq-principle .section-kicker { margin-bottom: 8px; }
.faq-principle h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: -.035em;
}
.faq-principle p:last-child {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.75;
}
.faq-section {
    padding-top: 62px;
    scroll-margin-top: 110px;
}
.faq-section-heading { margin-bottom: 20px; }
.faq-section-heading .section-kicker { margin-bottom: 5px; }
.faq-section-heading h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -.035em;
}
.faq-list {
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 21px 2px;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-chevron {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #d8e3dd;
    border-radius: 50%;
    background: #f8fbf9;
    transition: transform .2s ease, background .2s ease;
}
.faq-chevron::before,
.faq-chevron::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--green-dark);
    transform: translate(-50%, -50%);
}
.faq-chevron::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
    background: var(--green-soft);
}
.faq-answer {
    max-width: 790px;
    padding: 0 48px 22px 2px;
    color: var(--muted);
    line-height: 1.78;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-caution {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 62px;
    padding: 26px 28px;
    background: #f7f8f7;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.faq-caution h2 { margin: 0; font-size: 1.2rem; }
.faq-caution p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; }

@media (max-width: 620px) {
    .faq-principle { padding: 26px 22px; }
    .faq-section { padding-top: 48px; }
    .faq-item summary { padding: 18px 0; font-size: .98rem; }
    .faq-answer { padding: 0 4px 20px 0; }
    .faq-caution { grid-template-columns: 1fr; padding: 23px; }
}

/* Legal pages */
.legal-address { font-style: normal; line-height: 1.75; color: var(--muted); }
.legal-address strong { color: var(--navy); }
.legal-address a { color: var(--green-dark); text-decoration: none; }
.legal-address a:hover { text-decoration: underline; }

/* Donation prototype */
.donation-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(6, 22, 18, .58);
    backdrop-filter: blur(8px);
}
.donation-modal[hidden] { display: none; }
.donation-modal-card {
    position: relative;
    width: min(860px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    border-radius: 22px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.donation-modal-card h2 { margin: 4px 44px 10px 0; font-size: clamp(2rem, 5vw, 3.25rem); }
.donation-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.donation-options-single { grid-template-columns: minmax(0, 1fr); }
.donation-preparation {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fbf9;
}
.donation-preparation h3 { margin: 0 0 8px; }
.donation-preparation p { margin: 0; color: var(--muted); line-height: 1.65; }
.donation-option { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: #fbfcfb; }
.donation-option h3 { margin: 0 0 16px; }
.donation-amount-row { display: flex; align-items: center; gap: 10px; margin: 8px 0 16px; }
.donation-amount-row input { width: 120px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.donation-test-warning { padding: 10px 12px; border-radius: 10px; background: #fff6dd; border: 1px solid #f0d99d; font-size: .9rem; }
.donation-bank-data { margin: 16px 0 0; }
.donation-bank-data div { padding: 10px 0; border-top: 1px solid var(--line); }
.donation-bank-data dt { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.donation-bank-data dd { margin: 4px 0 0; font-weight: 750; overflow-wrap: anywhere; }
.donation-status { min-height: 1.4em; margin-bottom: 0; }
.donation-success {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 144, 88, .32);
    border-radius: 16px;
    background: rgba(0, 144, 88, .07);
}
.donation-success[hidden] { display: none; }
.donation-success-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}
.donation-success-copy h4 { margin: 0 0 6px; color: var(--navy); font-size: 1.25rem; }
.donation-success-copy > p { margin: 0; color: var(--muted); line-height: 1.6; }
.donation-success-details { margin: 16px 0 18px; }
.donation-success-details div {
    display: grid;
    grid-template-columns: minmax(110px, .8fr) minmax(0, 1.6fr);
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid rgba(0, 144, 88, .16);
}
.donation-success-details dt { color: var(--muted); font-size: .82rem; font-weight: 800; }
.donation-success-details dd { margin: 0; font-weight: 800; overflow-wrap: anywhere; }
.donation-success-close { width: auto; }

.donation-iban-reveal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; }
.donation-iban-reveal [data-iban-value] { font-weight: 800; letter-spacing: .02em; }
.donation-copy-button { margin-left: 0; }
.donation-inline-status { flex-basis: 100%; min-height: 1.2em; font-size: .82rem; color: var(--muted); }
body.donation-modal-open { overflow: hidden; }
@media (max-width: 720px) {
    .donation-modal-card { padding: 28px 20px; }
    .donation-options { grid-template-columns: 1fr; }
}
.btn { cursor: pointer; font: inherit; }


/* Footer link buttons */
.footer-link-button {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.footer-link-button:hover { color: var(--green); }

/* Legal / contact utilities */
.phone-reveal-form { display: inline; margin: 0; }
.phone-reveal {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green-dark);
    font: inherit;
    font-weight: 750;
    text-decoration: underline;
    cursor: pointer;
}
.legal-list { padding-left: 1.3rem; color: var(--muted); line-height: 1.75; }
.legal-list li + li { margin-top: .55rem; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(36px, 7vw, 90px); align-items: start; }
.contact-copy .prose, .contact-copy { max-width: 680px; }
.contact-card { margin-top: 34px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #f8fbf9; }
.contact-card h2 { margin: 0 0 14px; }
.contact-card p { margin: 8px 0; }
.contact-card a { color: var(--green-dark); }
.contact-form-card { padding: clamp(24px, 4vw, 36px); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 16px 44px rgba(18, 43, 32, .08); }
.contact-form-card h2 { margin: 0 0 22px; }
.contact-form { display: grid; gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-weight: 800; color: var(--navy); }
.form-field input, .form-field textarea { width: 100%; padding: 12px 13px; border: 1px solid #d7e1dc; border-radius: 10px; background: #fff; color: var(--navy); font: inherit; }
.form-field input:focus, .form-field textarea:focus { outline: 3px solid rgba(0,144,88,.14); border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 150px; }
.form-privacy { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.form-privacy a { color: var(--green-dark); }
.form-status { margin: 0 0 18px; padding: 13px 14px; border-radius: 10px; line-height: 1.5; }
.form-status.success { background: #edf8f2; border: 1px solid #bfe2cf; color: #16623d; }
.form-status.error { background: #fff3f1; border: 1px solid #efc5bf; color: #8a3025; }
.form-status ul { margin: 0; padding-left: 1.2rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-phone-row { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; margin-top: 8px; }

/* Mobile hero composition: keep copy and subject visually separated */
@media (max-width: 620px) {
    .hero-media {
        background-position: 78% center;
    }
    .hero-slide:nth-child(2) .hero-media {
        background-position: 82% center;
    }
    .hero-slide:nth-child(3) .hero-media {
        background-position: 86% center;
    }
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(249,251,249,.74) 0%,
                rgba(249,251,249,.52) 36%,
                rgba(249,251,249,.22) 68%,
                rgba(7,26,53,.04) 100%),
            linear-gradient(90deg,
                rgba(249,251,249,.86) 0%,
                rgba(249,251,249,.68) 46%,
                rgba(249,251,249,.25) 66%,
                rgba(249,251,249,.02) 88%);
    }
    .hero-content {
        padding-top: 34px;
        padding-bottom: 104px;
    }
    .hero h1,
    .hero-title {
        max-width: 88%;
        font-size: clamp(2.2rem, 10.5vw, 3.15rem);
    }
    .hero-lead {
        max-width: 82%;
    }
}

@media (max-width: 390px) {
    .hero h1,
    .hero-title {
        font-size: clamp(2.05rem, 10.2vw, 2.85rem);
        max-width: 90%;
    }
    .hero-lead { max-width: 86%; }
}

/* Mobile header language control and hero-control spacing */
.mobile-language-select { display: none; }

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
    }

    .mobile-language-select {
        display: block;
        margin: 0;
    }

    .mobile-language-select select {
        min-width: 58px;
        min-height: 44px;
        padding: 7px 27px 7px 11px;
        border-radius: 8px;
        color: var(--navy);
        font-size: .83rem;
    }

    .mobile-language-select::after {
        right: 10px;
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 620px) {
    .hero h1,
    .hero-title {
        font-size: clamp(2.35rem, 11.15vw, 3.35rem);
    }

    /* Keep slider controls clear of the fixed privacy-settings button. */
    .hero-controls {
        left: 14px;
        right: auto;
        bottom: 16px;
        transform: none;
        justify-content: flex-start;
    }

    .cookie-reopen {
        right: 12px;
        bottom: 16px;
        max-width: calc(100vw - 176px);
        padding: 9px 12px;
        font-size: .72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 390px) {
    .brand img { width: 146px; }
    .brand-tagline { font-size: .62rem; }

    .hero h1,
    .hero-title {
        font-size: clamp(2.18rem, 10.8vw, 3rem);
    }

    .cookie-reopen {
        max-width: calc(100vw - 164px);
        padding-inline: 10px;
        font-size: .68rem;
    }
}


/* Country detail pages */
.country-page {
    background: #fff;
}

.country-hero {
    position: relative;
    min-height: calc(100svh - 78px);
    display: flex;
    align-items: center;
    color: var(--navy);
    background-image: var(--country-hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.country-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(249, 251, 249, .97) 0%,
            rgba(249, 251, 249, .88) 30%,
            rgba(249, 251, 249, .42) 49%,
            rgba(0, 0, 0, .03) 72%,
            rgba(0, 0, 0, .08) 100%);
}

.country-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 64px;
    padding-bottom: 64px;
    transform: translateY(-3vh);
}

.country-back-link {
    display: flex;
    width: max-content;
    margin-bottom: 54px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 650;
}

.country-back-link:hover {
    color: var(--green);
}

.country-hero .eyebrow {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
}


.country-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.country-eyebrow-row .eyebrow {
    margin: 0;
}

.country-flag {
    position: relative;
    top: -6px;
    flex: 0 0 auto;
    width: 28px;
    aspect-ratio: 3 / 2;
    border: 1px solid rgba(7,26,53,.12);
    border-radius: 3px;
    box-shadow: 0 2px 7px rgba(7,26,53,.10);
    overflow: hidden;
}

.country-flag-at {
    background: linear-gradient(to bottom, #ed2939 0 33.333%, #fff 33.333% 66.666%, #ed2939 66.666% 100%);
}

.country-flag-pl {
    background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%);
}

.country-flag-hu {
    background: linear-gradient(to bottom, #ce2939 0 33.333%, #fff 33.333% 66.666%, #477050 66.666% 100%);
}

.country-primary-cta {
    min-height: 58px;
    padding-inline: 28px;
    box-shadow: 0 12px 30px rgba(0, 144, 88, .28);
}

.country-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 144, 88, .34);
}

.country-source-name {
    color: var(--navy) !important;
    font-weight: 750;
}

.country-official-info-card {
    background: #fbfdfc;
}

.country-hero h1 {
    margin: 0;
    color: var(--bs-dark, #212529);
    max-width: 760px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .96;
    letter-spacing: -.045em;
}

.country-hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--navy);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.country-hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.country-hero-actions .hero-text-link {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(0,144,88,.3);
    border-radius: 0;
    background: transparent;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 800;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    transition: color .2s ease, border-color .2s ease;
}

.country-hero-actions .hero-text-link::after {
    content: none;
}

.country-hero-actions .hero-text-link:hover,
.country-hero-actions .hero-text-link:focus-visible {
    color: var(--green);
    background: transparent;
    border-bottom-color: rgba(0,144,88,.62);
    box-shadow: none;
    transform: none;
}

.country-service-note {
    display: inline-block;
    max-width: 560px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    backdrop-filter: blur(8px);
}

.country-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
    gap: clamp(42px, 7vw, 90px);
    align-items: start;
}

.country-main-copy h2,
.country-traveller-panel h2,
.country-closing h2 {
    margin: 4px 0 22px;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: -.03em;
}

.country-main-copy > p,
.country-richtext,
.country-traveller-panel p,
.country-closing p {
    color: #33445b;
    font-size: 1.04rem;
}

.country-richtext > :first-child {
    margin-top: 0;
}

.country-richtext > :last-child {
    margin-bottom: 0;
}

.country-richtext p,
.country-richtext li {
    color: #33445b;
}

.country-richtext a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.country-methods {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.country-methods h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.country-method-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-method-list span {
    min-height: 40px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.country-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
}

.country-facts {
    display: grid;
    gap: 16px;
}

.country-fact-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(7,26,53,.045);
}

.country-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
}

.country-card-heading .section-kicker {
    margin-top: 0;
}

.country-card-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe1d8;
    border-radius: 10px;
    background: #f4fbf7;
    color: var(--green-dark);
}

.country-card-icon .country-icon {
    width: 20px;
    height: 20px;
}

.country-fact-card h3 {
    margin: 4px 0 12px;
    font-size: 1.35rem;
}

.country-fact-card p {
    margin: 0 0 14px;
    color: #445266;
}

.country-card-link-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    text-align: right;
}

.country-card-link-row .text-link {
    margin-left: auto;
    font-weight: 500;
}

.country-recipient-name {
    color: var(--navy) !important;
    font-weight: 750;
}

.country-service-card {
    background: linear-gradient(135deg, #edf8f2 0%, #fbfdfc 100%);
}

.country-travellers {
    background: #f3f7fb;
    scroll-margin-top: 92px;
}

.country-traveller-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(38px, 7vw, 90px);
    align-items: start;
}









.country-traveller-panel h2 {
    margin-bottom: 0;
}

.country-traveller-content > p {
    margin: 4px 0 0;
    color: #33445b;
    font-size: 1.04rem;
}

.country-traveller-recommendations {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #d5e0ea;
}

.country-traveller-recommendations h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.country-traveller-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-traveller-badges span {
    min-height: 42px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c9d7e4;
    border-radius: 9px;
    background: #fff;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 750;
}

.country-sources {
    background: #fff;
}

.country-source-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.country-source-item {
    min-height: 70px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.country-source-item:hover {
    border-color: #a7cdbb;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(7,26,53,.06);
}

.country-source-item strong,
.country-source-item small {
    display: block;
}

.country-source-item small {
    margin-top: 3px;
    color: var(--muted);
}

.country-source-item > span:last-child {
    color: var(--green);
    font-size: 1.15rem;
}

.country-closing {
    padding: 72px 0;
    background: var(--navy);
    color: #fff;
}

.country-closing-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}

.country-closing .section-kicker {
    color: #76deb2;
}

.country-closing h2 {
    margin-bottom: 12px;
}

.country-closing p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
    .country-hero {
        min-height: calc(100svh - 70px);
        background-position: center;
    }

    .country-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(249,251,249,.96) 0%,
                rgba(249,251,249,.90) 38%,
                rgba(249,251,249,.72) 62%,
                rgba(249,251,249,.28) 82%,
                rgba(7,26,53,.10) 100%),
            linear-gradient(90deg,
                rgba(249,251,249,.82) 0%,
                rgba(249,251,249,.56) 58%,
                rgba(249,251,249,.14) 100%);
    }

    .country-content-grid {
        grid-template-columns: 1fr;
    }

    .country-facts {
        grid-template-columns: 1fr 1fr;
    }

    .country-traveller-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 620px) {
    .country-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(249,251,249,.74) 0%,
                rgba(249,251,249,.52) 36%,
                rgba(249,251,249,.22) 68%,
                rgba(7,26,53,.04) 100%),
            linear-gradient(90deg,
                rgba(249,251,249,.86) 0%,
                rgba(249,251,249,.68) 46%,
                rgba(249,251,249,.25) 66%,
                rgba(249,251,249,.02) 88%);
    }

    .country-hero {
        min-height: calc(100svh - 70px);
        background-position: 62% center;
    }

    .country-hero-content {
        padding-top: 42px;
        padding-bottom: 42px;
        transform: translateY(-1.5vh);
    }

    .country-back-link {
        margin-bottom: 42px;
    }


    .country-eyebrow-row {
        gap: 8px;
    }

    .country-flag {
        width: 24px;
        border-radius: 3px;
    }

    .country-hero h1 {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .country-hero-lead {
        max-width: 92%;
        font-size: 1rem;
    }

    .country-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .country-hero-actions .btn {
        width: 100%;
    }

    .country-hero-actions .hero-text-link {
        justify-content: center;
        text-align: center;
    }

    .country-facts {
        grid-template-columns: 1fr;
    }

    .country-fact-card {
        padding: 24px;
    }

    .country-closing {
        padding: 56px 0;
    }

    .country-closing-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .country-closing-inner .btn {
        width: 100%;
    }
}


/* Country traveller rich text */
.country-traveller-richtext > *:first-child {
    margin-top: 0;
}

.country-traveller-richtext > *:last-child {
    margin-bottom: 0;
}

.country-traveller-richtext p + p,
.country-traveller-richtext ul,
.country-traveller-richtext ol {
    margin-top: 0.9rem;
}


/* OAuth / Google sign-in transparency */
.oauth-transparency { padding-top: 0; }
.oauth-transparency-card { display:flex; align-items:flex-end; justify-content:space-between; gap:2rem; padding:2rem 2.25rem; border:1px solid var(--border, #dfe7e3); border-radius:18px; background:#f7faf8; }
.oauth-transparency-card h2 { margin:.25rem 0 .75rem; }
.oauth-transparency-card p:last-child { max-width:850px; margin-bottom:0; }
.oauth-transparency-card .text-link { flex:0 0 auto; white-space:nowrap; }
@media (max-width:760px) { .oauth-transparency-card { align-items:flex-start; flex-direction:column; padding:1.5rem; } }

.email-reveal{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap}.email-reveal [data-email-value]{font-weight:700;color:var(--green-dark)}


/* OrganVeto principles: intentionally prominent directly below the hero */
.principles-section{background:#071d16;color:#fff;padding:78px 0 82px;position:relative;overflow:hidden}
.principles-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 10%,rgba(0,144,88,.24),transparent 34%);pointer-events:none}
.principles-section .container{position:relative}
.principles-heading{max-width:820px;margin-bottom:42px}
.principles-heading .section-kicker{color:#70d6aa}
.principles-heading h2{font-size:clamp(2.25rem,4.8vw,4.6rem);line-height:.98;letter-spacing:-.045em;margin:.25rem 0 1rem;color:#fff}
.principles-heading>p:last-child{max-width:720px;color:rgba(255,255,255,.72);font-size:1.08rem}
.principles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.16);border-radius:22px;overflow:hidden}
.principle-card{background:rgba(7,29,22,.88);padding:34px 32px 38px;min-height:270px}
.principle-number{display:block;color:#70d6aa;font-size:.78rem;font-weight:800;letter-spacing:.12em;margin-bottom:50px}
.principle-card h3{font-size:clamp(1.55rem,2.5vw,2.25rem);line-height:1.05;letter-spacing:-.035em;color:#fff;margin:0 0 18px}
.principle-card p{color:rgba(255,255,255,.72);margin:0;line-height:1.65}

/* Join us */
.join-shell{background:#fff}
.join-hero{padding:112px 0 88px;background:linear-gradient(135deg,#edf8f2 0%,#fff 62%)}
.join-hero-inner{max-width:980px}
.join-hero h1{font-size:clamp(3rem,7vw,6.4rem);line-height:.94;letter-spacing:-.055em;max-width:1000px;margin:.25rem 0 1.6rem}
.join-lead{font-size:clamp(1.1rem,2vw,1.35rem);line-height:1.65;max-width:800px;color:var(--muted,#56645e)}
.join-path-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.join-path-grid article{border:1px solid var(--border,#dfe7e3);border-radius:22px;padding:34px;background:#fff}
.join-path-grid article>span{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#e8f6ef;color:#007c4c;font-weight:800;margin-bottom:34px}
.join-path-grid h2{margin:0 0 12px;font-size:1.7rem}
.join-path-grid p{margin:0;color:var(--muted,#56645e);line-height:1.65}
.join-language-callout{display:flex;gap:28px;align-items:center;margin-top:22px;padding:30px 34px;border-radius:22px;background:#071d16;color:#fff}
.join-language-icon{font-size:1.35rem;font-weight:800;white-space:nowrap;color:#70d6aa}
.join-language-callout h2{color:#fff;margin:0 0 8px}
.join-language-callout p{margin:0;color:rgba(255,255,255,.72)}
.join-form-section{background:#f4f8f6}
.join-form-layout{display:grid;grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr);gap:70px;align-items:start}
.join-form-copy{position:sticky;top:110px}
.join-form-copy h2{font-size:clamp(2rem,4vw,3.5rem);line-height:1.02;letter-spacing:-.04em;margin:.3rem 0 1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-form select,.contact-form input,.contact-form textarea{width:100%}
.join-area-fieldset{border:0;padding:0;margin:0 0 22px}
.join-area-fieldset legend{font-weight:700;margin-bottom:10px}
.join-area-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}
.join-area-option{display:flex;align-items:flex-start;gap:10px;padding:12px 13px;border:1px solid var(--border,#dfe7e3);border-radius:12px;background:#fff;cursor:pointer;font-weight:600;line-height:1.3}
.join-area-option input{width:auto;margin-top:2px;accent-color:#009058}

@media(max-width:900px){
 .principles-grid{grid-template-columns:1fr}
 .principle-card{min-height:0}
 .principle-number{margin-bottom:24px}
 .join-form-layout{grid-template-columns:1fr;gap:34px}
 .join-form-copy{position:static}
}
@media(max-width:680px){
 .principles-section{padding:58px 0 62px}
 .principles-heading{margin-bottom:28px}
 .principle-card{padding:28px 24px 30px}
 .join-hero{padding:76px 0 62px}
 .join-path-grid,.form-row,.join-area-grid{grid-template-columns:1fr}
 .join-language-callout{align-items:flex-start;flex-direction:column;gap:14px;padding:26px}
}

/* Grouped primary navigation */
.nav-dropdown{position:relative;display:flex;align-items:center}
.nav-dropdown-toggle{display:inline-flex;align-items:center;gap:5px;border:0;background:transparent;color:var(--navy);font:inherit;font-weight:650;padding:10px 0;cursor:pointer}
.nav-dropdown-toggle span{font-size:.9em;transition:transform .18s ease}
.nav-dropdown-menu{position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(-5px);min-width:210px;padding:8px;background:#fff;border:1px solid var(--line);border-radius:10px;box-shadow:var(--shadow);opacity:0;visibility:hidden;pointer-events:none;z-index:100;transition:opacity .16s ease,transform .16s ease,visibility .16s ease}
.nav-dropdown-menu a{display:block;padding:10px 12px;border-radius:7px;white-space:nowrap;color:var(--navy)}
.nav-dropdown-menu a:hover{background:#f3f8f5;color:var(--green)}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.nav-dropdown:hover .nav-dropdown-toggle span,.nav-dropdown:focus-within .nav-dropdown-toggle span{transform:rotate(180deg)}
.mobile-nav-group{padding:8px 10px;border-top:1px solid var(--line)}
.mobile-nav-group strong{display:block;padding:7px 0 5px;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.mobile-nav-group a{display:block;padding:9px 8px;font-weight:700;color:var(--navy)}
@media(max-width:1120px){.desktop-nav{gap:16px}}


/* Header/navigation refinement */
@media (min-width:1121px){
    .header-inner{grid-template-columns:240px minmax(0,1fr) auto;gap:22px}
    .desktop-nav{justify-content:flex-start;gap:clamp(28px,2.2vw,40px);align-items:center}
}
.nav-dropdown-toggle{
    position:relative;
    gap:8px;
    min-height:44px;
    padding:0;
    line-height:1;
    white-space:nowrap;
    transition:color .15s ease;
}
.nav-dropdown-toggle::after{
    content:"";
    width:6px;
    height:6px;
    border-right:1.7px solid currentColor;
    border-bottom:1.7px solid currentColor;
    transform:translateY(-2px) rotate(45deg);
    transform-origin:center;
    transition:none;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle{color:var(--green)}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{
    border-right:0;
    border-bottom:0;
    border-left:1.7px solid currentColor;
    border-top:1.7px solid currentColor;
    transform:translateY(2px) rotate(45deg);
}
/* Keep a continuous hover path from the trigger into the menu. */
.nav-dropdown::after{
    content:"";
    position:absolute;
    left:-12px;
    right:-12px;
    top:100%;
    height:12px;
}
.nav-dropdown-menu{top:calc(100% + 8px)}

/* Contact topic select: match the rest of the form */
.contact-form .form-field select{
    width:100%;
    min-height:52px;
    padding:12px 44px 12px 13px;
    border:1px solid #d7e1dc;
    border-radius:10px;
    background-color:#fff;
    color:var(--navy);
    font:inherit;
    line-height:1.35;
    appearance:none;
    -webkit-appearance:none;
    background-image:linear-gradient(45deg,transparent 50%,#66736d 50%),linear-gradient(135deg,#66736d 50%,transparent 50%);
    background-position:calc(100% - 18px) 22px,calc(100% - 13px) 22px;
    background-size:5px 5px,5px 5px;
    background-repeat:no-repeat;
    cursor:pointer;
}
.contact-form .form-field select:focus{
    outline:3px solid rgba(0,144,88,.14);
    border-color:var(--green);
}

/* About OrganVeto */
.about-hero { padding: 96px 0 78px; background: #f7faf8; border-bottom: 1px solid var(--line); }
.about-hero-inner { max-width: 980px; }
.about-hero h1 { max-width: 900px; margin: 12px 0 24px; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.055em; }
.about-lead { max-width: 860px; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.65; color: var(--muted); }
.about-story { padding-top: 72px; }
.about-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.about-story-card { position: relative; min-height: 390px; padding: 42px 38px; background: #fff; }
.about-story-card + .about-story-card { border-left: 1px solid var(--line); }
.about-story-card h2 { margin: 20px 0 16px; font-size: clamp(1.7rem, 2.4vw, 2.35rem); line-height: 1.08; letter-spacing: -.035em; }
.about-story-card > p:last-child { color: var(--muted); line-height: 1.75; }
.about-index { display: block; margin-bottom: 42px; font-weight: 800; color: var(--green); letter-spacing: .08em; }
.about-story-card.is-dark { background: #062a20; color: #fff; border-color: rgba(255,255,255,.15); }
.about-story-card.is-dark > p:last-child { color: rgba(255,255,255,.78); }
.about-story-card.is-dark .section-kicker, .about-story-card.is-dark .about-index { color: #55e8ae; }
.about-international { background: #f5f1eb; }
.about-people { background: #fff; }
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-split h2 { margin-top: 10px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -.045em; }
.about-split > p, .about-split > div:last-child > p { font-size: 1.12rem; line-height: 1.8; color: var(--muted); }
.about-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; } .about-story-card + .about-story-card { border-left: 0; border-top: 1px solid var(--line); } .about-story-card { min-height: auto; } .about-split { grid-template-columns: 1fr; gap: 26px; } }


/* 2026-08-16: generous landing-page rhythm and restrained organisation pages */
@media (min-width: 901px) {
    .principles-section,
    .mission,
    .steps,
    .values {
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    /* Keep the existing centered content width. The section background may span
       the viewport, but the actual content remains constrained by .container. */
    .mission { min-height: 86vh; }
    .mission-grid { gap: clamp(70px, 8vw, 140px); }
    .mission-art { min-height: 420px; }
    .mission-art svg { width: min(100%, 560px); }
    .mission-copy h2 { font-size: clamp(2.8rem, 4.4vw, 4.7rem); }
    .mission-copy p:not(.section-kicker) { font-size: 1.12rem; line-height: 1.75; }
    .steps .section-heading,
    .values .section-heading { margin-bottom: 72px; }
}

.subpage-hero { background:#f7faf8; border-bottom:1px solid var(--line); }
.subpage-hero-inner { max-width: 980px; padding-top: clamp(84px, 10vw, 150px); padding-bottom: clamp(84px, 10vw, 150px); }
.subpage-hero h1 { margin:.35rem 0 1.5rem; max-width:900px; font-size:clamp(3rem,6vw,5.8rem); line-height:.96; letter-spacing:-.055em; }
.subpage-lead { max-width:820px; margin:0; color:var(--muted); font-size:clamp(1.12rem,2vw,1.4rem); line-height:1.7; }
.about-simple-section { padding: clamp(82px, 9vw, 140px) 0; }
.about-simple-section-alt { background:var(--cream); }
.about-simple-grid { display:grid; grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr); gap:clamp(60px,9vw,150px); align-items:start; }
.about-simple-grid h2 { margin:.5rem 0 0; max-width:520px; font-size:clamp(2.3rem,4vw,4.2rem); line-height:1.02; letter-spacing:-.045em; }
.about-simple-copy { max-width:720px; }
.about-simple-copy p { margin:0 0 1.25rem; color:var(--muted); font-size:1.12rem; line-height:1.82; }
.about-simple-actions { display:flex; gap:22px; align-items:center; flex-wrap:wrap; margin-top:30px; }

.join-hero { padding:0; background:#f7faf8; border-bottom:1px solid var(--line); }
.join-hero-inner { max-width:980px; padding-top:clamp(84px,10vw,145px); padding-bottom:clamp(84px,10vw,145px); }
.join-form-section { padding:clamp(82px,9vw,140px) 0; }

@media (max-width: 900px) {
    .about-simple-grid { grid-template-columns:1fr; gap:28px; }
    .about-simple-section { padding:68px 0; }
}


/* 2026-08-16: strengthen the international countries chapter without stretching content */
.countries { padding-top: clamp(90px, 9vw, 145px); padding-bottom: clamp(96px, 10vw, 155px); }
.countries .section-heading.compact { max-width: 920px; margin: 0 auto 54px; text-align: center; }
.countries .section-heading h2 { max-width: 900px; margin-left: auto; margin-right: auto; font-size: clamp(2.5rem, 4.4vw, 4.5rem); line-height: 1.02; letter-spacing: -.045em; }
.countries-intro { max-width: 760px; margin: 22px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.country-list { max-width: 980px; gap: 14px; }
.country-item { min-height: 74px; border-radius: 12px; }
@media (max-width: 900px) { .countries { padding-top: 72px; padding-bottom: 78px; } .countries .section-heading.compact { margin-bottom: 34px; } }

/* 2026-08-16: unify landing-page chapter typography and soften principles */
:root {
    --landing-section-title-size: clamp(2.5rem, 4.4vw, 4.5rem);
}

/* Principles use the same softer green family as the closing statement instead
   of the previous near-black block. */
.principles-section {
    background: linear-gradient(110deg, #005032, #007e4e);
}
.principles-section::before {
    background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.09), transparent 36%);
}
.principle-card {
    background: rgba(0, 66, 42, .48);
}
.principles-grid {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.18);
}

/* All primary landing-page section headings share one visual level. */
.mission-copy h2,
.principles-heading h2,
.countries .section-heading h2,
.steps .section-heading h2,
.values .section-heading h2,
.closing-inner h2 {
    font-size: var(--landing-section-title-size);
    line-height: 1.02;
    letter-spacing: -.045em;
}

@media (max-width: 900px) {
    :root { --landing-section-title-size: clamp(2.15rem, 8vw, 3.35rem); }
}

/* 2026-08-16: principles cards use Bootstrap dark for neutral, strong contrast while the section stays soft */
.principle-card {
    background: #212529;
}


/* Join page – country-style hero and compact contribution form */
.join-hero{position:relative;min-height:calc(82svh - 78px);display:flex;align-items:center;padding:0;color:var(--navy);background-image:var(--join-hero-image);background-size:cover;background-position:center;overflow:hidden;border-bottom:1px solid var(--line)}
.join-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(249,251,249,.97) 0%,rgba(249,251,249,.90) 34%,rgba(249,251,249,.48) 54%,rgba(0,0,0,.05) 78%,rgba(0,0,0,.12) 100%)}
.join-hero-inner{position:relative;z-index:1;max-width:none;padding-top:64px;padding-bottom:64px;transform:translateY(-2vh)}
.join-hero h1{max-width:820px;margin:.25rem 0 1.4rem;color:var(--green);font-size:clamp(3.5rem,7vw,6.8rem);line-height:.96;letter-spacing:-.045em}
.join-lead{max-width:700px;margin:0 0 30px;color:var(--navy);font-size:clamp(1.05rem,1.5vw,1.28rem);line-height:1.6}
.join-form-section{padding:clamp(72px,8vw,120px) 0}
.join-supporter-type{border:0;padding:0;margin:0 0 22px}.join-supporter-type legend{font-weight:700;margin-bottom:10px}.join-type-options{display:grid;grid-template-columns:1fr 1fr;gap:10px}.join-type-options label{display:flex;align-items:center;gap:10px;padding:14px 16px;border:1px solid var(--border,#dfe7e3);border-radius:12px;background:#fff;font-weight:650;cursor:pointer}.join-type-options input{accent-color:#009058}
.join-organization-fields[hidden]{display:none!important}
.join-area-fieldset legend small{font-weight:500;color:var(--muted,#56645e);margin-left:6px}.join-area-picker{position:relative;border:1px solid var(--border,#dfe7e3);border-radius:12px;background:#fff}.join-area-picker summary{list-style:none;cursor:pointer;padding:15px 46px 15px 16px;font-weight:650;position:relative}.join-area-picker summary::-webkit-details-marker{display:none}.join-area-picker summary:after{content:'⌄';position:absolute;right:16px;top:50%;transform:translateY(-55%);font-size:1.15rem}.join-area-picker[open] summary:after{content:'⌃'}.join-area-count{margin-left:8px;color:var(--green);font-size:.86rem}.join-area-options{display:grid;grid-template-columns:1fr 1fr;gap:6px;padding:8px;border-top:1px solid var(--border,#dfe7e3);max-height:310px;overflow:auto}.join-area-option{padding:10px 11px;border:0;border-radius:9px;background:transparent}.join-area-option:hover{background:#f0f7f3}.join-area-option.is-disabled{opacity:.45;cursor:not-allowed}.join-area-selected{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;min-height:0}.join-area-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border-radius:999px;background:#e8f6ef;color:#075c3d;font-size:.88rem;font-weight:700}.join-area-chip button{border:0;background:transparent;color:inherit;cursor:pointer;font-size:1rem;line-height:1;padding:0}
@media(max-width:760px){.join-hero{min-height:72svh;background-position:62% center}.join-hero-overlay{background:linear-gradient(90deg,rgba(249,251,249,.97) 0%,rgba(249,251,249,.88) 66%,rgba(249,251,249,.56) 100%)}.join-hero-inner{transform:none}.join-hero h1{font-size:clamp(3rem,12vw,4.8rem)}.join-type-options,.join-area-options{grid-template-columns:1fr}}
\n\n/* Join form refinement: selection cards and unified chevrons */\n.join-type-options label{position:relative;justify-content:center;min-height:78px;text-align:center;transition:border-color .15s ease,background-color .15s ease,box-shadow .15s ease}\n.join-type-options label>input{position:absolute;opacity:0;pointer-events:none}\n.join-type-options label:has(input:checked){border-color:var(--green);background:#f0f8f4;box-shadow:0 0 0 1px rgba(0,144,88,.08)}\n.join-type-check{display:none;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--green);color:#fff;font-size:.78rem;font-weight:900;line-height:1}\n.join-type-options label:has(input:checked) .join-type-check{display:inline-flex}\n.join-type-options label:focus-within{outline:3px solid rgba(0,144,88,.14);outline-offset:2px}\n.join-area-picker summary:after{content:'';width:7px;height:7px;border-right:2px solid #66736d;border-bottom:2px solid #66736d;right:18px;top:50%;transform:translateY(-70%) rotate(45deg);font-size:0}\n.join-area-picker[open] summary:after{content:'';transform:translateY(-25%) rotate(225deg)}\n

/* Join form v3: compact selection cards + unified select/multi-select controls */
.join-type-options label{gap:0;position:relative;justify-content:center;min-height:76px;padding:14px 42px;text-align:center}
.join-type-options label>input{position:absolute!important;inline-size:1px!important;block-size:1px!important;opacity:0!important;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap}
.join-type-check{display:none!important}
.join-type-options label:has(input:checked)::before{content:'✓';position:absolute;left:18px;top:50%;transform:translateY(-50%);color:var(--green);font-size:1.05rem;font-weight:900}
.join-type-options label:has(input:checked){border-color:var(--green);background:#f0f8f4;box-shadow:0 0 0 1px rgba(0,144,88,.08)}
.join-select-wrap,.join-multi-picker,.join-area-picker{position:relative}
.join-select-wrap::after,.join-multi-picker summary::after,.join-area-picker summary::after{content:'';position:absolute;width:7px;height:7px;border:0;border-right:2px solid #66736d;border-bottom:2px solid #66736d;right:18px;top:50%;transform:translateY(-70%) rotate(45deg);pointer-events:none;transition:none}
.join-multi-picker[open] summary::after,.join-area-picker[open] summary::after{border:0;border-left:2px solid #66736d;border-top:2px solid #66736d;transform:translateY(-30%) rotate(45deg)}
.join-select-wrap select{appearance:none!important;-webkit-appearance:none!important;background-image:none!important;padding-right:46px!important}
.join-language-fieldset{border:0;padding:0;margin:0;min-width:0}
.join-language-fieldset legend{font-weight:700;margin-bottom:10px}
.join-multi-picker{border:1px solid var(--border,#dfe7e3);border-radius:12px;background:#fff}
.join-multi-picker summary{list-style:none;cursor:pointer;padding:15px 46px 15px 16px;font-weight:650;position:relative;min-height:54px}
.join-multi-picker summary::-webkit-details-marker{display:none}
.join-multi-options{display:grid;grid-template-columns:1fr 1fr;gap:6px;padding:8px;border-top:1px solid var(--border,#dfe7e3);max-height:310px;overflow:auto}
.join-multi-option{display:flex;align-items:center;gap:10px;padding:10px 11px;border-radius:9px;cursor:pointer;font-weight:600}
.join-multi-option:hover{background:#f0f7f3}.join-multi-option input{width:auto!important;accent-color:#009058}
.join-language-count{margin-left:8px;color:var(--green);font-size:.86rem}
@media(max-width:760px){.join-multi-options{grid-template-columns:1fr}}


/* 2026-08-16: Shared Hero Design System
   Landing-page hero is the visual source of truth for all page heroes. */
:root {
    --ovt-hero-title-size: clamp(3.2rem, 6.1vw, 5.8rem);
    --ovt-hero-title-line-height: .98;
    --ovt-hero-title-letter-spacing: -.055em;
    --ovt-hero-title-weight: 850;
    --ovt-hero-lead-size: 1.16rem;
    --ovt-hero-lead-line-height: 1.62;
    --ovt-image-hero-min-height: calc(100svh - 78px);
    --ovt-static-hero-min-height: calc(82svh - 78px);
}

/* One typographic voice across landing, country, join, FAQ and About. */
.hero h1,
.hero-title,
.country-hero h1,
.join-hero h1,
.faq-hero h1,
.subpage-hero h1 {
    font-family: inherit;
    font-size: var(--ovt-hero-title-size);
    line-height: var(--ovt-hero-title-line-height);
    letter-spacing: var(--ovt-hero-title-letter-spacing);
    font-weight: var(--ovt-hero-title-weight);
}

.hero .eyebrow,
.country-hero .eyebrow,
.join-hero .section-kicker,
.faq-hero .section-kicker,
.subpage-hero .section-kicker {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: .01em;
}

.hero-lead,
.country-hero-lead,
.join-lead,
.faq-hero-copy > p:last-child,
.subpage-lead {
    font-size: var(--ovt-hero-lead-size);
    line-height: var(--ovt-hero-lead-line-height);
}

/* Static page heroes inherit the landing hero's generous, centered composition. */
.country-hero,
.join-hero {
    min-height: var(--ovt-image-hero-min-height);
}

.faq-hero,
.subpage-hero {
    min-height: var(--ovt-static-hero-min-height);
}

.country-hero,
.join-hero,
.faq-hero,
.subpage-hero {
    display: flex;
    align-items: center;
}

.country-hero-content,
.join-hero-inner,
.faq-hero-inner,
.subpage-hero-inner {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
    padding-top: 94px;
    padding-bottom: 102px;
    transform: none;
}

.country-hero h1,
.join-hero h1,
.faq-hero h1,
.subpage-hero h1 {
    max-width: 700px;
    margin: 0;
}

.country-hero-lead,
.join-lead,
.faq-hero-copy > p:last-child,
.subpage-lead {
    max-width: 570px;
    margin: 28px 0 0;
    color: var(--navy-soft);
}

/* Join hero follows the landing-page color hierarchy instead of using an all-green headline. */
.join-hero h1 {
    color: var(--navy);
}
.join-hero .btn {
    margin-top: 30px;
}

/* FAQ/About remain image-free, but use the same height, typography and content rhythm. */
.faq-hero {
    padding: 0;
}

/* Keep two-column form rows top-aligned when a multi-select expands. */
.contact-form .form-row {
    align-items: start;
}
.contact-form .form-row > * {
    align-self: start;
}

@media (max-width: 760px) {
    :root {
        --ovt-hero-title-size: clamp(3rem, 10vw, 4.8rem);
        --ovt-image-hero-min-height: calc(100svh - 68px);
        --ovt-static-hero-min-height: 72svh;
    }
    .country-hero-content,
    .join-hero-inner,
    .faq-hero-inner,
    .subpage-hero-inner {
        padding-top: 68px;
        padding-bottom: 72px;
    }
}
\n\n/* Join dropdown chevrons: one marker only, no rotation artifacts. */
.join-area-picker summary,
.join-multi-picker summary { list-style:none !important; }
.join-area-picker summary::marker,
.join-multi-picker summary::marker { content:'' !important; display:none !important; }
.join-area-picker summary::-webkit-details-marker,
.join-multi-picker summary::-webkit-details-marker { display:none !important; }
.join-area-picker summary::after,
.join-multi-picker summary::after {
  content:'⌄' !important;
  position:absolute !important;
  right:18px !important;
  top:50% !important;
  width:auto !important;
  height:auto !important;
  border:0 !important;
  transform:translateY(-54%) !important;
  font-size:1.15rem !important;
  line-height:1 !important;
  color:#66736d !important;
  pointer-events:none !important;
}
.join-area-picker[open] summary::after,
.join-multi-picker[open] summary::after {
  content:'⌃' !important;
  border:0 !important;
  transform:translateY(-46%) !important;
}


/* 2026-08-16: final Join form control alignment.
   All three dropdowns share the same CSS chevron; supporter type keeps a compact native radio. */
.join-area-picker summary::after,
.join-multi-picker summary::after {
    content: '' !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    width: 7px !important;
    height: 7px !important;
    border: 0 !important;
    border-right: 2px solid #66736d !important;
    border-bottom: 2px solid #66736d !important;
    transform: translateY(-70%) rotate(45deg) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
}
.join-area-picker[open] summary::after,
.join-multi-picker[open] summary::after {
    content: '' !important;
    border: 0 !important;
    border-left: 2px solid #66736d !important;
    border-top: 2px solid #66736d !important;
    transform: translateY(-30%) rotate(45deg) !important;
}

.join-type-options label {
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 56px !important;
    padding: 14px 16px !important;
    text-align: left !important;
}
.join-type-options label > input[type="radio"] {
    position: static !important;
    inline-size: 16px !important;
    block-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 1 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    pointer-events: auto !important;
    flex: 0 0 16px !important;
    margin: 0 !important;
    accent-color: var(--green) !important;
}
.join-type-options label:has(input:checked)::before {
    content: none !important;
    display: none !important;
}
.join-type-check { display: none !important; }


/* Join privacy acknowledgement */
.join-privacy-check { display:flex; align-items:flex-start; gap:.65rem; color:var(--muted); font-size:.9rem; line-height:1.5; cursor:pointer; }
.join-privacy-check input[type="checkbox"] { width:1.05rem; height:1.05rem; margin:.16rem 0 0; flex:0 0 auto; accent-color:var(--green); }
.join-privacy-check a { color:var(--green-dark); font-weight:700; }


/* Join community bridge */
.join-community-section{padding:clamp(64px,7vw,96px) 0;background:#fff;border-bottom:1px solid var(--line)}
.join-community-inner{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:clamp(40px,7vw,96px);align-items:center}
.join-community-copy{max-width:690px}.join-community-copy h2{font-size:clamp(2.35rem,4.4vw,4.5rem);line-height:1.02;letter-spacing:-.045em;margin:.3rem 0 1.25rem}.join-community-copy p:last-child{max-width:650px;color:var(--muted);font-size:1.08rem;line-height:1.7}
.join-community-card{display:grid;grid-template-columns:54px 1fr;gap:18px 20px;align-items:center;padding:28px;border:1px solid var(--line);border-radius:20px;background:#f7faf8;box-shadow:0 18px 45px rgba(7,26,53,.06)}
.join-community-mark{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;background:var(--green);color:#fff;font-size:1.75rem;font-weight:800}.join-community-card strong{display:block;font-size:1.18rem;margin-bottom:4px}.join-community-card span{display:block;color:var(--muted);line-height:1.5}.join-community-card .btn{grid-column:1/-1;justify-content:center;margin-top:4px}
@media(max-width:860px){.join-community-inner{grid-template-columns:1fr;gap:32px}.join-community-card{max-width:620px}}

/* Join form: give the intro copy more breathing room below its heading. */
.join-form-copy h2 + p{margin-top:1.75rem}


/* 2026-08-16: About page — landing-page hero language, concise editorial sections. */
.about-image-hero {
    position: relative;
    min-height: var(--ovt-image-hero-min-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--navy);
    background-image: var(--about-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}
.about-image-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249,251,249,.97) 0%, rgba(249,251,249,.91) 34%, rgba(249,251,249,.52) 55%, rgba(0,0,0,.04) 78%, rgba(0,0,0,.10) 100%);
}
.about-image-hero-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
    padding-top: 94px;
    padding-bottom: 102px;
}
.about-image-hero .section-kicker {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: .01em;
}
.about-image-hero h1 {
    max-width: 700px;
    margin: 0;
    font-family: inherit;
    font-size: var(--ovt-hero-title-size);
    line-height: var(--ovt-hero-title-line-height);
    letter-spacing: var(--ovt-hero-title-letter-spacing);
    font-weight: var(--ovt-hero-title-weight);
}
.about-image-hero-lead {
    max-width: 590px;
    margin: 36px 0 0;
    color: var(--navy-soft);
    font-size: var(--ovt-hero-lead-size);
    line-height: var(--ovt-hero-lead-line-height);
}
.about-simple-section-dark { background: var(--bs-dark, #212529); color: #fff; }
.about-simple-section-dark .section-kicker { color: #55e8ae; }
.about-simple-section-dark .about-simple-copy p { color: rgba(255,255,255,.78); }
.about-simple-section-dark h2 { color: #fff; }
@media (max-width: 760px) {
    .about-image-hero { min-height: var(--ovt-image-hero-min-height); background-position: 62% center; }
    .about-image-hero-overlay { background: linear-gradient(90deg,rgba(249,251,249,.97) 0%,rgba(249,251,249,.89) 66%,rgba(249,251,249,.58) 100%); }
    .about-image-hero-inner { padding-top: 68px; padding-bottom: 72px; }
}


/* Footer partners: prepared for future partner organisations.
   The column is rendered only when config/partners.json contains entries. */
.footer-grid.has-partners {
    grid-template-columns: 1.7fr repeat(4, minmax(0, 1fr));
    gap: 38px;
}
.footer-partners a::after {
    content: " ↗";
    font-size: .72em;
    opacity: .7;
}
@media (max-width: 1120px) {
    .footer-grid.has-partners {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-grid.has-partners .footer-legal {
        grid-column: auto;
    }
}
@media (max-width: 620px) {
    .footer-grid.has-partners {
        grid-template-columns: 1fr 1fr;
    }
}


/* Branded 403 / 404 pages */
.error-page {
    min-height: 70vh;
    background: #f7faf8;
}
.error-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(72px, 10vw, 132px) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(0,144,88,.11), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(0,144,88,.07), transparent 28%),
        linear-gradient(135deg, #fbfdfc 0%, #f1f7f4 100%);
}
.error-hero-inner {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 40px));
    text-align: center;
}
.error-code-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,144,88,.18);
    border-radius: 38px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 24px 70px rgba(16,46,35,.10);
    transform: rotate(-3deg);
    backdrop-filter: blur(10px);
}
.error-code {
    color: var(--green);
    font-size: clamp(3.3rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.07em;
    transform: rotate(3deg);
}
.error-hero .section-kicker {
    margin-bottom: 14px;
}
.error-hero h1 {
    max-width: 720px;
    margin: 0 auto;
    color: #212529;
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.error-lead {
    max-width: 620px;
    margin: 28px auto 0;
    color: #435163;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.75;
}
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.error-secondary-link {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,144,88,.32);
    padding: 8px 0;
}
.error-secondary-link:hover {
    border-bottom-color: currentColor;
}
.error-help {
    max-width: 560px;
    margin: 44px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(12,44,33,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #66736e;
    font-size: .92rem;
}
.error-help p {
    margin: 0;
}
.error-help a {
    color: var(--green-dark);
    font-weight: 700;
}
.error-help-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,144,88,.09);
    color: var(--green);
    font-weight: 900;
}
.error-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}
.error-orb-one {
    width: 360px;
    height: 360px;
    left: -170px;
    bottom: -150px;
    border: 1px solid rgba(0,144,88,.09);
    box-shadow: inset 0 0 80px rgba(0,144,88,.04);
}
.error-orb-two {
    width: 240px;
    height: 240px;
    right: -90px;
    top: 110px;
    border: 1px solid rgba(0,144,88,.08);
}
@media (max-width: 680px) {
    .error-hero {
        min-height: auto;
        padding: 64px 0 76px;
    }
    .error-code-wrap {
        width: 118px;
        height: 118px;
        border-radius: 30px;
        margin-bottom: 24px;
    }
    .error-actions {
        gap: 18px;
        flex-direction: column;
    }
    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .error-help {
        align-items: flex-start;
        text-align: left;
    }
}

/* AnyWareX technical implementation credit */
.technical-credit {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 10px 0 34px;
}
.technical-credit-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(33,37,41,.10);
    border-radius: 14px;
    background: #f8f9fa;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.technical-credit-logo:hover {
    transform: translateY(-1px);
    border-color: rgba(0,144,88,.28);
    box-shadow: 0 8px 24px rgba(33,37,41,.07);
}
.technical-credit-logo img {
    display: block;
    width: min(180px, 34vw);
    height: auto;
}
.technical-credit-copy p {
    margin: 0 0 7px;
}
.technical-credit-copy strong a {
    color: #212529;
    text-decoration: none;
}
.technical-credit-copy strong a:hover {
    color: var(--green);
}
.technical-credit-link {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}
.technical-credit-link:hover {
    text-decoration: underline;
}
@media (max-width: 620px) {
    .technical-credit {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
    .technical-credit-logo img {
        width: 160px;
    }
}
