* {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: transparent;

}

body {
    width: 100%;
    overflow-x: hidden;
    text-wrap: balance
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 890;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(115%);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

body.local-nav-backdrop::before,
body.site-header-backdrop::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

html {
    scroll-padding-top: 96px;
    scroll-behavior: smooth;
}

a:not(:where(.site-header *)):not(:where(.local-nav *)):not(:where(.footer *)):not(.button):not(.link-plain):not(.site-header__logo):not(.local-nav__title):not(.local-nav__cta):not(.pdf__button):not(.pdf__open-link) {
    width: fit-content;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--link-underline-color, currentColor);
    text-decoration-thickness: 1px;
    transition:
        color 1s ease,
        text-decoration-color 1s ease;
}

.button,
.link-plain,
.site-header__logo,
.local-nav__title,
.local-nav__cta,
.pdf__button,
.pdf__open-link {
    text-decoration: none;
}

.site-header a,
.local-nav a,
.footer a,
.link-plain {
    text-decoration: none;
}

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

.site-header {
    position: relative;
    z-index: 910;
    width: calc(100% - 2 * var(--space-m));
    padding: 0 var(--space-m);
    margin: 0 auto;
    overflow: hidden;
    /* border-bottom: 1px solid rgba(29, 29, 31, 0.08); */
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    transition: border-radius 0.24s ease;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-s);
    min-height: 68px;
    padding: var(--space-2xs) var(--space-s);
}

.site-header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-header__logo-source {
    display: block;
    width: clamp(6.75rem, 6.1731rem + 2.5641vw, 9.25rem);
    height: auto;
}

.site-header__nav,
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

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

.site-header a {
    color: var(--color-dark);
    font-size: var(--body-s);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header a:hover {
    color: var(--color-primary-hover);
}

.site-header__nav a.is-active,
.site-header__menu a.is-active,
.local-nav__links a.is-active {
    color: var(--color-primary);
}

.site-header__nav a,
.local-nav__links--bar a {
    position: relative;
}

.site-header__nav a::after,
.local-nav__links--bar a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.6);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-header__nav a.is-active::after,
.local-nav__links--bar a.is-active::after {
    /* opacity: 1;
    transform: scaleX(1); */
}

.site-header__phone {
    white-space: nowrap;
}

.site-header__toggle {
    position: relative;
    display: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(29, 29, 31, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.site-header__toggle:hover {
    background: rgba(29, 29, 31, 0.14);
}

.site-header__toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-dark);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.site-header__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.site-header--open .site-header__toggle span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header--open .site-header__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__menu {
    display: none;
}

.site-header__menu-intro,
.site-header__menu-grid {
    display: none;
}

.site-header__logo:focus-visible,
.site-header__nav a:focus-visible,
.site-header__phone:focus-visible,
.site-header__toggle:focus-visible,
.site-header__menu a:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}

.local-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 900;
    display: flex;
    flex-direction: column;
    width: min(calc(100% - 32px), 980px);
    color: var(--color-dark);
    overflow: hidden;
    /* border: 1px solid rgba(29, 29, 31, 0.08); */
    border-radius: var(--radius-l);
    /* background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(140%); */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(60px) saturate(150%);

    -webkit-backdrop-filter: blur(24px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -24px) scale(0.985);
    transition:
        background-color 0.36s ease,
        border-radius 0.36s ease,
        opacity 0.42s ease,
        transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.42s;
    will-change: opacity, transform;
}

.local-nav--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
}

.local-nav__bar {
    --local-nav-cta-width: 7.25rem;
    --local-nav-toggle-size: 42px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-s);
    min-height: 0;
    padding: var(--space-3xs) var(--space-3xs) var(--space-3xs) var(--space-s);
}

.local-nav__bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(29, 29, 31, 0.08);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.local-nav--open .local-nav__bar::after {
    opacity: 1;
    opacity: 0;
}

.local-nav--open {
    background: rgba(255, 255, 255, 1);
}

.local-nav__title {
    display: flex;
    align-items: center;
    color: var(--color-dark);
    text-decoration: none;
}

.local-nav__logo-source {
    display: block;
    width: clamp(5.75rem, 4.952rem + 3.548vw, 7.5rem);
    width: clamp(3.6rem, 3.952rem + 2vw, 6rem);
    height: auto;
    position: relative;
    /* margin-top: -3%; */
}

.local-nav__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3xs);
}

.local-nav__cta {
    box-sizing: border-box;
    width: var(--local-nav-cta-width);
    min-height: 44px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease !important;
    z-index: 5;
}

.local-nav__toggle {
    position: relative;
    display: block;
    width: var(--local-nav-toggle-size);
    height: var(--local-nav-toggle-size);
    flex: 0 0 var(--local-nav-toggle-size);
    border: 0;
    border-radius: 50%;
    background: rgba(29, 29, 31, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.local-nav__toggle:hover {
    background: rgba(29, 29, 31, 0.14);
}

.local-nav__toggle:focus-visible,
.local-nav__menu a:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}

.local-nav__toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-dark);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.local-nav__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.local-nav--open .local-nav__toggle span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.local-nav--open .local-nav__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.local-nav__menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-s);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top right;
    transition:
        max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.28s ease,
        padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.2s;
}

.local-nav--open .local-nav__menu {
    max-height: 720px;
    padding:
        calc(var(--space-s)) var(--space-s) var(--space-m);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.local-nav__intro {
    max-width: 40rem;
}

.local-nav__intro-title {
    color: var(--color-dark);
    font-size: var(--h3);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

.local-nav__intro-text {
    color: var(--color-dark);
    font-size: var(--body-s);
    font-weight: 600;
    line-height: 130%;
    margin-top: var(--space-3xs);
}

.local-nav__menu-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.28s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.local-nav--open .local-nav__menu-grid {
    opacity: 1;
    transform: translateY(0);
}

.local-nav__menu-column {
    display: grid;
    align-content: space-between;
    gap: var(--space-m);
    min-width: 0;
    height: 100%;
}

.local-nav__menu-column--secondary {
    grid-template-columns: 1fr;
    gap: var(--space-m);
}

.local-nav__sections {
    display: grid;
    grid-template-columns: 1fr;
}

.local-nav__section-group {
    display: grid;
    align-content: start;
    gap: var(--space-xs);
    min-width: 0;
}

.local-nav__group {
    display: grid;
    align-content: start;
    gap: var(--space-xs);
    min-width: 0;
}

.local-nav__group-title {
    color: var(--color-grey);
    font-size: var(--body-s);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.local-nav__links {
    display: grid;
    gap: var(--space-3xs) var(--space-s);
}

.local-nav__links--bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-s);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.2s ease,
        visibility 0s linear 0s;
}

.local-nav--open .local-nav__links--bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-delay: 0s, 0.2s;
}

.local-nav__links--sections {
    grid-template-columns: repeat(6, max-content);
}

.local-nav__links--contacts {
    grid-template-columns: 1fr;
}

.local-nav__links a {
    display: inline-flex;
    align-items: baseline;
    width: fit-content;
    color: var(--color-dark);
    font-size: var(--body-s);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.local-nav__links a:hover {
    color: var(--color-primary-hover);
}

.local-nav__links:not(.local-nav__links--bar) a.is-active {
    transform: translateX(0);
}

.local-nav__links--contacts a {
    color: var(--color-dark);
    font-size: var(--body-s);
    font-weight: 600;
    line-height: 1.2;
}

.local-nav__links--contacts a:hover {
    color: var(--color-primary-hover);
}

.local-nav__links a:focus-visible {
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {

    .local-nav,
    .site-header,
    .site-header__menu,
    .site-header__toggle,
    .site-header__toggle span,
    .local-nav__menu,
    .local-nav__menu-grid,
    .local-nav__toggle,
    .local-nav__toggle span,
    body::before {
        transition: none;
    }

    .local-nav--open .local-nav__title {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .local-nav {
        width: min(calc(100% - 32px), 860px);
    }

    .local-nav__bar {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .local-nav__links--bar {
        display: none;
    }

    .local-nav__actions {
        grid-column: 3;
    }

    .local-nav__menu-grid {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 0.48fr);
        gap: var(--space-l);
    }

    .local-nav__sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 24px;
    }

    .site-header {
        overflow: visible;
        width: calc(100%);
        padding: 0 0;
    }

    .site-header__inner {
        min-height: 58px;
        gap: var(--space-2xs);
        padding: var(--space-3xs) var(--space-m) var(--space-3xs) var(--space-s);
    }

    .site-header__logo-source {
        width: 6.75rem;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__actions {
        gap: 8px;
        margin-left: auto;
    }



    .site-header a {
        font-size: var(--body-m);
    }

    .site-header__phone {
        font-size: 0.75rem;
    }

    .site-header__toggle {
        display: block;
        display: none;
    }

    .site-header__menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 1;
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--space-s);
        border: 1px solid rgba(29, 29, 31, 0.08);
        border-radius: var(--radius-l);
        background: rgba(255, 255, 255, 0.76);
        backdrop-filter: blur(24px) saturate(140%);
        -webkit-backdrop-filter: blur(24px) saturate(140%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            max-height 0.28s ease,
            opacity 0.2s ease,
            padding 0.28s ease,
            transform 0.28s ease,
            visibility 0s linear 0.2s;
    }

    .site-header--open .site-header__menu {
        max-height: min(80svh, 620px);
        overflow: auto;
        padding: var(--space-s);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .site-header__menu-intro,
    .site-header__menu-grid {
        display: grid;
    }

    .site-header__menu {
        gap: var(--space-m);
    }

    .site-header__menu-title {
        color: var(--color-dark);
        font-size: var(--h4);
        font-weight: 800;
        line-height: 0.95;
    }

    .site-header__menu-text {
        max-width: 34rem;
        margin-top: var(--space-3xs);
        color: var(--color-grey);
        font-size: var(--body-m);
        font-weight: 600;
        line-height: 1.15;
    }

    .site-header__menu-grid {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }

    .site-header__menu-group {
        display: grid;
        gap: var(--space-xs);
    }

    .site-header__menu-group-title {
        color: var(--color-grey);
        font-size: var(--body-m);
        font-weight: 600;
    }

    .site-header__menu-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .site-header__menu a {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 28px;
        color: var(--color-dark);
        font-size: var(--body-m);
        font-weight: 600;
        text-decoration: none;
    }

    .local-nav {
        top: auto;
        bottom: calc(12px + env(safe-area-inset-bottom));
        width: min(calc(100% - 24px), 480px);
        width: calc(100% - 2 * var(--space-2xs));
        flex-direction: column-reverse;
        transform: translate(-50%, 24px) scale(0.985);
        border-radius: var(--radius-xl);

    }

    .local-nav--visible {
        transform: translate(-50%, 0) scale(1);
    }

    .local-nav__bar {
        --local-nav-cta-width: 7rem;
        --local-nav-toggle-size: 42px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: var(--space-2xs);
        /* min-height: 58px; */
        padding: var(--space-3xs) var(--space-3xs) var(--space-3xs) var(--space-s);
    }

    .local-nav__bar::after {
        top: 0;
        bottom: auto;
    }

    .local-nav--open .local-nav__bar {
        padding: var(--space-3xs) var(--space-3xs) var(--space-3xs) var(--space-s);
    }

    .local-nav--open {
        border-radius: var(--radius-l);
    }

    .local-nav__logo-source {
        width: 5.5rem;
    }

    .local-nav__toggle {
        width: var(--local-nav-toggle-size);
        height: var(--local-nav-toggle-size);
        flex-basis: var(--local-nav-toggle-size);
    }

    .local-nav--open .local-nav__actions {
        justify-self: end;
    }

    .local-nav--open .local-nav__cta {
        min-height: 44px;
    }

    .local-nav__menu {
        transform: translateY(10px);
        transform-origin: bottom right;
        transition:
            max-height 0.48s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.32s ease,
            padding 0.48s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0.32s;
    }

    .local-nav--open .local-nav__menu {
        max-height: min(72svh, 600px);
        overflow: auto;
        padding: var(--space-s) var(--space-s) var(--space-m);
        transform: translateY(0);
        transition-delay: 0s;
    }

    .local-nav__menu-grid,
    .local-nav__sections,
    .local-nav__links--sections {
        grid-template-columns: 1fr;
    }

    .local-nav__menu-grid {
        gap: var(--space-m);
    }

    .local-nav__intro-text {
        font-size: var(--body-m);
        margin-top: var(--space-s);

    }

    .local-nav__intro {
        margin: 0;
    }

    .local-nav__group {
        gap: var(--space-xs);
    }

    .local-nav__sections {
        gap: var(--space-m);
    }

    .local-nav__links {
        gap: var(--space-xs);
    }

    .local-nav__links a,
    .local-nav__links--contacts a,
    .local-nav__group-title {
        font-size: var(--body-m);
    }

}

.padding_L {
    padding-left: clamp(1rem, 0.5385rem + 2.0513vw, 3.75rem);
    padding-right: clamp(1rem, 0.5385rem + 2.0513vw, 3.75rem);
}

.hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .hero {
        gap: var(--space-xs);
        margin-bottom: var(--space-l);

    }
}

.texture-card {
    margin-top: clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem);
}

.texture-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.texture-showcase__viewer {
    width: 100%;
    overflow: hidden;
    margin-top: calc(-2 * var(--space-m));
    padding-block: var(--space-m);
}

.texture-showcase__track {
    --texture-slide-gap: 3vw;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: var(--space-m) 0 clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem) 0;
    gap: var(--texture-slide-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10vw;
    scrollbar-width: none;
    justify-content: flex-start;
    align-items: center;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    perspective: 1200px;
}

.texture-showcase__track::-webkit-scrollbar {
    display: none;
}

.texture-showcase__track::before,
.texture-showcase__track::after {
    content: "";
    flex: 0 0 10vw;
}

.texture-showcase__track--dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.texture-showcase__slide {
    width: 60vw;
    height: 65vh;
    border-radius: var(--radius-xl);
    flex: 0 0 80vw;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    opacity: 0.32;
    opacity: 1;
    transform: scale(0.92);
    transform-style: preserve-3d;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
    .texture-showcase__track {
        scroll-padding-inline: var(--space-m);
    }

    .texture-showcase__track::before,
    .texture-showcase__track::after {
        flex: 0 0 calc(var(--space-m) - var(--texture-slide-gap));
    }

    .texture-showcase__slide {
        flex: 0 0 calc(100vw - 2 * var(--space-m));
    }
}

.texture-showcase__slide::before,
.texture-showcase__slide::after,
.texture-showcase__matte {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.texture-showcase__slide::before {
    background:
        radial-gradient(circle at var(--glare-x) var(--glare-y),
            rgba(255, 255, 255, 1) 0,
            rgba(255, 255, 255, 0.96) 18%,
            rgba(255, 255, 255, 0.72) 34%,
            rgba(255, 255, 255, 0.26) 58%,
            rgba(255, 255, 255, 0) 86%),
        linear-gradient(115deg,
            rgba(255, 255, 255, 0) 8%,
            rgba(255, 255, 255, 0.9) 31%,
            rgba(255, 255, 255, 0.5) 52%,
            rgba(255, 255, 255, 0) 76%);
    mix-blend-mode: screen;
}

.texture-showcase__slide::after {
    background:
        radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0.06) 42%,
            /* сильнее затемнять края */
            rgba(0, 0, 0, 0.28) 78%,
            rgba(0, 0, 0, 0.46) 100%),
        /* сильнее затемнять края */
        radial-gradient(circle at var(--glare-x) var(--glare-y),
            rgba(255, 255, 255, 0.3) 0,
            rgba(255, 255, 255, 0.1) 26%,
            rgba(0, 0, 0, 0.08) 54%,
            rgba(0, 0, 0, 0) 78%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.34) 0,
            rgba(255, 255, 255, 0) 20%,
            rgba(0, 0, 0, 0.32) 100%),
        repeating-linear-gradient(102deg,
            rgba(255, 255, 255, 0.12) 0,
            rgba(255, 255, 255, 0.12) 1px,
            rgba(255, 255, 255, 0) 1px,
            rgba(255, 255, 255, 0) 8px);
    mix-blend-mode: soft-light;
}

.texture-showcase__matte {
    opacity: 0.48;
    background:
        radial-gradient(circle at 18% 22%,
            rgba(255, 255, 255, 0.12) 0,
            rgba(255, 255, 255, 0) 26%),
        radial-gradient(circle at 74% 68%,
            rgba(0, 0, 0, 0.12) 0,
            rgba(0, 0, 0, 0) 30%),
        repeating-radial-gradient(circle at 32% 44%,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 1px,
            rgba(0, 0, 0, 0.05) 1px,
            rgba(0, 0, 0, 0.05) 2px,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0) 5px),
        repeating-linear-gradient(103deg,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 1px,
            rgba(0, 0, 0, 0.04) 1px,
            rgba(0, 0, 0, 0.04) 2px,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0) 11px);
    mix-blend-mode: soft-light;
}

.texture-showcase__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: translateZ(0);

    border-radius: var(--radius-xl);
}

.texture-showcase__image.big-card {
    border-radius: var(--radius-xl);
}

.texture-showcase__slide--neighbor {
    opacity: 1;
    transform: scale(0.98);
}

.texture-showcase__slide--active {
    cursor: default;
    opacity: 1;
    transform: scale(1.01);
    box-shadow:
        0 10px 23px 0 rgba(0, 0, 0, 0.17), 0 42px 42px 0 rgba(0, 0, 0, 0.14), 0 94px 56px 0 rgba(0, 0, 0, 0.08), 0 17px 67px 0 rgba(0, 0, 0, 0.02), 0 261px 73px 0 rgba(0, 0, 0, 0);
    /* 0 10px 23px 0 rgba(0, 0, 0, 0.17), 0 42px 42px 0 rgba(0, 0, 0, 0.14), 0 94px 56px 0 rgba(0, 0, 0, 0.08), 0 167px 67px 0 rgba(0, 0, 0, 0.02), 0 261px 73px 0 rgba(0, 0, 0, 0); */
}

.texture-showcase__slide--active:hover {
    /* transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.015); */
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.01);
    box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.18), 0 52px 50px 0 rgba(0, 0, 0, 0.15), 0 11px 64px 0 rgba(0, 0, 0, 0.08), 0 18px 74px 0 rgba(0, 0, 0, 0.02);
}

.texture-showcase--tilt-enabled .texture-showcase__slide--active {
    /* transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1.018); */
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(1);
    /* box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.2), 0 58px 56px 0 rgba(0, 0, 0, 0.16), 0 122px 72px 0 rgba(0, 0, 0, 0.09), 0 202px 82px 0 rgba(0, 0, 0, 0.03); */
    box-shadow:
        0 16px 32px 0 rgba(0, 0, 0, 0.2), 0 58px 56px 0 rgba(0, 0, 0, 0.16), 0 32px 72px 0 rgba(0, 0, 0, 0.09), 0 42px 82px 0 rgba(0, 0, 0, 0.03);
}

.texture-showcase__slide--active:hover::before {
    opacity: 1;
}

.texture-showcase__slide--active:hover::after {
    opacity: 1;
}

.texture-showcase--tilt-enabled .texture-showcase__slide--active::before,
.texture-showcase--tilt-enabled .texture-showcase__slide--active::after {
    opacity: 1;
}

.texture-showcase--tilt-enabled .texture-showcase__slide--active .texture-showcase__matte {
    opacity: 0.58;
}

.texture-tilt-prompt {
    position: absolute;
    left: var(--space-m);
    right: var(--space-m);
    bottom: var(--space-m);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-s);
    padding: var(--space-s);
    /* border: 1px solid rgba(29, 29, 31, 0.14); */
    border-radius: var(--radius-s);
    background: rgba(255, 255, 255, 1);
    /* backdrop-filter: blur(18px) saturate(130%); */
    /* -webkit-backdrop-filter: blur(18px) saturate(130%); */
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14); */
}

.texture-tilt-prompt[hidden],
.texture-tilt-badge[hidden] {
    display: none;
}

.texture-tilt-prompt__text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.texture-tilt-prompt__title {
    color: var(--color-dark);
    font-size: var(--body-m);
    font-weight: 700;
    line-height: 120%;
}

.texture-tilt-prompt__body {
    max-width: 28rem;
    color: var(--color-grey);
    text-wrap: pretty;
    text-align: left;
}

.texture-tilt-badge {
    position: absolute;
    top: var(--space-s);
    left: var(--space-s);
    z-index: 4;
    min-height: 38px;
    padding: 8px 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.46); */

    /* border: 1px solid rgba(29, 29, 31, 0.14); */
    border: none;
    border-radius: var(--radius-s);
    background: rgba(255, 255, 255, 1);
    /* backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%); */

    border-radius: var(--radius-full);
    color: var(--color-dark);
    /* background: rgba(29, 29, 31, 0.72); */
    /* backdrop-filter: blur(16px) saturate(130%); */
    /* -webkit-backdrop-filter: blur(16px) saturate(130%); */
    cursor: pointer;
}

.texture-tilt-badge:focus-visible,
.texture-tilt-prompt__button:focus-visible {
    outline: 3px solid var(--color-dark-hover);
    outline-offset: 3px;
}

.texture-showcase__thumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--space-s);
    max-width: 100%;
    /* max-width: calc(100% - 40px); */
    overflow-x: auto;
    padding: var(--space-2xs) var(--space-3xs) var(--space-xs);

    margin-top: clamp(-21.875rem, calc(-6.4904rem - 12.8205vw), -9.375rem);
    z-index: 10;
}

.texture-card__thumb {
    border-radius: var(--radius-full);
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
    object-fit: cover;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.texture-card__thumb:hover,
.texture-card__thumb:focus-visible {
    transform: translateY(-2px);
}

.texture-card__thumb:focus-visible {
    outline: 3px solid var(--color-link-orange);
    outline-offset: 3px;
}

.texture-card__thumb--active {
    /* border-color: var(--color-secondary); */
}

@media (max-width: 1440px) {
    .texture-card__thumb {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }
}

@media (max-width: 1280px) {
    .texture-card__thumb {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }

    .texture-showcase__thumbs {
        gap: var(--space-2xs);
    }
}

@media (max-width: 1024px) {
    .texture-card__thumb {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
}

@media (max-width: 768px) {
    .texture-showcase__thumbs {
        padding-left: var(--space-m);
        padding-right: var(--space-m);

        width: calc(100% - 2 * var(--space-m));
    }
}

.texture-showcase__caption {
    min-height: 26px;
    margin-top: var(--space-2xs);
    text-align: center;
    color: var(--color-grey);
}

.texture-tilt-toggle {}

.texture-tilt-toggle[hidden] {
    /* display: none; */
}

.texture-tilt-toggle:disabled {
    cursor: default;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .texture-tilt-prompt {
        left: var(--space-s);
        right: var(--space-s);
        bottom: var(--space-s);
        gap: var(--space-0xs);
        padding: var(--space-xs);
        border-radius: var(--radius-s);
    }

    .texture-tilt-toggle {
        /* min-height: 44px; */
        /* padding: 10px 14px; */
    }
}

@media (max-width: 560px) {
    .texture-tilt-prompt {
        align-items: flex-end;
    }

    .texture-tilt-prompt__body {
        max-width: 12.5rem;
    }
}

@media (max-width: 374px) {
    .texture-tilt-prompt {
        left: var(--space-xs);
        right: var(--space-xs);
        bottom: var(--space-xs);
    }

    .texture-tilt-prompt__body {
        max-width: 10.5rem;
    }

    .texture-tilt-toggle {
        padding-inline: 12px;
    }
}

.big-card {
    width: 80vw;
    height: 65vh;
    border-radius: var(--radius-xl);
    /* flex: 0 0 80vw; */
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .big-card {
        width: calc(100% - 2 * var(--space-m));
    }
}

.weathering-card {
    position: relative;
}

.weathering__showecase {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weathering__viewer {
    width: 100%;
    overflow: hidden;
}

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

.weathering__slide {
    display: none;
}

.weathering__slide.big-card {
    border-radius: var(--radius-xl);
}

.weathering__slide--active {
    display: block;
}

.weathering__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weathering__controls {
    --weathering-control-icon: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: var(--space-3xs);
    border-radius: var(--radius-xl);

    background: var(--color-secondary);
    margin-top: var(--space-m);

    max-width: calc(100% - 2 * var(--space-m));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.weathering__controls::-webkit-scrollbar {
    display: none;
}

.weathering__control {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--space-2xs);

    border-radius: var(--radius-2xl);
    padding: var(--space-2xs) var(--space-s) var(--space-2xs) var(--space-xs);
    color: var(--color-dark);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.weathering__control svg {
    width: var(--weathering-control-icon);
    height: var(--weathering-control-icon);
    flex: 0 0 var(--weathering-control-icon);
}

.weathering__control svg,
.weathering__control path {
    color: currentColor;
    fill: currentColor;
}

.weathering__control:focus-visible {
    /* outline: 3px solid var(--color-link-orange); */
    /* outline-offset: 3px; */
}

.weathering__control--active {
    color: #fff;
    background: var(--color-dark);
}

.weathering__caption {
    margin-top: var(--space-s);
    color: var(--color-grey);
}

@media (max-width: 768px) {
    .weathering-card .hero {
        margin-bottom: var(--space-l);
    }

    .weathering__viewer {
        padding: 0 var(--space-s);
        box-sizing: border-box;
    }

    .weathering__track {
        justify-content: flex-start;
    }

    .weathering__slide {
        width: 100%;
        height: min(58svh, 520px);
        min-height: 360px;
    }

    .weathering__controls {
        --weathering-control-icon: 30px;
        width: calc(100% - 2 * var(--space-s));
        max-width: none;
        box-sizing: border-box;
        gap: 4px;
        margin-top: var(--space-s);
        padding: 6px;
    }

    .weathering__control {
        flex: 1 0 max-content;
        min-width: 0;
        justify-content: center;
        gap: 6px;
        /* min-height: 48px; */
        /* padding: 8px 12px 8px 10px; */
        white-space: nowrap;
        font-size: var(--body-s);
    }

    .weathering__caption {
        width: calc(100% - 2 * var(--space-s));
        box-sizing: border-box;
        margin-top: var(--space-xs);
        padding: 0 var(--space-2xs);
        text-align: center;
    }
}

@media (max-width: 420px) {
    .weathering__slide {
        height: 52svh;
        min-height: 300px;
    }

    .weathering__controls {
        --weathering-control-icon: 26px;
    }

    .weathering__control {
        /* min-height: 44px; */
        /* padding: 7px 10px 7px 8px; */
    }
}

.catalog {
    /* margin-top: clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem); */
    margin-bottom: calc(50vh - clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem));
}

.catalog .hero {
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .catalog {
        margin-bottom: calc(0vh - clamp(8.375rem, 22.4904rem + 23.8205vw, 27.875rem));
    }
}

.pdf__viewer {
    min-height: 760px;
    margin: clamp(-21.875rem, calc(-6.4904rem - 12.8205vw), -9.375rem) auto calc(-1 * clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem)) auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-s);
    overflow: hidden;
    padding: clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem) 0;
}

.pdf__toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 46px;
    z-index: 10;
}

.pdf__button,
.pdf__open-link {
    border: 0;
    /* border-radius: 999px; */
    /* padding: 12px 18px; */
    /* color: #fff; */
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    /* box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18); */
}

.pdf__button:disabled {
    cursor: default;
    opacity: 0.35;
}

.pdf__counter,
.pdf__status {
    min-width: 86px;
    text-align: center;
    color: var(--color-dark);
}

.pdf__status {
    color: var(--color-grey);
}

.pdf__book {
    --pdf-page-min-width: 300px;
    --pdf-page-max-width: 550px;
    --pdf-page-min-height: 420px;
    --pdf-page-max-height: 550px;
    width: min(100%, calc(var(--pdf-page-max-width) * 2));
    aspect-ratio: calc(var(--pdf-page-aspect) * 2) / 1;
    height: auto;

    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.2)) drop-shadow(0 56px 72px rgba(0, 0, 0, 0.12));
    --pdf-cover-offset: 0px;
    transition: transform 0.2s ease;
}

@media (min-width: 601px) {
    .pdf__book--cover {
        /* Обложка посередине */
        transform: translateX(calc(var(--pdf-cover-offset) * -1)) !important;
    }
}


.pdf__page {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #fff;
    color: var(--color-grey);
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08),
        inset 0 0 36px rgba(0, 0, 0, 0.06);
}

.pdf__page::before,
.pdf__page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pdf__page::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0, rgba(255, 255, 255, 0) 18%, rgba(0, 0, 0, 0.04) 100%);
    mix-blend-mode: multiply;
}

.pdf__page--left::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.04) 76%, rgba(0, 0, 0, 0.2) 100%);
}

.pdf__page--right::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0) 100%);
}

.pdf__page-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.pdf__open-link {
    position: absolute;
    right: var(--space-m);
    bottom: var(--space-m);
    display: none;
}

@media (max-width: 768px) {
    .pdf__viewer {
        /* width: calc(100% - var(--space-l));
        min-height: 620px;
        border-radius: 28px;
        padding: var(--space-s) var(--space-xs) var(--space-2xl); */
        /* padding: clamp(9.375rem, 6.4904rem + 12.8205vw, 21.875rem) 0; */
    }

    .pdf__toolbar {
        gap: var(--space-2xs);
    }

    .pdf__button,
    .pdf__open-link {
        padding: var(--space-2xs) var(--space-xs);
    }

    .pdf__book {
        --pdf-page-max-width: 360px;
        --pdf-page-max-height: 500px;
    }

    .pdf__open-link {
        right: var(--space-s);
        bottom: var(--space-s);
    }
}


.scheme {
    width: 100%;
    --scheme-top-y: -8px;
    --scheme-middle-y: -320px;
    --scheme-base-y: -360px;
    --scheme-top-text: 0;
    --scheme-middle-text: 0;
    --scheme-base-text: 0;
    --scheme-middle-image: 0;
    --scheme-base-image: 0;
    --scheme-top-text-y: -18px;
    --scheme-middle-text-y: -18px;
    --scheme-base-text-y: -18px;
    --scheme-top-distance-ratio: 0.008;
    --scheme-middle-distance-ratio: 0.27;
    --scheme-base-distance-ratio: 0.32;
    --scheme-text-distance-ratio: 0.016;
    --scheme-top-distance-limit: 0.02;
    --scheme-middle-distance-limit: 0.38;
    --scheme-base-distance-limit: 0.46;
    --scheme-text-distance-limit: 0.03;
    --scheme-scroll-start: 0.38;
    --scheme-scroll-vh: 0.62;
    --scheme-scroll-section: 0.36;
    --scheme-top-start: 0;
    --scheme-top-end: 0.22;
    --scheme-middle-start: 0.24;
    --scheme-middle-end: 0.56;
    --scheme-base-image-start: 0.48;
    --scheme-base-image-end: 0.64;
    --scheme-base-start: 0.5;
    --scheme-base-end: 0.78;
}

.scheme__showcase {
    width: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.scheme__image {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: var(--space-3xl);
    margin-top: -10rem;
}

.scheme__image-1 {
    z-index: 0;
}

.scheme__image-2 {
    z-index: 5;
}

.scheme__image-3 {
    z-index: 10;
}

.scheme__image-2,
.scheme__image-1 {
    margin-top: -30rem;
}

.scheme__image-source {
    width: 50vw;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    will-change: transform;
}

@media (min-width: 769px) {
    .scheme--animated .scheme__image-3 .scheme__image-source {
        opacity: 1 !important;
        transform: translate3d(0, var(--scheme-top-y), 0) !important;
    }

    .scheme--animated .scheme__image-2 .scheme__image-source {
        opacity: var(--scheme-middle-image) !important;
        transform: translate3d(0, var(--scheme-middle-y), 0) !important;
    }

    .scheme--animated .scheme__image-1 .scheme__image-source {
        opacity: var(--scheme-base-image) !important;
        transform: translate3d(0, var(--scheme-base-y), 0) !important;
    }
}

.scheme__description {
    text-align: left;
    padding-left: var(--space-3xl);
    max-width: 560px;
    will-change: opacity, transform;
}

.scheme__title {
    margin-top: var(--space-3xs);

}

.scheme__caption {
    text-align: left;
    color: var(--color-grey);
}

.scheme__text {
    text-align: left;
    margin-top: var(--space-2xs);
    /* font-weight: 500; */
    /* color: var(--color-grey); */
}

@media (min-width: 769px) {
    .scheme--animated .scheme__image-3 .scheme__description {
        opacity: var(--scheme-top-text) !important;
        transform: translate3d(0, var(--scheme-top-text-y), 0) !important;
    }

    .scheme--animated .scheme__image-2 .scheme__description {
        opacity: var(--scheme-middle-text) !important;
        transform: translate3d(0, var(--scheme-middle-text-y), 0) !important;
    }

    .scheme--animated .scheme__image-1 .scheme__description {
        opacity: var(--scheme-base-text) !important;
        transform: translate3d(0, var(--scheme-base-text-y), 0) !important;
    }
}

@media (max-width: 1440px) {
    .scheme {
        --scheme-middle-distance-ratio: 0.34;
        --scheme-base-distance-ratio: 0.43;
        --scheme-scroll-vh: 0.5;
        --scheme-scroll-section: 0.4;
    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: -26rem;
    }
}

@media (max-width: 1280px) {
    .scheme {
        --scheme-middle-distance-ratio: 0.34;
        --scheme-base-distance-ratio: 0.43;
        --scheme-scroll-vh: 0.5;
        --scheme-scroll-section: 0.4;
    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: -20rem;
    }
}

@media (max-width: 1024px) {

    .scheme__image-source {
        width: 40vw;
    }

    .scheme {
        --scheme-middle-distance-ratio: 0.42;
        --scheme-base-distance-ratio: 0.5;
        --scheme-scroll-vh: 0.42;
        --scheme-scroll-section: 0.38;
    }

    .scheme__image {
        margin-top: -5rem;

    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: -10rem;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .scheme {
        --scheme-middle-distance-ratio: 0.32;
        --scheme-base-distance-ratio: 0.4;
        --scheme-scroll-vh: 0.48;
        --scheme-scroll-section: 0.46;
        --scheme-middle-start: 0.2;
        --scheme-middle-end: 0.5;
        --scheme-base-image-start: 0.42;
        --scheme-base-image-end: 0.58;
        --scheme-base-start: 0.44;
        --scheme-base-end: 0.7;
    }

    .scheme .hero {
        margin-bottom: var(--space-xl);
    }

    .scheme__showcase {
        padding: var(--space-xl) 0 calc(var(--space-3xl) * 1.2);
    }

    .scheme__image {
        gap: var(--space-l);
        margin-top: 0;
    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: -6rem;
    }

    .scheme__image-source {
        width: min(48vw, 28rem);
    }

    .scheme__description {
        max-width: 22rem;
        padding-left: var(--space-l);
    }
}


@media (max-width: 768px) {

    .scheme {
        --scheme-top-y: 0px;
        --scheme-middle-y: 0px;
        --scheme-base-y: 0px;
        --scheme-top-text-y: 0px;
        --scheme-middle-text-y: 0px;
        --scheme-base-text-y: 0px;
        --scheme-top-text: 1;
        --scheme-middle-text: 1;
        --scheme-base-text: 1;
        --scheme-middle-image: 1;
        --scheme-base-image: 1;
    }

    .scheme__showcase {
        gap: clamp(1.5rem, 4svh, 3rem);
        padding: 0 0 var(--space-xl);
    }

    .scheme__image {
        box-sizing: border-box;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0;
        margin-top: 0;
        padding: 0;
    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: 0;
    }

    .scheme__image-source {
        align-self: flex-end;
        width: min(100%, 31rem);
        max-width: none;
    }

    .scheme__description {
        max-width: min(100%, 42rem);
        margin-top: calc(-1 * var(--space-l));
        padding-left: var(--space-m);
        padding-right: var(--space-m);
        z-index: 5;
    }

    .scheme__caption,
    .scheme__text {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .scheme__image-source {
        width: 85%;
    }

    .scheme {
        --scheme-middle-distance-ratio: 0.6;
        --scheme-base-distance-ratio: 0.68;
        --scheme-scroll-vh: 0.32;
        --scheme-scroll-section: 0.46;
    }

    .scheme__showcase {
        gap: 0;
    }

    .scheme__image-2,
    .scheme__image-1 {
        margin-top: -4%;
    }

}



/* В адаптиве настраивать margin-top  у scheme__image */

.text-reveal-link {
    position: relative;
    display: inline;
}

@media (prefers-reduced-motion: reduce) {

    .emerge {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.statement-title {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

.text-reveal-statement {
    --statement-muted: #b8b8bd;
    --statement-active: var(--color-dark);
    --statement-start: 0.42;
    --statement-end: -0.25;
    --statement-softness: 0.32;
    color: var(--statement-active);
}

.text-reveal-statement-ready .text-reveal-statement {
    color: var(--statement-muted);
}

.text-reveal-statement__word {
    position: relative;
    display: inline-block;
    color: var(--statement-muted);
}

.text-reveal-statement__word::after {
    content: attr(data-word);
    position: absolute;
    inset: 0;
    color: var(--statement-active);
    opacity: var(--statement-word-progress, 0);
    pointer-events: none;
    transition: opacity 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
    .text-reveal-statement-ready .text-reveal-statement {
        color: var(--statement-active);
    }

    .text-reveal-statement__word::after {
        opacity: 1;
        transition: none;
    }
}

@media screen and (max-width: 768px) {
    .statement-title {
        max-width: min(92vw, 34rem);
        hyphens: auto;
        overflow-wrap: break-word;
    }
}

.statement-title--part-of-architecture .text-reveal-statement {
    --statement-start: 0.8;
    --statement-end: .2;
}

.statement-title--other-elements .text-reveal-statement {
    --statement-start: 0.6;
    --statement-end: -0.1;
}

.author {
    display: none;
}

.architect__showcase {}

.architect__showcase video,
.architect__image-source {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.architect__image--size--XL {
    width: 60vw;
    height: auto;
}

.architect__image--size--L {
    width: 50vw;
    height: auto;
}

.architect__image--size--M {
    width: 40vw;
    height: auto;
}

.architect__image--size--S {
    width: 30vw;
    height: auto;
}


/* chatgpt */
/* ARCHITECT PARALLAX */

.architect {
    --architect-final-offset: 280vw;
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(3.75rem, 2.8846rem + 3.8462vw, 7.5rem);
}

.architect__showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.architect__image {
    position: absolute;
    will-change: transform;
}

.architect__image * {
    text-align: left;
}

.architect__image--11 {
    position: relative;
    top: auto;
    margin-top: var(--architect-final-offset);
    left: 11vw;
    width: 66vw;
}

.architect__image-source {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Размеры */
.architect__image--size--XL {
    width: 72vw;
}

.architect__image--size--L {
    width: 54vw;
}

.architect__image--size--M {
    width: 42vw;
}

.architect__image--size--S {
    width: 30vw;
}

/* Раскладка как на референсе */
.architect__image--1 {
    top: 0;
    left: 0;
}

.architect__image--2 {
    top: 18vw;
    right: -2vw;
    width: 34vw;
    z-index: 3;
}

.architect__image--3 {
    top: 62vw;
    left: 18vw;
}

.architect__image--4 {
    top: 112vw;
    left: -2vw;
}

.architect__image--5 {
    top: 130vw;
    left: 16vw;
    width: 67vw;
}

.architect__image--6 {
    top: 164vw;
    right: 0;
    width: 27vw;
    z-index: 4;
}

.architect__image--7 {
    top: 190vw;
    left: 27vw;
}

.architect__image--8 {
    top: 214vw;
    left: -4vw;
}

.architect__image--9 {
    top: 230vw;
    left: 22vw;
}

.architect__image--10 {
    top: 264vw;
    right: 7vw;
}

/* .architect__image--11 {
    top: 300vw;
    left: 11vw;
    width: 66vw;
} */

.architect__title {
    margin-bottom: var(--space-2xs);
}

.architect__text {
    margin: var(--space-3xs) 0 var(--space-xl);
    /* color: var(--color-grey); */
    text-align: left;
}

/* Подпись под фото */
.architect__image--3 .body-s {
    margin-top: var(--space-xs);
    color: var(--color-grey);
}

/* Мягкая оптимизация */
@media (prefers-reduced-motion: reduce) {
    .architect__image {
        transform: none !important;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .architect {
        --architect-final-offset: 410vw;
    }

    .architect__image--size--XL {
        width: 84vw;
    }

    .architect__image--size--L {
        width: 68vw;
    }

    .architect__image--size--M {
        width: 56vw;
    }

    .architect__image--size--S {
        width: 42vw;
    }

    .architect__image--1 {
        top: -17vw;
    }

    .architect__image--2 {
        top: 38vw;
        width: 48vw;
    }

    .architect__image--3 {
        top: 92vw;
        left: 18vw;
    }

    .architect__image--4 {
        top: 152vw;
    }

    .architect__image--5 {
        top: 178vw;
        left: 12vw;
        width: 76vw;
    }

    .architect__image--6 {
        top: 232vw;
        width: 38vw;
    }

    .architect__image--7 {
        top: 270vw;
        left: 18vw;
    }

    .architect__image--8 {
        top: 305vw;
    }

    .architect__image--9 {
        top: 330vw;
        left: 20vw;
    }

    .architect__image--10 {
        top: 360vw;
        right: 4vw;
    }

    .architect__image--11 {
        left: 8vw;
        width: 78vw;
    }
}

.elements {
    --elements-nav-clearance: 84px;
    --elements-sticky-height: calc(100svh - var(--elements-nav-clearance));
    --elements-showcase-offset: calc(var(--space-l) * -1);
    --elements-track-padding-start: 6vw;
    --elements-track-padding-end: 55vw;
    --elements-image-main: clamp(42rem, 52vw, 60rem);
    --elements-image-third: clamp(31rem, 39vw, 45rem);
    --elements-image-fourth: clamp(31rem, 39vw, 45rem);
    --elements-macro-size: clamp(18rem, 23vw, 27rem);
    --elements-macro-top: 54%;
    position: relative;
    min-height: var(--elements-scroll-height, 200vh);
    padding: 0;
    /* margin: 50vh 0; */
}

.elements .hero {
    z-index: 5;
    margin-bottom: var(--space-l);
}

.note-arrow {
    position: absolute;
    z-index: 30;
    display: flex;
    align-items: flex-start;
    gap: var(--space-3xs);
    pointer-events: none;

    display: none;
}

.note-arrow--elements {
    top: clamp(9.5rem, 28svh, 15rem);
    left: calc(50% - clamp(16rem, 18vw, 24rem));
}

.note-arrow--texture {
    top: clamp(11rem, 12.5vw, 16rem);
    left: clamp(3rem, 15vw, 18rem);
}

.note-arrow--weathering {
    top: calc(100% - var(--space-s));
    left: calc(100% + var(--space-s));
}

.note-arrow--back {
    top: clamp(2.5rem, 6vw, 5.5rem);
    left: calc(50% - clamp(22rem, 26vw, 33rem));
}

.note-arrow__image {
    width: clamp(3rem, 3.3vw, 4.25rem);
    height: auto;
    margin-top: var(--space-xs);
    order: 2;
}

.note-arrow__text {
    order: 1;
    white-space: nowrap;
    transform: rotate(-4deg);
}

.note-arrow--weathering .note-arrow__image {
    order: 1;
    margin-top: var(--space-xs);
}

.note-arrow--weathering .note-arrow__text {
    order: 2;
    margin-top: var(--space-xl);
}

.note-arrow--back .note-arrow__image {
    margin-top: var(--space-m);
}

.elements__sticky {
    position: sticky;
    top: var(--elements-nav-clearance);
    height: var(--elements-sticky-height);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elements__showcase {
    position: relative;
    width: 100%;
    margin-top: var(--elements-showcase-offset);
}



.elements__track {
    display: flex;
    align-items: center;
    width: max-content;
    padding-inline: var(--elements-track-padding-start) var(--elements-track-padding-end);
    will-change: transform;
}

.elements__image {
    flex: 0 0 auto;
    width: var(--elements-image-main);
    height: auto;
    object-fit: contain;

}

.elements__image:nth-child(2) {
    margin-left: 2vw;

}

.elements__image:nth-child(3) {
    width: var(--elements-image-third);

}

.elements__image:nth-child(4) {
    width: var(--elements-image-fourth);
}

.elements__macro {
    position: absolute;
    left: 50%;
    top: var(--elements-macro-top);
    z-index: 20;
    width: var(--elements-macro-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: #fff;
    box-shadow: 0 12px 26px 0 rgba(0, 0, 0, 0.14), 0 47px 47px 0 rgba(0, 0, 0, 0.12), 0 105px 63px 0 rgba(0, 0, 0, 0.07), 0 187px 75px 0 rgba(0, 0, 0, 0.02), 0 292px 82px 0 rgba(0, 0, 0, 0);
}

.elements__macro-source {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.22s ease;
}

@media (max-width: 1024px) {
    .elements {
        --elements-nav-clearance: 0px;
        --elements-sticky-height: 100svh;
        --elements-showcase-offset: calc(var(--space-2xl) * -1);
        --elements-image-main: 76vw;
        --elements-image-third: 60vw;
        --elements-image-fourth: 56vw;
        --elements-macro-size: clamp(17.5rem, 36vw, 22rem);
        --elements-macro-top: clamp(11rem, 40svh, 19rem);
    }

    .elements__sticky {
        /* justify-content: space-between; */
        padding: 0;
    }

    .elements__track {
        width: 100%;
        overflow-x: auto;
        overscroll-behavior-x: auto;
        touch-action: pan-x pan-y;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .elements__track::-webkit-scrollbar {
        display: none;
    }

}

@media (max-width: 768px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-3xl) * -1);
        --elements-image-main: 118vw;
        --elements-image-third: 100vw;
        --elements-image-fourth: 96vw;
        --elements-macro-size: clamp(15rem, 43vw, 19rem);
        --elements-macro-top: clamp(11rem, 43svh, 20rem);
    }

}

@media (max-width: 560px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-2xl) * -1);
        --elements-image-main: 130vw;
        --elements-image-third: 110vw;
        --elements-image-fourth: 106vw;
        --elements-macro-size: clamp(13.5rem, 62vw, 16.25rem);
        --elements-macro-top: clamp(9.5rem, 42svh, 16rem);
    }
}

@media (max-width: 1024px) and (max-height: 760px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-l) * -1);
        --elements-macro-size: clamp(14rem, 32vw, 18rem);
        --elements-macro-top: clamp(9rem, 43svh, 15rem);
    }

}

@media (max-width: 768px) and (max-height: 680px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-m) * -1);
        --elements-macro-size: clamp(12rem, 40vw, 15rem);
        --elements-macro-top: clamp(8.25rem, 43svh, 12rem);
    }

}

@media (min-width: 1025px) and (max-height: 720px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-xs) * -1);
        --elements-image-main: clamp(40rem, 52vw, 54rem);
        --elements-image-third: clamp(30rem, 39vw, 42rem);
        --elements-image-fourth: clamp(30rem, 39vw, 42rem);
        --elements-macro-size: clamp(15rem, 22vw, 21rem);
        --elements-macro-top: 56%;
    }

    .elements__sticky {
        /* justify-content: space-between; */
        /* padding: var(--space-l) 0 var(--space-2xs); */
    }

    .note-arrow--elements {
        top: clamp(8rem, 30svh, 11rem);
        left: calc(50% - clamp(19rem, 20vw, 23rem));
    }
}

@media (min-width: 1025px) and (max-height: 560px) {
    .elements {
        --elements-showcase-offset: calc(var(--space-m) * -1);
        --elements-macro-size: clamp(12.5rem, 18vw, 16rem);
        --elements-macro-top: clamp(11.75rem, 67svh, 17.5rem);
    }

    .elements__sticky {
        /* padding: var(--space-xdcts) 0 0; */
    }

    .note-arrow--elements {
        top: clamp(7rem, 37svh, 9rem);
        left: calc(50% - clamp(19rem, 21vw, 24rem));
    }
}

@media (orientation: portrait) {
    .elements {
        --elements-nav-clearance: 0px;
        --elements-sticky-height: 90svh;
        --elements-showcase-offset: 0;
        --elements-image-main: min(135vw, 42rem);
        --elements-image-third: min(112vw, 34rem);
        --elements-image-fourth: min(108vw, 33rem);
        --elements-macro-size: clamp(13.5rem, 58vw, 22rem);
        --elements-macro-top: 43%;
    }

    .elements .hero {
        margin-bottom: 0;
    }

    .elements__sticky {
        justify-content: flex-start;
        padding: clamp(2rem, 6svh, 5rem) 0 0;
    }

    .elements__showcase {
        position: static;
        flex: 1 1 auto;
        display: flex;
        align-items: flex-end;
        min-height: 0;
    }

    .elements__track {
        align-items: flex-end;
        padding-bottom: clamp(0.75rem, 4svh, 2.5rem);
    }
}

@media (orientation: portrait) and (max-height: 740px) {
    .elements {
        --elements-macro-size: clamp(11.5rem, 48vw, 16rem);
    }

    .elements__sticky {
        padding-top: clamp(1rem, 4svh, 2rem);
    }
}

.parallax {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .parallax {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .note-arrow--elements {
        top: clamp(9rem, 34svh, 19rem);
        left: clamp(1.25rem, 11vw, 5rem);
    }

    .note-arrow--texture {
        top: clamp(9rem, 30vw, 12rem);
        left: var(--space-s);
    }

    .note-arrow--weathering {
        top: calc(100% + var(--space-2xs));
        left: 50%;
    }

    .note-arrow--back {
        top: var(--space-s);
        left: var(--space-s);
    }

    .note-arrow__image {
        width: 3rem;
    }
}

@media (max-width: 560px) {
    .note-arrow--elements {
        top: clamp(7.5rem, 30svh, 12rem);
    }
}

.cover {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--color-white);
}

.cover__text {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:
        clamp(5.75rem, 2.8846rem + 5.8462vw, 10.5rem) clamp(1rem, 0.5385rem + 2.0513vw, 3.75rem) 0
}

.cover__title {}

.cover__subtitle {
    margin-top: var(--space-m);
}

.cover .buttons {
    margin-top: var(--space-l);

}

.buttons {
    display: flex;
    gap: var(--space-xs);
    /* margin-top: var(--space-xl); */
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: var(--space-2xs);

    border-radius: 60px;
    padding: var(--space-s) var(--space-s);
    text-decoration: none;
    border: none;
    transition: background-color 0.2s ease;
}

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

.button--secondary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.button--black {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.button:hover {
    background-color: var(--color-blue-hover);
}

a.button:hover {
    color: var(--color-white);
}

.button--primary:hover {
    background-color: var(--color-primary-hover);
}

a.button--primary:hover {
    color: var(--color-white);
}

.button--secondary:hover {
    background-color: var(--color-secondary-hover);
}

a.button--secondary:hover {
    color: var(--color-dark);
}

.button-s {
    padding: var(--space-2xs) var(--space-s);
}

@media (max-width:768px) {

    .button-s {
        padding: var(--space-xs) var(--space-s);
    }
}

body.popup-lock {
    overflow: hidden;
}

.popup[hidden] {
    display: none;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-m);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(28px) saturate(120%);
    -webkit-backdrop-filter: blur(28px) saturate(120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.popup--open {
    opacity: 1;
    pointer-events: auto;
}

.popup__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(410px, .6fr);
    gap: clamp(1.5rem, 1.0385rem + 2.0513vw, 3.5rem);
    width: min(100%, 920px);
    max-height: min(720px, calc(100svh - 2 * var(--space-m)));
    overflow: auto;
    padding: var(--space-l) var(--space-xl) var(--space-l) var(--space-l);
    border-radius: 28px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 55px 120px rgba(0, 0, 0, 0.22);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.22s ease;
}

.popup--open .popup__content {
    transform: translateY(0) scale(1);
}

.popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--color-dark);
    background: rgba(210, 210, 215, 0.7);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.popup__close:hover {
    background: rgba(190, 190, 196, 0.9);
    transform: scale(1.04);
}

.popup__close:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}

.popup__close svg {
    width: 18px;
    height: 18px;
}

.popup__intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-xs);
}

.popup__eyebrow {
    text-align: left;
    color: var(--color-grey);
}

.popup__title {
    max-width: 420px;
    padding-right: var(--space-l);
    text-align: left;
}

.popup__text {
    max-width: 430px;
    text-align: left;
    font-weight: 500;
    color: var(--color-dark);
}

.popup__form {
    min-height: 440px;
    border-radius: 22px;
    background: #f5f5f7;
    overflow: hidden;
}

.popup__form iframe {
    display: block;
    width: 100%;
    min-height: 440px;
    border: 0;
}

.popup__form-shell {
    display: grid;
    gap: var(--space-s);
    align-content: start;
    height: 100%;
    min-height: 440px;
    padding: clamp(1.25rem, 1.0192rem + 1.0256vw, 2.25rem);
}

.popup__form-shell span {
    display: block;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.08);
}

.popup__form-shell span:first-child {
    width: 64%;
    height: 22px;
    margin-bottom: var(--space-xs);
    background: rgba(29, 29, 31, 0.16);
    box-shadow: none;
}

.popup__form-shell span:last-child {
    width: 58%;
    margin-top: var(--space-xs);
    border-radius: 999px;
    background: var(--color-blue);
    box-shadow: none;
}

.popup__social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3xs);
    font-weight: 500;
    color: var(--color-grey);
    margin-top: var(--space-m);
}

.popup__social .back__social-links a {
    color: var(--color-dark);
}

@media (prefers-reduced-motion: reduce) {

    .popup,
    .popup__content {
        transition: none;
    }
}

@media (max-width: 768px) {
    .popup {
        align-items: flex-end;
        padding: var(--space-xs);
    }

    .popup__content {
        grid-template-columns: 1fr;
        gap: var(--space-l);
        width: 100%;
        max-height: calc(85svh - 2 * var(--space-s));
        padding: var(--space-s) var(--space-s) var(--space-s);
        border-radius: 24px;
    }

    .popup__form {
        margin-left: -12px;
    }

    .popup__social {
        margin-top: var(--space-s);

    }

    .popup__close {
        top: 12px;
        right: 12px;
    }

    .popup__title,
    .popup__text,
    .popup__eyebrow {
        max-width: none;
        text-align: left;
    }

    .popup__title {
        padding-right: var(--space-l);
    }

    .popup__form,
    .popup__form iframe,
    .popup__form-shell {
        min-height: 360px;
    }
}

.cover__images {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    max-width: 100%;
    margin: clamp(-7.375rem, -8vw, -5.375rem) auto 0;
    /* padding: 0 0 clamp(3.75rem, 2.8846rem + 3.8462vw, 7.5rem); */
    pointer-events: none;

    z-index: 5;
}

.cover__image {
    position: relative;
    width: 100%;
}

.cover__image-source {
    display: block;
    width: 100%;
    height: auto;
}

.cover__image--blue {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
    width: 110%;
    justify-self: end;
    margin-top: -18%;
}

.cover__image--yellow {
    grid-column: 1 / 7;
    grid-row: 2 / 5;
    width: 110%;
    justify-self: start;
    margin-top: -28%;
}

.cover__image--green {
    grid-column: 6 / 12;
    grid-row: 4 / 7;
    width: 100%;
    justify-self: center;
    margin-top: -34%;
}

@media (max-width: 900px) {
    .cover__subtitle {
        max-width: 620px;
    }



    .buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cover__images {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        margin-top: calc(var(--space-m) * -1);
        /* padding-bottom: var(--space-2xl); */
    }

    .cover__image--blue {
        grid-column: 4 / 9;
        grid-row: 1 / 3;
        width: 104%;
        margin-top: 0;
    }

    .cover__image--yellow {
        grid-column: 1 / 5;
        grid-row: 2 / 5;
        width: 136%;
        margin-top: -10%;
        margin-left: -24%;
    }

    .cover__image--green {
        grid-column: 3 / 8;
        grid-row: 4 / 7;
        width: 100%;
        margin-left: 24%;
        margin-top: -14%;
    }
}

@media (max-width: 768px) {
    .cover .buttons {
        margin-top: var(--space-m);

    }

    .cover__images {
        margin-top: calc(var(--space-3xl) * -1);
    }

    .cover__image--blue {
        width: 136%;
        margin-right: -36%;
    }

    .cover__image--yellow {
        width: 184%;
        margin-top: -25%;
        margin-left: -54%;
    }

    .cover__image--green {
        width: 122%;
        margin-top: -38%;
        margin-left: 58%;
    }
}

@media (max-width: 560px) {
    .cover__text {
        padding: calc(var(--space-l)) var(--space-s) 0;
    }

    .cover .buttons {
        flex-direction: column;
    }

    .buttons {
        gap: var(--space-2xs);
    }

    .cover__images {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        margin-top: calc(var(--space-3xl) * -1);
    }

    .cover__image--blue {
        width: 300%;
        margin-right: -190%;
        margin-top: -35%;
        grid-column: 3 / 5;
        grid-row: 1 / 3;
    }

    .cover__image--yellow {
        width: 225%;
        margin-top: -60%;
        margin-left: -94%;
        grid-column: 1 / 4;
        grid-row: 2 / 4;
    }

    .cover__image--green {
        width: 280%;
        margin-top: -76%;
        margin-left: 222%;
        grid-column: 3 / 5;
        grid-row: 3 / 5;
    }

}

.impact-stats {
    --impact-gradient-eyebrow: linear-gradient(90deg, #c957cc 0%, #eb4c8d 58%, #ff3f55 100%);
    --impact-gradient-number: linear-gradient(100deg, #168df2 0%, #6a6bdc 23%, #d64fb8 46%, #f43e65 72%, #ff4a12 100%);
    --impact-gradient-caption: linear-gradient(92deg, #4779e8 0%, #8b62d6 24%, #d64fb8 52%, #f43e65 78%, #ff403f 100%);
    --impact-gradient-objects: linear-gradient(92deg, #168df2 0%, #656fdd 44%, #d64fb8 100%);
    --impact-gradient-regions: linear-gradient(90deg, #d94ab1 0%, #f43d6b 100%);
    --impact-gradient-years: linear-gradient(90deg, #f43d5d 0%, #ff4b10 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(1rem, 0.5385rem + 2.0513vw, 3.75rem);
    text-align: center;
}

.impact-stats__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .impact-stats__label,
.impact-stats__text  */
.impact-stats__eyebrow,
.impact-stats__number,
.impact-stats__caption,
.impact-stats__value {
    background: var(--impact-gradient-number);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.impact-stats__eyebrow,
.impact-stats__caption {
    font-weight: 700;
    line-height: 1;
}

.impact-stats__eyebrow {
    background-image: var(--impact-gradient-eyebrow);
    font-size: var(--h3);
}

.impact-stats__number {
    display: inline-block;
    background-image: var(--impact-gradient-number);
    margin-top: var(--space-m);
    padding: 0 0.04em 0.06em;
    font-weight: 700;
    font-size: calc(2 * var(--h1));
    line-height: 0.86;
}

.impact-stats__caption {
    background-image: var(--impact-gradient-caption);
    margin-top: var(--space-m);
    font-size: var(--h3);
}

.impact-stats__list {
    display: flex;
    flex-direction: row;
    gap: clamp(var(--space-xl), 8vw, calc(var(--space-3xl) * 1.2));
    margin-top: var(--space-3xl);
    text-align: left;
}

.impact-stats__item {
    max-width: 210px;
}

/* .impact-stats__label {
    background-image: var(--impact-gradient-number);
} */

.impact-stats__label,
.impact-stats__text {
    color: var(--color-grey);
    text-align: left;
}

.impact-stats__value {
    background-image: var(--impact-gradient-number);
    margin-top: var(--space-3xs);
    font-weight: 700;
    font-size: var(--h3);
    line-height: 100%;
}

/* .impact-stats__label--objects,
.impact-stats__text--objects */
.impact-stats__value--objects {
    background-image: var(--impact-gradient-objects);
}

/* .impact-stats__label--regions,
.impact-stats__text--regions */
.impact-stats__value--regions {
    background-image: var(--impact-gradient-regions);
}

/* .impact-stats__label--years,
.impact-stats__text--years */
.impact-stats__value--years {
    background-image: var(--impact-gradient-years);
}

.impact-stats__text {
    margin-top: var(--space-2xs);
}

@media (max-width: 768px) {
    .impact-stats__list {
        width: min(100%, 520px);
        gap: var(--space-l);
    }
}

@media (max-width: 560px) {
    .impact-stats {
        /* margin: clamp(3.75rem, 2.8846rem + 3.8462vw, 7.5rem) 0; */
        padding: 0 var(--space-s);
    }

    .impact-stats__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: var(--space-2xl);
        width: min(100%, 280px);
        gap: var(--space-m) var(--space-l);
        text-align: center;
    }

    .impact-stats__item {
        max-width: none;
        min-width: 0;
    }

    .impact-stats__item:nth-child(2) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
    }

    .impact-stats__item:first-child {
        grid-column: 1;
        grid-row: 2;
    }

    .impact-stats__item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .impact-stats__label,
    .impact-stats__text {
        text-align: center;
    }
}

.back {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: clamp(3.75rem, 2.8846rem + 3.8462vw, 7.5rem) clamp(1rem, 0.5385rem + 2.0513vw, 3.75rem) 0;
    overflow: hidden;
    background: var(--color-white);
}

.back .hero {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-3xl);
}

.back .buttons {
    margin-top: var(--space-m);
}

.back .hero__title {}

.back .hero__body {}

.back__social {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    align-items: center;
}

.back__social-title {
    color: var(--color-grey);
}

.back__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    justify-content: center;
    color: var(--color-dark);
}

.back__social a {
    display: inline-flex;
    align-items: center;
    /* min-height: 44px;   */
    color: var(--color-dark);
    text-decoration: none;
}

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

.back__image {
    display: block;
    width: min(80%, 2000px);
    height: auto;
    margin: 0 auto;
}

.footer {
    margin: 0;
    padding: var(--space-3xl) 0 0;
}

.footer__content {
    max-width: calc(1440px - 2 * var(--space-m));
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;

    padding: 0 var(--space-m);
}

.footer__content,
.footer__nav,
.footer__column,
.footer__bottom,
.footer__legal {
    display: flex;
}


.footer__brand {
    max-width: 300px;
    margin-top: calc(-1 * var(--space-s));
}

.footer__logo-source {
    display: block;
    width: min(100%, 300px);
    height: auto;
}

.footer__logo-source--mobile {
    display: none;
}

.footer__mobile-brand {
    display: none;
}

.footer__mobile-logo-source {
    display: block;
    width: 100%;
    height: auto;
}

.footer__nav {
    justify-content: flex-end;
    gap: clamp(var(--space-xl), 7vw, calc(var(--space-xl) * 1.85));
}

.footer__nav * {
    text-align: left;
}

.footer__column {
    flex-direction: column;
    color: var(--color-dark);
    text-wrap: nowrap;
}

.footer__title {
    margin-bottom: var(--space-xs);
    padding: 0;
    border: 0;
    color: var(--color-grey);
    background: transparent;
    text-align: left;
    cursor: default;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xs) var(--space-s);
}

.footer__column a,
.footer__legal a,
.footer__studio {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    /* min-height: 44px; */
    text-decoration: none;
    color: var(--color-grey);
    transition: color 0.2s ease;
}

.footer__links a {
    color: var(--color-dark);

}

.footer__column a::after,
.footer__legal a::after,
.footer__studio::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.65);
    transform-origin: left center;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.footer__column a:hover,
.footer__column a:focus-visible,
.footer__legal a:hover,
.footer__legal a:focus-visible,
.footer__studio:hover,
.footer__studio:focus-visible {
    color: var(--color-primary);
}

.footer__column a:hover::after,
.footer__column a:focus-visible::after,
.footer__legal a:hover::after,
.footer__legal a:focus-visible::after,
.footer__studio:hover::after,
.footer__studio:focus-visible::after {
    /* opacity: 1;
    transform: scaleX(1); */
}

.footer__column a:focus-visible,
.footer__legal a:focus-visible,
.footer__studio:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 6px;
}

.footer__bottom {
    justify-content: space-between;
    gap: var(--space-m);
    margin-top: var(--space-3xl);
    padding-top: var(--space-l);
    color: var(--color-grey);

    background-color: var(--color-secondary);
    padding: var(--space-s) var(--space-m);
}

.footer__legal {
    text-align: left;
    gap: var(--space-s);
    color: var(--color-grey);
    white-space: nowrap;
}

.footer__legal * {
    text-align: left;
}

.cookie-notice {
    /* position: fixed;
    right: var(--space-m);
    bottom: var(--space-m);
    z-index: 930;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-xs);
    width: min(720px, calc(100vw - 2 * var(--space-m)));
    padding: var(--space-xs);
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-xs);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%); */

    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 930;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-xs);
    width: calc(100% - 2 * var(--space-s) - 2 * var(--space-m));
    padding: var(--space-2xs) calc(var(--space-m) + var(--space-s));
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.86);
    /* box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14); */
    border-top: 1px solid #00000014;
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice__text {
    margin: 0;
    color: var(--color-dark);
    font-weight: 600;
    /* line-height: 1.35; */
    text-align: left;
    max-width: 100%;
    text-wrap: pretty;
}

.cookie-notice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: var(--space-2xs) var(--space-s);
    color: var(--color-dark);
    font-weight: 600;
    white-space: nowrap;
    background: var(--color-secondary);
    border: 0;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cookie-notice__button:hover,
.cookie-notice__button:focus-visible {
    background: var(--color-secondary-hover);
}

.cookie-notice__button:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 4px;
}

@media (max-width: 1280px) {
    .footer__content {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer__nav {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .back__social {
        margin-bottom: calc(var(--space-m) * -1);
    }

    .footer__nav {
        /* display: grid; */
        /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
        /* gap: var(--space-l) var(--space-xl); */
        /* margin: var(--space-xl) 0 0; */
    }

    .footer__bottom,
    .footer__legal {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-2xs);
    }
}

@media (max-width: 768px) {
    .footer {
        /* padding: var(--space-3xl) var(--space-s) var(--space-l) var(--space-s); */
    }



    .footer__content {
        gap: var(--space-3xs);
    }

    .footer__brand {
        display: none;
    }

    .back {
        padding: var(--space-xl) var(--space-s) 0;
    }

    .back .hero {
        padding-inline: 0;
    }

    .back__image {
        width: 160%;
        left: -32%;
        position: relative;
        margin-top: var(--space-s);
    }

    .note-arrow {
        display: none;
    }

    .back__social {
        margin-bottom: calc(var(--space-2xs) * -1);
    }


    .footer__nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: var(--space-m);
        border-top: 1px solid #d9d9df;
    }

    .footer__column {
        border-bottom: 1px solid #d9d9df;
    }

    .footer__title {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
        margin-bottom: 0;
        padding: 0 32px 0 0;
        color: var(--color-grey);
        cursor: pointer;
    }

    .footer__title::before,
    .footer__title::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 2px;
        width: 9px;
        height: 1.5px;
        background: var(--color-grey);
        transform: translateY(-50%);
        transition: transform 0.18s ease;
    }

    .footer__title::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .footer__title[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(0deg);
    }

    .footer__links {
        gap: var(--space-2xs);
        padding: 0 0 var(--space-s);
    }

    .footer__links[hidden] {
        display: none;
    }

    .footer__column a {
        min-height: 28px;
        color: var(--color-dark);
    }

    .footer__mobile-brand {
        display: block;
        width: 100%;
        margin: 0;
    }

    .footer__bottom {
        margin-top: 0;
        background: var(--color-white);
        padding: var(--space-s) var(--space-m) var(--space-xl);
    }

    .cookie-notice {
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: 1fr;
        width: auto;
        padding: var(--space-xs);
    }

    .cookie-notice__text {
        text-align: center;
    }

    .cookie-notice__button {
        width: 100%;
        max-width: 100%;
    }

    /* .footer__brand {
        max-width: 100%;
        display: flex;
        align-items: center;
    }

    .footer__logo-source--desktop {
        display: none;
    }

    .footer__logo-source--mobile {
        display: inline-block;
        width: 60%;
        margin: 0 auto;
    } */
}

@media (max-width:560px) {
    .back .buttons {
        flex-direction: column;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__logo-source {
        width: min(100%, 100%);
    }
}

section {
    position: relative;
    margin: 50vh 0;
}

@media (max-width: 1440px) {
    section {
        margin: 30vh 0;
    }
}

@media (max-width: 768px) {
    section {
        margin: 24vh 0;
    }
}