:root {
    --surface: #ffffff;
    --surface-soft: #eef2ec;
    --text: #000;
    --muted: #5A5A5A;
    --green: #627764;
    --green-strong: #5d8a79;
    --green-soft: #dce7e0;
    --green-band: #5f8b7a;
    --beige: #D4B89615;
    --beige-soft: #efe5d4;
    --sand: #dcc4a1;
    --line: #d9ded8;
    --footer: #2C2C2C;
    --shadow: 0 16px 36px rgba(40, 45, 40, 0.08);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: top -120px right -300px;
}

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

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

h1,
h2,
h3,
p {
    margin: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: transparent;
}

.site-header.is-scrolled {
    background: #ffffff;
    border-bottom-color: rgba(98, 119, 100, 0.08);
    box-shadow: 0 6px 20px rgba(40, 45, 40, 0.04);
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 200px;
}

.footer-logo {
    width: 72px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 16px;
    text-transform: uppercase;
    color: #555a55;
}

.menu a {
    position: relative;
    padding: 6px 0;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.menu a:hover::after,
.menu a.is-active::after {
    transform: scaleX(1);
}

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-pill {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #7D9883;
    color: var(--surface);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.menu-toggle-open {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle-open span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-toggle-close {
    display: none;
    font-size: 46px;
    line-height: 1;
    font-weight: 300;
}

.lang-switcher-mobile {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 128px;
    background: transparent;
}

.hero-inner,
.page-hero-inner {
    width: min(100%, 800px);
    margin-left: 240px;
    position: relative;
    z-index: 1;
}

.hero h1,
.page-hero h1 {
    max-width: 800px;
    font-size: 56px;
    letter-spacing: 6%;
    text-transform: uppercase;
    font-weight: 600;
    word-break: break-word;
}

.hero p,
.page-hero p {
    margin-top: 26px;
    max-width: 800px;
    font-size: 26px;
    font-weight: 300;
    color: #5f655f;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background: transparent;
}

.section {
    padding: 64px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }
}

.subsection-title {
    font-size: 48px;
    font-weight: 700;
    color: #465C47;
    text-transform: uppercase;
}

.section-lead {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.subsection-lead {
    margin-top: 14px;
    color: #465C47;
    line-height: 1.7;
}

.pattern-band {
    background-image: url("../images/section-bg.png");
    background-size: contain;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.bullet-list {
    margin: 28px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.bullet-list li::marker {
    color: #5F8F7B;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    gap: 16px;
    grid-template-areas:
        "card-4 card-2"
        "card-3 card-1";
}

.photo-card {
    aspect-ratio: 1.15;
    border: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--surface-soft);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    appearance: none;
}

.photo-card:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
}

.photo-card:nth-child(1) { grid-area: card-1; }
.photo-card:nth-child(2) { grid-area: card-2; }
.photo-card:nth-child(3) { grid-area: card-3; }
.photo-card:nth-child(4) { grid-area: card-4; }

.photo-card:nth-child(1),
.photo-card:nth-child(2) {
    transform: translateY(22px);
}

.photo-card:nth-child(1) {
    background-image:
        linear-gradient(135deg, rgba(51, 28, 18, 0.18), rgba(138, 52, 18, 0.28)),
        url("../images/hataron_tuli/kep1.jpg");
}

.photo-card:nth-child(2) {
    background-image:
        linear-gradient(135deg, rgba(37, 23, 64, 0.18), rgba(60, 73, 147, 0.22)),
        url("../images/hataron_tuli/kep2.jpg");
}

.photo-card:nth-child(3) {
    background-image:
        linear-gradient(135deg, rgba(22, 56, 31, 0.1), rgba(169, 74, 33, 0.18)),
        url("../images/hataron_tuli/kep3.jpg");
}

.photo-card:nth-child(4) {
    background-image:
        linear-gradient(135deg, rgba(43, 33, 19, 0.1), rgba(94, 82, 52, 0.22)),
        url("../images/hataron_tuli/kep4.jpg");
}

.beige {
    background: var(--beige);
}

.partners,
.support,
.metrics,
.goal-pillars,
.goal-cta {
    text-align: center;
}

.partners-lead {
    margin-inline: auto;
    max-width: 760px;
}

.partner-panel {
    margin-top: 52px;
}

.partner-grid {
    display: grid;
    justify-content: center;
    gap: 36px 34px;
    align-items: center;
}

.partner-grid-top {
    grid-template-columns: repeat(4, 295px);
}

.partner-grid-bottom {
    grid-template-columns: repeat(3, 295px);
    justify-content: center;
    margin-top: 36px;
}

.partner-card,
.pillar-card,
.support-card,
.stat-card,
.activity-card {
    border-radius: 18px;
}

.partner-card {
    min-height: 120px;
    display: grid;
    place-items: center;
    background: #ffffff;
    box-shadow: 0 6px 30px rgba(38, 42, 38, 0.1);
    color: #2C2C2C66;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 28px;
}

.logo-section + .logo-section {
    margin-top: 56px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.logo-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 12px 24px rgba(66, 53, 25, 0.12);
    overflow: hidden;
}

.logo-card-link {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 22px 24px;
}

.logo-card-image {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card-image img {
    max-width: 100%;
    max-height: 122px;
    object-fit: contain;
}

.logo-card-name {
    color: #2C2C2C66;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.partners-button {
    margin-top: 44px !important;
    padding: 14px 28px !important;
    background: #ffffff !important;
    color: #ABABAB !important;
    font-weight: 600 !important;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #6f736f;
    font: inherit;
    font-weight: 600;
}

@media (max-width: 1400px) {
    .partner-grid-top,
    .partner-grid-bottom {
        grid-template-columns: repeat(2, minmax(260px, 280px));
    }

    .partner-grid-bottom .partner-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 280px);
    }
}

.timeline-wrap {
    position: relative;
    width: min(100%, 980px);
    min-height: 760px;
    margin: 54px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 18px;
    width: 44px;
    transform: translateX(-50%);
}

.timeline-line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: #465C47;
}

.dot {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #465C47;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px #fff;
}

.dot.one { top: 7%; }
.dot.two { top: 34%; }
.dot.three { top: 58%; }
.dot.four { top: 81%; }

.timeline-item {
    position: absolute;
    width: 34%;
    padding: 0;
}

.timeline-item.left {
    left: 2%;
    text-align: right;
}

.timeline-item.right {
    right: 2%;
    text-align: left;
}

.timeline-item.top {
    top: 2%;
}

.timeline-item.upper-middle {
    top: 30%;
}

.timeline-item.lower-middle {
    top: 56%;
}

.timeline-item.bottom {
    top: 74%;
}

.year {
    font-size: clamp(4.2rem, 7vw, 6.4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #465C4780;
}

.timeline-copy {
    margin-top: 16px;
    color: #556b58;
    font-size: 1.2rem;
    max-width: 290px;
}

.timeline-item.left .timeline-copy {
    margin-left: auto;
}

.timeline-flow {
    position: relative;
    max-width: 1080px;
    margin: 56px auto 0;
    padding: 12px 0;
}

.timeline-flow-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: #465c47;
}

.timeline-flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    min-height: 170px;
}

.timeline-flow-dot {
    grid-column: 2;
    justify-self: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #465c47;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px #fff;
}

.timeline-flow-content {
    max-width: 330px;
}

.timeline-flow-item-right .timeline-flow-content {
    grid-column: 3;
    text-align: left;
}

.timeline-flow-item-left .timeline-flow-content {
    grid-column: 1;
    justify-self: end;
    text-align: right;
}

.timeline-flow-year {
    font-size: clamp(4rem, 8vw, 6.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: rgba(70, 92, 71, 0.4);
}

.timeline-flow-copy {
    margin-top: 16px;
    color: #556b58;
    font-size: 1.2rem;
    line-height: 1.35;
}

.support-grid,
.stats-grid,
.pillar-grid {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}

.support-grid {
    grid-template-columns: repeat(4, 230px);
    justify-content: center;
    gap: 26px 28px;
    max-width: 1036px;
    margin: 48px auto 0;
}

.support-card,
.stat-card {
    background: #ffffff;
    box-shadow: 0 2px 0 rgba(78, 91, 80, 0.12), 0 10px 24px rgba(40, 45, 40, 0.06);
}

.support-icon,
.stat-icon,
.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #f5f7f3;
    color: #6d9b82;
    font-size: 1.4rem;
    font-weight: 700;
}

.support-card h3,
.stat-card h3,
.pillar-card h3,
.activity-card h3 {
    font-size: 1rem;
    line-height: 1.35;
}

.support-card h3 {
    font-weight: 600;
}

.support-card {
    min-height: 150px;
    padding: 28px 18px 24px;
}

.support-card:nth-child(1) .support-icon,
.support-card:nth-child(4) .support-icon,
.support-card:nth-child(6) .support-icon,
.support-card:nth-child(8) .support-icon {
    background-color: #D4B89615;
}

.support-card:nth-child(2) .support-icon,
.support-card:nth-child(3) .support-icon,
.support-card:nth-child(5) .support-icon,
.support-card:nth-child(7) .support-icon {
    background-color: #7AA99515;
}

.support .section-lead {
    max-width: 820px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.5;
}

.stats-grid {
    grid-template-columns: repeat(4, 280px);
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.stat-copy,
.pillar-copy {
    color: var(--muted);
}

.metrics .section-lead {
    max-width: 820px;
    margin-inline: auto;
}

.metrics .stat-card {
    min-height: 276px;
    padding: 36px 28px 36px;
    background: #F2F6F4;
    border-radius: 32px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.metrics .stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 34px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(45, 52, 45, 0.08), 0 2px 0 rgba(78, 91, 80, 0.08);
    font-size: 2.1rem;
    color: #6b9c84;
}

.metrics .stat-card:nth-child(1) .stat-icon {
    color: #6e9c86;
}

.metrics .stat-card:nth-child(2) .stat-icon {
    color: #7ea08f;
}

.metrics .stat-card:nth-child(3) .stat-icon {
    color: #d9b4a6;
}

.metrics .stat-card:nth-child(4) .stat-icon {
    color: #6e9c86;
}

.metrics .stat-card h3 {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 14px;
}

.metrics .stat-copy {
    max-width: 210px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.goal-band {
    background: var(--beige);
}

.pillar-grid {
    grid-template-columns: repeat(4, 320px);
    justify-content: center;
    gap: 28px;
    margin-top: 54px;
}

.pillar-card {
    min-height: 240px;
    background: #ffffff;
    border: 1px solid rgba(70, 70, 70, 0.06);
    box-shadow: 0 2px 0 rgba(78, 91, 80, 0.1), 0 10px 24px rgba(40, 45, 40, 0.06);
    padding: 30px 8px 24px;
    text-align: center;
}

.pillar-card h3 {
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.goal-pillars .pillar-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 26px;
    border-radius: 22px;
    background: #f5f7f3;
    font-size: 2rem;
    font-weight: 600;
}

.goal-pillars .pillar-card:nth-child(1) .pillar-icon,
.goal-pillars .pillar-card:nth-child(3) .pillar-icon {
    background-color: #5F8F7B15;
}

.goal-pillars .pillar-card:nth-child(2) .pillar-icon,
.goal-pillars .pillar-card:nth-child(4) .pillar-icon {
    background-color: #D4B89615;
}

.goal-pillars .pillar-copy {
    max-width: 250px;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.6;
}

.activities-wrap {
    max-width: 1140px;
    margin: 28px auto 0;
}

.activities-title {
    margin-bottom: 34px;
    font-size: 48px;
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 22px;
}

.activity-card {
    min-height: 292px;
    padding: 40px 38px 34px;
    border-radius: 34px;
    box-shadow: 0 2px 0 rgba(78, 91, 80, 0.08), 0 10px 24px rgba(40, 45, 40, 0.04);
}

.activity-card.green {
    background: #F2F6F4;
}

.activity-card.sand {
    background: #D4B89615;
}

.activity-card.center {
    grid-column: 1 / -1;
    width: calc((100% - 22px) / 2);
    max-width: none;
    margin: 0 auto;
}

.activity-card h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.activity-card.green h3,
.activity-card.green li {
    color: #5F8F7B;
}

.activity-card.sand h3,
.activity-card.sand li {
    color: #D4B896;
}

.activity-card ul {
    margin: 0;
    padding-left: 28px;
    line-height: 2.1;
    font-size: 0.95rem;
}

.goal-cta {
    background: var(--green-band);
    color: rgba(255, 255, 255, 0.94);
}

.goal-cta .section-title {
    font-size: 36px;
}

.goal-cta .section-lead {
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.8);
}

.goal-cta .button {
    background: #ffffff;
    color: var(--green-strong);
}

.project-pattern {
    height: 156px;
    background-image: url("../images/section-bg.png");
    background-size: contain;
}

.projects-page {
    padding-top: 54px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-section + .project-section {
    margin-top: 56px;
}

.project-group-title {
    margin-bottom: 28px;
    font-size: 34px;
    color: #465c47;
}

.project-card {
    background: #F2F6F4;
    border-radius: 34px;
    box-shadow: 4px 4px 8px 0px #00000014;
    padding: 20px 20px 18px;
}

.project-card.sand {
    background: #D4B89615;
}

.project-thumb {
    height: 342px;
    border-radius: 26px;
    background-image: url("../images/no-image.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #ffffff;
}

.project-body {
    padding: 20px 8px 0;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.project-card.sand .project-title {
    color: #CAA271;
}

.project-copy {
    margin-top: 12px;
    color: #535853;
    line-height: 1.7;
    min-height: 118px;
}

.project-date {
    margin-top: 24px;
    color: #5c625c;
    font-size: 0.95rem;
}

.project-partners {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    color: #7f857f;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 18px;
}

.project-cta {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    padding-block: 11px;
    background: rgba(255, 255, 255);
    border: 1px solid rgba(98, 119, 100, 0.14);
    color: #2c2c2c;
    font-weight: 400;
}

.project-cta::after {
    content: "";
}

.supporters-band {
    background: var(--beige);
}

.supporters-grid {
    display: grid;
    justify-content: center;
    gap: 28px 34px;
}

.supporters-grid-top {
    grid-template-columns: repeat(3, 280px);
}

.supporters-grid-bottom {
    grid-template-columns: repeat(4, 280px);
    margin-top: 28px;
}

.supporter-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 24px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 12px 24px rgba(66, 53, 25, 0.18);
    text-align: center;
}

.supporter-logo img {
    max-width: 160px;
    max-height: 124px;
    object-fit: contain;
}

.supporter-logo {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-name {
    flex: 0 0 auto;
    color: #b5b5b5;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.supporter-stats {
    padding-top: 60px;
}

.supporter-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.supporter-stat-card {
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 36px;
    background: #F2F6F4;
    border-radius: 32px;
    box-shadow: 4px 4px 8px 0px #00000014;
    text-align: center;
}

.supporter-stat-value {
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #7D9883;
}

.supporter-stat-label {
    margin-top: 22px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
    color: #5A5A5A;
}

.project-detail-hero {
    padding: 18px 0 34px;
}

.project-brand-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: #2e67bb;
    font-weight: 800;
}

.project-brand-logo {
    min-width: 56px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eef3ff;
}

.project-brand-logo.flag {
    padding: 0 12px;
    background: #1d4fae;
    color: #ffdd57;
}

.project-brand-logo.union {
    padding: 0 16px;
}

.project-brand-logo.round {
    width: 56px;
    border-radius: 50%;
    background: #eef3ff;
    color: #3864a9;
}

.project-brand-logo.crest {
    background: #fff5ef;
    color: #bd3d32;
}

.project-brand-copy {
    margin-top: 14px;
    color: #2356b2;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 700;
}

.project-brand-rule {
    width: 100%;
    max-width: 320px;
    height: 2px;
    margin: 14px 0 8px;
    background: #cfdaf4;
}

.project-brand-tag {
    color: #4d84c7;
    font-size: 0.76rem;
    font-weight: 700;
}

.project-section-title {
    margin-bottom: 26px;
    text-align: center;
    color: #1A5A3A;
    font-size: 36px;
    font-weight: 500;
}

.project-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-partner-card {
    padding: 50px 24px;
    min-height: 240px;
    border-radius: 22px;
    background: #e7f2ea;
    box-shadow: 4px 4px 8px 0px #00000014;
    display: grid;
    place-items: center;
    text-align: center;
}

.project-partner-logo {
    max-height: 80px;
}

.project-partner-name {
    margin-top: 8px;
    color: #2f6f4e;
    font-size: 1rem;
    font-weight: 700;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project-info-card,
.project-copy-card,
.project-table-wrap,
.event-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 4px 4px 8px 0px #00000014;
    border: 1px solid #E5E7EB
}

.project-info-card {
    min-height: 136px;
    padding: 18px 18px 20px;
}

.project-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6A7282;
    font-size: 14px;
    font-weight: 400;
}

.project-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6ef;
    color: #71a07d;
    font-size: 0.92rem;
}

.project-info-value {
    margin-top: 18px;
    color: #4d5550;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.project-copy-card {
    margin-top: 22px;
    padding: 28px 30px;
}

.project-copy-card h3 {
    color: #1A5A3A;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
}

.project-copy-card p {
    color: #364153;
    line-height: 1.8;
}

.project-copy-card p + p {
    margin-top: 16px;
}

.mint-band {
    background: #e4f2eb;
}

.project-table-wrap {
    overflow: hidden;
}

.project-table {
    width: 100%;
    border-collapse: collapse;
}

.project-table thead {
    background: #206842;
    color: #ffffff;
}

.project-table th,
.project-table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
}

.project-table tbody tr + tr td {
    border-top: 1px solid #edf0ed;
}

.project-table td {
    color: #5a615b;
    background: #ffffff;
}

.project-table a {
    color: #1A5A3A;
    font-weight: 500;
}

.project-events {
    display: grid;
    gap: 16px;
}

.event-item {
    padding: 18px 20px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9aa39d;
    font-size: 0.84rem;
    font-weight: 400;
}

.event-tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: #e9f4ea;
    color: #7aa27e;
}

.event-head {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.event-head h3 {
    font-size: 20px;
    color: #101828;
    font-weight: 500;
}

.event-link {
    color: #1A5A3A;
    font-weight: 500;
    white-space: nowrap;
}

.event-copy {
    margin-top: 10px;
    color: #4A5565;
    line-height: 1.7;
}

.program-band {
    background: linear-gradient(180deg, #5b8b76, #5f8b7a);
    color: rgba(255, 255, 255, 0.94);
}

.program-band h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}

.program-band p {
    max-width: 760px;
    color: #FFFFFFE5;
    line-height: 1.75;
    font-size: 14px;
}

.program-band p + p {
    margin-top: 16px;
}

.event-services-page {
    padding-top: 48px;
}

.service-pattern {
    height: 156px;
    background-image: url("../images/section-bg.png");
    background-size: contain;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.service-block + .service-block {
    margin-top: 88px;
}

.service-block.reverse .service-copy {
    order: 2;
}

.service-block.reverse .service-gallery {
    order: 1;
}

.service-copy h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
}

.service-copy p {
    margin-top: 26px;
    max-width: 620px;
    color: #6a706c;
    line-height: 1.85;
    font-size: 1.02rem;
}

.service-gallery {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 16px;
    align-items: center;
}

.service-gallery.mirror {
    grid-template-columns: 1fr 0.95fr;
}

.service-gallery.is-four,
.service-gallery.is-four.mirror {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-gallery-stack {
    display: grid;
    gap: 16px;
}

.service-image {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: transparent;
    cursor: zoom-in;
    min-height: 196px;
}

.service-image:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.service-image.tall {
    min-height: 256px;
}

.service-gallery.is-four .service-image {
    min-height: 250px;
}

.service-image.large {
    min-height: 330px;
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(20, 24, 20, 0.86);
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox img {
    max-width: min(100%, 1180px);
    max-height: calc(100vh - 96px);
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.image-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #1f241f;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.site-footer {
    background: var(--footer);
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 44px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    text-align: center;
}

.brand-footer {
    color: #ffffff;
}

.footer-logo {
    width: 104px;
    height: auto;
}

.footer-nav,
.footer-meta,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.footer-nav {
    gap: 34px;
    font-size: 0.95rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-meta {
    padding-top: 44px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
    gap: 54px;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    align-items: center;
}

.footer-legal {
    gap: 34px;
}

@media (max-width: 1280px) {
    .menu {
        gap: 16px;
        font-size: 0.74rem;
    }

    .hero-inner,
    .page-hero-inner {
        margin-left: 0;
    }

    .intro-grid,
    .activities-grid,
    .service-block {
        grid-template-columns: 1fr;
    }

    .partner-grid,
    .support-grid,
    .stats-grid,
    .pillar-grid,
    .logo-grid,
    .project-grid,
    .supporter-stats-grid,
    .project-partner-grid,
    .project-info-grid,
    .service-gallery,
    .service-gallery.mirror {
        grid-template-columns: repeat(2, 1fr);
    }

    .supporters-grid-top,
    .supporters-grid-bottom {
        grid-template-columns: repeat(3, minmax(260px, 320px));
    }

    .supporters-grid-bottom .supporter-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 320px);
    }
}

@media (max-width: 760px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        z-index: 40;
    }

    .site-header.menu-open {
        background: #ffffff;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "brand toggle";
        align-items: center;
        gap: 10px 14px;
        min-height: 88px;
        padding: 16px 0;
        position: relative;
        z-index: 2;
    }

    .brand {
        grid-area: brand;
        justify-self: start;
        position: relative;
        z-index: 2;
    }

    .brand-logo {
        width: 148px;
    }

    .menu-toggle {
        display: inline-flex;
        grid-area: toggle;
        justify-self: end;
        position: relative;
        z-index: 2;
    }

    .site-header.menu-open .menu-toggle-open {
        display: none;
    }

    .site-header.menu-open .menu-toggle-close {
        display: block;
    }

    .menu {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 28px;
        padding: 138px 38px 42px;
        background: #ffffff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
        overflow-y: auto;
        font-size: 1.05rem;
        line-height: 1.15;
        color: #111;
    }

    .menu a {
        width: 100%;
        padding: 0;
        font-size: clamp(1.2rem, 4.8vw, 1.9rem);
        letter-spacing: 0.02em;
    }

    .site-header.menu-open .menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu a::after {
        display: none;
    }

    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: flex;
        width: 100%;
        min-height: 69px;
        border-radius: 999px;
        font-size: 1.1rem;
        letter-spacing: 0.02em;
        background: #89a08a;
        align-self: stretch;
        flex: 0 0 auto;
    }

    .hero,
    .page-hero {
        padding: 48px 0 88px;
    }

    .photo-grid,
    .partner-grid,
    .support-grid,
    .stats-grid,
    .pillar-grid,
    .logo-grid,
    .project-grid,
    .supporter-stats-grid,
    .project-partner-grid,
    .project-info-grid,
    .service-gallery,
    .service-gallery.mirror {
        grid-template-columns: 1fr;
    }

    .service-gallery.is-four,
    .service-gallery.is-four.mirror {
        grid-template-columns: 1fr;
    }

    .supporters-grid-top,
    .supporters-grid-bottom {
        grid-template-columns: 1fr;
    }

    .supporters-grid-bottom .supporter-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .timeline-flow {
        padding-left: 34px;
    }

    .timeline-flow-line {
        left: 9px;
        transform: none;
    }

    .timeline-flow-item {
        grid-template-columns: 18px 1fr;
        gap: 18px;
        min-height: auto;
        margin-bottom: 28px;
    }

    .timeline-flow-dot {
        grid-column: 1;
    }

    .timeline-flow-content,
    .timeline-flow-item-right .timeline-flow-content,
    .timeline-flow-item-left .timeline-flow-content {
        grid-column: 2;
        justify-self: start;
        text-align: left;
        max-width: none;
    }

    .timeline-flow-copy {
        font-size: 1rem;
    }

    .partner-panel {
        padding: 0;
        background: transparent;
    }

    .partner-grid-top,
    .partner-grid-bottom {
        grid-template-columns: 1fr;
    }

    .partner-grid-bottom .partner-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .section {
        padding: 64px 0;
    }

    .timeline-wrap {
        min-height: auto;
        padding-left: 34px;
        margin-top: 40px;
    }

    .timeline-line {
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 24px;
        transform: none;
    }

    .dot.one { top: 9%; }
    .dot.two { top: 34%; }
    .dot.three { top: 59%; }
    .dot.four { top: 84%; }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        text-align: left;
        margin-bottom: 34px;
    }

    .timeline-item.left .timeline-copy {
        margin-left: 0;
    }

    .project-thumb {
        height: 240px;
    }

    .service-block + .service-block {
        margin-top: 64px;
    }

    .service-image.large,
    .service-image.tall,
    .service-image {
        min-height: 220px;
    }

    .project-copy-card {
        padding: 24px 20px;
    }

    .project-table {
        display: block;
        overflow-x: auto;
    }

    .event-head {
        flex-direction: column;
    }

    .supporter-card,
    .supporter-stat-card {
        min-height: auto;
    }

    .activity-card {
        padding: 28px 26px;
        min-height: auto;
    }

    .activity-card.center {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .footer-meta {
        gap: 18px 28px;
    }

    .footer-nav,
    .footer-legal {
        gap: 18px 24px;
    }
}
