@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    color-scheme: light;
    --page-bg: #f9f6f0;
    --accent: #c86b45;
    --ink: #2c3e50;
    font-family:
        "Montserrat",
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--page-bg);
    color: var(--ink);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--page-bg);
}

body {
    color: var(--ink);
}

body.nav-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

.page {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 24px 24px 60px;
    background: var(--page-bg);
}

.header {
    display: grid;
    gap: 14px;
    padding: 20px 0 24px;
}

.header-main,
.footer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

.brand img {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
}

.header-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(44, 62, 80, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #2c3e50;
    cursor: pointer;
}

.header-menu-toggle:hover {
    color: #c86b45;
    border-color: rgba(200, 107, 69, 0.45);
}

.header-stack,
.footer-nav-groups {
    display: grid;
    gap: 10px;
    justify-items: end;
    flex: 1;
    min-width: 0;
}

.utility-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    align-items: center;
}

.nav a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav a.active,
.nav a:hover {
    color: #c86b45;
    background: rgba(200, 107, 69, 0.1);
}

.site-search {
    display: flex;
    align-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    transition:
        flex-basis 0.22s ease,
        width 0.22s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-search.is-open {
    flex-basis: min(292px, 100%);
    width: min(292px, 100%);
    border-color: rgba(200, 107, 69, 0.38);
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.08);
}

.search-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    border: 0;
    background: transparent;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 999px;
}

.search-toggle:hover {
    color: #c86b45;
}

.site-search .search-input {
    width: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    outline: 0;
    transition:
        width 0.22s ease,
        opacity 0.18s ease,
        padding 0.22s ease;
}

.site-search.is-open .search-input {
    width: 218px;
    padding: 0 14px 0 2px;
    opacity: 1;
}

.utility-link,
.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    background: #fff;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.utility-link {
    flex: 0 0 auto;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
    transition:
        width 0.22s ease,
        padding 0.22s ease,
        gap 0.22s ease,
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.utility-link span {
    display: inline-block;
    transition:
        width 0.18s ease,
        opacity 0.18s ease;
}

.site-search.is-open + .utility-link {
    width: 44px;
    padding: 0;
    gap: 0;
}

.site-search.is-open + .utility-link span {
    width: 0;
    opacity: 0;
    overflow: hidden;
}

.utility-link:hover,
.language-link:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 107, 69, 0.45);
    color: #c86b45;
}

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

.language-link {
    padding: 0 10px;
    font-size: 0.86rem;
}

.language-link.is-active {
    border-color: rgba(200, 107, 69, 0.48);
    color: #c86b45;
    background: rgba(200, 107, 69, 0.08);
}

.icon {
    width: 18px;
    height: 18px;
    display: block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.flag-icon {
    position: relative;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(44, 62, 80, 0.18);
    flex: 0 0 auto;
}

.flag-icon--id {
    background: linear-gradient(180deg, #d91f2f 0 50%, #fff 50% 100%);
}

.flag-icon--en {
    background: #fff;
}

.flag-icon--en::before,
.flag-icon--en::after {
    content: "";
    position: absolute;
    background: #cf142b;
}

.flag-icon--en::before {
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.flag-icon--en::after {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.button-primary,
.button-secondary {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button-primary:hover {
    transform: translateY(-1px);
    background: #1f3144;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid #2c3e50;
    color: #2c3e50;
    background: #fff;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: center;
    padding: 48px 0 36px;
}

.eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #7a9a86;
    margin-bottom: 18px;
}

.eyebrow::after {
    content: "";
    display: inline-block;
    width: 54px;
    height: 1px;
    margin-left: 16px;
    background: #7a9a86;
    vertical-align: middle;
}

.headline {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(2.65rem, 4.6vw, 4.2rem);
    line-height: 1.02;
    margin: 0 0 24px;
    letter-spacing: 0;
}

.intro {
    font-family: "Montserrat", sans-serif;
    max-width: 620px;
    color: #4d5560;
    line-height: 1.9;
    margin: 0 0 30px;
    text-align: justify;
}

.intro p {
    margin: 0 0 12px;
}

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

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: 0 22px 60px rgba(44, 62, 80, 0.08);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-card__body {
    display: block;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-card small,
.stat-card__label {
    display: block;
    color: #6b7280;
    line-height: 1.8;
}

.stat-card__label p {
    margin: 0;
}

.summary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 32px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 242, 242, 0.72) 100%
    );
    border: 1px solid rgba(44, 62, 80, 0.08);
    padding: 30px;
    min-height: 460px;
    box-shadow: 0 26px 60px rgba(44, 62, 80, 0.07);
    overflow: hidden;
}

.summary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(200, 107, 69, 0.16),
            transparent 18%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(122, 154, 134, 0.14),
            transparent 22%
        );
}

.summary-card > * {
    position: relative;
}

.summary-pill {
    align-self: flex-start;
    display: inline-flex;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(200, 107, 69, 0.12);
    color: #c86b45;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.summary-card h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    line-height: 1.35;
}

.summary-card p {
    margin: 0;
    line-height: 1.9;
    color: #4e5866;
}

.summary-carousel-panel {
    position: relative;
    min-height: 460px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.summary-image-carousel {
    position: relative;
    min-height: 420px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.summary-image-carousel__track {
    position: relative;
    width: 100%;
    height: 420px;
}

.summary-image-carousel__item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 320px;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.68);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease,
        filter 0.32s ease;
    pointer-events: none;
}

.summary-image-carousel__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-image-carousel__item.is-left,
.summary-image-carousel__item.is-right {
    opacity: 0.64;
    z-index: 1;
    filter: saturate(0.82);
}

.summary-image-carousel__item.is-left {
    transform: translate(-95%, -50%) scale(0.72);
}

.summary-image-carousel__item.is-right {
    transform: translate(-5%, -50%) scale(0.72);
}

.summary-image-carousel__item.is-center {
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
    filter: saturate(1.06);
}

.summary-image-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.summary-image-carousel__button:hover {
    color: #c86b45;
    transform: translateY(-50%) scale(1.08);
}

.summary-image-carousel__button--prev {
    left: 0;
}

.summary-image-carousel__button--next {
    right: 0;
}

.livelihood-section {
    position: relative;
    margin: 0;
    padding: 48px 0 36px;
    overflow: visible;
    color: #1e252d;
}

.livelihood-header-note {
    max-width: 760px;
    margin: 0 auto 22px;
    text-align: center;
    font-family: "Segoe Print", "Bradley Hand ITC", cursive;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.25;
    color: #111820;
    transform: rotate(-1deg);
}

.livelihood-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
    gap: 32px;
    margin: 0;
    max-width: none;
}

.livelihood-title-block h2 {
    margin: 0;
    max-width: 680px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.65rem, 4.6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    color: #d66f50;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.livelihood-copy-block {
    position: relative;
    padding-top: 0;
    line-height: 1.9;
    color: #4d5560;
    font-size: 1.5rem;
    text-align: justify;
}

.livelihood-copy-block p {
    margin: 0 0 12px;
}

.livelihood-copy-block strong {
    display: block;
    margin-top: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1e252d;
}

.livelihood-image-strip {
    width: 100%;
    height: clamp(220px, 32vw, 360px);
    margin: 32px 0 0;
    overflow: hidden;
    background: #f5efe7;
    clip-path: polygon(
        0 10%,
        24% 3%,
        45% 9%,
        68% 0,
        100% 8%,
        97% 91%,
        75% 100%,
        48% 93%,
        22% 100%,
        0 90%
    );
    box-shadow: 0 16px 36px rgba(44, 62, 80, 0.12);
}

.livelihood-image-strip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.08) saturate(0.78) contrast(1.08);
}

.livelihood-footer-note {
    position: relative;
    display: grid;
    grid-template-columns: 68px minmax(0, 520px);
    gap: 24px;
    align-items: start;
    max-width: 720px;
    margin: 0 clamp(10px, 7vw, 112px) 0 auto;
}

.livelihood-footer-note::before {
    content: "";
    position: absolute;
    top: 48px;
    right: calc(100% - 48px);
    width: 54px;
    border-top: 2px solid #151515;
    transform: rotate(-18deg);
    transform-origin: right center;
}

.livelihood-number {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid #151515;
    border-radius: 999px;
    font-family: "Segoe Print", "Bradley Hand ITC", cursive;
    font-size: 1.75rem;
    line-height: 1;
    color: #111820;
    transform: rotate(-7deg);
}

.livelihood-footer-note p {
    margin: 0;
    font-family: "Segoe Print", "Bradley Hand ITC", cursive;
    font-size: clamp(1.12rem, 2.25vw, 1.9rem);
    line-height: 1.18;
    color: #121820;
    transform: rotate(-1deg);
}

.top-carousel {
    position: relative;
    width: 100%;
    padding: 22px 0 32px;
    overflow: hidden;
    background: var(--page-bg);
    isolation: isolate;
}

.top-carousel .carousel-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0;
    scroll-behavior: smooth;
    background: var(--page-bg);
    border-radius: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.top-carousel .carousel-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 560px;
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 32px;
    background-color: var(--page-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: flex-end;
    padding: 34px;
    color: #fff;
    box-shadow: 0 20px 52px rgba(44, 62, 80, 0.14);
    outline: 1px solid rgba(249, 246, 240, 0.72);
    outline-offset: -1px;
}

.top-carousel .carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 34%,
        rgba(0, 0, 0, 0.52) 100%
    );
}

.top-carousel .carousel-caption {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.top-carousel .carousel-caption span {
    display: inline-block;
    margin-bottom: 14px;
    color: #f9f6f0;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.top-carousel .carousel-caption h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.03;
}

.top-carousel .carousel-caption p,
.top-carousel .carousel-caption-body {
    margin: 0;
    color: rgba(249, 246, 240, 0.93);
    line-height: 1.75;
    font-size: 1rem;
}

.top-carousel .carousel-caption-body p {
    margin: 0;
}

.top-carousel .carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.top-carousel .carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.top-carousel .carousel-dot.active {
    background: #c86b45;
    transform: scale(1.05);
}

.top-carousel .carousel-dot:hover {
    background: #f3c2a7;
}

.carousel {
    position: relative;
    display: grid;
    gap: 18px;
}

.carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.carousel-track::-webkit-scrollbar {
    height: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(44, 62, 80, 0.18);
    border-radius: 999px;
}

.carousel-slide {
    min-width: 320px;
    min-height: 280px;
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: end;
    padding: 24px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.carousel-slide span {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1.05rem;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.carousel-button {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

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

.story-tile {
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 18px 42px rgba(44, 62, 80, 0.08);
}

.story-tile h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.35rem;
    line-height: 1.18;
}

.story-tile p {
    margin: 12px 0 0;
    line-height: 1.7;
}

.story-tile--photo {
    background-color: var(--page-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.story-tile--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 62, 80, 0) 30%,
        rgba(44, 62, 80, 0.7) 100%
    );
}

.story-tile--photo > * {
    position: relative;
}

.story-kicker {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.88;
}

.story-tile--mission {
    background: #c86b45;
    color: #fff;
    justify-content: center;
}

.story-tile--mission h3 {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.05;
}

.story-tile--profile {
    background-position: center top;
}

.story-tile--infographic {
    background: #2c3e50;
    color: #f9f6f0;
    justify-content: space-between;
}

.story-number {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 0.9;
    color: #f9f6f0;
    margin: 26px 0 0;
}

.story-tile--infographic p {
    color: rgba(249, 246, 240, 0.82);
    font-size: 1.05rem;
}

.story-tile--education {
    background: #fdfdfc;
    color: #2c3e50;
    justify-content: space-between;
}

.story-tile--education .story-kicker {
    color: #7a9a86;
    opacity: 1;
}

.story-tile--education p {
    color: #4d5560;
}

.story-tile--cta {
    background: #7a9a86;
    color: #fff;
    justify-content: space-between;
}

.story-tile--cta strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.95;
    margin-top: 26px;
}

.section {
    padding: 42px 0;
    display: grid;
    gap: 28px;
}

.section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.1rem;
    margin: 0;
}

.section-copy {
    font-family: "Montserrat", sans-serif;
    color: #4d5560;
    line-height: 1.9;
    max-width: 100%;
    font-size: 1.4rem;
    margin: 0;
}

.section-copy p {
    margin: 0 0 12px;
}

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

.home-section {
    padding: 52px 0;
    gap: 30px;
}

.home-section-title {
    max-width: 760px;
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.home-section .section-copy {
    max-width: 820px;
    font-size: 1rem;
}

.home-section--what-we-do {
    padding-top: 48px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    margin: 0;
    max-width: none;
}

.what-we-do-grid--image-right {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.what-we-do-image-block {
    min-width: 0;
}

.what-we-do-image-panel {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    border-radius: 24px;
    background: #2c3e50;
    box-shadow: 0 18px 46px rgba(44, 62, 80, 0.1);
}

.what-we-do-image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 62, 80, 0.02) 35%,
        rgba(44, 62, 80, 0.76) 100%
    );
}

.what-we-do-image-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.03);
}

.what-we-do-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    display: grid;
    gap: 10px;
    color: #fff;
}

.what-we-do-caption-kicker {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.what-we-do-caption-text {
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    font-weight: 500;
    line-height: 1.38;
}

.what-we-do-caption-person {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
}

.what-we-do-copy-block {
    font-size: clamp(1.05rem, 1.55vw, 1.24rem);
    line-height: 1.82;
    color: #4d5560;
    text-align: justify;
}

.what-we-do-copy-block p {
    margin: 0 0 12px;
}

.what-we-do-copy-block p:last-child {
    margin-bottom: 0;
}

.what-we-do-copy-block strong {
    display: block;
    margin-top: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.12rem;
    line-height: 1.6;
    color: #1e252d;
}

.home-section--multiplier {
    padding: 48px 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.multiplier-effect-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: 42px;
    max-width: none;
}

.multiplier-effect-copy {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.home-section--multiplier .home-section-title {
    max-width: 820px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
}

.home-section--multiplier .section-copy,
.home-section--multiplier .what-we-do-copy-block {
    max-width: 900px;
    font-size: 1.04rem;
    line-height: 1.95;
}

.multiplier-effect-image-block .what-we-do-image-panel {
    aspect-ratio: 5 / 4;
}

.home-section--achievements .hero-stats {
    gap: 18px;
}

.home-section--achievements .stat-card {
    padding: 24px;
    border-radius: 22px;
}

.home-section--achievements .stat-card strong {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1;
}

.home-hero {
    padding: 56px 0 44px;
    gap: 38px;
}

.home-hero .headline {
    max-width: 700px;
    font-size: clamp(2.35rem, 4.5vw, 3.85rem);
}

.home-hero .intro {
    max-width: 660px;
}

.home-section--process .grid-3 {
    gap: 18px;
}

.home-section--process .feature-card {
    min-height: 178px;
    padding: 24px;
    border-radius: 22px;
}

.home-section--process .feature-card h3 {
    font-size: 1.08rem;
}

.story-stack,
.work-stack {
    display: grid;
    gap: 44px;
    padding: 34px 0 50px;
}

.action-stack,
.join-stack {
    display: grid;
    gap: 42px;
    padding: 34px 0 54px;
}

.gallery-stack {
    display: grid;
    gap: 42px;
    padding: 34px 0 54px;
}

.action-intro,
.join-intro {
    display: grid;
    gap: 16px;
    max-width: 820px;
}

.action-intro p,
.join-intro p {
    margin: 0;
    color: #4d5560;
    font-size: 1.04rem;
    line-height: 1.9;
}

.gallery-hero {
    display: grid;
    gap: 16px;
    max-width: 920px;
}

.gallery-hero--compact {
    max-width: 980px;
}

.gallery-hero .section-kicker {
    display: inline-block;
    color: #c86b45;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.gallery-hero__meta {
    color: #6a7280;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gallery-back {
    justify-self: start;
    color: #6f492f;
    font-weight: 700;
    text-decoration: none;
}

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

.gallery-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 56px rgba(32, 44, 60, 0.08);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 28px 62px rgba(32, 44, 60, 0.12);
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-card__body {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.gallery-card__count {
    color: #c86b45;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-card__body h2 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
}

.gallery-card__body p {
    margin: 0;
    color: #57606d;
    line-height: 1.7;
}

.gallery-empty {
    padding: 22px 0;
    color: #57606d;
}

.gallery-masonry {
    columns: 3 280px;
    column-gap: 18px;
}

.gallery-masonry__item {
    break-inside: avoid;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: #fff;
    box-shadow: 0 20px 42px rgba(32, 44, 60, 0.08);
}

.gallery-masonry__item img {
    display: block;
    width: 100%;
    height: auto;
}

.photo-bank {
    display: grid;
    gap: 24px;
    padding: 4px 0;
}

.photo-bank__header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: end;
}

.photo-bank__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #c86b45;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.photo-bank h2 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(1.85rem, 3vw, 3.15rem);
    line-height: 1.04;
}

.photo-bank__intro {
    color: #4d5560;
    line-height: 1.8;
}

.photo-bank__intro p {
    margin: 0;
}

.photo-bank__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) repeat(2, minmax(0, 0.82fr));
    grid-auto-rows: minmax(170px, 15vw);
    gap: 12px;
}

.photo-bank__item {
    position: relative;
    min-height: 170px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #efe6da;
    box-shadow: 0 18px 44px rgba(44, 62, 80, 0.08);
    isolation: isolate;
}

.photo-bank__item--feature {
    grid-row: span 2;
    min-height: 360px;
}

.photo-bank__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        filter 0.32s ease,
        transform 0.32s ease;
}

.photo-bank__item:hover img,
.photo-bank__item:focus-within img {
    filter: saturate(1.06);
    transform: scale(1.035);
}

.photo-bank__item figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 48px 14px 14px;
    background: linear-gradient(
        180deg,
        rgba(21, 31, 42, 0) 0%,
        rgba(21, 31, 42, 0.78) 100%
    );
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.photo-bank__item--feature figcaption {
    padding: 64px 18px 18px;
    font-size: 1rem;
}

.photo-bank--join {
    padding-top: 8px;
}

.photo-bank--join .photo-bank__header {
    gap: 28px;
}

.photo-bank--join h1 {
    margin: 0;
    max-width: 760px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.photo-bank--join .photo-bank__intro {
    max-width: 620px;
    font-size: 1.08rem;
}

.photo-bank__grid--join {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, 14vw);
    gap: 14px;
}

.photo-bank__item--join {
    grid-column: span 3;
    min-height: 0;
    border-radius: 22px;
    box-shadow: 0 24px 56px rgba(44, 62, 80, 0.1);
}

.photo-bank__item--join-feature {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 360px;
}

.photo-bank__media,
.photo-bank__overlay {
    position: absolute;
    inset: 0;
}

.photo-bank__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.photo-bank__item:hover .photo-bank__media img,
.photo-bank__item:focus-visible .photo-bank__media img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.photo-bank__overlay {
    background: linear-gradient(
        180deg,
        rgba(22, 30, 41, 0.02) 12%,
        rgba(22, 30, 41, 0.14) 45%,
        rgba(22, 30, 41, 0.8) 100%
    );
}

.photo-bank__caption {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 56px 18px 18px;
    color: #fff;
}

.photo-bank__caption p {
    margin: 0 0 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.photo-bank__caption h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.action-list {
    display: grid;
    gap: 26px;
}

.event-filter-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 38px rgba(44, 62, 80, 0.05);
}

.event-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    flex: 0 0 auto;
    padding: 0 16px;
    border-radius: 8px;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    white-space: nowrap;
}

.event-filter-link strong {
    display: inline-grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(44, 62, 80, 0.08);
    font-size: 0.78rem;
}

.event-filter-link.is-active {
    background: #2c3e50;
    color: #fff;
    box-shadow: 0 10px 26px rgba(44, 62, 80, 0.14);
}

.event-filter-link.is-active strong {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.action-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: #fff;
    box-shadow: 0 20px 52px rgba(44, 62, 80, 0.06);
}

.action-row--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.action-row--reverse .action-photo {
    order: 2;
}

.action-photo {
    margin: 0;
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    background: #efe6da;
}

.action-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.action-content {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 12px 4px;
}

.action-kicker,
.project-kicker {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #c86b45;
}

.action-content h1,
.action-content h2,
.join-project h2 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.65rem, 3.4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.action-content p,
.join-project p {
    margin: 0;
    color: #4d5560;
    line-height: 1.85;
}

.action-facts,
.project-facts {
    display: grid;
    gap: 10px;
    margin: 0;
}

.action-facts div,
.project-facts div {
    display: grid;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.action-facts dt,
.project-facts dt {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a9a86;
}

.action-facts dd,
.project-facts dd {
    margin: 0;
    color: #2c3e50;
    line-height: 1.55;
}

.action-button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 50px;
    padding: 0 8px 0 18px;
    border-radius: 999px;
    background: var(--action-button-bg, linear-gradient(135deg, #2c3e50 0%, #3b5569 100%));
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    box-shadow: var(--action-button-shadow, 0 16px 32px rgba(44, 62, 80, 0.16));
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.action-content .action-button,
.action-content .button-secondary {
    justify-self: stretch;
}

.action-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.action-button__label {
    flex: 1;
    text-align: center;
}

.action-button:hover {
    transform: translateY(-1px);
    background: var(--action-button-bg-hover, linear-gradient(135deg, #233546 0%, #31495d 100%));
}

.action-button--join {
    --action-button-bg: linear-gradient(135deg, #d78b5f 0%, #c86b45 100%);
    --action-button-bg-hover: linear-gradient(135deg, #bf744b 0%, #aa5735 100%);
    --action-button-shadow: 0 18px 34px rgba(200, 107, 69, 0.24);
}

.action-button--gallery {
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
    --action-button-bg:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
        linear-gradient(135deg, #1f5f68 0%, #2d7a86 100%);
    --action-button-bg-hover:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
        linear-gradient(135deg, #174b53 0%, #22616c 100%);
    --action-button-shadow: 0 18px 34px rgba(31, 95, 104, 0.22);
}

.action-button__mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    width: 34px;
    height: 34px;
    padding: 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    flex: 0 0 34px;
}

.action-button__icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.action-button__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-button__balance {
    flex: 0 0 34px;
}

.action-button__mosaic span {
    border-radius: 3px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

@media (max-width: 720px) {
    .action-cta-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

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

.join-project {
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: #fff;
    box-shadow: 0 20px 52px rgba(44, 62, 80, 0.06);
}

.join-project--featured {
    border-color: rgba(200, 107, 69, 0.26);
    background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
}

.join-project__date {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.45rem);
    font-weight: 800;
    line-height: 0.98;
    color: #c86b45;
}

.instagram-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    border-radius: 8px;
    background: #2c3e50;
    color: #fff;
}

.instagram-panel h2,
.instagram-panel p {
    margin: 0;
}

.instagram-panel p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.pagination-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 16px 38px rgba(44, 62, 80, 0.05);
    color: #5e6f7f;
}

.pagination-status {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pagination-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    background: #fff;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.pagination-link--control {
    min-width: 112px;
}

.pagination-link.is-active {
    border-color: #c86b45;
    background: #c86b45;
    color: #fff;
}

.pagination-link.is-disabled {
    color: #9aa3ad;
    background: rgba(255, 255, 255, 0.54);
}

.story-frame {
    display: grid;
    gap: 34px;
}

.story-full-image {
    margin: 0;
    width: 100%;
    min-height: clamp(320px, 46vw, 560px);
    overflow: hidden;
    border-radius: 8px;
    background: #efe6da;
    box-shadow: 0 24px 60px rgba(44, 62, 80, 0.08);
}

.story-full-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.story-captioned-image {
    display: grid;
    gap: 14px;
}

.figure-caption {
    margin: 0 auto;
    max-width: 780px;
    color: #667085;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.65;
    text-align: center;
}

.figure-caption::before {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: #c86b45;
    opacity: 0.72;
}

.story-copy-panel {
    text-align: justify;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.story-copy-panel p,
.work-intro p {
    margin: 0;
    color: #4d5560;
    font-size: 1.04rem;
    line-height: 1.95;
}

.story-gotong {
    display: grid;
    gap: 18px;
    padding: 46px 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.story-gotong .section-title,
.work-intro .section-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
    max-width: 820px;
}

.work-intro {
    display: grid;
    gap: 18px;
    max-width: 860px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.impact-box {
    --impact-accent: #c86b45;
    grid-column: span 2;
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    background: #fff;
    box-shadow: 0 20px 52px rgba(44, 62, 80, 0.07);
    overflow: hidden;
    isolation: isolate;
}

.impact-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--impact-accent);
}

.impact-box__top {
    display: grid;
    gap: 10px;
}

.impact-box__kicker {
    display: inline-flex;
    width: fit-content;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--impact-accent);
}

.impact-box__stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.impact-box__value {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.15rem, 4.4vw, 3.45rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0;
    color: var(--impact-accent);
}

.impact-box__unit {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    color: #2c3e50;
    text-transform: uppercase;
}

.impact-box__secondary-stats {
    display: grid;
    gap: 10px;
}

.impact-box__mini-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.impact-box__mini-stat strong {
    flex: 0 0 auto;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--impact-accent);
}

.impact-box__mini-stat span {
    color: #5e6f7f;
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: right;
}

.impact-box h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
    color: #2c3e50;
}

.impact-box p {
    margin: 0;
    color: #5e6f7f;
    line-height: 1.72;
    font-size: 0.95rem;
}

.impact-box--sage {
    --impact-accent: #7a9a86;
}

.impact-box--gold {
    --impact-accent: #b88746;
}

.impact-box--charcoal {
    --impact-accent: #2c3e50;
}

.impact-box--wide,
.impact-box--joined {
    grid-column: span 2;
}

.impact-box--half {
    grid-column: span 3;
}

.impact-box--joined {
    grid-row: span 2;
    display: grid;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0;
    min-height: 0;
    overflow: visible;
}

.impact-box--joined::before {
    display: none;
}

.impact-box__joined-row {
    position: relative;
    display: grid;
    gap: 18px;
    align-items: start;
    padding: 22px;
}

.impact-box__joined-row + .impact-box__joined-row {
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.impact-box__joined-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--impact-accent);
}

.impact-box__joined-copy {
    display: grid;
    gap: 10px;
}

.impact-box--full {
    grid-column: 1 / -1;
    min-height: 280px;
}

.impact-box--story {
    background: #2c3e50;
    color: #fff;
    --impact-accent: #f0b072;
}

.impact-box--story .impact-box__kicker,
.impact-box--story .impact-box__value,
.impact-box--story .impact-box__unit,
.impact-box--story h3,
.impact-box--story p {
    color: #fff;
}

.impact-box--story::before {
    background: #f0b072;
}

.impact-box--story > div:last-child {
    max-width: 720px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.impact-box--full .impact-box__value {
    font-size: clamp(3rem, 7vw, 5.2rem);
}

.work-stories-section {
    display: grid;
    gap: 18px;
}

.work-story-tiles {
    display: grid;
    gap: 12px;
}

.work-section-heading {
    display: grid;
    gap: 10px;
}

.work-section-heading .section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
}

.work-section-heading p {
    margin: 0;
    color: #4d5560;
    font-size: 1.02rem;
    line-height: 1.85;
}

.work-section-kicker,
.work-story-kicker,
.mobility-callout__kicker {
    display: inline-flex;
    width: fit-content;
    color: #c86b45;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.causes-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
}

.causes-heading h2 {
    margin: 0;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.08;
}

.causes-heading h2::after {
    content: ":";
    color: #c86b45;
}

.work-story-list {
    display: grid;
    gap: 20px;
}

.work-story-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(44, 62, 80, 0.06);
}

.work-story-card--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.work-story-card--reverse .work-story-photo {
    order: 2;
}

.work-story-photo {
    margin: 0;
    min-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    background: #efe6da;
}

.work-story-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.work-story-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 18px 8px;
}

.work-story-copy h3 {
    margin: 0;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.work-story-copy p {
    margin: 0;
    color: #4d5560;
    font-size: 1rem;
    line-height: 1.85;
}

.mobility-callout {
    display: grid;
    width: 100%;
}

.mobility-callout__kicker {
    color: #c86b45;
}

.mobility-callout h2 {
    margin: 0;
    color: #2c3e50;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.mobility-callout__body {
    display: grid;
    gap: 12px;
}

.mobility-callout__body p {
    margin: 0;
    color: #4d5560;
    font-size: 1.02rem;
    line-height: 1.85;
}

.work-story-tiles .documentary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-story-tiles .story-tile {
    min-height: 250px;
    border-radius: 8px;
}

.work-story-tiles .story-tile--mission h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.5rem);
}

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

.movement-feature-row {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 28px;
}

.movement-quote-panel {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #2c3e50;
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.08);
}

.movement-quote-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 62, 80, 0.05) 20%,
        rgba(44, 62, 80, 0.82) 100%
    );
}

.movement-quote-panel img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.04);
}

.movement-quote {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    gap: 12px;
    color: #fff;
}

.movement-quote-kicker {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.movement-quote blockquote {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 2.15rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.movement-quote-person {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
}

.movement-card-list {
    display: grid;
    gap: 18px;
    align-content: stretch;
}

.movement-card-list .feature-card {
    min-height: 0;
}

.feature-card {
    background: #fff;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.05);
}

.feature-card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
}

.feature-card p,
.feature-card-body {
    margin: 0;
    color: #5e6f7f;
    line-height: 1.8;
    text-align: justify;
}

.feature-card-body p {
    margin: 0 0 10px;
}

.section-copy img,
.intro img,
.carousel-caption-body img,
.feature-card-body img,
.what-we-do-copy-block img,
.story-copy-panel img,
.work-intro img,
.work-section-heading img,
.work-story-copy img,
.mobility-callout__body img,
.action-content img,
.instagram-panel img,
.donate-panel img,
.donation-card img,
.form-panel img,
.stat-card__label img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 14px;
    object-fit: contain;
}

.feature-card-body p:last-child {
    margin-bottom: 0;
}

.feature-card-body ul,
.feature-card-body ol {
    margin: 0 0 10px 18px;
    padding-left: 18px;
}

.highlight {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(
        180deg,
        transparent 58%,
        rgba(200, 107, 69, 0.16) 58%
    );
    border-radius: 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0 0.06em;
}

.hero-image {
    width: 100%;
    min-height: 520px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fdfdfc 0%, #fff2f2 100%);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 28% 18%,
            rgba(200, 107, 69, 0.22),
            transparent 16%
        ),
        radial-gradient(
            circle at 74% 62%,
            rgba(122, 154, 134, 0.17),
            transparent 18%
        );
}

.hero-figure {
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(44, 62, 80, 0.08);
    padding: 30px;
    display: grid;
    gap: 18px;
}

.hero-figure h3 {
    margin: 0;
    font-size: 1.2rem;
}

.hero-figure p {
    margin: 0;
    color: #4e5866;
    line-height: 1.85;
}

.summary-card .hero-figure {
    position: relative;
    inset: auto;
    margin-top: auto;
    border-radius: 22px;
    background: rgba(249, 246, 240, 0.82);
    border-color: rgba(44, 62, 80, 0.1);
    padding: 24px;
    gap: 10px;
    box-shadow: none;
}

.summary-card .hero-figure h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
}

.summary-card .hero-figure p {
    line-height: 1.75;
}

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

.swatch {
    min-height: 180px;
    border-radius: 28px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    box-shadow: 0 18px 45px rgba(44, 62, 80, 0.08);
}

.swatch span {
    font-size: 0.9rem;
    opacity: 0.88;
}

.donate-panel {
    display: grid;
    gap: 24px;
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 30px 70px rgba(44, 62, 80, 0.08);
}

.donate-panel h2 {
    margin: 0;
    font-size: 2rem;
}

.donate-panel p {
    margin: 0;
    color: #4d5560;
    line-height: 1.85;
}

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

.donation-card {
    background: #f9f6f0;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.donation-card h3 {
    margin: 0 0 12px;
}

.donation-card p {
    margin: 0;
    color: #4d5560;
    line-height: 1.8;
}

.form-panel {
    display: grid;
    gap: 18px;
}

.form-fields {
    display: grid;
    gap: 18px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(44, 62, 80, 0.18);
    padding: 16px 18px;
    font: inherit;
    color: #2c3e50;
    background: #f9f6f0;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.alert {
    padding: 18px 20px;
    border-radius: 20px;
}

.alert-success {
    background: #7a9a86;
    color: #fff;
}

.alert-error {
    background: #f9e1e0;
    color: #944038;
}

.footer {
    padding-top: 38px;
    display: grid;
    gap: 20px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
    color: #6b7280;
    font-size: 0.94rem;
}

.footer .brand img {
    width: 132px;
}

.footer .nav a {
    color: #2c3e50;
}

.footer .nav a.active,
.footer .nav a:hover {
    color: #c86b45;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.zoomable-image,
[data-zoom-src] {
    cursor: zoom-in;
}

.zoomable-image:focus-visible,
[data-zoom-src]:focus-visible {
    outline: 3px solid rgba(200, 107, 69, 0.75);
    outline-offset: 4px;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(19, 31, 43, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__dialog {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 12px;
    width: min(1040px, 100%);
}

.image-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #2c3e50;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.image-lightbox__close:focus-visible {
    outline: 3px solid rgba(200, 107, 69, 0.85);
    outline-offset: 3px;
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #2c3e50;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
}

.image-lightbox__nav--prev {
    left: 12px;
}

.image-lightbox__nav--next {
    right: 12px;
}

.image-lightbox__nav:focus-visible {
    outline: 3px solid rgba(200, 107, 69, 0.85);
    outline-offset: 3px;
}

.image-lightbox__nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.image-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: min(78vh, 780px);
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.image-lightbox__caption {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    text-align: center;
}

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

    .summary-card {
        min-height: auto;
    }

    .hero-image {
        min-height: 420px;
    }

    .hero-stats,
    .stats {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .impact-grid,
    .work-story-card,
    .work-story-card--reverse,
    .mobility-callout,
    .action-row,
    .action-row--reverse,
    .join-project-grid,
    .donate-grid,
    .palette-grid,
    .documentary-grid,
    .gallery-grid,
    .photo-bank__header,
    .movement-feature-row {
        grid-template-columns: 1fr;
    }

    .photo-bank__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
    }

    .photo-bank__grid--join {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
    }

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

    .photo-bank__item--feature {
        grid-column: 1 / -1;
        grid-row: span 1;
        min-height: 290px;
    }

    .photo-bank--join h1 {
        font-size: clamp(2.15rem, 7vw, 3.35rem);
    }

    .photo-bank--join .photo-bank__intro {
        font-size: 1rem;
    }

    .photo-bank__item--join-feature {
        grid-column: 1 / -1;
        grid-row: span 1;
        min-height: 290px;
    }

    .action-row--reverse .action-photo {
        order: 0;
    }

    .work-story-card--reverse .work-story-photo {
        order: 0;
    }

    .impact-box,
    .impact-box--wide,
    .impact-box--joined,
    .impact-box--half,
    .impact-box--full {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .movement-quote-panel,
    .movement-quote-panel img {
        min-height: 380px;
    }

    .section {
        gap: 24px;
    }

    .home-section {
        padding: 40px 0;
    }

    .home-section-title {
        font-size: clamp(1.95rem, 7vw, 2.75rem);
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .multiplier-effect-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .what-we-do-image-panel {
        aspect-ratio: 5 / 4;
    }

    .what-we-do-copy-block {
        max-width: 720px;
    }

    .home-hero {
        padding: 42px 0 36px;
    }

    .story-stack,
    .work-stack,
    .action-stack,
    .join-stack {
        gap: 34px;
    }

    .story-frame {
        gap: 28px;
    }

    .livelihood-section {
        min-height: auto;
        padding: 42px 0 32px;
    }

    .livelihood-brace,
    .livelihood-copy-block::after,
    .livelihood-footer-note::before {
        display: none;
    }

    .livelihood-header-note {
        margin-inline: 0;
        text-align: left;
    }

    .livelihood-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .livelihood-title-block h2 {
        max-width: 680px;
    }

    .livelihood-copy-block {
        padding-top: 0;
        max-width: 680px;
    }

    .livelihood-image-strip {
        width: 100%;
        margin: 28px 0 0;
    }

    .livelihood-footer-note {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 18px;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 680px) {
    .page {
        padding: 18px 16px 50px;
    }

    .home-section {
        padding: 32px 0;
        gap: 20px;
    }

    .home-section .section-copy {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .photo-bank--join {
        padding-top: 0;
    }

    .photo-bank__header {
        gap: 16px;
    }

    .photo-bank__grid--join {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .photo-bank__item--join,
    .photo-bank__item--join-feature {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    .photo-bank__caption {
        padding: 48px 16px 16px;
    }

    .what-we-do-copy-block {
        font-size: 0.98rem;
        text-align: left;
    }

    .home-section--multiplier .section-copy,
    .home-section--multiplier .what-we-do-copy-block {
        font-size: 0.98rem;
        line-height: 1.8;
        text-align: left;
    }

    .what-we-do-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .home-section--achievements .hero-stats,
    .home-section--process .grid-3 {
        gap: 12px;
    }

    .home-section--achievements .stat-card,
    .home-section--process .feature-card {
        padding: 20px;
        border-radius: 18px;
    }

    .home-hero {
        padding: 36px 0 30px;
    }

    .home-hero .headline {
        font-size: clamp(2rem, 12vw, 2.75rem);
    }

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

    .livelihood-header-note {
        font-size: 1.18rem;
    }

    .livelihood-title-block h2 {
        font-size: clamp(2.1rem, 13vw, 3.05rem);
    }

    .livelihood-copy-block {
        font-size: 0.82rem;
    }

    .livelihood-image-strip {
        height: 184px;
        clip-path: polygon(
            0 7%,
            28% 2%,
            54% 8%,
            100% 4%,
            98% 94%,
            67% 100%,
            38% 94%,
            0 98%
        );
    }

    .story-full-image {
        min-height: 260px;
    }

    .action-row {
        padding: 16px;
    }

    .event-filter-bar {
        margin-inline: -2px;
    }

    .action-photo {
        min-height: 240px;
    }

    .photo-bank__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

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

    .photo-bank__item,
    .photo-bank__item--feature {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    .image-lightbox {
        padding: 16px;
    }

    .image-lightbox__nav--prev {
        left: 6px;
    }

    .image-lightbox__nav--next {
        right: 6px;
    }

    .image-lightbox__nav {
        width: 42px;
        height: 42px;
    }

    .image-lightbox__image {
        max-height: 72vh;
    }

    .join-project,
    .instagram-panel {
        padding: 22px;
    }

    .impact-box {
        min-height: 180px;
        padding: 22px;
    }

    .impact-box--joined {
        padding: 0;
    }

    .impact-box__joined-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 22px;
    }

    .impact-box__value {
        font-size: clamp(2.25rem, 14vw, 3.45rem);
    }

    .impact-box__mini-stat {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .impact-box__mini-stat span {
        text-align: left;
    }

    .work-story-card {
        padding: 16px;
    }

    .work-story-photo {
        min-height: 240px;
    }

    .work-story-copy {
        padding: 8px 2px 2px;
    }

    .movement-quote-panel,
    .movement-quote-panel img {
        min-height: 320px;
    }

    .movement-quote {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .movement-quote blockquote {
        font-size: clamp(1.2rem, 7vw, 1.7rem);
    }

    .livelihood-footer-note {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }

    .livelihood-number {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
    }

    .livelihood-footer-note p {
        font-size: clamp(1rem, 5vw, 1.35rem);
        line-height: 1.22;
    }

    .header {
        position: relative;
        z-index: 120;
    }

    .header-main {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .footer-navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        position: relative;
        z-index: 140;
    }

    .brand img {
        width: 300px;
    }

    .header-menu-toggle {
        display: inline-grid;
        position: relative;
        z-index: 140;
        margin-left: auto;
    }

    .header-stack {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 100;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        grid-template-rows: 1fr auto;
        align-content: stretch;
        justify-items: stretch;
        gap: 18px;
        padding: 112px 18px 32px;
        background: rgba(249, 246, 240, 0.97);
        backdrop-filter: blur(14px);
        overflow-y: auto;
    }

    .header-stack.is-open {
        display: grid;
    }

    .footer-nav-groups {
        width: 100%;
        justify-items: stretch;
    }

    .utility-nav,
    .nav {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .header-stack .utility-nav {
        order: 2;
        align-self: end;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .header-stack .site-search,
    .header-stack .utility-link,
    .header-stack .language-link {
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .header-stack .utility-link {
        width: 44px;
        padding: 0;
        gap: 0;
    }

    .header-stack .utility-link span {
        width: 0;
        opacity: 0;
        overflow: hidden;
    }

    .header-stack .nav {
        order: 1;
        display: grid;
        align-content: center;
        justify-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .header-stack .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 58px;
        padding: 16px 18px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .header-stack .nav a.active,
    .header-stack .nav a:hover,
    .header-stack .nav a:focus-visible {
        color: #c86b45;
        background: transparent;
    }

    .header-stack .site-search:hover,
    .header-stack .utility-link:hover,
    .header-stack .language-link:hover,
    .header-stack .language-link.is-active {
        color: #c86b45;
        border-color: transparent;
        background: transparent;
        transform: none;
    }

    .site-search.is-open {
        flex: 1 1 96px;
        width: auto;
    }

    .site-search.is-open .search-input {
        width: 100%;
        flex: 1;
    }

    .utility-link {
        flex: 0 0 auto;
    }

    .language-switcher {
        flex: 0 0 auto;
    }

    .language-link {
        flex: 0 0 auto;
    }

    .language-link span:last-child {
        display: none;
    }
}
