:root {
    --color-bg: #ffffff;
    --color-surface: #f4f7f8;
    --color-text: #111827;
    --color-muted: #5b6573;
    --color-line: #dce3e7;
    --color-accent: #006d77;
    --color-accent-strong: #0b3d46;
    --container: 1340px;
    --gutter: clamp(18px, 4vw, 40px);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

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

.screen-reader-text {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

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

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

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.5vw, 24px);
    min-height: 72px;
}

.site-header__brand,
.site-footer__brand {
    font-weight: 700;
}

.site-header__brand img {
    width: auto;
    max-height: 46px;
}

.site-header__nav {
    flex: 1 1 auto;
    min-width: 0;
}

.site-menu--header {
    justify-content: center;
    gap: clamp(2px, 0.35vw, 7px);
}

.site-menu--header > li {
    position: relative;
}

.site-header .site-menu--header a,
.site-header .site-menu__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 8px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #1a1b1b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
}

.site-menu--header a:hover,
.site-menu--header a:focus-visible,
.site-menu__dropdown-toggle:hover,
.site-menu__dropdown-toggle:focus-visible,
.site-menu__dropdown.is-current > .site-menu__dropdown-toggle,
.site-menu--header a.is-current,
.site-menu--header .current-menu-item > a,
.site-menu--header .current_page_item > a,
.site-menu--header .current-menu-ancestor > a {
    color: #1a1b1b;
}

.site-menu__dropdown-toggle::after {
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
}

.site-menu__dropdown-menu {
    position: absolute;
    z-index: 25;
    top: calc(100% + 8px);
    left: 50%;
    display: grid;
    min-width: 238px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(214, 214, 214, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(26, 27, 27, 0.12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.site-menu__dropdown-menu a {
    display: flex;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    white-space: normal;
}

.site-menu__dropdown-menu a:hover,
.site-menu__dropdown-menu a:focus-visible,
.site-menu__dropdown-menu a.is-current {
    background: rgba(228, 114, 52, 0.08);
}

.site-menu__dropdown:hover .site-menu__dropdown-menu,
.site-menu__dropdown:focus-within .site-menu__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu a {
    color: var(--color-muted);
    font-size: 14px;
}

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

.site-header .site-menu--header {
    gap: clamp(2px, 0.35vw, 7px);
}

.site-header__languages {
    flex: 0 0 auto;
}

.site-header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #ffffff;
}

.site-header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-text);
}

.section {
    padding-block: clamp(56px, 8vw, 112px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__grid,
.text-image__grid,
.single-entry__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.hero h1,
.single-entry h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
}

.text-image h2,
.section-header h2,
.contact-cta h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
}

.hero__text,
.text-image__text,
.section-header__text,
.contact-cta__text,
.single-entry__summary {
    color: var(--color-muted);
    font-size: clamp(16px, 1.5vw, 19px);
}

.hero__media,
.text-image__media,
.project-card__media,
.single-entry__media,
.project-gallery__item {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: var(--color-surface);
}

.hero__media img,
.text-image__media img,
.project-card__media img,
.single-entry__media img,
.project-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media {
    aspect-ratio: 4 / 5;
}

.text-image__media {
    aspect-ratio: 5 / 4;
}

.text-image--image-left .text-image__content {
    order: 2;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--color-accent);
    border-radius: 6px;
    font-weight: 700;
}

.button--primary {
    color: #ffffff;
    background: var(--color-accent);
}

.button--ghost {
    color: var(--color-accent-strong);
    background: transparent;
}

:where(
    .button,
    .site-header__cta,
    .site-menu-panel__cta,
    .site-menu-panel__phone,
    .site-header__toggle,
    .home-hero__arrow,
    .partners-showcase__button,
    .change-story-card__button,
    .document-card__button,
    .document-card__download,
    .documents-reports__tab,
    .contacts-page__cta-button,
    .contacts-page__contact,
    .contacts-page__social-link,
    .media-item-card__button,
    .change-story-single__video-link:not(.change-story-single__video-link--disabled),
    .project-card__button,
    .project-detail__gallery-button,
    .direction-card__button,
    .about-story__nav a,
    .site-menu a,
    .site-menu-panel__social,
    .site-footer__contact,
    .site-footer__legal a,
    .site-footer__socials a
) {
    transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-menu-panel__phone-icon,
.site-menu-panel__phone-icon::before,
.contacts-page__icon,
.contacts-page__icon::before,
.documents-reports__tab-dot,
.site-footer__contact::before {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

:where(
    .button,
    .site-header__cta,
    .site-menu-panel__cta,
    .site-header__toggle,
    .home-hero__arrow,
    .partners-showcase__button,
    .contacts-page__cta-button,
    .contacts-page__social-link,
    .change-story-single__video-link:not(.change-story-single__video-link--disabled),
    .project-detail__gallery-button:not(:disabled),
    .site-menu-panel__social,
    .site-footer__socials a
):hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 27, 27, 0.12);
}

:where(
    .button,
    .site-header__cta,
    .site-menu-panel__cta,
    .site-menu-panel__phone,
    .site-header__toggle,
    .home-hero__arrow,
    .partners-showcase__button,
    .contacts-page__cta-button,
    .contacts-page__contact,
    .contacts-page__social-link,
    .media-item-card__inner,
    .change-story-card__link,
    .project-card__link,
    .document-card__inner,
    .documents-reports__tab,
    .change-story-single__video-link,
    .project-detail__gallery-button,
    .direction-card__button,
    .about-story__nav a,
    .site-menu a,
    .site-menu-panel__social,
    .site-footer__contact,
    .site-footer__legal a,
    .site-footer__socials a
):focus-visible {
    outline: 2px solid #e47234;
    outline-offset: 4px;
}

.button--primary:hover,
.home-cta .button--primary:hover,
.partners-showcase__button:hover,
.contacts-page__cta-button--accent:hover,
.change-story-single__video-link:not(.change-story-single__video-link--disabled):hover {
    color: #ffffff;
    border-color: #cf632b;
    background: #cf632b;
}

.site-header__cta:hover,
.site-menu-panel__cta:hover,
.contacts-page__cta-button--dark:hover {
    color: #ffffff;
    border-color: #2b2b2b;
    background: #2b2b2b;
}

.button--ghost:hover,
.home-cta .button--ghost:hover,
.contacts-page__cta-button--light:hover {
    color: #ffffff;
    border-color: #777777;
    background: #777777;
}

.project-detail__gallery-button:not(:disabled):hover {
    border-color: #e47234;
    background: #e47234;
}

.project-detail__gallery-button:not(:disabled):hover::before {
    background: #ffffff;
}

.project-card__link:hover .project-card__button,
.project-card__link:focus-visible .project-card__button,
.change-story-card__link:hover .change-story-card__button,
.change-story-card__link:focus-visible .change-story-card__button,
.media-item-card__inner:hover .media-item-card__button,
.media-item-card__inner:focus-visible .media-item-card__button,
.direction-card:hover .direction-card__button,
.direction-card:focus-within .direction-card__button {
    color: #ffffff;
    border-color: #e47234;
    background: #e47234;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 27, 27, 0.1);
}

.contacts-page__social-link:hover,
.site-footer__socials a:hover {
    border-color: #cf632b;
    background-color: #cf632b;
}

.site-menu-panel__phone:hover,
.contacts-page__contact[href]:hover,
.site-footer__contact:hover,
.site-footer__nav .site-menu a:hover,
.site-footer__legal a:hover,
.documents-reports__tab:hover,
.about-story__nav a:hover {
    color: #e47234;
}

.site-menu-panel__phone:hover .site-menu-panel__phone-icon,
.contacts-page__contact[href]:hover .contacts-page__icon,
.site-footer__contact:hover::before {
    border-color: #e47234;
    background-color: #e47234;
}

.site-menu-panel__phone:hover .site-menu-panel__phone-icon::before,
.contacts-page__contact[href]:hover .contacts-page__icon::before {
    background-color: #ffffff;
}

.documents-reports__tab:hover .documents-reports__tab-dot,
.about-story__nav a:hover::before {
    background-color: #e47234;
}

.project-detail__gallery-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.section-header {
    max-width: 760px;
    margin-bottom: clamp(28px, 5vw, 56px);
}

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

.project-card {
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
}

.project-card__media {
    aspect-ratio: 4 / 3;
    border-radius: 8px 8px 0 0;
}

.project-card__body {
    padding: 20px;
}

.project-card h3,
.history-item h3 {
    margin: 0;
    font-size: 22px;
}

.project-card p,
.history-item__text {
    color: var(--color-muted);
}

.history-timeline__items {
    display: grid;
    gap: 18px;
}

.history-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    padding-block: 22px;
    border-top: 1px solid var(--color-line);
}

.history-item__year {
    margin: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.contact-cta {
    padding-block: 0 74px;
    background: transparent;
}

.contact-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    border-radius: 30px;
    background: #f9f9f9;
}

.contact-cta__content {
    display: grid;
    gap: 15px;
}

.contact-cta h2 {
    color: #1a1b1b;
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.contact-cta__text {
    max-width: 720px;
    color: #1a1b1b;
    font-size: 18px;
    line-height: 1.4;
}

.contact-cta__text p {
    margin: 0;
}

.contact-cta__actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.contact-cta .button-row {
    margin-top: 0;
}

.contact-cta .button {
    gap: 10px;
    min-height: 67px;
    padding: 0 33px;
    border: 0;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    font-size: 18px;
    font-weight: 500;
}

.contact-cta .button::after {
    display: block;
    width: 16px;
    height: 16px;
    content: "";
    background: currentColor;
    mask: url("../img/figma/contacts/link.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/contacts/link.svg") center / contain no-repeat;
}

.single-entry {
    padding-block: clamp(56px, 8vw, 112px);
}

.single-entry__meta {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-surface);
}

.single-entry__meta span {
    display: block;
    margin-bottom: 4px;
    color: var(--color-muted);
    font-size: 13px;
}

.single-entry__meta em {
    display: block;
    font-style: normal;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.project-gallery__item {
    aspect-ratio: 16 / 10;
}

.archive-list {
    padding-block: 80px;
}

.archive-list__title {
    font-size: 28px;
}

.site-footer {
    border-top: 1px solid var(--color-line);
}

.site-footer__content,
.site-footer__meta,
.site-footer__links {
    display: grid;
    gap: 10px;
}

.site-footer__text,
.site-footer__copyright {
    max-width: 360px;
    color: var(--color-muted);
    font-size: 14px;
}

.site-footer__links a {
    color: var(--color-muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-header__inner,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }

    .site-menu {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .hero__grid,
    .text-image__grid,
    .single-entry__grid,
    .contact-cta__inner {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding-block: 0 46px;
    }

    .contact-cta__inner {
        gap: 24px;
        padding: 24px;
        border-radius: 24px;
    }

    .contact-cta__actions {
        justify-items: stretch;
    }

    .contact-cta .button-row,
    .contact-cta .button {
        width: 100%;
    }

    .contact-cta .button {
        min-height: 56px;
        padding-inline: 24px;
        font-size: 16px;
    }

    .text-image--image-left .text-image__content {
        order: initial;
    }

    .projects-grid__items,
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .history-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

body {
    background: #ffffff;
    font-family: "Wix Madefor Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    border-bottom: 0;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(5px);
}

.home .site-header {
    position: absolute;
    width: 100%;
}

.site-header__inner {
    min-height: 88px;
}

@media (min-width: 1200px) {
    html .site-header {
        --header-h: 112px;
    }

    .site-header__inner.container {
        min-height: 112px;
    }

    .site-header__nav {
        display: flex;
        justify-content: center;
    }

    .site-header .site-menu--header {
        flex-wrap: wrap;
        width: 780px;
        max-width: 100%;
        column-gap: 6px;
        row-gap: 0;
        justify-content: center;
    }

    .home .home-hero {
        padding-top: 112px;
    }
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    color: #1a1b1b;
}

.site-header__brand img {
    max-width: 202px;
    max-height: 68px;
    object-fit: contain;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-header__languages {
    display: flex;
    align-items: center;
    gap: 0;
    height: 58px;
    padding: 8px 10px;
    border: 1px solid #d6d6d6;
    border-radius: 22px;
}

.site-header__languages a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 38px;
    border-radius: 13px;
    color: #1a1b1b;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-header__languages a:hover,
.site-header__languages a:focus-visible {
    background: rgba(228, 114, 52, 0.1);
    color: #e47234;
    transform: translateY(-1px);
}

.site-header__languages a.is-active {
    background: rgba(175, 175, 175, 0.1);
    font-weight: 600;
}

.site-header__cta,
.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    height: 67px;
    border-radius: 25px;
}

.site-header__cta {
    display: inline-flex;
    width: 219px;
    border: 0;
    color: #ffffff;
    background: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.site-header {
    --header-h: 88px;
}

.site-header__toggle {
    position: relative;
    width: 68px;
    border: 1px solid #d6d6d6;
    background: rgba(233, 232, 237, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.2s ease;
}

.site-header__toggle:hover {
    border-color: #e47234;
    background: rgba(228, 114, 52, 0.08);
}

.site-header__toggle .site-header__toggle-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: #1a1b1b;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.site-header__toggle-bar:nth-of-type(1) {
    transform: translate(-50%, -50%) translateY(-6px);
}

.site-header__toggle-bar:nth-of-type(2) {
    transform: translate(-50%, -50%);
}

.site-header__toggle-bar:nth-of-type(3) {
    transform: translate(-50%, -50%) translateY(6px);
}

.site-header.is-menu-open .site-header__toggle-bar:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle-bar:nth-of-type(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
}

.site-header.is-menu-open .site-header__toggle-bar:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Full-width burger dropdown */
.site-header.is-menu-open {
    z-index: 60;
    background: #ffffff;
    backdrop-filter: none;
}

/* On home the header is absolutely positioned, so pin it while the menu is open. */
.home .site-header.is-menu-open {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.site-header__inner {
    position: relative;
    z-index: 3;
}

.site-menu-panel {
    position: fixed;
    z-index: 2;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease, visibility 0s linear 0.5s;
    pointer-events: none;
}

.site-header.is-menu-open .site-menu-panel {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    transition: grid-template-rows 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
    pointer-events: auto;
}

.site-menu-panel__inner {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: 0 0 60px 60px;
    background: #ffffff;
    box-shadow: 0 14px 90px rgba(0, 0, 0, 0.06);
    overscroll-behavior: contain;
}

.site-menu-panel__inner::before {
    position: absolute;
    z-index: 0;
    top: -120px;
    right: -140px;
    width: 1100px;
    height: 760px;
    content: "";
    background-image: url("../img/figma/home/pattern-light.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.site-menu-panel__layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(56px, 9vw, 120px);
    padding-top: 50px;
    padding-bottom: 40px;
}

.site-menu-panel__cta {
    border: 0;
    display: none;
    font-family: inherit;
    cursor: pointer;
}

.site-menu--mega {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: repeat(4, auto);
    gap: 15px 110px;
    align-items: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu--mega > li:nth-child(1) { grid-column: 1; grid-row: 1; }
.site-menu--mega > li:nth-child(2) { grid-column: 1; grid-row: 2; }
.site-menu--mega > li:nth-child(3) { grid-column: 1; grid-row: 3; }
.site-menu--mega > li:nth-child(4) { grid-column: 2; grid-row: 1; }
.site-menu--mega > li:nth-child(5) { grid-column: 2; grid-row: 2; }
.site-menu--mega > li:nth-child(6) { grid-column: 2; grid-row: 3; }
.site-menu--mega > li:nth-child(7) { grid-column: 2; grid-row: 4; }
.site-menu--mega > li:nth-child(8) { grid-column: 3; grid-row: 1; }
.site-menu--mega > li:nth-child(9) { grid-column: 3; grid-row: 2; }
.site-menu--mega > li:nth-child(10) { grid-column: 3; grid-row: 3; }
.site-menu--mega > li:nth-child(11) { grid-column: 3; grid-row: 4; }

.site-menu--mega a {
    display: inline-block;
    color: #1a1b1b;
    font-size: 28px;
    line-height: 1.25;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-menu--mega a:hover {
    color: #e47234;
}

.site-menu--mega .current-menu-item > a,
.site-menu--mega .current_page_item > a,
.site-menu--mega .current-menu-ancestor > a {
    color: #e47234;
}

.site-menu-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-menu-panel__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
}

.site-menu-panel__phone-icon,
.site-menu-panel__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid #d6d6d6;
    border-radius: 25px;
    background: #ffffff;
}

.site-menu-panel__phone-icon {
    flex: 0 0 68px;
}

.site-menu-panel__phone-icon::before {
    width: 20px;
    height: 20px;
    content: "";
    background: #1a1b1b;
    mask: url("../img/figma/footer/phone.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/footer/phone.svg") center / contain no-repeat;
}

.site-menu-panel__socials {
    display: flex;
    gap: 10px;
}

.site-menu-panel__social {
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-menu-panel__social:hover,
.site-menu-panel__social:focus-visible {
    border-color: #e47234;
    background: #e47234;
    transform: translateY(-2px);
}

.site-menu-panel__social-icon {
    width: 20px;
    height: 20px;
    background: #1a1b1b;
    transition: background-color 0.2s ease;
}

.site-menu-panel__social:hover .site-menu-panel__social-icon,
.site-menu-panel__social:focus-visible .site-menu-panel__social-icon {
    background: #ffffff;
}

.site-menu-panel__social--telegram .site-menu-panel__social-icon {
    mask: url("../img/figma/footer/telegram.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/footer/telegram.svg") center / contain no-repeat;
}

.site-menu-panel__social--instagram .site-menu-panel__social-icon {
    mask: url("../img/figma/footer/instagram.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/footer/instagram.svg") center / contain no-repeat;
}

.site-menu-panel__social--facebook .site-menu-panel__social-icon {
    mask: url("../img/figma/contacts/facebook.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/contacts/facebook.svg") center / contain no-repeat;
}

.site-menu-panel__social--linkedin .site-menu-panel__social-icon {
    mask: url("../img/figma/contacts/linkedin.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/contacts/linkedin.svg") center / contain no-repeat;
}

.site-menu-panel__social--youtube .site-menu-panel__social-icon {
    mask: url("../img/figma/contacts/youtube.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/contacts/youtube.svg") center / contain no-repeat;
}

.site-menu-panel__social--tiktok .site-menu-panel__social-icon {
    mask: url("../img/figma/contacts/tiktok.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/contacts/tiktok.svg") center / contain no-repeat;
}

.site-menu-panel__social--viber .site-menu-panel__social-icon {
    mask: url("../img/figma/footer/viber.svg") center / contain no-repeat;
    -webkit-mask: url("../img/figma/footer/viber.svg") center / contain no-repeat;
}

.site-menu-backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    background: rgba(15, 15, 18, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.site-header.is-menu-open .site-menu-backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
}

@media (max-width: 1100px) {
    .site-header__nav {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }
}

html.idss-menu-lock,
html.idss-menu-lock body,
html.idss-popup-lock,
html.idss-popup-lock body {
    overflow: hidden;
}

nav[class*="__breadcrumbs"] a {
    color: inherit;
    text-decoration-color: transparent;
    text-underline-offset: 0.18em;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

nav[class*="__breadcrumbs"] a:hover,
nav[class*="__breadcrumbs"] a:focus-visible {
    color: #e47234;
    text-decoration-line: underline;
    text-decoration-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
    .site-menu-panel,
    .site-header.is-menu-open .site-menu-panel {
        transition: opacity 0.2s ease, visibility 0s;
    }
}

.page-hero-media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 30px 70px;
}

.page-hero-media::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: max(28px, calc((100vw - var(--container)) / 2 + 68px));
    width: 749px;
    height: 396px;
    content: "";
    background-image: var(--page-hero-pattern, none);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.page-hero-media__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.page-hero-media__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.page-hero-media h1 {
    width: min(740px, 100%);
    min-height: 94px;
    margin: 50px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.page-hero-media__text {
    width: min(718px, 100%);
    margin-top: 15px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.page-hero-media__text p {
    margin: 0;
}

.page-hero-media--compact {
    padding-bottom: 24px;
}

.page-hero-media--compact h1 {
    min-height: 0;
}

.page-hero-media--text-card {
    padding-bottom: 70px;
}

.page-hero-media--text-card::before {
    top: 52px;
    right: 0;
    width: 808px;
    height: 508px;
    background-position: 0 -200px;
    background-size: 1250px auto;
}

.page-hero-media--text-card h1 {
    width: min(860px, 100%);
    margin-top: 60px;
}

.page-hero-media--text-card .page-hero-media__text {
    width: min(930px, 100%);
    margin: 70px auto 0;
    padding: 50px 40px;
    border-radius: 30px;
    color: #1a1b1b;
    background: #f9f9f9;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.page-hero-media__media {
    overflow: hidden;
    width: 100%;
    height: 739px;
    margin: 34px 0 0;
    border-radius: 60px;
    background: #f9f9f9;
}

.page-hero-media__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.legal-page {
    padding: 36px 0 90px;
    color: #1a1b1b;
    background: #ffffff;
}

.legal-page__inner {
    max-width: 960px;
}

.legal-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.legal-page__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.legal-page__article {
    max-width: 820px;
    margin-top: 56px;
}

.legal-page h1 {
    margin: 0;
    color: #1a1b1b;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.legal-page__intro {
    max-width: 700px;
    margin-top: 22px;
    color: #6f7480;
    font-size: 18px;
    line-height: 1.55;
}

.legal-page__intro p,
.legal-page__body p {
    margin: 0;
}

.legal-page__content {
    margin-top: 56px;
}

.legal-page__content h2,
.legal-page__body h2 {
    margin: 48px 0 14px;
    color: #1a1b1b;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
}

.legal-page__content > h2:first-child,
.legal-page__body h2:first-child {
    margin-top: 0;
}

.legal-page__body h3 {
    margin: 34px 0 12px;
    color: #1a1b1b;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}

.legal-page__body {
    display: grid;
    gap: 16px;
    color: #454b55;
    font-size: 18px;
    line-height: 1.62;
}

.legal-page__body ul,
.legal-page__body ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.25em;
}

.legal-page__body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.partners-showcase {
    padding-bottom: 70px;
}

.partners-showcase__inner {
    width: min(1240px, calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.partners-showcase h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.6px;
    text-align: center;
}

.partners-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 30px;
}

.partners-showcase__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 208px;
    border-radius: 40px;
    background: #f6f6f6;
}

.partners-showcase__card img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners-showcase__card--unicef img {
    width: 181px;
}

.partners-showcase__card--umpd img {
    width: 242px;
}

.partners-showcase__card--right-to-protection img {
    width: 179px;
}

.partners-showcase__card--eba img {
    width: 179px;
}

.partners-showcase__card--international-alert img {
    width: 208px;
}

.partners-showcase__card--dnipro-oda img {
    width: 135px;
}

.partners-showcase__cta {
    display: grid;
    justify-items: center;
    width: min(761px, 100%);
    margin: 70px auto 0;
    text-align: center;
}

.partners-showcase__cta h2 em {
    color: #e47234;
    font-style: normal;
}

.partners-showcase__cta-text {
    width: min(731px, 100%);
    margin-top: 15px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.5;
}

.partners-showcase__cta-text p {
    margin: 0;
}

.partners-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 67px;
    margin-top: 15px;
    padding: 0 33px;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    font-size: 18px;
    font-weight: 500;
}

.partners-showcase__button::after {
    width: 16px;
    height: 16px;
    content: "";
    background: url("../img/figma/partners/link.svg") center / contain no-repeat;
}

.change-stories-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 30px;
}

.change-stories-intro::before,
.change-stories-intro::after {
    position: absolute;
    z-index: -1;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--change-stories-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.change-stories-intro::before {
    top: 64px;
    right: 101px;
    transform: rotate(21deg);
}

.change-stories-intro::after {
    bottom: -134px;
    left: -232px;
    transform: rotate(-150deg);
}

.change-stories-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.change-stories-intro__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.change-stories-intro h1 {
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.change-stories-intro__media {
    overflow: hidden;
    width: 100%;
    height: 739px;
    margin: 30px 0 0;
    border-radius: 60px;
    background: #eaecf0;
}

.change-stories-intro__media img {
    width: 107.45%;
    max-width: none;
    height: 129.91%;
    object-fit: cover;
    transform: translate(-3.7%, -18.04%);
}

.change-stories-intro__card {
    width: min(930px, 100%);
    margin: 70px auto 0;
    padding: 50px;
    border-radius: 60px;
    color: #1a1b1b;
    background: #f9f9f9;
    font-size: 24px;
    line-height: 1.4;
}

.change-stories-intro__card p {
    margin: 0;
}

.change-stories-intro__card p + p {
    margin-top: 30px;
}

.change-stories-grid {
    padding: 75px 0 69px;
}

.change-stories-grid__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.change-story-card {
    overflow: hidden;
    min-height: 488px;
    border-radius: 50px;
    background: #f9f9f9;
}

.change-story-card__link {
    display: grid;
    grid-template-rows: 278px minmax(210px, auto);
    min-height: 488px;
}

.change-story-card__media {
    position: relative;
    overflow: hidden;
    height: 278px;
    margin: 0;
    border-radius: 40px;
    background: #242424;
}

.change-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-story-card__media figcaption {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: calc(100% - 60px);
    padding: 15px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(83, 79, 68, 0.72);
    font-size: 16px;
    line-height: 1;
    backdrop-filter: blur(25px);
}

.change-story-card--hear-world-again .change-story-card__media figcaption {
    width: 176px;
    line-height: 1.25;
}

.change-story-card--teaching-vocation .change-story-card__media figcaption,
.change-story-card--evacuation .change-story-card__media figcaption {
    width: 281px;
    line-height: 1.25;
}

.change-story-card__media--dark {
    border-radius: 40px;
}

.change-story-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}

.change-story-card h2 {
    max-width: 540px;
    margin: 0;
    color: #1a1b1b;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.change-story-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    margin-top: auto;
    padding: 0 25px;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1;
}

.change-story-card__button::after {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-left: 24px;
    background-color: currentColor;
    mask-image: url("../img/ui/arrow-right.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ui/arrow-right.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.documents-reports {
    position: relative;
    isolation: isolate;
    min-height: 774px;
    overflow: clip;
    padding: 30px 0 50px;
    color: #1a1b1b;
}

.documents-reports::before {
    position: absolute;
    z-index: -1;
    top: 64px;
    right: 101px;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--documents-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(-14.65deg);
}

.documents-reports__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.documents-reports__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.documents-reports h1 {
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.documents-reports__layout {
    display: grid;
    grid-template-columns: 174px 829px;
    gap: 81px;
    align-items: start;
    margin-top: 70px;
}

.documents-reports__tabs {
    position: sticky;
    top: 118px;
    z-index: 2;
    display: grid;
    gap: 45px;
    --documents-reports-progress-height: 0px;
}

.documents-reports__tabs::before {
    position: absolute;
    top: 16px;
    bottom: 3px;
    left: 7px;
    width: 2px;
    content: "";
    background: #eeeeee;
}

.documents-reports__tabs::after {
    position: absolute;
    top: 16px;
    left: 7px;
    width: 2px;
    height: var(--documents-reports-progress-height);
    content: "";
    background: #1a1b1b;
    border-radius: 999px;
    transition: height 0.12s linear;
}

.documents-reports__tab {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #1a1b1b;
    font-size: 14px;
    line-height: 1;
}

.documents-reports__tab-dot {
    flex: 0 0 16px;
    width: 16px;
    height: 15px;
    border-radius: 6px;
    background: #eeeeee;
}

.documents-reports__tab.is-active .documents-reports__tab-dot {
    background: #1a1b1b;
}

.documents-reports__tab.is-passed .documents-reports__tab-dot {
    background: #1a1b1b;
}

.documents-reports__content {
    width: 829px;
}

.documents-reports__group {
    scroll-margin-top: 130px;
}

.documents-reports__anchor,
.document-card {
    scroll-margin-top: 130px;
}

.documents-reports__anchor {
    display: block;
}

.documents-reports__intro {
    display: flex;
    align-items: center;
    padding: 50px;
    border-radius: 30px;
    background: #f9f9f9;
    color: #1a1b1b;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.documents-reports__intro p {
    min-width: 0;
    margin: 0;
    overflow-wrap: break-word;
}

.documents-reports__group--financial .documents-reports__intro p {
    white-space: nowrap;
}

.documents-reports__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 10px;
}

.documents-reports__financial-layout {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 10px;
}

.documents-reports__financial-image {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    border-radius: 25px;
    background: #eeeeee;
}

.documents-reports__financial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.documents-reports__grid--financial {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.document-card {
    min-height: 88px;
    border-radius: 25px;
    background: #f9f9f9;
    overflow: clip;
}

.document-card__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 88px;
    padding: 20px 25px;
}

.document-card__inner--no-size {
    grid-template-columns: minmax(0, 1fr) auto;
}

.document-card__inner--with-cover {
    grid-template-columns: 132px auto minmax(0, 1fr) auto;
}

.document-card__inner--with-cover.document-card__inner--no-size {
    grid-template-columns: 132px minmax(0, 1fr) auto;
}

.document-card__cover {
    overflow: hidden;
    width: 132px;
    aspect-ratio: 16 / 10;
    margin: 0;
    border-radius: 18px;
    background: #ededed;
}

.document-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.document-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
}

.document-card__icon::before {
    display: block;
    width: 24px;
    height: 24px;
    content: "";
    background: #e47234;
    mask-image: url("../img/figma/documents/document.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/figma/documents/document.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.document-card h2 {
    max-width: 100%;
    margin: 0;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

.document-card__size {
    color: rgba(22, 22, 22, 0.5);
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.document-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: max-content;
    min-height: 67px;
    padding: 12px 33px;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.document-card__button:hover,
.document-card__button:focus-visible {
    border-color: #1a1b1b;
    background: #ffffff;
}

.document-card__button::after {
    display: block;
    width: 24px;
    height: 24px;
    content: "";
    background: currentColor;
    mask-image: url("../img/figma/documents/arrow-up.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/figma/documents/arrow-up.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.document-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #1a1b1b;
}

.document-card__download::before {
    display: block;
    width: 24px;
    height: 24px;
    content: "";
    background: currentColor;
    mask-image: url("../img/figma/documents/download.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/figma/documents/download.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.document-card__inner:hover .document-card__download,
.document-card__inner:focus-visible .document-card__download {
    color: #e47234;
}

.documents-reports__group + .documents-reports__group {
    margin-top: 70px;
}

.research-library {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: 30px 0 70px;
    color: #1a1b1b;
    font-family: "Wix Madefor Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.research-library::before,
.research-library::after {
    position: absolute;
    z-index: -1;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--research-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.research-library::before {
    top: 64px;
    right: 101px;
    transform: rotate(-14.65deg);
}

.research-library::after {
    top: 760px;
    left: -232px;
    transform: rotate(-150deg);
}

.research-library__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.research-library__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.research-library h1 {
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.research-library__layout {
    display: grid;
    grid-template-columns: 124px minmax(0, 930px);
    gap: 36px;
    align-items: start;
    margin-top: 70px;
}

.research-library__content {
    width: min(930px, 100%);
}

.research-library__group {
    scroll-margin-top: 130px;
}

.research-library__group + .research-library__group {
    margin-top: 70px;
}

.research-library__intro {
    display: flex;
    align-items: center;
    min-height: 187px;
    padding: 50px;
    border-radius: 30px;
    background: #f9f9f9;
    color: #1a1b1b;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.research-library__intro p {
    margin: 0;
}

.research-library__list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.research-card {
    display: grid;
    grid-template-columns: minmax(0, 720px) 68px;
    justify-content: space-between;
    gap: 20px;
    min-height: 294px;
    padding: 50px;
    border-radius: 30px;
    background: #f9f9f9;
}

.research-card--with-cover {
    grid-template-columns: 184px minmax(0, 720px) 68px;
}

.research-card__cover {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    border-radius: 24px;
    background: #ededed;
}

.research-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.research-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.research-card__header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
}

.research-card__icon {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    background: #1a1b1b;
    mask-image: url("../img/figma/research/book.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/figma/research/book.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.research-card h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

.research-card__description {
    margin-top: 15px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.2;
}

.research-card__description p {
    margin: 0;
}

.research-card__description p + p {
    margin-top: 12px;
}

.research-card__size {
    margin-top: auto;
    padding-top: 15px;
    color: rgba(22, 22, 22, 0.5);
    font-size: 16px;
    line-height: 1.3;
}

.research-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid #d6d6d6;
    border-radius: 25px;
    color: #1a1b1b;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.research-card__download::before {
    display: block;
    width: 19px;
    height: 19px;
    content: "";
    background: currentColor;
    mask-image: url("../img/figma/documents/download.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/figma/documents/download.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.research-card__download:hover,
.research-card__download:focus-visible,
.research-card__download:active {
    border-color: #e47234;
    color: #e47234;
    background: rgba(228, 114, 52, 0.2);
}

.contacts-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px 0 70px;
    color: #1a1b1b;
}

.contacts-page::before,
.contacts-page::after {
    position: absolute;
    z-index: -1;
    content: "";
    background-image: var(--contacts-pattern, url("../img/figma/home/pattern-light.png"));
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.contacts-page::before {
    top: -30px;
    right: 101px;
    width: 813px;
    height: 430px;
    transform: rotate(21deg);
}

.contacts-page::after {
    top: 466px;
    left: -232px;
    width: 992px;
    height: 524px;
    transform: rotate(-120deg);
}

.contacts-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.contacts-page__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.contacts-page__head {
    width: 437px;
    max-width: 100%;
    margin-top: 54px;
}

.contacts-page__top-grid {
    display: grid;
    grid-template-columns: minmax(0, 550px) minmax(320px, 540px);
    gap: 80px;
    align-items: start;
    justify-content: space-between;
    margin-top: 54px;
}

.contacts-page__top-grid .contacts-page__head {
    width: min(100%, 520px);
    margin-top: 0;
}

.contacts-page__top-contacts {
    padding-top: 84px;
}

.contacts-page__bottom-grid {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(320px, 540px);
    gap: 100px;
    align-items: start;
    justify-content: space-between;
    margin-top: 68px;
}

.contacts-page__intro-grid {
    display: grid;
    grid-template-columns: 437px minmax(96px, 140px) 324px 40px minmax(0, 380px);
    align-items: start;
    margin-top: 54px;
}

.contacts-page__main {
    grid-column: 1;
    min-width: 0;
}

.contacts-page__department {
    grid-column: 3;
    min-width: 0;
    padding-top: 50px;
}

.contacts-page__social {
    grid-column: 5;
    min-width: 0;
    padding-top: 50px;
}

.contacts-page h1,
.contacts-page h2,
.contacts-page p {
    margin: 0;
}

.contacts-page h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.contacts-page h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.contacts-page__intro {
    width: 417px;
    max-width: 100%;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.contacts-page__list {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.contacts-page__list--primary {
    margin-top: 28px;
}

.contacts-page__list--secondary {
    gap: 14px;
    margin-top: 0;
}

.contacts-page__list--department {
    margin-top: 15px;
}

.contacts-page__contact {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 68px;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.contacts-page__contact strong {
    display: block;
    font-weight: 500;
}

.contacts-page__list--department .contacts-page__contact {
    font-weight: 400;
}

.contacts-page__icon,
.contacts-page__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid #d6d6d6;
    border-radius: 25px;
    background: #ffffff;
}

.contacts-page__icon::before,
.contacts-page__social-link::before,
.contacts-page__cta-button::after {
    display: block;
    content: "";
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.contacts-page__icon::before {
    width: 20px;
    height: 20px;
    background: #1a1b1b;
}

.contacts-page__contact--phone .contacts-page__icon::before {
    mask-image: url("../img/figma/contacts/phone.svg");
    -webkit-mask-image: url("../img/figma/contacts/phone.svg");
}

.contacts-page__contact--mail .contacts-page__icon::before {
    mask-image: url("../img/figma/contacts/mail.svg");
    -webkit-mask-image: url("../img/figma/contacts/mail.svg");
}

.contacts-page__contact--location .contacts-page__icon::before {
    mask-image: url("../img/figma/contacts/location.svg");
    -webkit-mask-image: url("../img/figma/contacts/location.svg");
}

.contacts-page__social-text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.contacts-page__social-links {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.contacts-page__social-link {
    flex: 0 0 68px;
}

.contacts-page__social-link span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.contacts-page__social-link::before {
    width: 20px;
    height: 20px;
    background: #1a1b1b;
}

.contacts-page__social-link:hover::before,
.contacts-page__social-link:focus-visible::before {
    background: #ffffff;
}

.contacts-page__social-link--instagram::before {
    mask-image: url("../img/figma/contacts/instagram.svg");
    -webkit-mask-image: url("../img/figma/contacts/instagram.svg");
}

.contacts-page__social-link--facebook::before {
    mask-image: url("../img/figma/contacts/facebook.svg");
    -webkit-mask-image: url("../img/figma/contacts/facebook.svg");
}

.contacts-page__social-link--linkedin::before {
    mask-image: url("../img/figma/contacts/linkedin.svg");
    -webkit-mask-image: url("../img/figma/contacts/linkedin.svg");
}

.contacts-page__social-link--youtube::before {
    mask-image: url("../img/figma/contacts/youtube.svg");
    -webkit-mask-image: url("../img/figma/contacts/youtube.svg");
}

.contacts-page__social-link--tiktok::before {
    mask-image: url("../img/figma/contacts/tiktok.svg");
    -webkit-mask-image: url("../img/figma/contacts/tiktok.svg");
}

.contacts-page__cards-layout {
    display: grid;
    grid-template-columns: 442px 668px;
    gap: 10px;
    align-items: start;
    margin-top: 34px;
}

.contacts-page__contact-cards,
.contacts-page__cta-stack {
    display: grid;
    gap: 10px;
}

.contacts-page__panel {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 30px;
    border-radius: 30px;
    background: #f9f9f9;
}

.contacts-page__panel .contacts-page__list,
.contacts-page__panel .contacts-page__social-links {
    width: 100%;
    margin-top: 0;
}

.contacts-page__panel--main {
    min-height: 284px;
}

.contacts-page__panel--department {
    min-height: 206px;
}

.contacts-page__panel--social {
    min-height: 128px;
    margin-top: 7px;
}

.contacts-page__panel--social .contacts-page__social-links {
    justify-content: space-between;
    gap: 10px;
}

.contacts-page__cta-grid {
    display: grid;
    grid-template-columns: 667fr 668fr;
    gap: 10px;
    margin-top: 69px;
}

.contacts-page__cta-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 305px;
    padding: 30px;
    border-radius: 30px;
}

.contacts-page__cta-card--light {
    color: #1a1b1b;
    background: #f9f9f9;
}

.contacts-page__cta-card--accent {
    color: #ffffff;
    background: #e47234;
}

.contacts-page__cta-text {
    max-width: 607px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
}

.contacts-page__cta-text h2 {
    margin: 0 0 16px;
    color: inherit;
    font-size: clamp(26px, 2.2vw, 36px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
}

.contacts-page__cta-text p {
    margin: 0;
}

.contacts-page__cta-text p + p {
    margin-top: 14px;
}

.contacts-page__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 67px;
    padding: 12px 33px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.contacts-page__cta-card--light .contacts-page__cta-button,
.contacts-page__cta-button--accent {
    color: #ffffff;
    background: #e47234;
}

.contacts-page__cta-card--accent .contacts-page__cta-button,
.contacts-page__cta-button--light {
    color: #242424;
    border: 1px solid #ffffff;
    background: #ffffff;
}

.contacts-page__cta-button--dark {
    color: #ffffff;
    background: #1a1b1b;
}

.contacts-page__cta-button::after {
    width: 16px;
    height: 16px;
    background: currentColor;
    mask-image: url("../img/figma/contacts/link.svg");
    -webkit-mask-image: url("../img/figma/contacts/link.svg");
}

.contacts-page__cta-card--light .contacts-page__cta-button:hover,
.contacts-page__cta-button--accent:hover {
    color: #ffffff;
    background: #cf632b;
}

.contacts-page__cta-card--accent .contacts-page__cta-button:hover,
.contacts-page__cta-button--light:hover {
    color: #e47234;
    border-color: #ffffff;
    background: #ffffff;
}

.contacts-page__cta-button--dark:hover {
    color: #ffffff;
    background: #2b2b2b;
}

.contacts-page--cards {
    padding-bottom: 74px;
}

.contacts-page--cards::before {
    top: 6px;
    right: -340px;
    transform: rotate(-111deg);
}

.contacts-page--cards::after {
    top: 312px;
    left: -330px;
}

.contacts-page--cards .contacts-page__department,
.contacts-page--cards .contacts-page__social {
    grid-column: auto;
    padding-top: 0;
}

.contacts-page--cards .contacts-page__social {
    max-width: 540px;
}

.contacts-page--cards .contacts-page__cta-card {
    min-height: 305px;
}

.contacts-page--cards .contacts-page__cta-card:nth-child(2) {
    min-height: 305px;
}

.contacts-page--cards .contacts-page__cta-text {
    width: min(100%, 607px);
}

.contacts-page--cards .contacts-page__contact > span:last-child {
    white-space: normal;
}

.contacts-page--cards .contacts-page__contact--mail > span:last-child {
    white-space: nowrap;
}

.media-center {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px 0 70px;
    color: #1a1b1b;
}

.media-center::before,
.media-center::after {
    position: absolute;
    z-index: -1;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--media-center-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.media-center::before {
    top: 64px;
    right: 101px;
    transform: rotate(21deg);
}

.media-center::after {
    top: 936px;
    left: -232px;
    transform: rotate(-93deg);
}

.media-center__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.media-center__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.media-center h1 {
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.media-center__hero {
    overflow: hidden;
    width: 100%;
    height: 739px;
    margin: 30px 0 0;
    border-radius: 60px;
    background: #eaecf0;
}

.media-center__hero img {
    width: 107.45%;
    max-width: none;
    height: 129.91%;
    object-fit: cover;
    transform: translate(-3.7%, -18.04%);
}

.media-center__content {
    width: min(930px, 100%);
    margin: 70px auto 0;
}

.media-center__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: min(656px, 100%);
    margin: 0 auto;
}

.media-center__header h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.6px;
    text-align: center;
}

.media-center__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
    padding: 12px 15px;
    border: 1px solid #d6d6d6;
    border-radius: 25px;
}

.media-center__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 89px;
    min-height: 49px;
    padding: 10px;
    border-radius: 15px;
    color: #1a1b1b;
    font-size: 18px;
    line-height: 1;
}

.media-center__tab.is-active {
    color: #ffffff;
    background: #e47234;
    font-weight: 500;
}

.media-center__tab.is-active:hover,
.media-center__tab.is-active:focus-visible {
    background: #cf632b;
}

.media-center__intro {
    display: flex;
    align-items: center;
    min-height: 143px;
    margin-top: 30px;
    padding: 50px;
    border-radius: 40px;
    background: #f9f9f9;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.35;
}

.media-center__intro p {
    margin: 0;
}

.media-center__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 50px;
}

.media-item-card {
    overflow: hidden;
    min-height: 516px;
    border-radius: 50px;
    background: #f9f9f9;
}

.media-item-card__inner {
    display: grid;
    grid-template-rows: 278px 1fr;
    min-height: 516px;
}

.media-item-card__media {
    overflow: hidden;
    height: 278px;
    margin: 0;
    border-radius: 40px;
    background: #eaecf0;
}

.media-item-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-item-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
}

.media-item-card h3 {
    max-width: 612px;
    margin: 0;
    color: #1a1b1b;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.media-item-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 67px;
    margin-top: auto;
    padding: 12px 33px;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.media-item-card__button::after {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-left: 18px;
    background-color: currentColor;
    mask-image: url("../img/ui/arrow-right.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ui/arrow-right.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.media-single {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px 0 70px;
    color: #1a1b1b;
}

.media-single::before,
.media-single::after {
    position: absolute;
    z-index: -1;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--media-single-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.media-single::before {
    top: 64px;
    right: 101px;
    transform: rotate(21deg);
}

.media-single::after {
    top: 1302px;
    left: -232px;
    transform: rotate(-150deg);
}

.media-single__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.media-single__breadcrumbs span[aria-current="page"] {
    overflow: hidden;
    color: #1a1b1b;
    text-overflow: ellipsis;
}

.media-single h1 {
    max-width: 1342px;
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.media-single__hero {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 30px 0 0;
    border-radius: 60px;
    background: #eaecf0;
}

.media-single__hero img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.media-single__card {
    width: min(930px, 100%);
    min-height: 1444px;
    margin: 70px auto 0;
    padding: 50px;
    border-radius: 60px;
    background: #f9f9f9;
}

.media-single--post .media-single__card {
    min-height: 0;
}

.media-single__body {
    display: grid;
    gap: 26.75px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.media-single__body p {
    margin: 0;
}

.media-single__body a {
    text-decoration: underline;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.media-single__body > * {
    margin-top: 0;
    margin-bottom: 0;
}

.media-single__body :where(h2, h3, h4) {
    margin-top: 18px;
    color: #1a1b1b;
    font-weight: 500;
    line-height: 1.15;
}

.media-single__body h2 {
    font-size: 30px;
}

.media-single__body h3 {
    font-size: 24px;
}

.media-single__body :where(ul, ol) {
    display: grid;
    gap: 10px;
    padding-left: 1.25em;
}

.media-single__body :where(blockquote, .wp-block-quote) {
    padding-left: 24px;
    border-left: 3px solid #e47234;
    color: #484848;
}

.media-single__body :where(figure, .wp-block-image) {
    margin: 10px 0;
}

.media-single__body img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
}

.media-single__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.media-single__author-avatar {
    flex: 0 0 70px;
    overflow: hidden;
    width: 70px;
    height: 70px;
    margin: 0;
    border-radius: 50%;
}

.media-single__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-single__author-text {
    display: grid;
    gap: 5px;
    color: #1a1b1b;
    font-size: 18px;
    line-height: 1.4;
}

.media-single__author-text p {
    margin: 0;
}

.media-single__author-name {
    font-weight: 600;
}

.media-single__author-role {
    font-weight: 400;
}

.change-story-single {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 30px 0 70px;
    color: #1a1b1b;
}

.change-story-single::before,
.change-story-single::after {
    position: absolute;
    z-index: -1;
    width: 992px;
    height: 524px;
    content: "";
    background-image: var(--change-story-pattern, none);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 1250px auto;
    opacity: 0.05;
    pointer-events: none;
}

.change-story-single::before {
    top: 64px;
    right: 102px;
    transform: rotate(21deg);
}

.change-story-single::after {
    bottom: -146px;
    left: -232px;
    transform: rotate(-150deg);
}

.change-story-single__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.change-story-single__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.change-story-single h1 {
    margin: 54px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
    max-width: 1180px;
    overflow-wrap: break-word;
}

.change-story-single__media {
    overflow: hidden;
    width: 100%;
    height: 739px;
    margin: 30px 0 0;
    border-radius: 60px;
    background: #eaecf0;
}

.change-story-single__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-story-single__content-card {
    display: flex;
    align-items: center;
    width: min(930px, 100%);
    min-height: 645px;
    margin: 70px auto 0;
    padding: 50px;
    border-radius: 60px;
    background: #f9f9f9;
}

.change-story-single__content-card--structured {
    display: block;
    min-height: 0;
}

.change-story-single__content-card--plain {
    display: block;
    min-height: 0;
}

.change-story-single__content-title {
    max-width: 840px;
    margin: 0 auto 30px;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
}

.change-story-single__content {
    display: grid;
    gap: 28px;
    width: 100%;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.change-story-single__content p {
    margin: 0;
}

.change-story-single__content a {
    text-decoration: underline;
}

.change-story-single__video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 67px;
    margin-top: 30px;
    padding: 12px 33px;
    border-radius: 25px;
    background: #e47234;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.change-story-single__video-link img {
    width: 16px;
    height: 16px;
}

.change-story-single__video-link--disabled {
    cursor: default;
}

.change-story-single__content-card--body-only .change-story-single__video-link {
    margin-top: 23px;
}

.change-story-single__content-card--compact .change-story-single__content {
    gap: 30px;
    line-height: 1.35;
}

.change-story-single__content-card--compact .change-story-single__video-link {
    margin-top: 20px;
}

.change-story-single__video-link--inline {
    margin-top: 30px;
    margin-bottom: 30px;
}

.change-story-single__content-card--inline-video .change-story-single__content {
    line-height: 1.36;
}

.change-story-single__content-card--inline-video .change-story-single__video-link--inline {
    margin-top: 19px;
}

.projects-grid {
    padding-block: 0 78px;
}

.projects-grid .section-header {
    margin-bottom: 30px;
}

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

.project-card {
    overflow: hidden;
    min-height: 488px;
    border: 0;
    border-radius: 50px;
    background: #f9f9f9;
}

.project-card__link {
    display: grid;
    grid-template-rows: 278px 1fr;
    min-height: 488px;
}

.project-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 40px;
    background: #ededed;
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__period {
    justify-self: start;
    max-width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(159, 159, 159, 0.2);
    font-family: "Wix Madefor Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.project-card .project-card__period {
    color: #ffffff;
}

.project-card__period--media {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
}

.project-card__body {
    display: grid;
    align-content: start;
    gap: 24px;
    padding: 30px;
}

.project-card h3 {
    max-width: 540px;
    margin: 0;
    color: #1a1b1b;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.project-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 68px;
    padding: 0 25px;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1;
}

.project-card__button::after {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-left: 24px;
    background-color: currentColor;
    mask-image: url("../img/ui/arrow-right.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ui/arrow-right.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.team-grid {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 52px 70px;
    color: #1a1b1b;
}

.team-grid::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 992px;
    max-width: 82vw;
    aspect-ratio: 992 / 524;
    content: "";
    background-image: var(--team-grid-pattern, none);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    transform: translate(-12%, -2%) rotate(-27deg);
    pointer-events: none;
}

.team-grid__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.team-grid__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.team-grid__breadcrumbs + .team-grid__header {
    margin-top: 54px;
}

.team-grid__header {
    display: grid;
    gap: 30px;
    max-width: 660px;
    margin-bottom: 70px;
}

.team-grid__intro {
    max-width: 620px;
}

.team-grid h1 {
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.team-grid__text {
    max-width: 505px;
    margin-top: 15px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.team-grid__text p {
    margin: 0;
}

.team-grid__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.team-grid__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #c9c9c9;
    border-radius: 70px;
    color: #1a1b1b;
    background: transparent;
    font: inherit;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.team-grid__tab.is-active {
    border-color: #e47234;
    background: rgba(228, 114, 52, 0.2);
}

.team-grid__tab:hover,
.team-grid__tab:focus-visible {
    border-color: #e47234;
}

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

.team-card {
    overflow: hidden;
    min-height: 560px;
    border-radius: 50px;
    background: #f9f9f9;
}

.team-card.is-hidden {
    display: none;
}

.team-card__inner {
    display: grid;
    grid-template-rows: 340px 1fr;
    height: 100%;
    min-height: 560px;
}

.team-card__media {
    overflow: hidden;
    margin: 0;
    border-radius: 50px 50px 0 0;
    background: #f3f3f3;
}

.team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
}

.team-card__body {
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: stretch;
    gap: 24px;
    padding: 30px;
}

.team-card__content {
    display: grid;
    gap: 2px;
}

.team-card h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.team-card p {
    max-width: 383px;
    margin: 0;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.5;
}

.team-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: end;
    min-height: 67px;
    padding: 0 33px;
    border: 0;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover .team-card__button,
.team-card__button:focus-visible {
    background: #cf632b;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 27, 27, 0.1);
}

.team-card__button:focus-visible,
.team-grid__tab:focus-visible {
    outline: 2px solid #e47234;
    outline-offset: 4px;
}

.team-popup {
    position: fixed;
    z-index: 130;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
    pointer-events: none;
}

.team-popup.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.24s ease;
    pointer-events: auto;
}

.team-popup__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(26, 27, 27, 0.46);
    cursor: pointer;
}

.team-popup__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 309px minmax(0, 1fr);
    width: min(100%, 824px);
    height: min(444px, calc(100dvh - 48px));
    overflow: hidden;
    border-radius: 50px;
    background: #f9f9f9;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.team-popup.is-open .team-popup__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.team-popup__close {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    color: #1a1b1b;
    background: transparent;
    cursor: pointer;
}

.team-popup__close span {
    position: absolute;
    width: 20px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
}

.team-popup__close span:first-child {
    transform: rotate(45deg);
}

.team-popup__close span:last-child {
    transform: rotate(-45deg);
}

.team-popup__close:hover,
.team-popup__close:focus-visible {
    color: #e47234;
}

.team-popup__media {
    overflow: hidden;
    min-height: 0;
    height: 100%;
    margin: 0;
    background: #f3f3f3;
}

.team-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.14);
    transform-origin: center top;
}

.team-popup__content {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 22px;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 26px 36px 28px 12px;
}

.team-popup__bio-wrap {
    position: relative;
    min-height: 0;
}

.team-popup__bio-wrap::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 0;
    height: 96px;
    content: "";
    background: linear-gradient(180deg, rgba(249, 249, 249, 0) 0%, #f9f9f9 89.05%);
    pointer-events: none;
}

.team-popup__bio {
    height: 100%;
    min-height: 0;
    overflow: auto;
    padding-right: 20px;
    padding-bottom: 88px;
    scroll-padding-bottom: 88px;
    color: #1a1b1b;
    font-size: 18px;
    line-height: 1.5;
    scrollbar-color: #e47234 #eaeaea;
    scrollbar-width: thin;
}

.team-popup__bio::-webkit-scrollbar {
    width: 4px;
}

.team-popup__bio::-webkit-scrollbar-track {
    border-radius: 30px;
    background: #eaeaea;
}

.team-popup__bio::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #e47234;
}

.team-popup__bio p {
    margin: 0 0 12px;
}

.team-popup__person {
    position: relative;
    z-index: 1;
    color: #1a1b1b;
}

.team-popup__person h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.team-popup__person p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.team-single {
    padding-block: clamp(56px, 8vw, 110px);
    color: #1a1b1b;
}

.team-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: start;
}

.team-single h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
}

.team-single__role {
    max-width: 620px;
    margin: 20px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.team-single__bio {
    max-width: 720px;
    margin-top: 32px;
    color: #333333;
    font-size: 18px;
    line-height: 1.55;
}

.team-single__media {
    overflow: hidden;
    margin: 0;
    border-radius: 40px;
    background: #f3f3f3;
}

.team-single__media img {
    width: 100%;
    height: auto;
}

@media (max-width: 1100px) {
    .team-grid {
        padding-block: 44px 58px;
    }

    .team-grid__header {
        margin-bottom: 48px;
    }

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

    .team-single__grid {
        grid-template-columns: 1fr;
    }

    .team-single__media {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .team-grid {
        padding-block: 34px 44px;
    }

    .team-grid::before {
        top: 72px;
        left: 40%;
        max-width: 120vw;
        transform: translate(-10%, 0) rotate(-27deg);
    }

    .team-grid__header {
        gap: 24px;
        margin-bottom: 34px;
    }

    .team-grid__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .team-grid__breadcrumbs + .team-grid__header {
        margin-top: 32px;
    }

    .team-grid h1 {
        font-size: clamp(32px, 10vw, 40px);
    }

    .team-grid__text {
        font-size: 15px;
    }

    .team-grid__tabs {
        flex-wrap: wrap;
        width: 100%;
        overflow: visible;
        padding-bottom: 0;
        scrollbar-width: none;
    }

    .team-grid__tabs::-webkit-scrollbar {
        display: none;
    }

    .team-grid__tab {
        flex: 0 0 auto;
        min-height: 46px;
        font-size: 15px;
    }

    .team-grid__items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-card {
        min-height: 0;
        border-radius: 32px;
    }

    .team-card__inner {
        grid-template-rows: minmax(300px, 78vw) 1fr;
        min-height: 0;
    }

    .team-card__media {
        border-radius: 32px 32px 0 0;
    }

    .team-card__body {
        gap: 22px;
        padding: 24px 20px;
    }

    .team-card__button {
        min-height: 56px;
        padding-inline: 26px;
        font-size: 16px;
    }

    .team-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .team-popup__panel {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(220px, 38dvh) minmax(0, 1fr);
        width: 100%;
        height: min(820px, calc(100dvh - 24px));
        border-radius: 32px;
    }

    .team-popup__close {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        border-radius: 14px;
        background: rgba(249, 249, 249, 0.86);
    }

    .team-popup__media {
        height: auto;
    }

    .team-popup__media img {
        object-position: center 22%;
    }

    .team-popup__content {
        gap: 18px;
        padding: 22px 18px 24px;
    }

    .team-popup__bio-wrap::after {
        right: 10px;
        height: 70px;
    }

    .team-popup__bio {
        padding-right: 10px;
        padding-bottom: 64px;
        scroll-padding-bottom: 64px;
        font-size: 16px;
    }

    .team-single {
        padding-block: 42px 58px;
    }

    .team-single__media {
        border-radius: 32px;
    }
}

.project-detail {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #1a1b1b;
}

.project-detail::before,
.project-detail::after,
.project-detail__intro::before,
.project-detail__intro::after,
.project-detail__components::after {
    position: absolute;
    z-index: 0;
    width: min(1120px, 96vw);
    height: min(792px, 68vw);
    content: "";
    background-image: url("../img/figma/home/pattern-light.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.project-detail::before {
    top: -285px;
    right: -265px;
}

.project-detail::after {
    top: 1160px;
    left: -405px;
}

.project-detail__intro::before {
    top: -210px;
    right: -390px;
}

.project-detail__intro::after {
    top: 470px;
    left: -455px;
    transform: rotate(180deg);
}

.project-detail__components::after {
    top: -120px;
    right: -390px;
}

.project-detail > section {
    position: relative;
    z-index: 1;
}

.project-detail__hero {
    padding-top: 30px;
}

.project-detail__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    max-width: 100%;
    color: #9d9d9d;
    font-size: 14px;
    line-height: 1;
}

.project-detail__breadcrumbs a,
.project-detail__breadcrumbs span {
    flex: 0 0 auto;
}

.project-detail__breadcrumbs span[aria-current="page"] {
    min-width: 0;
    flex: 1 1 auto;
    color: #1a1b1b;
    overflow-wrap: anywhere;
}

.project-detail h1 {
    width: min(980px, 100%);
    margin: 50px 0 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.project-detail__hero-media {
    overflow: hidden;
    width: 100%;
    height: 739px;
    margin: 34px 0 0;
    border-radius: 60px;
    background: #f9f9f9;
}

.project-detail__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-detail__intro,
.project-detail__map,
.project-detail__goal,
.project-detail__communities,
.project-detail__components,
.project-detail__impact,
.project-detail__body-section {
    margin-top: 70px;
}

.project-detail__card,
.project-detail__narrow {
    width: min(930px, calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.project-detail__card {
    display: grid;
    gap: 22px;
    padding: 50px;
    background: #f9f9f9;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.project-detail__card p,
.project-detail__component-text p,
.project-detail__communities-text p,
.project-detail__impact p {
    margin: 0;
}

.project-detail__card--intro {
    min-height: var(--intro-min-height, 496px);
    border-radius: 60px;
}

.project-detail__map-inner {
    position: relative;
    display: block;
    width: min(1191px, calc(100% - var(--gutter) * 2));
    aspect-ratio: 1191 / 790;
    margin-inline: auto;
}

.project-detail__map img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.project-region-map {
    --project-region-map-default-fill: #f5ded2;
    --project-region-map-active-fill: #e47234;
    --project-region-map-dim-fill: #eae7e4;
    --project-region-map-label-bg: #ffffff;
    --project-region-map-label-color: #1a1b1b;
    --project-region-map-focus-color: #e47234;
    --project-region-map-label-x: 50%;
    --project-region-map-label-y: 50%;
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--project-region-map-label-color);
}

.project-region-map,
.project-region-map * {
    box-sizing: border-box;
}

.project-region-map__stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-region-map__svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.project-region-map__base {
    fill: var(--project-region-map-dim-fill);
    stroke: #ffffff;
    stroke-linejoin: round;
    stroke-width: 2px;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

.project-region-map__region {
    fill: var(--project-region-map-default-fill);
    opacity: 1;
    cursor: pointer;
    outline: none;
    transition: fill 0.18s ease;
}

.project-region-map__region--disabled {
    fill: var(--project-region-map-dim-fill);
    cursor: default;
    pointer-events: none;
}

.project-region-map__region:not(.project-region-map__region--disabled):hover,
.project-region-map__region.is-active {
    fill: var(--project-region-map-active-fill);
}

.project-region-map__region:focus-visible {
    stroke: var(--project-region-map-focus-color);
    stroke-width: 4px;
}

.project-region-map__label {
    position: absolute;
    z-index: 3;
    top: var(--project-region-map-label-y, 50%);
    left: var(--project-region-map-label-x, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(260px, calc(100% - 24px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 9px));
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.project-region-map.is-label-visible .project-region-map__label {
    opacity: 1;
    transform: translate(-50%, calc(-100% - 4px));
}

.project-region-map__label-text {
    display: block;
    max-width: min(320px, calc(100vw - 32px));
    padding: 7px 11px;
    border-radius: 8px;
    background: var(--project-region-map-label-bg);
    box-shadow: 0 8px 24px rgba(26, 27, 27, 0.12);
    color: var(--project-region-map-label-color);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: normal;
}

.project-region-map__label::after {
    display: block;
    width: 0;
    height: 0;
    margin-top: -1px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid var(--project-region-map-label-bg);
    content: "";
}

.project-detail__map-label {
    position: absolute;
    top: var(--map-label-y, 56.5%);
    left: var(--map-label-x, 29%);
    padding: 7px 11px;
    border-radius: 8px;
    color: #1a1b1b;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 27, 27, 0.12);
    font-size: 12px;
    line-height: 1;
    transform: translate(-50%, -100%);
}

.project-detail__map-label::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 10px;
    height: 10px;
    content: "";
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
}

.project-detail__card--goal {
    gap: 30px;
    min-height: 503px;
    padding: 50px 50px 44px;
    border-radius: 50px;
}

.project-detail__goal-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    color: #e47234;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.project-detail__goal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    border-radius: 50%;
    background: #ffffff;
}

.project-detail__goal-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.project-detail__goal-text {
    display: grid;
    gap: 22px;
    color: #1a1b1b;
    font-size: 24px;
    line-height: 1.4;
}

.project-detail__goal-text p,
.project-detail__body-text p {
    margin: 0;
}

.project-detail__card--communities {
    min-height: 274px;
    padding: 50px 50px 46px;
    border-radius: 50px;
}

.project-detail__card--communities h2 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    margin: 0;
    padding-left: 64px;
    color: #e47234;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.project-detail__card--communities h2::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    content: "";
    background: rgba(228, 114, 52, 0.1);
    transform: translateY(-50%);
}

.project-detail__card--communities h2::after {
    position: absolute;
    top: 50%;
    left: 22px;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 2px solid #e47234;
    border-radius: 50% 50% 50% 0;
    content: "";
    transform: translate(-50%, -50%) rotate(-45deg);
}

.project-detail__communities-text {
    color: #484848;
    font-size: 16px;
    line-height: 1.4;
}

@media (min-width: 761px) and (max-width: 1023px) {
    .project-detail__card--communities {
        min-height: 333px;
    }
}

.project-detail__components {
    margin-top: 120px;
}

.project-detail__components h2,
.project-detail__gallery h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.project-detail__component-list {
    display: grid;
    gap: 72px;
    margin-top: 50px;
}

.project-detail__component {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 25px;
    align-items: start;
    min-height: 88px;
}

.project-detail__component-icon {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.project-detail__component-text {
    color: #484848;
    font-size: 16px;
    line-height: 1.4;
}

.project-detail__component-text strong {
    color: #1a1b1b;
    font-weight: 600;
}

.project-detail__components--stacked {
    margin-top: 70px;
}

.project-detail__components--stacked .project-detail__component-list {
    gap: 30px;
    margin-top: 30px;
}

.project-detail__components--stacked .project-detail__component {
    display: block;
    min-height: 0;
}

.project-detail__components--stacked .project-detail__component-icon {
    margin-bottom: 30px;
}

.project-detail__components--stacked .project-detail__component-text {
    width: min(854px, 100%);
}

.project-detail__results {
    margin-top: 68px;
}

.project-detail__results-inner {
    width: min(1240px, calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.project-detail__results h2 {
    width: 100%;
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.project-detail__results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    height: 634px;
    margin-top: 30px;
}

.project-detail__result-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 30px;
    border-radius: 40px;
    background: #f6f6f6;
}

.project-detail__result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
}

.project-detail__result-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.project-detail__result-label {
    position: absolute;
    top: 52px;
    left: 120px;
    right: 24px;
    color: #484848;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.project-detail__result-label p {
    margin: 0;
}

.project-detail__result-label strong {
    color: #1a1b1b;
    font-weight: 600;
}

.project-detail__result-value {
    position: absolute;
    left: 30px;
    right: 24px;
    bottom: 34px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    min-width: 0;
    color: #e47234;
}

.project-detail__result-value strong {
    flex: 0 0 auto;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.project-detail__result-value span {
    min-width: 0;
    padding-bottom: 4px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.project-detail__body-section h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.project-detail__body-text {
    display: grid;
    gap: 22px;
    margin-top: 30px;
    color: #484848;
    font-size: 16px;
    line-height: 1.4;
}

.project-detail__stats-inner {
    margin-inline: auto;
}

.project-detail__stats-inner--narrow {
    width: min(930px, calc(100% - var(--gutter) * 2));
}

.project-detail__stats-inner--wide {
    width: min(1240px, calc(100% - var(--gutter) * 2));
}

.project-detail__stats-title--center {
    text-align: center;
}

.project-detail__stat-grid {
    display: grid;
    gap: 5px;
    margin-top: 30px;
}

.project-detail__stats-inner--narrow .project-detail__stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-detail__stats-inner--wide .project-detail__stat-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.project-detail__stats-inner--wide .project-detail__stat-card {
    grid-column: span 2;
}

.project-detail__stats-inner--narrow .project-detail__stat-card--wide {
    grid-column: span 2;
}

.project-detail__stats-inner--wide .project-detail__stat-card--wide {
    grid-column: span 3;
}

.project-detail__stat-card {
    min-height: 208px;
}

.project-detail__impact {
    margin-top: 100px;
}

.project-detail__card--impact {
    min-height: 190px;
    align-content: center;
    border-radius: 30px;
    font-size: 24px;
    line-height: 1.4;
}

.project-detail__gallery {
    margin-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
}

.project-detail__gallery h2 {
    width: min(930px, calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.project-detail__gallery-rail {
    --project-gallery-slide-width: min(930px, calc(100vw - var(--gutter) * 2));
    --project-gallery-side-space: max(var(--gutter), calc((100% - var(--project-gallery-slide-width)) / 2));
    display: flex;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
    margin-inline: auto;
    overflow-x: auto;
    padding-inline: var(--project-gallery-side-space);
    scroll-padding-inline: var(--project-gallery-side-space);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.project-detail__gallery-rail::-webkit-scrollbar {
    display: none;
}

.project-detail__gallery-item {
    overflow: visible;
    width: var(--project-gallery-slide-width);
    height: 459px;
    flex: 0 0 var(--project-gallery-slide-width);
    margin: 0;
    border-radius: 60px;
    background: #f9f9f9;
    scroll-snap-align: center;
}

.project-detail__gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.project-detail__gallery-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.project-detail__gallery-button {
    position: relative;
    width: 68px;
    height: 68px;
    border: 1px solid #d6d6d6;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
}

.project-detail__gallery-button:disabled {
    cursor: default;
    opacity: 0.45;
}

.project-detail__gallery-button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 12px;
    content: "";
    background: #242424;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='12' viewBox='0 0 9 12' fill='none'%3E%3Cpath d='M0.000173122 10.2112L0.00017349 1.79117C-0.000308101 1.45875 0.0933589 1.133 0.270332 0.851614C0.447306 0.570226 0.700349 0.344709 1.00017 0.201167C1.35592 0.0331348 1.75171 -0.0315843 2.14244 0.0143846C2.53318 0.0603535 2.90314 0.215162 3.21017 0.461168L8.31017 4.67117C8.5008 4.83638 8.65369 5.04065 8.75847 5.27012C8.86325 5.49959 8.91748 5.74891 8.91748 6.00117C8.91748 6.25343 8.86325 6.50274 8.75847 6.73222C8.65369 6.96169 8.5008 7.16595 8.31017 7.33117L3.21017 11.5412C2.90314 11.7872 2.53318 11.942 2.14244 11.988C1.75171 12.0339 1.35591 11.9692 1.00017 11.8012C0.700348 11.6576 0.447305 11.4321 0.270332 11.1507C0.0933585 10.8693 -0.000308498 10.5436 0.000173122 10.2112Z' fill='%23242424'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='12' viewBox='0 0 9 12' fill='none'%3E%3Cpath d='M0.000173122 10.2112L0.00017349 1.79117C-0.000308101 1.45875 0.0933589 1.133 0.270332 0.851614C0.447306 0.570226 0.700349 0.344709 1.00017 0.201167C1.35592 0.0331348 1.75171 -0.0315843 2.14244 0.0143846C2.53318 0.0603535 2.90314 0.215162 3.21017 0.461168L8.31017 4.67117C8.5008 4.83638 8.65369 5.04065 8.75847 5.27012C8.86325 5.49959 8.91748 5.74891 8.91748 6.00117C8.91748 6.25343 8.86325 6.50274 8.75847 6.73222C8.65369 6.96169 8.5008 7.16595 8.31017 7.33117L3.21017 11.5412C2.90314 11.7872 2.53318 11.942 2.14244 11.988C1.75171 12.0339 1.35591 11.9692 1.00017 11.8012C0.700348 11.6576 0.447305 11.4321 0.270332 11.1507C0.0933585 10.8693 -0.000308498 10.5436 0.000173122 10.2112Z' fill='%23242424'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: background-color 0.2s ease;
}

.project-detail__gallery-button--prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.project-detail__gallery-button--next::before {
    transform: translate(-50%, -50%);
}

.about-story {
    position: relative;
    overflow: clip;
    padding-bottom: 70px;
}

.about-story__pattern {
    position: absolute;
    top: 1213px;
    right: -510px;
    width: 557px;
    height: 1354px;
    background-image: var(--about-pattern, none);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(90deg);
    transform-origin: center;
}

.about-story__inner {
    display: grid;
    grid-template-columns: 78px minmax(0, 930px) 1fr;
    column-gap: 127px;
    align-items: start;
}

.about-story__nav {
    position: sticky;
    top: 118px;
    z-index: 2;
}

.about-story__nav ol {
    position: relative;
    display: grid;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
    --about-story-progress-height: 0px;
}

.about-story__nav ol::before,
.about-story__nav ol::after {
    position: absolute;
    left: 7px;
    width: 2px;
    content: "";
    transform: translateX(-50%);
}

.about-story__nav ol::before {
    top: 8px;
    bottom: 8px;
    background: #eeeeee;
}

.about-story__nav ol::after {
    top: 8px;
    height: var(--about-story-progress-height);
    background: #1a1b1b;
    border-radius: 999px;
    transition: height 0.12s linear;
}

.about-story__nav li {
    position: relative;
    z-index: 1;
}

.about-story__nav a {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    color: #1a1b1b;
    font-size: 14px;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.about-story__nav a::before {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: #eeeeee;
    content: "";
    transition: background-color 0.2s ease;
}

.about-story__nav li.is-active a::before {
    background: #1a1b1b;
}

.about-story__nav li.is-passed a::before {
    background: #1a1b1b;
}

.about-story__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-column: 2;
    gap: 70px;
    color: #1a1b1b;
}

.about-story__intro {
    display: grid;
    gap: 30px;
    font-size: 16px;
    line-height: 1.4;
}

.about-story__intro p,
.about-history-item__text p,
.about-focus__text p,
.about-story__quote blockquote p {
    margin: 0;
}

.about-story__quote {
    display: grid;
    gap: 30px;
    min-height: 345px;
    margin: 0;
    padding: 42px;
    border-radius: 50px;
    background: #f9f9f9;
}

.about-story__quote-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-story__quote-avatar {
    overflow: hidden;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    border-radius: 50%;
}

.about-story__quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__quote-meta {
    display: grid;
    gap: 5px;
    font-size: 16px;
    line-height: 1.4;
}

.about-story__quote-meta strong {
    font-size: 18px;
    font-weight: 600;
}

.about-story__quote-meta span {
    display: block;
}

.about-story__quote blockquote {
    max-width: 833px;
    margin: 0;
    color: #1a1b1b;
    font-size: 23px;
    line-height: 1.15;
}

.about-story__timeline {
    display: grid;
    gap: 70px;
}

.about-history-item {
    display: grid;
    scroll-margin-top: 120px;
}

.about-history-item__body {
    display: grid;
    gap: 30px;
}

.about-history-item h2,
.about-focus h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.about-history-item h2 {
    color: #e47234;
}

.about-focus h2 {
    color: #1a1b1b;
}

.about-history-item__text {
    display: grid;
    gap: 22px;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.4;
}

.about-focus {
    display: grid;
    gap: 30px;
    margin-top: 70px;
}

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

.about-focus__item {
    display: grid;
    align-content: start;
    gap: 10px;
}

.about-focus__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(228, 114, 52, 0.1);
}

.about-focus__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.about-focus__text {
    color: #484848;
    font-size: 16px;
    line-height: 1.4;
}

.about-focus__text strong {
    font-weight: 600;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 683px;
    padding-top: 88px;
    border-radius: 0 0 60px 60px;
    background: #f9f9f9;
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    content: "";
    width: min(2210px, 306vw);
    height: min(1562px, 216vw);
    background-image: var(--home-hero-pattern);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.home-hero::before {
    left: -527px;
    bottom: -986px;
    transform: rotate(-172deg);
}

.home-hero::after {
    top: -876px;
    right: -697px;
    transform: rotate(30deg);
}

.home-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 558px minmax(0, 1fr);
    min-height: 595px;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    align-self: start;
    padding-top: 98px;
    min-height: 409px;
}

.home-hero__slides {
    position: relative;
    width: 558px;
    height: 253px;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-hero h1,
.home-hero__title {
    max-width: 558px;
    margin: 0;
    color: #1a1b1b;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.home-hero__text {
    width: 450px;
    padding: 10px 10px 10px 0;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.5;
}

.home-hero__text p {
    margin: 0;
}

.home-hero__controls {
    position: absolute;
    top: 381px;
    left: 0;
    display: grid;
    gap: 10px;
    width: 517px;
}

.home-hero__progress {
    width: 100%;
}

.home-hero__progress-track {
    position: relative;
    display: block;
    height: 1px;
    overflow: hidden;
    background: #dedede;
}

.home-hero__progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    width: 0;
    background: #1a1b1b;
}

.home-hero__nav {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100px;
}

.home-hero__number {
    color: #1a1b1b;
    font-size: 12px;
    line-height: 1.5;
}

.home-hero__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 15px;
    padding: 0;
    border: 0;
    color: #1a1b1b;
    background: transparent;
    cursor: pointer;
}

.home-hero__arrow svg {
    display: block;
    width: 37px;
    height: 15px;
}

.home-hero__arrow:hover {
    color: #e47234;
    transform: translateX(4px);
    box-shadow: none;
}

.home-hero__arrow:focus-visible {
    outline: 2px solid #1a1b1b;
    outline-offset: 6px;
}

.home-hero__media-stack {
    position: absolute;
    right: -180px;
    bottom: -52px;
    z-index: 1;
    width: 1094px;
    height: 729px;
    margin: 0;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-hero__media.is-active {
    opacity: 1;
    visibility: visible;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 901px) {
    /* Keep the heads in the two landscape hero slides below the overlaying header. */
    .home-hero__media:not(:first-child) img {
        transform: translateY(24px);
    }
}

.home-section-head {
    display: grid;
    justify-items: center;
    gap: 15px;
    max-width: 650px;
    margin: 0 auto 30px;
    color: #1a1b1b;
    text-align: center;
}

.home-section-head h2,
.home-cta h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.home-section-head p,
.home-section-head div,
.home-cta__text {
    margin: 0;
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.5;
}

.home-section-head div p,
.home-cta__text p {
    margin: 0;
}

.mission-values {
    padding-block: 70px 0;
}

.mission-values__inner {
    position: relative;
    min-height: 811px;
    padding: 50px 60px;
    border-radius: 60px;
    background: #ffffff;
}

.mission-values__head {
    max-width: 423px;
    margin-bottom: 30px;
}

.mission-values__top {
    display: grid;
    grid-template-columns: 624px minmax(0, 512px);
    justify-content: space-between;
    align-items: start;
    min-height: 345px;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #c9c9c9;
    border-radius: 70px;
    color: #1a1b1b;
    font-size: 16px;
}

.mission-values__copy {
    display: grid;
    align-content: start;
    gap: 40px;
}

.mission-values__large-text {
    color: #1a1b1b;
    font-size: 24px;
    line-height: 1.4;
}

.mission-values__large-text p {
    margin: 0;
}

.mission-values__visual {
    position: relative;
    min-height: 345px;
}

.mission-values__visual--values {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 347px;
}

.mission-values__values-figure {
    width: min(480px, 100%);
    max-width: 100%;
    aspect-ratio: 414 / 176;
    margin: 0;
}

.mission-values__values-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.mission-values__value-badges {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission-values__keywords {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission-values__keyword {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(228, 114, 52, 0.35);
    border-radius: 26px;
    background: rgba(255, 245, 238, 0.94);
    box-shadow: 0 16px 34px rgba(228, 114, 52, 0.16);
    color: #e47234;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    backdrop-filter: blur(8px);
}

.mission-values__keyword--1 {
    top: 30px;
    left: 36px;
}

.mission-values__keyword--2 {
    top: 112px;
    right: 4px;
}

.mission-values__keyword--3 {
    bottom: 30px;
    left: 130px;
}

.mission-values__badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 68px;
    padding: 10px 10px 10px 15px;
    border-radius: 25px;
    background: rgba(226, 226, 226, 0.5);
    color: #1a1b1b;
    font-size: 16px;
    line-height: 1.5;
    backdrop-filter: blur(5px);
}

.mission-values .pill-label {
    border-color: rgba(228, 114, 52, 0.45);
    color: #e47234;
    background: rgba(228, 114, 52, 0.08);
}

.mission-values__badge::before {
    flex: 0 0 auto;
    width: 22px;
    height: 10px;
    content: "";
    background: url("../img/figma/home/mission/badge-dots.svg") center / contain no-repeat;
}

.mission-values__badge::after {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.mission-values__value-badge--1::after {
    background-image: url("../img/figma/home/mission/badge-leaf.svg");
}

.mission-values__value-badge--2::after {
    background-image: url("../img/figma/home/mission/badge-star.svg");
}

.mission-values__value-badge--3::after {
    background-image: url("../img/figma/home/mission/badge-reputation.svg");
}

.mission-values__value-badge {
    z-index: 1;
    min-width: 176px;
    background: rgba(239, 239, 239, 0.94);
    color: #e47234;
    font-weight: 600;
}

.mission-values__value-badge--1 {
    top: 52px;
    left: 0;
}

.mission-values__value-badge--2 {
    top: 127px;
    right: 20px;
}

.mission-values__value-badge--3 {
    right: calc(50% - 34px);
    bottom: 20px;
}

.mission-values__badge--3 {
    width: 173px;
}

.mission-values__badge--3::before {
    display: none;
}

.mission-values__badge--3::after {
    background-image: url("../img/figma/home/mission/badge-ukraine.svg");
}

.mission-values__badge strong {
    color: #e47234;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.mission-values__mission .pill-label {
    justify-content: center;
    min-width: 94px;
}

.mission-values__bottom {
    display: grid;
    grid-template-columns: 520px minmax(0, 454px);
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
    padding-left: 97px;
    padding-right: 24px;
}

.mission-values__network-wrap {
    position: relative;
    width: 520px;
    max-width: 100%;
    padding-bottom: 74px;
}

.mission-values__network {
    position: relative;
    top: -25px;
    width: 520px;
    max-width: 100%;
    aspect-ratio: 414 / 176;
    margin: 0;
}

.mission-values__network img {
    display: block;
    width: 100%;
    height: auto;
}

.mission-values__network-badge {
    top: 181px;
    left: 136px;
}

.activity-directions {
    padding-block: 70px 0;
}

.activity-directions--archive {
    padding-bottom: 70px;
}

.activity-directions__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 42px;
    color: rgba(26, 27, 27, 0.4);
    font-size: 12px;
    line-height: 1.5;
}

.activity-directions__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.activity-directions .home-section-head {
    margin-bottom: 30px;
}

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

.direction-card {
    display: grid;
    grid-template-rows: auto 67px;
    align-content: space-between;
    gap: 28px;
    min-height: 308px;
    padding: 30px;
    border-radius: 30px;
    color: #1a1b1b;
    background: #f9f9f9;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.direction-card--wide {
    grid-column: span 3;
    min-height: 305px;
}

.direction-card:not(.direction-card--wide) {
    grid-column: span 2;
}

.direction-card:hover,
.direction-card:focus-within {
    color: #ffffff;
    background: #e47234;
}

.direction-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 67px;
    padding: 0 33px;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    font-size: 18px;
    font-weight: 500;
}

.direction-card:hover .direction-card__button,
.direction-card:focus-within .direction-card__button {
    color: #1a1b1b;
    background: #ffffff;
}

.direction-card__button::after,
.button::after {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-left: 12px;
    background-color: currentColor;
    mask-image: url("../img/ui/arrow-right.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ui/arrow-right.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.direction-card__body {
    display: grid;
    align-content: start;
    gap: 20px;
}

.direction-card__summary {
    color: #484848;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.direction-card:hover .direction-card__summary,
.direction-card:focus-within .direction-card__summary {
    color: #ffffff;
}

.direction-card__summary p {
    margin: 0;
}

.direction-card__summary strong {
    font-weight: 600;
}

.direction-card__title {
    max-width: 590px;
    margin: 0;
    color: inherit;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.activity-directions--details {
    padding-block: 70px;
}

.activity-directions--details .home-section-head {
    margin-bottom: 50px;
}

.direction-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 42px;
    color: rgba(26, 27, 27, 0.4);
    font-size: 12px;
    line-height: 1.5;
}

.direction-single__breadcrumbs span[aria-current="page"] {
    color: #1a1b1b;
}

.activity-directions__details {
    display: grid;
    gap: 70px;
}

.activity-directions__group {
    display: grid;
    justify-items: end;
    gap: 30px;
}

.activity-directions__group-title {
    justify-self: start;
    max-width: 690px;
    margin: 0;
    color: #1a1b1b;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.activity-directions__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 420px));
    gap: 10px;
    width: min(100%, 1280px);
}

.direction-detail-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 206px;
    padding: 30px;
    border-radius: 30px;
    background: #f9f9f9;
}

.direction-detail-card:nth-child(n+4) {
    min-height: 268px;
}

.direction-detail-card__icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.direction-detail-card__text {
    color: #484848;
    font-size: 16px;
    line-height: 1.4;
}

.direction-detail-card__text p {
    margin: 0;
}

.direction-detail-card__text strong {
    font-weight: 600;
}

.home-cta {
    padding-block: 70px;
}

.home-cta__inner {
    display: grid;
    justify-items: center;
    gap: 15px;
    text-align: center;
}

.home-cta .button-row {
    margin-top: 15px;
}

.home-cta .button {
    min-height: 67px;
    padding: 0 33px;
    border: 0;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
}

.home-cta .button--primary {
    background: #e47234;
}

.home-cta .button--ghost {
    color: #1a1b1b;
    background: #f9f9f9;
}

.home-cta .button::after {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    mask-image: url("../img/ui/link.svg");
    -webkit-mask-image: url("../img/ui/link.svg");
}

.contact-popup {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
}

.contact-popup.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease;
    pointer-events: auto;
}

.contact-popup__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(26, 27, 27, 0.62);
    cursor: pointer;
}

.contact-popup__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: none;
    overflow: visible;
    padding: 42px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 28px 90px rgba(26, 27, 27, 0.22);
    transform: translateY(18px) scale(0.97);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-popup.is-open .contact-popup__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.contact-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #d6d6d6;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-popup__close:hover {
    border-color: #e47234;
    background: rgba(228, 114, 52, 0.08);
    transform: translateY(-1px);
}

.contact-popup__close span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #1a1b1b;
}

.contact-popup__close span:first-child {
    transform: rotate(45deg);
}

.contact-popup__close span:last-child {
    transform: rotate(-45deg);
}

.contact-popup__head {
    max-width: 430px;
    margin-bottom: 30px;
    padding-right: 52px;
}

.contact-popup__head h2 {
    margin: 0;
    color: #1a1b1b;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
}

.contact-popup__head p {
    margin: 14px 0 0;
    color: #484848;
    font-size: 18px;
    line-height: 1.45;
}

.idss-cf7,
form.idss-cf7 {
    display: grid;
    gap: 24px;
}

.idss-cf7__fields {
    display: grid;
    gap: 22px;
}

.idss-cf7__fields > p {
    display: grid;
    gap: 22px;
}

.idss-cf7 p {
    margin: 0;
}

.idss-cf7__field {
    display: grid;
    gap: 10px;
    color: #1a1b1b;
    font-size: 14px;
    font-weight: 500;
}

.idss-cf7__field > span:first-child {
    display: block;
}

.idss-cf7 .wpcf7-form-control-wrap,
.idss-cf7 .iti {
    display: block;
    width: 100%;
}

.idss-cf7 .iti {
    position: relative;
    z-index: 2;
    color: #1a1b1b;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

form.idss-cf7 .iti__selected-country,
form.idss-cf7 .iti__selected-dial-code,
form.idss-cf7 .iti__tel-input {
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.idss-cf7 input[type="text"],
.idss-cf7 input[type="tel"] {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    color: #1a1b1b;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.idss-cf7 input[type="text"]:focus,
.idss-cf7 input[type="tel"]:focus {
    border-color: #e47234;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(228, 114, 52, 0.12);
}

.idss-cf7 input.wpcf7-not-valid {
    border-color: #d63f32;
    box-shadow: 0 0 0 4px rgba(214, 63, 50, 0.08);
}

.idss-cf7 .iti__selected-country {
    padding: 0 12px 0 20px;
    border-radius: 20px 0 0 20px;
    color: inherit;
    font: inherit;
}

.idss-cf7 .iti__selected-country-primary {
    font: inherit;
}

.idss-cf7 .iti__selected-dial-code {
    color: inherit;
    font: inherit;
    line-height: 1;
}

.idss-cf7 .iti__arrow {
    margin-left: 8px;
}

.iti__dropdown-content {
    z-index: 10000;
    width: min(360px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    overflow: hidden;
    border-radius: 18px;
}

.iti__country-list {
    max-height: min(320px, calc(100dvh - 170px));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.iti__country {
    min-width: 0;
}

.iti__country-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iti__dial-code {
    flex: 0 0 auto;
}

.idss-cf7 .wpcf7-not-valid-tip,
.idss-cf7 .wpcf7-response-output {
    color: #d63f32;
    font-size: 13px;
    line-height: 1.35;
}

.idss-cf7 .wpcf7-not-valid-tip {
    margin-top: 7px;
}

.idss-cf7 .wpcf7-response-output,
form.idss-cf7 .wpcf7-response-output {
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(228, 114, 52, 0.28);
    border-radius: 18px;
    color: #1a1b1b;
    background: #fff7f2;
    box-shadow: 0 12px 30px rgba(26, 27, 27, 0.06);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

form.idss-cf7.sent .wpcf7-response-output,
form.idss-cf7[data-status="sent"] .wpcf7-response-output,
.idss-cf7.sent .wpcf7-response-output,
.idss-cf7[data-status="sent"] .wpcf7-response-output {
    color: #1f6f43;
    border-color: rgba(53, 146, 90, 0.26);
    background: #f2fbf5;
}

form.idss-cf7.invalid .wpcf7-response-output,
form.idss-cf7.unaccepted .wpcf7-response-output,
form.idss-cf7.failed .wpcf7-response-output,
form.idss-cf7.aborted .wpcf7-response-output,
form.idss-cf7[data-status="invalid"] .wpcf7-response-output,
form.idss-cf7[data-status="unaccepted"] .wpcf7-response-output,
form.idss-cf7[data-status="mail_failed"] .wpcf7-response-output,
form.idss-cf7[data-status="aborted"] .wpcf7-response-output,
.idss-cf7.invalid .wpcf7-response-output,
.idss-cf7.unaccepted .wpcf7-response-output,
.idss-cf7.failed .wpcf7-response-output,
.idss-cf7.aborted .wpcf7-response-output,
.idss-cf7[data-status="invalid"] .wpcf7-response-output,
.idss-cf7[data-status="unaccepted"] .wpcf7-response-output,
.idss-cf7[data-status="mail_failed"] .wpcf7-response-output,
.idss-cf7[data-status="aborted"] .wpcf7-response-output {
    color: #b84322;
    border-color: rgba(228, 114, 52, 0.32);
    background: #fff7f2;
}

.idss-cf7__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 67px;
    margin-top: 4px;
    padding: 0 28px;
    border: 0;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.idss-cf7__submit:hover {
    background: #cf632b;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 27, 27, 0.12);
}

.idss-cf7 .wpcf7-spinner {
    margin: 12px auto 0;
}

.idss-cf7-unavailable {
    margin: 0;
    color: #d63f32;
}

.site-footer {
    border-top: 0;
    padding-bottom: 1px;
}

.site-footer__wrap {
    display: grid;
    gap: 20px;
    padding-bottom: 20px;
}

.site-footer__panel {
    position: relative;
    height: 330px;
    min-height: 330px;
    overflow: hidden;
    padding: 20px;
    border-radius: 30px;
    background: #666666;
}

.site-footer__panel::before {
    position: absolute;
    inset: -381px -209px auto 84px;
    width: 1465px;
    height: 1022px;
    content: "";
    background-image: var(--footer-pattern, url("/wp-content/uploads/2026/06/pattern-light.png"));
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    transform: rotate(157deg);
}

.site-footer__credit,
.site-footer__contacts,
.site-footer__nav,
.site-footer__socials {
    position: relative;
    z-index: 1;
}

.site-footer__credit {
    position: absolute;
    left: 20px;
    bottom: 43px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.site-footer__credit a {
    color: inherit;
    text-decoration: none;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__contacts {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    align-content: start;
    gap: 10px;
    width: 300px;
}

.site-footer__contact {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer__contact-label {
    min-width: 0;
}

.site-footer__contact::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 25px;
    background: #777777;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    content: "";
}

.site-footer__contact--phone::before {
    background-image: url("../img/figma/footer/phone.svg");
}

.site-footer__contact--link::before {
    background-image: url("../img/figma/footer/location.svg");
}

.site-footer__nav {
    position: absolute;
    top: 45px;
    right: 20px;
    left: auto;
    width: 556px;
}

.site-footer__nav .site-menu {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: repeat(4, auto);
    gap: 15px 60px;
    align-items: start;
}

.site-footer__nav .site-menu > li {
    display: block;
}

.site-footer__nav .site-menu > li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.site-footer__nav .site-menu > li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.site-footer__nav .site-menu > li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.site-footer__nav .site-menu > li:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
}

.site-footer__nav .site-menu > li:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.site-footer__nav .site-menu > li:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.site-footer__nav .site-menu > li:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
}

.site-footer__nav .site-menu > li:nth-child(8) {
    grid-column: 3;
    grid-row: 1;
}

.site-footer__nav .site-menu > li:nth-child(9) {
    grid-column: 3;
    grid-row: 2;
}

.site-footer__nav .site-menu > li:nth-child(10) {
    grid-column: 3;
    grid-row: 3;
}

.site-footer__nav .site-menu > li:nth-child(11) {
    grid-column: 3;
    grid-row: 4;
}

.site-footer__nav .site-menu a {
    color: #ffffff;
    font-size: 16px;
}

.site-footer__socials {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 25px;
    color: #ffffff;
    background: #e47234;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    font-size: 14px;
    font-weight: 600;
}

.site-footer__socials a span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-footer__socials a::before {
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    background: #ffffff;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.site-footer__social--telegram {
    background-image: none;
}

.site-footer__social--telegram::before {
    mask-image: url("../img/figma/footer/telegram.svg");
    -webkit-mask-image: url("../img/figma/footer/telegram.svg");
}

.site-footer__social--instagram {
    background-image: none;
}

.site-footer__social--instagram::before {
    mask-image: url("../img/figma/footer/instagram.svg");
    -webkit-mask-image: url("../img/figma/footer/instagram.svg");
}

.site-footer__social--facebook {
    background-image: none;
}

.site-footer__social--facebook::before {
    mask-image: url("../img/figma/contacts/facebook.svg");
    -webkit-mask-image: url("../img/figma/contacts/facebook.svg");
}

.site-footer__social--linkedin {
    background-image: none;
}

.site-footer__social--linkedin::before {
    mask-image: url("../img/figma/contacts/linkedin.svg");
    -webkit-mask-image: url("../img/figma/contacts/linkedin.svg");
}

.site-footer__social--youtube {
    background-image: none;
}

.site-footer__social--youtube::before {
    mask-image: url("../img/figma/contacts/youtube.svg");
    -webkit-mask-image: url("../img/figma/contacts/youtube.svg");
}

.site-footer__social--tiktok {
    background-image: none;
}

.site-footer__social--tiktok::before {
    mask-image: url("../img/figma/contacts/tiktok.svg");
    -webkit-mask-image: url("../img/figma/contacts/tiktok.svg");
}

.site-footer__social--viber {
    background-image: none;
}

.site-footer__social--viber::before {
    mask-image: url("../img/figma/footer/viber.svg");
    -webkit-mask-image: url("../img/figma/footer/viber.svg");
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-inline: 20px;
    color: rgba(26, 27, 27, 0.5);
    font-size: 12px;
    line-height: 1.5;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 10px;
}

.site-footer__legal a {
    text-decoration: underline;
}

@media (max-width: 1320px) {
    .change-story-single h1 {
        white-space: normal;
    }
}

@media (max-width: 1100px) {
    .site-header__inner {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding-block: 0;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .page-hero-media__media {
        height: clamp(360px, 55vw, 650px);
    }

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

    .change-stories-intro__media {
        height: clamp(460px, 55vw, 650px);
    }

    .change-stories-intro__card {
        width: min(930px, calc(100% - 80px));
    }

    .change-stories-grid__items {
        grid-template-columns: 1fr;
    }

    .documents-reports__layout {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 32px;
    }

    .documents-reports__content {
        width: 100%;
    }

    .research-library__layout {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 32px;
    }

    .research-library__content {
        width: 100%;
    }

    .research-card {
        grid-template-columns: minmax(0, 1fr) 68px;
    }

    .research-card--with-cover {
        grid-template-columns: 150px minmax(0, 1fr) 68px;
    }

    .media-center__hero {
        height: clamp(460px, 55vw, 650px);
    }

    .media-center__content {
        width: min(930px, calc(100% - 80px));
    }

    .media-center__grid {
        grid-template-columns: 1fr;
    }

    .media-single__hero {
        height: auto;
    }

    .media-single__card {
        width: min(930px, calc(100% - 80px));
        min-height: 0;
    }

    .change-story-single__media {
        height: clamp(460px, 55vw, 650px);
    }

    .change-story-single__content-card {
        width: min(930px, calc(100% - 80px));
        min-height: 0;
    }

    .change-story-single__content-title {
        font-size: 34px;
    }

    .project-detail__hero-media {
        height: clamp(460px, 55vw, 650px);
    }

    .project-detail__components {
        margin-top: 90px;
    }

    .project-detail__impact {
        margin-top: 80px;
    }

    .project-detail__results {
        margin-top: 90px;
    }

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

    .project-detail__stats-inner--wide .project-detail__stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-detail__stats-inner--wide .project-detail__stat-card,
    .project-detail__stats-inner--narrow .project-detail__stat-card {
        grid-column: span 1;
    }

    .project-detail__stats-inner--wide .project-detail__stat-card--wide,
    .project-detail__stats-inner--narrow .project-detail__stat-card--wide {
        grid-column: span 2;
    }

    .project-detail__result-card {
        min-height: 208px;
    }

    .about-story__inner {
        grid-template-columns: 1fr;
    }

    .about-story__nav {
        display: none;
    }

    .about-story__content {
        grid-column: 1;
        width: min(100%, 930px);
        margin-inline: auto;
    }

    .about-story__pattern {
        right: -620px;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
    }

    .mission-values__top {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 30px;
    }

    .home-hero__media-stack {
        right: -260px;
        opacity: 0.7;
    }

    .mission-values__bottom {
        grid-template-columns: minmax(320px, 414px) minmax(0, 360px);
        gap: 32px;
        padding-inline: 0;
    }

    .mission-values__visual--values {
        min-height: 300px;
    }

    .activity-directions__grid {
        grid-template-columns: 1fr;
    }

    .activity-directions__group {
        justify-items: stretch;
    }

    .activity-directions__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .direction-card,
    .direction-card--wide,
    .direction-card:not(.direction-card--wide) {
        grid-column: auto;
    }

    .site-footer__panel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        height: auto;
    }

    .site-footer__credit,
    .site-footer__contacts,
    .site-footer__nav,
    .site-footer__socials {
        position: relative;
        inset: auto;
        justify-self: start;
        width: 100%;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .mission-values__visual--values {
        min-height: 0;
        aspect-ratio: 456 / 347;
        container-type: inline-size;
    }

    .mission-values__visual--values .mission-values__badge {
        gap: 2.193cqw;
        min-height: 14.912cqw;
        padding: 2.193cqw 2.193cqw 2.193cqw 3.289cqw;
        border-radius: 5.482cqw;
        font-size: 3.509cqw;
    }

    .mission-values__visual--values .mission-values__badge::before {
        width: 4.825cqw;
        height: 2.193cqw;
    }

    .mission-values__visual--values .mission-values__badge::after {
        width: 10.526cqw;
        height: 10.526cqw;
    }

    .mission-values__visual--values .mission-values__value-badge {
        min-width: 38.596cqw;
    }

    .mission-values__value-badge--1 {
        top: 11.404cqw;
        left: 0;
    }

    .mission-values__value-badge--2 {
        top: 27.851cqw;
        right: 0;
    }

    .mission-values__value-badge--3 {
        right: calc(50% - 7.456cqw);
        bottom: 4.386cqw;
    }
}

@media (min-width: 761px) and (max-width: 1024px) {
    .mission-values__top {
        display: flex;
        flex-direction: column;
        gap: 36px;
        min-height: 0;
    }

    .mission-values__copy {
        gap: 24px;
    }

    .mission-values__visual {
        width: min(100%, 456px);
        margin-inline: auto;
    }

    .mission-values__visual--values {
        min-height: 347px;
        aspect-ratio: 456 / 347;
    }

    .mission-values__bottom {
        display: flex;
        flex-direction: column-reverse;
        gap: 36px;
        margin-top: 36px;
        padding-inline: 0;
    }

    .mission-values__network-wrap {
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .site-footer__socials {
        gap: 8px;
    }

    .site-footer__socials a {
        width: clamp(48px, 14vw, 56px);
        height: clamp(48px, 14vw, 56px);
        border-radius: clamp(17px, 4vw, 20px);
    }

    .site-footer__socials a::before {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 900px) {
    .documents-reports h1,
    .research-library h1 {
        font-size: 36px;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .documents-reports__layout,
    .research-library__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .documents-reports__tabs,
    .research-library__tabs,
    .documents-reports__tabs::before,
    .documents-reports__tabs::after,
    .research-library__tabs::before,
    .research-library__tabs::after {
        display: none;
    }

    .documents-reports__content,
    .documents-reports__group,
    .documents-reports__grid,
    .research-library__content,
    .research-library__group {
        min-width: 0;
        width: 100%;
    }

    .documents-reports__group--financial .documents-reports__intro p {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .site-header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 76px;
        padding-block: 0;
    }

    .site-header__actions {
        gap: 4px;
    }

    .site-header__languages {
        height: 48px;
        padding: 6px;
        border-radius: 16px;
    }

    .site-header__languages a {
        min-width: 42px;
        height: 34px;
        font-size: 13px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .page-hero-media {
        padding-block: 24px 42px;
    }

    .page-hero-media h1 {
        min-height: 0;
        margin-top: 32px;
        font-size: 32px;
    }

    .page-hero-media--text-card {
        padding-bottom: 42px;
    }

    .page-hero-media--text-card .page-hero-media__text {
        margin-top: 32px;
        padding: 28px 20px;
        border-radius: 28px;
        font-size: 17px;
        letter-spacing: 0;
    }

    .page-hero-media__media {
        height: clamp(260px, 66vw, 360px);
        border-radius: 36px;
    }

    .legal-page {
        padding: 24px 0 56px;
    }

    .legal-page__article {
        margin-top: 38px;
    }

    .legal-page h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .legal-page__intro {
        margin-top: 18px;
        font-size: 16px;
    }

    .legal-page__content {
        margin-top: 38px;
    }

    .legal-page__content h2,
    .legal-page__body h2 {
        margin-top: 34px;
        font-size: 25px;
    }

    .legal-page__body {
        font-size: 16px;
        line-height: 1.58;
    }

    .activity-directions--details {
        padding-block: 42px;
    }

    .activity-directions__details {
        gap: 48px;
    }

    .activity-directions__group {
        gap: 24px;
    }

    .activity-directions__group-title {
        font-size: 32px;
    }

    .activity-directions__cards {
        grid-template-columns: 1fr;
    }

    .direction-detail-card,
    .direction-detail-card:nth-child(n+4) {
        min-height: 0;
        padding: 24px;
        border-radius: 24px;
    }

    .partners-showcase {
        padding-bottom: 42px;
    }

    .partners-showcase h2 {
        font-size: 32px;
        letter-spacing: 0;
    }

    .partners-showcase__grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .partners-showcase__card {
        min-height: 168px;
        border-radius: 28px;
    }

    .partners-showcase__card--unicef img {
        width: 165px;
    }

    .partners-showcase__card--umpd img {
        width: 220px;
    }

    .partners-showcase__card--right-to-protection img {
        width: 166px;
    }

    .partners-showcase__card--eba img {
        width: 160px;
    }

    .partners-showcase__card--international-alert img {
        width: 190px;
    }

    .partners-showcase__card--dnipro-oda img {
        width: 124px;
    }

    .partners-showcase__cta {
        margin-top: 42px;
    }

    .partners-showcase__cta-text {
        font-size: 15px;
    }

    .partners-showcase__button {
        min-height: 56px;
        border-radius: 18px;
        font-size: 16px;
    }

    .change-stories-intro {
        padding-top: 24px;
    }

    .change-stories-intro::before {
        top: 150px;
        right: -580px;
    }

    .change-stories-intro::after {
        display: none;
    }

    .change-stories-intro h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
    }

    .change-stories-intro__media {
        height: clamp(320px, 90vw, 500px);
        margin-top: 24px;
        border-radius: 32px;
    }

    .change-stories-intro__card {
        width: 100%;
        margin-top: 32px;
        padding: 28px 20px;
        border-radius: 28px;
        font-size: 17px;
    }

    .change-stories-intro__card p + p {
        margin-top: 20px;
    }

    .change-stories-grid {
        padding: 42px 0;
    }

    .change-stories-grid__items {
        gap: 12px;
    }

    .documents-reports {
        min-height: 0;
        padding: 24px 0 42px;
    }

    .documents-reports::before {
        top: 150px;
        right: -580px;
    }

    .documents-reports__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .documents-reports h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
    }

    .documents-reports__layout {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 32px;
    }

    .documents-reports__content,
    .documents-reports__group,
    .documents-reports__grid {
        min-width: 0;
    }

    .documents-reports__tabs {
        display: none;
    }

    .documents-reports__tabs::before,
    .documents-reports__tabs::after {
        display: none;
    }

    .documents-reports__intro {
        display: block;
        min-height: 0;
        padding: 28px 20px;
        border-radius: 28px;
        font-size: 17px;
        letter-spacing: 0;
    }

    /* The desktop layout keeps this on one line; on phones it must wrap. */
    .documents-reports__group--financial .documents-reports__intro p {
        white-space: normal;
    }

    .documents-reports__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .documents-reports__financial-layout {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .documents-reports__grid--financial {
        margin-top: 0;
    }

    .document-card {
        min-height: 0;
        border-radius: 24px;
    }

    .document-card__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 0;
        padding: 20px;
    }

    .document-card__inner--with-cover,
    .document-card__inner--with-cover.document-card__inner--no-size {
        grid-template-columns: 1fr;
    }

    .document-card__cover {
        width: 100%;
    }

    .document-card__size {
        grid-column: 1 / -1;
        font-size: 14px;
    }

    .document-card h2 {
        font-size: 17px;
    }

    .documents-reports__group + .documents-reports__group {
        margin-top: 42px;
    }

    .research-library {
        padding: 24px 0 42px;
    }

    .research-library::before {
        top: 150px;
        right: -580px;
    }

    .research-library::after {
        display: none;
    }

    .research-library__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .research-library h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
    }

    .research-library__layout {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 32px;
    }

    .research-library__tabs {
        display: none;
    }

    .research-library__tabs::before,
    .research-library__tabs::after {
        display: none;
    }

    .research-library__content,
    .research-library__group {
        min-width: 0;
    }

    .research-library__intro {
        display: block;
        min-height: 0;
        padding: 28px 20px;
        border-radius: 28px;
        font-size: 17px;
        letter-spacing: 0;
    }

    .research-library__group + .research-library__group {
        margin-top: 42px;
    }

    .research-library__list {
        gap: 12px;
        margin-top: 12px;
    }

    .research-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        padding: 24px 20px;
        border-radius: 28px;
    }

    .research-card__cover {
        border-radius: 20px;
    }

    .research-card__header {
        gap: 12px;
    }

    .research-card h2 {
        font-size: 17px;
    }

    .research-card__description {
        font-size: 15px;
    }

    .research-card__download {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .media-center {
        padding: 24px 0 42px;
    }

    .media-center::before {
        top: 150px;
        right: -580px;
    }

    .media-center::after {
        display: none;
    }

    .media-center__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .media-center h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
    }

    .media-center__hero {
        height: clamp(320px, 90vw, 500px);
        margin-top: 24px;
        border-radius: 32px;
    }

    .media-center__content {
        width: 100%;
        margin-top: 32px;
    }

    .media-center__header {
        gap: 14px;
    }

    .media-center__header h2 {
        font-size: 32px;
        letter-spacing: 0;
    }

    .media-center__tabs {
        height: 58px;
        padding: 8px 10px;
        border-radius: 18px;
    }

    .media-center__tab {
        min-width: 74px;
        min-height: 40px;
        border-radius: 12px;
        font-size: 15px;
    }

    .media-center__intro {
        min-height: 0;
        margin-top: 24px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .media-center__grid {
        gap: 12px;
        margin-top: 32px;
    }

    .media-item-card {
        min-height: 0;
        border-radius: 32px;
    }

    .media-item-card__inner {
        grid-template-rows: 220px 1fr;
        min-height: 0;
    }

    .media-item-card__media {
        height: 220px;
        border-radius: 28px;
    }

    .media-item-card__body {
        min-height: 220px;
        padding: 24px 20px;
    }

    .media-item-card h3 {
        font-size: 20px;
    }

    .media-item-card__button {
        min-height: 58px;
        padding: 12px 24px;
        font-size: 16px;
    }

    .media-single {
        padding: 24px 0 42px;
    }

    .media-single::before {
        top: 150px;
        right: -580px;
    }

    .media-single::after {
        display: none;
    }

    .media-single__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
        white-space: normal;
    }

    .media-single__breadcrumbs span[aria-current="page"] {
        overflow: visible;
        text-overflow: clip;
    }

    .media-single h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
    }

    .media-single__hero {
        height: auto;
        margin-top: 24px;
        border-radius: 32px;
    }

    .media-single__card {
        width: 100%;
        margin-top: 32px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .media-single__body {
        gap: 20px;
    }

    .media-single__body h2 {
        font-size: 22px;
    }

    .media-single__body h3 {
        font-size: 19px;
    }

    .media-single__author {
        align-items: flex-start;
        margin-top: 24px;
    }

    .media-single__author-text {
        font-size: 16px;
    }

    .change-story-card {
        min-height: 0;
        border-radius: 32px;
    }

    .change-story-card__link {
        grid-template-rows: 220px 1fr;
        min-height: 0;
    }

    .change-story-card__media {
        height: 220px;
        border-radius: 28px;
    }

    .change-story-card__media figcaption {
        top: 18px;
        left: 18px;
        max-width: calc(100% - 36px);
        padding: 12px;
        font-size: 13px;
        line-height: 1.2;
    }

    .change-story-card__body {
        min-height: 180px;
        padding: 24px 20px;
    }

    .change-story-card h2 {
        font-size: 22px;
    }

    .change-story-card__button {
        min-height: 56px;
        padding-inline: 20px;
    }

    .change-story-card__button::after {
        margin-left: 24px;
    }

    .change-story-single {
        padding: 24px 0 42px;
    }

    .change-story-single::before {
        top: 150px;
        right: -580px;
    }

    .change-story-single::after {
        display: none;
    }

    .change-story-single__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .change-story-single h1 {
        margin-top: 32px;
        font-size: 32px;
        letter-spacing: 0;
        white-space: normal;
    }

    .change-story-single__media {
        height: clamp(320px, 90vw, 500px);
        margin-top: 24px;
        border-radius: 32px;
    }

    .change-story-single__content-card {
        width: 100%;
        margin-top: 32px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .change-story-single__content-title {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 1.15;
        text-align: left;
    }

    .change-story-single__content {
        gap: 20px;
    }

    .change-story-single__video-link {
        min-height: 58px;
        margin-top: 24px;
        padding-inline: 24px;
        font-size: 16px;
    }

    .project-detail__hero {
        padding-top: 24px;
    }

    .project-detail::before,
    .project-detail::after,
    .project-detail__intro::before,
    .project-detail__intro::after,
    .project-detail__components::after {
        display: none;
    }

    .project-detail__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.25;
    }

    .project-detail h1 {
        margin-top: 32px;
        font-size: 32px;
    }

    .project-detail__hero-media {
        height: clamp(260px, 66vw, 380px);
        margin-top: 28px;
        border-radius: 36px;
    }

    .project-detail__intro,
    .project-detail__map,
    .project-detail__goal,
    .project-detail__communities,
    .project-detail__components,
    .project-detail__impact,
    .project-detail__body-section {
        margin-top: 42px;
    }

    .project-detail__card {
        gap: 18px;
        padding: 28px 20px;
        border-radius: 32px;
    }

    .project-detail__card--intro,
    .project-detail__card--goal,
    .project-detail__card--communities,
    .project-detail__card--impact {
        min-height: 0;
        border-radius: 32px;
    }

    .project-detail__card--goal {
        gap: 20px;
    }

    .project-detail__goal-heading {
        gap: 12px;
        font-size: 28px;
    }

    .project-detail__goal-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .project-detail__goal-text {
        font-size: 17px;
    }

    .project-detail__card--communities h2 {
        min-height: 0;
        padding-left: 0;
        font-size: 22px;
    }

    .project-detail__card--communities h2::before,
    .project-detail__card--communities h2::after {
        display: none;
    }

    .project-detail__components h2,
    .project-detail__gallery h2,
    .project-detail__results h2,
    .project-detail__body-section h2 {
        font-size: 32px;
    }

    .project-detail__body-text {
        margin-top: 22px;
    }

    .project-detail__component-list {
        gap: 28px;
        margin-top: 30px;
    }

    .project-detail__component {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 16px;
        min-height: 0;
    }

    .project-detail__component-icon {
        width: 36px;
        height: 36px;
    }

    .project-detail__components--stacked .project-detail__component-icon {
        margin-bottom: 16px;
    }

    .project-detail__results {
        margin-top: 42px;
    }

    .project-detail__results-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .project-detail__stat-grid,
    .project-detail__stats-inner--narrow .project-detail__stat-grid,
    .project-detail__stats-inner--wide .project-detail__stat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .project-detail__stats-inner--wide .project-detail__stat-card,
    .project-detail__stats-inner--narrow .project-detail__stat-card,
    .project-detail__stats-inner--wide .project-detail__stat-card--wide,
    .project-detail__stats-inner--narrow .project-detail__stat-card--wide {
        grid-column: auto;
    }

    .project-detail__result-card {
        min-height: 188px;
        padding: 24px 20px;
        border-radius: 28px;
    }

    .project-detail__result-icon {
        width: 56px;
        height: 56px;
    }

    .project-detail__result-icon img {
        width: 22px;
        height: 22px;
    }

    .project-detail__result-label {
        top: 26px;
        left: 92px;
        right: 20px;
        font-size: 15px;
    }

    .project-detail__result-value {
        left: 20px;
        right: 20px;
        bottom: 24px;
        gap: 10px;
    }

    .project-detail__result-value strong {
        font-size: 34px;
    }

    .project-detail__result-value span {
        font-size: 20px;
    }

    .project-detail__card--impact {
        font-size: 18px;
    }

    .project-detail__gallery {
        margin-top: 42px;
        padding-bottom: 42px;
    }

    .project-detail__gallery-item {
        height: clamp(260px, 72vw, 360px);
        border-radius: 36px;
    }

    .project-detail__gallery-button {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .about-story {
        padding-bottom: 42px;
    }

    .about-story__content,
    .about-story__timeline {
        gap: 40px;
    }

    .about-story__intro {
        gap: 18px;
    }

    .about-history-item__body {
        gap: 16px;
    }

    .about-story__quote {
        min-height: 0;
        gap: 20px;
        padding: 28px 20px;
        border-radius: 32px;
    }

    .about-story__quote-person {
        align-items: flex-start;
    }

    .about-story__quote blockquote {
        font-size: 18px;
    }

    .about-history-item h2,
    .about-focus h2 {
        font-size: 32px;
    }

    .about-history-item__text {
        gap: 18px;
    }

    .about-focus {
        gap: 20px;
        margin-top: 48px;
    }

    .about-focus__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-grid {
        padding-bottom: 42px;
    }

    .projects-grid__items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .project-card,
    .project-card__link {
        min-height: 0;
    }

    .project-card {
        border-radius: 32px;
    }

    .project-card__link {
        grid-template-rows: 220px 1fr;
    }

    .project-card__media {
        border-radius: 28px;
    }

    .project-card__period--media {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }

    .project-card__body {
        gap: 20px;
        padding: 24px 20px;
    }

    .project-card h3 {
        font-size: 22px;
    }

    .project-card__button {
        min-height: 56px;
        padding-inline: 20px;
    }

    .project-card__button::after {
        margin-left: 24px;
    }

    .home-hero {
        min-height: 790px;
        padding-top: 76px;
        border-radius: 0 0 36px 36px;
    }

    .home-hero__content {
        padding-top: 42px;
        min-height: 390px;
    }

    .home-hero h1,
    .home-hero__title,
    .home-section-head h2,
    .home-cta h2 {
        font-size: 32px;
    }

    .home-hero__slides {
        width: 100%;
        height: 288px;
    }

    .home-hero__text,
    .home-hero__controls,
    .home-hero__progress {
        width: 100%;
    }

    .home-hero__controls {
        top: 650px;
    }

    .home-hero__media-stack {
        right: -170px;
        bottom: -48px;
        width: 620px;
        height: 400px;
        opacity: 0.28;
    }

    .mission-values {
        padding-top: 36px;
    }

    .mission-values__inner {
        min-height: 0;
        padding: 32px 20px;
        border-radius: 36px;
    }

    /* Tighten the generous desktop spacing inside the mission block. */
    .mission-values__head {
        margin-bottom: 20px;
    }

    .mission-values__top {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
    }

    .mission-values__copy {
        gap: 16px;
    }

    .mission-values__bottom {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 24px;
        padding-inline: 0;
    }

    .direction-card__title {
        font-size: 22px;
    }

    .mission-values__large-text {
        font-size: 17px;
    }

    .mission-values__visual {
        width: min(100%, 360px);
        min-height: 250px;
        margin-inline: auto;
    }

    .mission-values__visual--values {
        min-height: 0;
        aspect-ratio: 456 / 347;
        container-type: inline-size;
    }

    .mission-values__value-badges {
        z-index: 2;
    }

    .mission-values__network-wrap {
        width: min(100%, 360px);
        margin-inline: auto;
        padding-bottom: 52px;
    }

    .mission-values__network {
        top: 0;
        width: 100%;
    }

    .mission-values__network-badge {
        top: auto;
        bottom: 0;
        left: 50%;
        width: 158px;
        min-height: 58px;
        border-radius: 21px;
        transform: translateX(-50%);
    }

    .mission-values__badge {
        min-height: 58px;
        padding: 8px 8px 8px 12px;
        border-radius: 21px;
        font-size: 14px;
    }

    .mission-values__badge::before {
        width: 18px;
        height: 8px;
    }

    .mission-values__badge::after {
        width: 42px;
        height: 42px;
    }

    .mission-values__value-badge {
        min-width: 144px;
    }

    .mission-values__visual--values .mission-values__badge {
        gap: 2.193cqw;
        min-height: 14.912cqw;
        padding: 2.193cqw 2.193cqw 2.193cqw 3.289cqw;
        border-radius: 5.482cqw;
        font-size: 3.509cqw;
    }

    .mission-values__visual--values .mission-values__badge::before {
        width: 4.825cqw;
        height: 2.193cqw;
    }

    .mission-values__visual--values .mission-values__badge::after {
        width: 10.526cqw;
        height: 10.526cqw;
    }

    .mission-values__visual--values .mission-values__value-badge {
        min-width: 38.596cqw;
    }

    .mission-values__value-badge--1 {
        top: 11.404cqw;
        left: 0;
    }

    .mission-values__value-badge--2 {
        top: 27.851cqw;
        right: 0;
    }

    .mission-values__value-badge--3 {
        right: calc(50% - 7.456cqw);
        bottom: 4.386cqw;
    }

    .activity-directions,
    .home-cta {
        padding-block: 36px;
    }

    .direction-card {
        min-height: 280px;
        padding: 24px;
        border-radius: 24px;
    }

    .direction-card__button,
    .home-cta .button {
        min-height: 56px;
        padding-inline: 24px;
        font-size: 16px;
    }

    .home-cta .button-row {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .home-cta .button {
        width: 100%;
        min-width: 0;
        padding-inline: 20px;
        white-space: nowrap;
        font-size: 16px;
    }

    .home-cta .button::after {
        margin-left: 10px;
    }

    .site-footer__panel {
        min-height: 0;
        padding: 20px;
        border-radius: 24px;
    }

    .site-footer__contacts {
        order: 1;
    }

    .site-footer__nav {
        order: 2;
    }

    .site-footer__socials {
        order: 3;
    }

    .site-footer__credit {
        order: 4;
    }

    .site-footer__nav .site-menu {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: none;
        gap: 14px;
    }

    .site-footer__bottom,
    .site-footer__legal {
        flex-direction: column;
    }
}

@media (max-width: 1279px) {
    .home-hero__media-stack {
        right: -100px;
        bottom: -10px;
        width: 720px;
        height: 480px;
    }

    .contacts-page__intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 48px;
    }

    .contacts-page__top-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
        gap: 48px;
    }

    .contacts-page__top-contacts {
        padding-top: 78px;
    }

    .contacts-page__bottom-grid {
        grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
        gap: 70px;
    }

    .contacts-page__main {
        grid-column: 1 / -1;
    }

    .contacts-page__department,
    .contacts-page__social {
        grid-column: auto;
        padding-top: 0;
    }

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

    .contacts-page__cards-layout {
        grid-template-columns: 442px minmax(0, 1fr);
    }
}

@media (max-width: 1100px) {
    .home-hero__media-stack {
        right: -150px;
        bottom: 0;
        width: 620px;
        height: 413px;
        opacity: 1;
    }

    .site-footer__nav .site-menu > li {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 900px) {
    .contacts-page--cards .contacts-page__contact > span:last-child {
        white-space: normal;
    }

    .contacts-page__top-grid,
    .contacts-page__bottom-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contacts-page__top-contacts {
        padding-top: 0;
    }

    .contacts-page__bottom-grid {
        margin-top: 46px;
    }

    .contacts-page--cards .contacts-page__cta-grid {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .contacts-page__cards-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contacts-page__contact-cards,
    .contacts-page__cta-stack {
        gap: 12px;
    }

    .contacts-page__panel--main,
    .contacts-page__panel--department,
    .contacts-page__panel--social,
    .contacts-page--cards .contacts-page__cta-card,
    .contacts-page--cards .contacts-page__cta-card:nth-child(2) {
        min-height: 0;
    }

    .contacts-page__panel--social {
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .contacts-page {
        padding: 24px 0 42px;
    }

    .contacts-page::before {
        top: 100px;
        right: -580px;
    }

    .contacts-page::after {
        top: 560px;
        left: -620px;
    }

    .contacts-page__breadcrumbs {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .contacts-page__intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 32px;
    }

    .contacts-page__top-grid {
        gap: 30px;
        margin-top: 32px;
    }

    .contacts-page__head {
        width: 100%;
        margin-top: 32px;
    }

    .contacts-page__intro {
        width: 100%;
    }

    .contacts-page h1 {
        font-size: 32px;
    }

    .contacts-page h2 {
        font-size: 22px;
    }

    .contacts-page__cta-text {
        font-size: 18px;
    }

    .contacts-page__contact {
        grid-template-columns: 56px minmax(0, 1fr);
        min-height: 56px;
        font-size: 16px;
    }

    .contacts-page__icon,
    .contacts-page__social-link {
        width: 56px;
        height: 56px;
        border-radius: 20px;
    }

    .contacts-page__contact > span:last-child {
        overflow-wrap: anywhere;
    }

    .contacts-page__social-links {
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .contacts-page__social-link {
        flex-basis: 56px;
    }

    .contacts-page__cards-layout {
        margin-top: 32px;
    }

    .contacts-page__panel {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .contacts-page__cta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 42px;
    }

    .contacts-page__bottom-grid {
        gap: 34px;
        margin-top: 42px;
    }

    .contacts-page__cta-card {
        min-height: 280px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .contacts-page--split .contacts-page__cta-grid {
        gap: 10px;
        margin-top: 34px;
    }

    .contacts-page--split .contacts-page__cta-card {
        gap: 24px;
        justify-content: flex-start;
        min-height: 0;
        padding: 24px 18px 20px;
        border-radius: 24px;
    }

    .contacts-page--split .contacts-page__cta-text {
        width: 100%;
        max-width: none;
        font-size: 17px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .contacts-page__cta-button {
        min-height: 56px;
        padding-inline: 24px;
        font-size: 16px;
    }

    .contacts-page--split .contacts-page__cta-button {
        min-height: 56px;
        max-width: 100%;
        padding: 12px 24px;
        border-radius: 24px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .contacts-page--split .contacts-page__cta-text {
        font-size: 16px;
    }

    .contacts-page--split .contacts-page__cta-button {
        min-height: 54px;
        padding-inline: 20px;
        font-size: 15px;
    }
}

/* ==========================================================================
   Burger dropdown — responsive adaptation (designed independently of Figma)
   ========================================================================== */

@media (max-width: 1480px) {
    .site-header__inner {
        gap: 12px;
    }

    .site-header__brand img {
        max-width: 188px;
    }

    .site-header .site-menu--header {
        column-gap: 6px;
        row-gap: 0;
    }

    .site-header .site-menu--header a,
    .site-header .site-menu__dropdown-toggle {
        padding-inline: 4px;
        font-size: 13px;
    }

    .site-header__languages {
        height: 54px;
        padding: 7px 8px;
        border-radius: 20px;
    }

    .site-header__languages a {
        min-width: 47px;
        height: 36px;
        font-size: 15px;
    }

    .site-header__cta {
        width: 202px;
        height: 60px;
        border-radius: 22px;
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .site-header__nav {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }
}

@media (min-width: 1101px) and (max-width: 1199px) {
    .site-header__nav {
        display: none;
    }

    .site-header__toggle {
        display: inline-flex;
    }
}

@media (max-width: 1180px) {
    .site-menu--mega {
        gap: 14px 64px;
    }

    .site-menu--mega a {
        font-size: 24px;
    }

    .site-menu-panel__inner {
        border-radius: 0 0 44px 44px;
    }
}

@media (max-width: 1024px) {
    .site-menu--mega {
        grid-template-columns: repeat(2, minmax(0, max-content));
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 16px 56px;
    }

    .site-menu--mega > li {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 900px) {
    .site-header {
        --header-h: 64px;
    }

    /* Keep the bar as a single row even though the base layer stacks it. */
    .site-header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding-block: 0;
    }

    .site-header__brand img {
        max-width: 168px;
        max-height: 54px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__languages {
        height: 48px;
        padding: 5px 6px;
        border-radius: 16px;
    }

    .site-header__languages a {
        min-width: 44px;
        height: 38px;
        border-radius: 11px;
        font-size: 15px;
    }

    .site-header__cta,
    .site-header__toggle {
        height: 52px;
    }

    .site-header__toggle {
        width: 52px;
        border-radius: 16px;
    }

    .site-menu-panel__inner {
        border-radius: 0 0 30px 30px;
    }

    .site-menu-panel__layout {
        gap: 36px;
        padding-top: 28px;
        padding-bottom: 32px;
    }

    /* Move the CTA from the bar into the panel where there is room. */
    .site-menu-panel__cta {
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 58px;
        padding: 0 22px;
        border-radius: 18px;
        background: #1a1b1b;
        color: #ffffff;
        font-size: 17px;
        font-weight: 500;
    }

    .site-menu-panel__nav {
        order: 1;
    }

    .site-menu--mega {
        gap: 14px 40px;
    }

    .site-menu--mega a {
        font-size: 22px;
    }

    .site-menu-panel__footer {
        order: 2;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .site-menu-panel__inner::before {
        top: -80px;
        right: -200px;
        width: 760px;
        height: 540px;
    }

    .home-hero {
        min-height: 0;
        padding-bottom: 56px;
    }

    .home-hero__inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .home-hero__content {
        display: contents;
    }

    .home-hero__slides {
        order: 1;
        width: min(620px, 100%);
        height: auto;
        margin-top: 72px;
    }

    .home-hero__slide {
        position: static;
        display: none;
    }

    .home-hero__slide.is-active {
        display: grid;
    }

    .home-hero__media-stack {
        position: relative;
        right: auto;
        bottom: auto;
        order: 2;
        align-self: center;
        width: min(860px, 112vw);
        height: 430px;
        margin-top: 24px;
        opacity: 1;
    }

    .home-hero__controls {
        position: static;
        order: 3;
        width: min(640px, 100%);
        margin-top: 18px;
    }

    .home-hero__progress {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .contact-popup__panel {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 30px 18px 20px;
        border-radius: 24px;
    }

    .contact-popup__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .contact-popup__head {
        margin-bottom: 22px;
        padding-right: 48px;
    }

    .contact-popup__head h2 {
        font-size: 30px;
    }

    .contact-popup__head p {
        font-size: 16px;
    }

    .idss-cf7 input[type="text"],
    .idss-cf7 input[type="tel"],
    .idss-cf7__submit {
        min-height: 56px;
        border-radius: 18px;
        font-size: 16px;
    }

    .idss-cf7,
    form.idss-cf7 {
        gap: 20px;
    }

    .idss-cf7__fields,
    .idss-cf7__fields > p {
        gap: 18px;
    }

    .idss-cf7 .iti {
        font-size: 16px;
    }

    .idss-cf7 .iti__selected-country {
        padding-left: 16px;
    }

    .site-menu--mega {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .site-menu--mega a {
        font-size: 21px;
        white-space: normal;
    }

    .site-menu-panel__phone {
        font-size: 16px;
    }

    .site-menu-panel__phone-icon,
    .site-menu-panel__social {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .site-menu-panel__phone-icon {
        flex-basis: 56px;
    }

    .site-menu-panel__socials {
        flex-wrap: wrap;
    }
}

nav[class*="__breadcrumbs"] a:hover,
nav[class*="__breadcrumbs"] a:focus-visible {
    color: #e47234;
    text-decoration-line: underline;
    text-decoration-color: currentColor;
}

/* ==========================================================================
   Small-phone typography pass (designed independently of Figma)
   - Ease the biggest headings down a notch on narrow screens so they stay
     elegant instead of dominating the viewport.
   - Let long Ukrainian words wrap rather than clip their card/section edge
     (e.g. "Дніпропетровської" at ~320px).
   ========================================================================== */
@media (max-width: 760px) {
    .page-hero-media h1,
    .partners-showcase h2,
    .change-stories-intro h1,
    .documents-reports h1,
    .media-center h1,
    .media-center__header h2,
    .media-single h1,
    .change-story-single h1,
    .project-detail h1,
    .project-detail__components h2,
    .project-detail__gallery h2,
    .project-detail__results h2,
    .project-detail__body-section h2,
    .about-history-item h2,
    .about-focus h2,
    .home-hero h1,
    .home-hero__title,
    .home-section-head h2,
    .home-cta h2,
    .contacts-page h1 {
        font-size: clamp(26px, 7.6vw, 32px);
    }

    .page-hero-media h1,
    .partners-showcase h2,
    .change-stories-intro h1,
    .documents-reports h1,
    .media-center h1,
    .media-center__header h2,
    .media-single h1,
    .change-story-single h1,
    .change-story-single__content-title,
    .project-detail h1,
    .project-detail__components h2,
    .project-detail__gallery h2,
    .project-detail__results h2,
    .project-detail__body-section h2,
    .project-detail__goal-heading,
    .project-detail__card--communities h2,
    .about-history-item h2,
    .about-focus h2,
    .about-story__quote blockquote,
    .home-hero h1,
    .home-hero__title,
    .home-section-head h2,
    .home-cta h2,
    .contacts-page h1,
    .contacts-page h2,
    .project-card h3,
    .change-story-card h2,
    .media-item-card h3,
    .document-card h2,
    .direction-card__title,
    .mission-values__large-text {
        overflow-wrap: break-word;
    }
}
