:root {
    --color-page: #fff;
    --color-text: #1d1d1b;
    --color-accent: #1d1d1b;
    --color-accent-hover: #55534f;
    --container-width: 1440px;
    --gutter: clamp(20px, 4vw, 64px);
    --hero-progress: 0;
    --hero-ease: 0;
    --hero-copy-opacity: 1;
    --hero-flight-opacity: 1;
    --hero-header-logo-opacity: 0;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--color-page);
    color: var(--color-text);
    font-family: Arial, sans-serif;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
}
.container {
    width: min(100% - (var(--gutter) * 2), var(--container-width));
    margin: 0 auto;
}
.site-footer {
    overflow: hidden;
    background: #1a1a1a;
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.site-footer__main {
    display: grid;
    width: 100%;
    min-height: 815px;
    grid-template-columns: 440px minmax(0, 1fr);
}

.site-footer__brand {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    padding: 24px 0 30px 35px;
}

.site-footer__brand .custom-logo-link {
    width: min(100%, 407px);
}

.site-footer__brand .custom-logo {
    width: 100%;
    max-height: none;
    filter: brightness(0) invert(1);
}

.site-footer__content {
    position: relative;
    min-width: 0;
    padding: 0 55px 0 56px;
}

.site-footer__top {
    position: relative;
    min-height: 414px;
    padding-top: 163px;
}

.site-footer__top-inner {
    display: grid;
    min-height: 251px;
    grid-template-columns: 250px 240px;
    gap: 32px;
    padding: 97px 0 34px 155px;
    border-top: 1px solid rgb(255 255 255 / 0.24);
    border-bottom: 1px solid rgb(255 255 255 / 0.24);
}

.site-footer__heading {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.site-footer__contact-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.3;
}

.site-footer__address p,
.site-footer__address {
    margin: 0;
}

.site-footer__contact-link,
.site-footer__social-text-links a,
.site-footer__legal a {
    transition:
        color 0.24s ease,
        opacity 0.24s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible,
.site-footer__social-text-links a:hover,
.site-footer__social-text-links a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #b8b8b8;
}

.site-footer__social-text-links {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 18px 32px;
    font-size: 18px;
    line-height: 1.3;
}

.site-footer__social-text-links a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__middle {
    position: relative;
    min-height: 301px;
    border-bottom: 1px solid rgb(255 255 255 / 0.24);
}

.site-footer__navigation {
    position: relative;
    z-index: 1;
    padding: 73px 0 0 166px;
}

.site-footer__menu {
    display: grid;
    width: max-content;
    grid-template-rows: repeat(3, 24px);
    grid-auto-flow: column;
    grid-auto-columns: 81px;
    gap: 23px 71px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__menu a {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
    transition: color 0.24s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
    color: #b8b8b8;
}

.site-footer__legal {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 166px;
    display: grid;
    grid-template-columns: 315px 1fr;
    font-size: 16px;
    line-height: 1.25;
}

.site-footer__rail {
    display: flex;
    min-height: 100px;
    align-items: flex-start;
    padding-top: 28px;
}

.site-footer__social-icons {
    display: flex;
    align-items: center;
    gap: 17px;
    /* Keep the icon group centred in the viewport, not in the right footer column. */
    margin-left: calc(50vw - 576px);
}

.site-footer__social-icons a {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition:
        background-color 0.24s ease,
        opacity 0.24s ease;
}

.site-footer__social-icons a:hover,
.site-footer__social-icons a:focus-visible {
    background: rgb(255 255 255 / 0.1);
    opacity: 0.72;
}

.site-footer__social-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.site-footer__developer {
    display: flex;
    width: 168px;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-left: auto;
    padding: 7px 8px 7px 10px;
    border-radius: 12px;
    background: rgb(255 255 255 / 0.03);
    color: rgb(255 255 255 / 0.4);
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.site-footer__developer:hover,
.site-footer__developer:focus-visible {
    background: rgb(255 255 255 / 0.09);
    color: rgb(255 255 255 / 0.72);
}

.site-footer__developer-logo {
    width: 25px;
    height: 28px;
    flex: 0 0 auto;
    object-fit: cover;
    opacity: 0.6;
}

.site-footer__decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.site-footer__decor-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    opacity: 0.3;
}

.site-footer__decor--bathtub {
    top: 0;
    left: 75px;
    width: 263px;
    height: 163px;
}

.site-footer__decor--shower {
    top: 88px;
    right: -19px;
    width: 204px;
    height: 449px;
}

.site-footer__decor--faucet {
    top: -36px;
    left: -19px;
    width: 146px;
    height: 457px;
}

.site-footer__copyright {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: #262626;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    padding: 28px 0;
    color: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
}
.admin-bar .site-header {
    top: 32px;
}
.site-header__container {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 54px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    padding: 0 20px;
}
.site-header__languages {
    display: flex;
    grid-column: 1;
    align-items: center;
    justify-self: start;
    gap: 11px;
    pointer-events: auto;
}
.site-header__language {
    color: currentColor;
    font-family: Athelas, Georgia, serif;
    font-size: 20px;
    line-height: 1;
    opacity: 0.28;
    transition: opacity 0.24s ease;
}
.site-header__language:hover,
.site-header__language:focus-visible,
.site-header__language.is-current {
    opacity: 1;
}
.site-header__logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
}
.site-header__actions {
    display: flex;
    grid-column: 3;
    align-items: center;
    justify-self: end;
    gap: 40px;
    pointer-events: auto;
}
.site-header__action,
.site-header__menu-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}
.site-header__action {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    transition: opacity 0.24s ease;
}
.site-header__action:hover,
.site-header__action:focus-visible {
    opacity: 0.58;
}
.site-header__icon {
    display: block;
    width: 24px;
    height: 24px;
}
.site-header__cart-button .site-header__icon {
    width: 20px;
    height: 20px;
}
.site-header__menu-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.site-header__menu-label {
    font-family: Athelas, Georgia, serif;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
}
.site-header__burger {
    position: relative;
    display: block;
    width: 54px;
    height: 54px;
}
.site-header__burger span {
    position: absolute;
    left: 7px;
    width: 40px;
    height: 1px;
    background: currentColor;
    transition:
        top 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        left 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.25s ease;
}
.site-header__burger span:nth-child(1) {
    top: 17.5px;
}
.site-header__burger span:nth-child(2) {
    top: 26.5px;
}
.site-header__burger span:nth-child(3) {
    top: 35.5px;
}
.is-menu-open .site-header {
    color: #000;
    mix-blend-mode: normal;
}
.is-menu-open .site-header__languages,
.is-menu-open .site-header__logo,
.is-menu-open .site-header__action {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.is-menu-open .site-header__actions {
    gap: 0;
}
.is-menu-open .site-header__menu-label {
    color: #000;
    font-size: 18px;
}
.is-menu-open .site-header__burger span:nth-child(1) {
    top: 17.5px;
    left: 11px;
    transform: none;
}
.is-menu-open .site-header__burger span:nth-child(2) {
    top: 26.5px;
    left: 2px;
    opacity: 1;
}
.is-menu-open .site-header__burger span:nth-child(3) {
    top: 35.5px;
    left: 11px;
    transform: none;
}
.custom-logo-link {
    display: block;
}
.custom-logo {
    width: auto;
    max-height: 72px;
}
.site-header .custom-logo {
    filter: invert(1);
}
.has-hero-motion .site-header__logo .custom-logo {
    opacity: var(--hero-header-logo-opacity);
}
.has-project-hero .site-header {
    mix-blend-mode: normal;
}
.is-search-open .site-header__logo .custom-logo {
    opacity: 1;
}
.site-search-panel,
.site-menu-panel {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: #f7f7f5;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.38s ease,
        visibility 0.38s ease;
}
.site-search-panel {
    bottom: auto;
    min-height: 180px;
    transform: translateY(-24px);
    transition:
        opacity 0.32s ease,
        visibility 0.32s ease,
        transform 0.32s ease;
}
.is-search-open .site-search-panel,
.is-menu-open .site-menu-panel {
    opacity: 1;
    visibility: visible;
}
.is-search-open .site-search-panel {
    transform: none;
}
.site-search-panel__inner {
    width: min(calc(100% - 40px), 1400px);
    margin: 0 auto;
}
.site-search-panel__inner {
    padding-top: 92px;
}
.site-search-panel__form {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #151515;
}
.site-search-panel__input {
    width: 100%;
    padding: 12px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #151515;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(26px, 2.4vw, 40px);
}
.site-search-panel__submit {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #151515;
    cursor: pointer;
}
.site-search-panel__icon {
    width: 24px;
    height: 24px;
}
.site-menu-panel {
    overflow-x: hidden;
    overflow-y: auto;
    background: #f5f5f5;
}
.site-menu-panel__inner {
    display: grid;
    width: 100%;
    min-height: 100%;
    grid-template-columns: minmax(0, 64.476%) minmax(180px, 35.524%);
    grid-template-rows: auto;
    padding: 86px 20px 132px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.5s ease 0.08s,
        transform 0.5s ease 0.08s;
}
.is-menu-open .site-menu-panel__inner {
    opacity: 1;
    transform: none;
}
.site-menu-panel__categories,
.site-menu-panel__projects {
    display: none;
    grid-column: 1;
    grid-row: 1;
}
.site-menu-panel__mobile-head {
    display: none;
}
.site-menu-panel.is-catalog-preview-open .site-menu-panel__categories {
    display: block;
    animation: menu-categories-reveal 0.38s ease both;
}
.site-menu-panel.is-projects-preview-open .site-menu-panel__projects {
    display: block;
    animation: menu-categories-reveal 0.38s ease both;
}
.site-menu-panel__category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-menu-panel__project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-menu-panel__category-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.site-menu-panel__project-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.site-menu-panel__category-media {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 257 / 317;
}
.site-menu-panel__project-media {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 257 / 317;
}
.site-menu-panel__category-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.site-menu-panel__project-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.site-menu-panel__category-name {
    width: 100%;
    font-family: Athelas, Georgia, serif;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}
.site-menu-panel__project-name {
    width: 100%;
    font-family: Athelas, Georgia, serif;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}
.site-menu-panel__category-card:hover .site-menu-panel__category-image,
.site-menu-panel__category-card:focus-visible .site-menu-panel__category-image,
.site-menu-panel__project-card:hover .site-menu-panel__project-image,
.site-menu-panel__project-card:focus-visible .site-menu-panel__project-image {
    transform: scale(1.035);
}
@keyframes menu-categories-reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@media (hover: none), (pointer: coarse) {
    .site-menu-panel__categories {
        display: block;
    }
}
.site-menu-panel__navigation {
    position: sticky;
    z-index: 1;
    top: 136px;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin-top: 50px;
}
.site-menu-panel .site-menu--panel {
    align-items: flex-end;
    flex-direction: column;
    gap: 40px;
}
.site-menu-panel .site-menu--panel li {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.site-menu-panel .site-menu--panel .sub-menu { display: none; }
.site-menu-panel .site-menu--panel a {
    position: relative;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
}
.site-menu-panel .site-menu--panel li:first-child a {
    font-weight: 400;
}
.site-menu-panel .site-menu--panel .current-menu-item a,
.site-menu-panel .site-menu--panel a:hover,
.site-menu-panel .site-menu--panel a:focus-visible {
    color: #000;
}
@media (min-width: 768px) {
    .site-menu-panel .site-menu--panel:has(a:hover) a,
    .site-menu-panel .site-menu--panel:has(a:focus-visible) a {
        color: #cacaca;
    }
    .site-menu-panel .site-menu--panel:has(a:hover) a:hover,
    .site-menu-panel .site-menu--panel:has(a:focus-visible) a:focus-visible {
        color: #000;
    }
}
.site-menu-panel .site-menu--panel .is-catalog-menu-item a {
    padding-left: 28px;
}
.site-menu-panel .site-menu--panel .is-projects-menu-item a {
    padding-left: 28px;
}
.site-menu-panel .site-menu--panel .is-catalog-menu-item a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}
.site-menu-panel .site-menu--panel .is-projects-menu-item a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}
.site-menu-panel__footer {
    position: fixed;
    z-index: 2;
    right: 20px;
    bottom: 37px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #cacaca;
    background: #f5f5f5;
    box-shadow: 0 37px 0 #f5f5f5;
}
.site-menu-panel__socials {
    display: flex;
    align-items: center;
}
.site-menu-panel__socials a {
    display: block;
    width: 48px;
    height: 48px;
    border: 0.5px solid #cacaca;
    border-radius: 50%;
    background: #fff;
    transition:
        opacity 0.24s ease,
        background-color 0.24s ease;
}
.site-menu-panel__socials a:hover,
.site-menu-panel__socials a:focus-visible {
    background: #fff;
    opacity: 0.62;
}
.site-menu-panel__social-icon {
    display: block;
    width: 100%;
    height: 100%;
    filter: invert(1);
}
.site-menu-panel__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px;
    border-radius: 10px;
    background: #fff;
}
.site-menu-panel__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.24s ease;
}
.site-menu-panel__contact:hover,
.site-menu-panel__contact:focus-visible {
    opacity: 0.56;
}
.site-menu-panel__contact-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}
.is-menu-open,
.is-search-open {
    overflow: hidden;
}
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.site-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-menu a,
.button {
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
}
.site-menu a:hover,
.site-menu a:focus-visible {
    color: var(--color-accent-hover);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    cursor: pointer;
}
.button:hover,
.button:focus-visible {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
[data-animate].is-visible {
    opacity: 1;
    transform: none;
}
[data-accordion-panel] {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}
[data-accordion-panel] > * {
    overflow: hidden;
}
[data-accordion].is-open [data-accordion-panel] {
    grid-template-rows: 1fr;
}

.text-editor-section {
    padding: 60px 20px 100px;
    background: #fff;
    color: #000;
}

.text-editor-section__container {
    width: min(100%, 1391px);
    margin: 0 auto;
}

.text-editor-section__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-editor-section__breadcrumbs a {
    transition: opacity 0.24s ease;
}

.text-editor-section__breadcrumbs a:hover,
.text-editor-section__breadcrumbs a:focus-visible {
    opacity: 0.65;
}

.text-editor-section__breadcrumb-separator {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    background: #000;
}

.text-editor-section__breadcrumbs [aria-current="page"] {
    color: #b8b8b8;
}

.text-editor-section__content {
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.18;
    color: rgb(0 0 0 / 0.7);
}

.text-editor-section__content > :first-child {
    margin-top: 0;
}

.text-editor-section__content h1,
.text-editor-section__content h2 {
    color: #211f1e;
    font-family: Athelas, Georgia, serif;
    font-weight: 400;
}

.text-editor-section__content h1 {
    width: min(1391px, 100%);
    margin: 0 0 40px;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    color: #000;
}

.text-editor-section__content h2 {
    margin: 48px 0 30px;
    font-size: 50px;
    line-height: 1.12;
}

.text-editor-section__content h2,
.text-editor-section__content p,
.text-editor-section__content ul,
.text-editor-section__content ol {
    max-width: 1131px;
    margin: 0;
}

.text-editor-section__content p + p,
.text-editor-section__content p + ul,
.text-editor-section__content p + ol,
.text-editor-section__content ul + p,
.text-editor-section__content ol + p,
.text-editor-section__content ul + ul,
.text-editor-section__content ol + ol {
    margin-top: 20px;
}

.text-editor-section__content li + li {
    margin-top: 4px;
}

.text-editor-section__content ul,
.text-editor-section__content ol {
    padding-left: 36px;
}

.text-editor-section__content a {
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.page-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #fff;
    color: #1b1b1b;
}

.page-hero__clouds {
    position: absolute;
    top: 121px;
    left: 50%;
    width: min(1254px, 110vw);
    height: 410px;
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events: none;
}

.page-hero__cloud-image {
    position: absolute;
    top: -0.01%;
    left: -4.15%;
    width: 104.15%;
    height: 126.27%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.page-hero__title {
    position: absolute;
    z-index: 1;
    top: 157px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 40px);
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
}

.page-hero__title[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}
.page-hero__title[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.partners-video-hero {
    position: relative;
    z-index: 1;
    min-height: 727px;
    overflow: hidden;
    background: #151515;
    color: #fff;
    isolation: isolate;
}

.partners-video-hero__video,
.partners-video-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.partners-video-hero__video {
    z-index: -2;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.partners-video-hero__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.4);
    pointer-events: none;
}

.partners-video-hero__content {
    position: absolute;
    top: 240px;
    left: 50%;
    display: flex;
    width: min(1106px, calc(100% - 40px));
    align-items: center;
    flex-direction: column;
    transform: translateX(-50%);
    text-align: center;
}

.partners-video-hero__content[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}

.partners-video-hero__content[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.partners-video-hero__eyebrow {
    width: 100%;
    margin: 0;
    color: rgb(255 255 255 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.partners-video-hero__title {
    margin: 20px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 84px;
}

.partners-video-hero__scroll {
    display: grid;
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    margin-top: 90px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    cursor: pointer;
    place-items: center;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    backdrop-filter: blur(8px);
}

.partners-video-hero__scroll:hover,
.partners-video-hero__scroll:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.partners-video-hero__scroll-icon {
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.has-partners-video-hero .site-header__logo .custom-logo {
    opacity: 0;
}

.about-photo {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    background: #fff;
}

.partners-video-hero + .about-photo {
    z-index: 2;
    margin-top: -281px;
    background: transparent;
}

.about-photo__backdrop {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 343px;
    background: #f5f5f5;
}

.about-photo__visual {
    position: absolute;
    z-index: 1;
    top: 178px;
    left: 50%;
    width: 782px;
    height: 642px;
    overflow: hidden;
    transform: translateX(-50%);
    will-change: width;
}

.about-photo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgb(0 0 0 / 0.38);
    opacity: var(--about-photo-overlay-opacity, 0);
    transition: opacity 0.08s linear;
    will-change: opacity;
}

.about-photo__button {
    position: absolute;
    z-index: 2;
    top: 741px;
    left: 50%;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 40px);
    padding: 17px 40px;
    border: 1px solid rgb(255 255 255 / 0.78);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.about-photo__button[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}
.about-photo__button[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.about-photo__button:hover,
.about-photo__button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #1b1b1b;
}

.partners-expanding-video {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    background: #fff;
}

.partners-video-hero + .partners-expanding-video {
    z-index: 2;
    margin-top: -281px;
    background: transparent;
}

.partners-expanding-video__frame {
    position: absolute;
    z-index: 1;
    top: 178px;
    left: 50%;
    width: min(782px, calc(100% - 40px));
    height: 642px;
    overflow: hidden;
    background: #d9d9d9;
    color: #fff;
    transform: translateX(-50%);
    will-change: width;
}

.partners-expanding-video__media,
.partners-expanding-video__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.partners-expanding-video__media {
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.partners-expanding-video__overlay {
    background: rgb(0 0 0 / 0.4);
    pointer-events: none;
}

.partners-expanding-video__content {
    position: absolute;
    z-index: 1;
    top: 143px;
    left: 50%;
    display: flex;
    width: min(809px, calc(100% - 40px));
    align-items: center;
    flex-direction: column;
    gap: 60px;
    opacity: 0;
    text-align: center;
    transform: translate3d(-50%, 24px, 0);
    will-change: opacity, transform;
}

.partners-expanding-video__heading {
    display: flex;
    width: min(680px, 100%);
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.partners-expanding-video__eyebrow,
.partners-expanding-video__title,
.partners-expanding-video__description p {
    margin: 0;
}

.partners-expanding-video__eyebrow {
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.partners-expanding-video__title {
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.partners-expanding-video__description {
    width: 100%;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.partners-expanding-video__button {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 40px);
    padding: 13px 40px;
    border: 1px solid rgb(255 255 255 / 0.78);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.partners-expanding-video__button:hover,
.partners-expanding-video__button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #1b1b1b;
}

.not-found {
    position: relative;
    display: grid;
    min-height: 738px;
    overflow: hidden;
    padding: 134px 20px 101px;
    background: #fff;
    color: #000;
}

.not-found__clouds {
    position: absolute;
    z-index: 0;
    top: 145px;
    left: 50%;
    width: min(87.1vw, 1254px);
    height: 410px;
    transform: translateX(-50%);
    pointer-events: none;
}

.not-found__clouds-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.not-found__breadcrumbs,
.not-found__content {
    position: relative;
    z-index: 1;
}

.not-found__breadcrumbs {
    display: flex;
    align-items: center;
    align-self: start;
    gap: 10px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.not-found__breadcrumbs a {
    transition: opacity 0.24s ease;
}
.not-found__breadcrumbs a:hover,
.not-found__breadcrumbs a:focus-visible {
    opacity: 0.58;
}
.not-found__breadcrumbs span {
    width: 4px;
    height: 4px;
    background: #000;
}
.not-found__breadcrumbs p {
    margin: 0 0 0 2px;
    color: #b8b8b8;
}

.not-found__content {
    display: flex;
    align-self: start;
    align-items: center;
    flex-direction: column;
    padding-top: 58px;
    text-align: center;
}

.not-found__code {
    width: min(38vw, 547.108px);
    aspect-ratio: 547.108 / 260.1;
    background: var(--not-found-texture) 52% 63% / 260% auto no-repeat;
    -webkit-mask: url("../icons/404-mask.svg") center / contain no-repeat;
    mask: url("../icons/404-mask.svg") center / contain no-repeat;
}

.not-found__title {
    width: min(100%, 422px);
    margin: 31px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.6;
    text-transform: uppercase;
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.not-found__button {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.not-found__button:hover,
.not-found__button:focus-visible {
    background: #000;
    color: #fff;
}

.hero-motion {
    position: relative;
    height: calc(100svh + min(72svh, 700px));
    background: #fff;
}

.hero {
    position: sticky;
    z-index: 2;
    top: 0;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    background: #fff;
    color: #000;
}

.hero__clouds,
.hero__cloud,
.hero__brand-flight,
.hero__brand-origin,
.hero__mountain,
.hero__container,
.hero__title-wrap,
.hero__description,
.hero__actions {
    position: absolute;
}

.hero__container {
    z-index: 4;
    inset: 0 20px;
    pointer-events: none;
}

.hero__clouds {
    z-index: 0;
    inset: 0;
    opacity: calc(0.72 * var(--hero-copy-opacity));
    pointer-events: none;
}

.hero__cloud {
    width: 88vw;
    top: -2.4vh;
    left: 7.6vw;
    will-change: transform;
}

.hero__cloud--a {
    animation: hero-cloud-drift-a 28s linear infinite;
}
.hero__cloud--b {
    width: 56vw;
    top: 5vh;
    left: 30vw;
    opacity: 0.28;
    transform: scaleX(-1);
    animation: hero-cloud-drift-b 35s linear infinite;
}
.hero__cloud--c {
    width: 44vw;
    top: 17vh;
    left: 58vw;
    opacity: 0.2;
    animation: hero-cloud-drift-c 24s linear infinite;
}
.hero__cloud-image {
    width: 100%;
    height: auto;
}

.hero__brand-origin {
    z-index: 1;
    top: 9.5%;
    left: 50%;
    width: min(8.4vw, 118px);
    aspect-ratio: 875 / 1673;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero__brand-flight {
    z-index: 1;
    top: 0;
    left: 0;
    width: min(8.4vw, 118px);
    aspect-ratio: 875 / 1673;
    opacity: var(--hero-flight-opacity);
    transform: translate3d(var(--hero-logo-x, 0), var(--hero-logo-y, 0), 0) scale(var(--hero-logo-scale, 1));
    transform-origin: top left;
    will-change: transform, opacity;
    pointer-events: none;
}

.hero__brand-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__mountain {
    z-index: 2;
    bottom: 0;
    left: 50.5%;
    width: min(84vw, 122.5svh, 1492px);
    transform: translate3d(-50%, calc(var(--hero-ease) * 1.8vh), 0) scale(calc(1 + var(--hero-ease) * 0.12));
    transform-origin: center bottom;
    will-change: transform;
    pointer-events: none;
}

.hero__mountain-image {
    width: 100%;
    height: auto;
    user-select: none;
}

.hero__title-wrap,
.hero__description,
.hero__actions {
    z-index: 4;
    opacity: var(--hero-copy-opacity);
    will-change: opacity, transform;
}

.hero__title-wrap {
    top: 14.5%;
    left: 0;
    width: min(32.5vw, 560px);
}
.hero__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(40px, 3.35vw, 48px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.hero__description {
    top: 29.9%;
    right: 0;
    width: min(30.3vw, 540px);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: clamp(20px, 1.7vw, 24px);
    font-weight: 400;
    line-height: 1.27;
    letter-spacing: -0.035em;
}
.hero__description p {
    margin: 0;
}

.hero__actions {
    display: flex;
    gap: clamp(16px, 1.3vw, 24px);
    left: 50%;
    bottom: 4.7%;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero__button {
    display: inline-flex;
    width: clamp(210px, 16.4vw, 232px);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: 1px solid rgb(255 255 255 / 0.78);
    border-radius: 999px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: clamp(16px, 1.22vw, 18px);
    line-height: 1;
    white-space: nowrap;
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease;
}

.hero__button--primary {
    background: rgb(24 20 16 / 0.62);
    color: #fff;
    box-shadow: inset 0 0 20px rgb(255 255 255 / 0.16);
    backdrop-filter: blur(10px);
}
.hero__button--primary:hover,
.hero__button--primary:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #151515;
}
.hero__button--secondary {
    background: #fff;
    border-color: #fff;
    color: #151515;
}
.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
    background: #151515;
    border-color: #151515;
    color: #fff;
}

.product-categories {
    padding: 120px 20px;
    background: #fff;
    color: #000;
}

.product-categories__container {
    width: min(100%, 1107px);
    margin: 0 auto;
}

.product-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-category-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: currentColor;
}

.product-category-card__media {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 349 / 430;
    border-radius: 10px;
    background: #eee9e2;
}

.product-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-category-card__name {
    font-family: Athelas, Georgia, serif;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    transition: opacity 0.28s ease;
}

.product-category-card:hover .product-category-card__image,
.product-category-card:focus-visible .product-category-card__image {
    transform: scale(1.035);
}

.product-category-card:hover .product-category-card__name,
.product-category-card:focus-visible .product-category-card__name {
    opacity: 0.58;
}

.catalog-cta {
    position: relative;
    display: flex;
    min-height: 704px;
    overflow: hidden;
    align-items: flex-start;
    justify-content: center;
    padding: 496px 20px 30px;
    background: #151515;
    color: #fff;
    isolation: isolate;
}

.catalog-cta__background,
.catalog-cta__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.catalog-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.catalog-cta__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.4);
}

.catalog-cta__content {
    display: flex;
    width: min(100%, 830px);
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.catalog-cta__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.catalog-cta__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 1px solid rgb(255 255 255 / 0.75);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease;
}

.catalog-cta:hover .catalog-cta__image {
    transform: scale(1.025);
}

.catalog-cta__button:hover,
.catalog-cta__button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.about-showroom {
    min-height: 1328px;
    overflow: hidden;
    padding: 60px 0 107px;
    background: #f5f5f5;
    color: #000;
}

.about-showroom__eyebrow {
    margin: 0 20px;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.about-showroom__title {
    max-width: 1362px;
    margin: 36px 20px 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.about-showroom__title strong {
    font-weight: 700;
}

.about-showroom__title span::before {
    content: " ";
}

.about-showroom__stage {
    position: relative;
    height: 600px;
    margin-top: 134px;
}

.about-showroom--with-buttons {
    min-height: 0;
    padding-bottom: 51px;
}

.about-showroom--with-buttons .about-showroom__stage {
    margin-top: 101px;
}

.about-showroom__description {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 270px;
    width: 396px;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.about-showroom__description p {
    margin: 0;
}

.about-showroom__slider {
    --about-slide-width: 220px;
    --about-slide-height: 200px;
    --about-slide-active-width: 621px;
    --about-slide-active-height: 600px;
    /* Слот слайда одинаков для всех слайдов, поэтому геометрия Swiper не пересчитывается при смене активного. */
    --about-slide-slot: calc((var(--about-slide-active-width) + var(--about-slide-width)) / 2);
    --about-slide-offset: calc((var(--about-slide-active-width) - var(--about-slide-width)) / 2);
    --about-motion-duration: 0.8s;
    --about-motion-easing: cubic-bezier(0.22, 1, 0.36, 1);
    --swiper-wrapper-transition-timing-function: var(--about-motion-easing);
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: visible;
    transform: translateX(280px);
}

.about-showroom__slider .swiper-wrapper {
    align-items: flex-end;
}

/* Селектор с двумя классами перебивает `.swiper-backface-hidden .swiper-slide` из swiper-bundle.css. */
.about-showroom__slider .about-showroom__slide {
    position: relative;
    width: var(--about-slide-slot);
    height: var(--about-slide-height);
    overflow: visible;
    flex-shrink: 0;
    /* --about-slide-step выставляет main.js: компенсация слота для слайдов дальше соседних. */
    transform: translate3d(calc(var(--about-slide-step, 0) * var(--about-slide-offset)), 0, 0);
    transition: transform var(--about-motion-duration) var(--about-motion-easing);
    backface-visibility: hidden;
    will-change: transform;
}

.about-showroom__slide.swiper-slide-active {
    z-index: 2;
}

.about-showroom__media {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: var(--about-slide-width);
    height: var(--about-slide-height);
    overflow: hidden;
    border-radius: 10px;
    opacity: 0.5;
    filter: saturate(0.72) brightness(1.08);
    transform: translate3d(-50%, 0, 0);
    transition:
        width var(--about-motion-duration) var(--about-motion-easing),
        height var(--about-motion-duration) var(--about-motion-easing),
        opacity var(--about-motion-duration) var(--about-motion-easing),
        filter var(--about-motion-duration) var(--about-motion-easing);
    backface-visibility: hidden;
}

.about-showroom__slide.swiper-slide-active .about-showroom__media {
    width: var(--about-slide-active-width);
    height: var(--about-slide-active-height);
    opacity: 1;
    filter: none;
}

.about-showroom__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 50px 20px 0;
}

.about-showroom__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 17px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    transition:
        background-color 0.24s ease,
        color 0.24s ease,
        border-color 0.24s ease;
}

.about-showroom__button--primary {
    border-color: #000;
    background: #000;
    color: #fff;
}

.about-showroom__button--primary:hover,
.about-showroom__button--primary:focus-visible {
    border-color: #211f1e;
    background: #211f1e;
    color: #fff;
}

.about-showroom__button--secondary:hover,
.about-showroom__button--secondary:focus-visible {
    background: #000;
    color: #fff;
}

.about-showroom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.about-showroom__slide-caption {
    position: absolute;
    z-index: 1;
    bottom: 16px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    margin: 0;
    padding: 16px 20px;
    border-radius: 100px;
    background: rgb(255 255 255 / 0.2);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    transform: translateX(-50%);
    transition: opacity var(--about-motion-duration) var(--about-motion-easing);
}

.about-showroom__slide:not(.swiper-slide-active) .about-showroom__slide-caption {
    opacity: 0;
}

.stat-grid {
    display: grid;
    width: min(calc(100% - 40px), 1338px);
    grid-template-columns: repeat(4, 300px);
    gap: 46px;
}

.about-showroom__stats {
    margin: 128px auto 0;
}

.stat-grid__item {
    display: flex;
    min-height: 146px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 0 0 16px;
    border-left: 1px solid #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.stat-grid__number,
.stat-grid__label {
    margin: 0;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.stat-grid__number {
    display: flex;
    font-size: 80px;
    line-height: 0.85;
    white-space: nowrap;
}

.stat-grid__label {
    color: rgb(0 0 0 / 0.7);
    font-size: 20px;
    line-height: 1.2;
}

.about-statistics {
    overflow: hidden;
    padding: 152px 0 103px;
    background: #f5f5f5;
}

.about-statistics__grid {
    margin: 0 auto;
}

.about-history {
    overflow: hidden;
    padding: 60px 0 82px;
    background: #fff;
}

.about-history__intro {
    margin-inline: 20px;
}

.about-history__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.about-history__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.24em;
    margin: 36px 0 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.about-history__title strong {
    font-weight: 700;
    text-transform: uppercase;
}

.about-history--partner .about-history__title strong {
    text-transform: none;
}

.about-history--partner .about-history__gallery {
    margin-top: 49px;
}

.partner-factory {
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(0, 632px);
    column-gap: 60px;
    align-items: start;
    padding-right: 58px;
    background: #f5f5f5;
}

.partner-factory__gallery {
    display: grid;
    gap: 10px;
}

.partner-factory__image {
    position: relative;
    overflow: hidden;
    background: #e8e5e0;
}

.partner-factory__image--top,
.partner-factory__image--bottom {
    aspect-ratio: 690 / 677;
}

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

.partner-factory__image--middle-left,
.partner-factory__image--middle-right {
    aspect-ratio: 340 / 677;
}

.partner-factory__media {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.partner-factory__image--top .partner-factory__media {
    object-position: center;
}

.partner-factory__image--middle-left .partner-factory__media {
    object-position: 52% center;
}

.partner-factory__image--middle-right .partner-factory__media {
    object-position: 50% center;
}

.partner-factory__image--bottom .partner-factory__media {
    object-position: 15% center;
}

.partner-factory__aside {
    min-width: 0;
    min-height: 1991px;
    padding-top: 60px;
}

.partner-factory__sticky {
    position: static;
}

.partner-factory__heading {
    display: grid;
    gap: 30px;
}

.partner-factory__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.partner-factory__title {
    margin: 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.partner-factory__copy {
    display: grid;
    gap: 30px;
    margin-top: 41px;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.partner-factory__copy p {
    margin: 0;
}

.partner-factory__lead {
    font-weight: 700;
}

.partner-factory__button {
    display: inline-flex;
    min-height: 58px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 16px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition:
        color 0.24s ease,
        background-color 0.24s ease;
}

.partner-factory__button:hover,
.partner-factory__button:focus-visible {
    background: #000;
    color: #fff;
}

@media (max-width: 1399px) {
    .partner-factory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        padding-right: 40px;
    }

    .partner-factory__aside {
        min-height: 0;
    }

    .partner-factory__title {
        font-size: clamp(46px, 4.3vw, 60px);
    }

    .partner-factory__copy {
        font-size: clamp(19px, 1.75vw, 24px);
    }
}

.project-hero {
    position: relative;
    display: flex;
    min-height: clamp(727px, 50.5vw, 970px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 174px 20px 248px;
    color: #fff;
}
.project-hero__media,
.project-hero__overlay {
    position: absolute;
    z-index: 0;
    inset: 0;
}
.project-hero__image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.project-hero__overlay { background: rgb(0 0 0 / 0.5); }
.project-hero__heading {
    position: absolute;
    z-index: 1;
    display: flex;
    top: 240px;
    left: 50%;
    width: min(802px, 100%);
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    transform: translateX(-50%);
}
.project-hero__eyebrow {
    margin: 0;
    color: rgb(255 255 255 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
}
.project-hero__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(54px, 5.56vw, 80px);
    font-weight: 700;
    line-height: 1.05;
}
.project-hero__information {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    width: min(1290px, calc(100% - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin: 0 auto;
    padding: 14px 20px;
    border: 1px solid rgb(255 255 255 / 0.88);
    background: radial-gradient(ellipse at center, rgb(255 255 255 / 0.1), transparent 72%);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
}
.project-hero__information-column { min-width: 0; }
.project-hero__information-title {
    margin: 0 0 10px;
    font-family: Athelas, Georgia, serif;
    font-size: 34px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}
.project-hero__facts {
    display: grid;
    gap: 0;
    margin: 0;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}
.project-hero__fact {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 16px;
    padding: 6px 0;
}
.project-hero__fact dt {
    color: rgb(255 255 255 / 0.7);
    font-size: 18px;
    line-height: 1.25;
}
.project-hero__fact dd {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    text-align: right;
}
.project-hero [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.project-hero__heading[data-animate] {
    transform: translateX(-50%) translateY(20px);
}
.project-hero [data-animate].is-visible {
    opacity: 1;
    transform: none;
}
.project-hero__heading[data-animate].is-visible {
    transform: translateX(-50%);
}

.project-about {
    overflow: hidden;
    padding-bottom: 70px;
    background: #fff;
    color: #000;
}
.project-about__container {
    width: min(calc(100% - 40px), 1400px);
    margin: 0 auto;
    padding-top: 60px;
}
.project-about__breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 0;
    margin: 0;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.02em;
    list-style: none;
}
.project-about__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}
.project-about__breadcrumb:not(:first-child)::before {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}
.project-about__breadcrumb.is-current { color: #b8b8b8; }
.project-about__breadcrumb a { transition: color 0.24s ease; }
.project-about__breadcrumb a:hover,
.project-about__breadcrumb a:focus-visible { color: #777; }
.project-about__title {
    margin: 28px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}
.project-about__gallery-viewport {
    width: 100%;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.project-about__gallery {
    overflow: visible;
    padding: 0 20px;
}
.project-about__gallery-item {
    width: 720px;
    height: 405px;
    margin: 0;
    overflow: hidden;
    background: #f5f5f5;
}
.project-about__gallery-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}
.project-about__gallery-navigation {
    position: absolute;
    right: 40px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    gap: 12px;
}
.project-about__gallery-button {
    display: grid;
    width: 58px;
    height: 58px;
    padding: 0;
    color: #fff;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.85);
    border-radius: 50%;
    background: rgb(0 0 0 / 0.16);
    cursor: pointer;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.project-about__gallery-button:hover,
.project-about__gallery-button:focus-visible {
    color: #000;
    border-color: #fff;
    background: #fff;
}
.project-about__gallery-button--prev { transform: rotate(180deg); }
.project-about__gallery-arrow { width: 21px; height: 21px; }
.project-about__description {
    width: 904px;
    max-width: calc(100% - 40px);
    margin-top: 70px;
    margin-right: 20px;
    margin-bottom: 0;
    margin-left: max(20px, calc((100% - 914px) / 2));
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}
.project-about [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.project-about [data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 700px) {
    .partner-factory {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding-right: 0;
    }

    .partner-factory__aside {
        padding: 64px 40px 80px;
    }

    .partner-factory__sticky {
        position: static;
    }
}

@media (max-width: 767px) {
    .admin-bar .site-header {
        top: 46px;
    }
    .partner-factory__aside {
        padding: 48px 16px 64px;
    }

    .partner-factory__heading {
        gap: 24px;
    }

    .partner-factory__eyebrow {
        font-size: 14px;
    }

    .partner-factory__title {
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.02;
    }

    .partner-factory__copy {
        gap: 24px;
        margin-top: 32px;
        font-size: 18px;
        line-height: 1.28;
    }

    .partner-factory__button {
        width: 100%;
        min-height: 52px;
        margin-top: 40px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Minimal WooCommerce request checkout */
.woocommerce-checkout .site-main {
    background: #fff;
    color: #1d1d1b;
}

.request-checkout {
    min-height: 100vh;
    padding: 160px 32px 110px;
    background: #fff;
}

.request-checkout__container {
    width: 100%;
    margin: 0 auto;
}

.request-checkout__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c7c7c7;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

.request-checkout__breadcrumbs a {
    color: #1d1d1b;
    transition: opacity 0.24s ease;
}

.request-checkout__breadcrumbs a:hover,
.request-checkout__breadcrumbs a:focus-visible {
    opacity: 0.55;
}

.request-checkout__breadcrumb-dot {
    width: 5px;
    height: 5px;
    background: #1d1d1b;
}

.request-checkout__heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
}

.request-checkout__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(58px, 5.2vw, 80px);
    font-weight: 400;
    line-height: 0.95;
}

.request-checkout__clear,
.request-checkout__remove {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1d1d1b;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    cursor: pointer;
    transition: opacity 0.24s ease;
}

.request-checkout__clear {
    gap: 18px;
    font-size: 20px;
}

.request-checkout__remove {
    gap: 16px;
    font-size: 17px;
}

.request-checkout__clear:hover,
.request-checkout__clear:focus-visible,
.request-checkout__remove:hover,
.request-checkout__remove:focus-visible {
    opacity: 0.48;
}

.request-checkout__cross {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.request-checkout__cross::before,
.request-checkout__cross::after {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentcolor;
    content: "";
}

.request-checkout__cross::before {
    transform: rotate(45deg);
}

.request-checkout__cross::after {
    transform: rotate(-45deg);
}

.request-checkout__layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: clamp(42px, 5vw, 80px);
    margin-top: 48px;
}

.request-checkout__layout.is-empty {
    display: block;
}

.request-checkout__cart,
.request-checkout__items {
    min-width: 0;
}

.request-checkout__item {
    position: relative;
    display: grid;
    min-height: 274px;
    grid-template-columns: 250px minmax(280px, 1fr) minmax(130px, 190px);
    gap: 24px;
    padding: 0 0 22px;
    border-bottom: 1px solid #cfcfcf;
    opacity: 1;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.request-checkout__item + .request-checkout__item {
    padding-top: 22px;
}

.request-checkout__item.is-updating {
    opacity: 0.48;
    pointer-events: none;
}

.request-checkout__item.is-removing {
    opacity: 0;
    transform: translateY(-12px);
}

.request-checkout__image-wrap,
.request-checkout__image-wrap a {
    display: block;
    width: 250px;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.request-checkout__image,
.woocommerce .request-checkout__image,
.woocommerce-page .request-checkout__image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.request-checkout__image-wrap:hover .request-checkout__image {
    transform: scale(1.025);
}

.request-checkout__item-content {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 2px 0 0;
}

.request-checkout__product-title {
    margin: 0;
    color: #1d1d1b;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(28px, 2.2vw, 36px);
    font-weight: 400;
    line-height: 1.02;
    transition: opacity 0.24s ease;
}

a.request-checkout__product-title:hover,
a.request-checkout__product-title:focus-visible {
    opacity: 0.55;
}

.request-checkout__sku {
    margin: 26px 0 0;
    color: #a7a7a7;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

.request-checkout__quantity {
    display: grid;
    width: 170px;
    min-height: 58px;
    align-items: center;
    margin-top: auto;
    border: 1px solid #dadada;
    border-radius: 2px;
    grid-template-columns: 1fr 54px 1fr;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 22px;
}

.request-checkout__quantity button {
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.request-checkout__quantity button:hover,
.request-checkout__quantity button:focus-visible {
    background: #1d1d1b;
    color: #fff;
}

.request-checkout__quantity output {
    text-align: center;
}

.request-checkout__item-side {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 2px 3px 0;
}

.request-checkout__brand-logo,
.woocommerce .request-checkout__brand-logo,
.woocommerce-page .request-checkout__brand-logo {
    width: min(100%, 180px);
    height: 60px;
    max-width: none;
    object-fit: contain;
    object-position: top right;
}

.request-checkout__form-card {
    padding: 34px 28px 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.16);
}

.request-checkout__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.request-checkout__field {
    position: relative;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #cfcfcf;
}

.request-checkout__field label {
    color: #6e6e6e;
    font-family: Athelas, Georgia, serif;
    font-size: 18px;
    line-height: 1.25;
    pointer-events: none;
}

.request-checkout__field input,
.request-checkout__field textarea {
    width: 100%;
    min-height: 30px;
    padding: 2px 0 7px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #1d1d1b;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    resize: none;
}

.request-checkout__field::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: #1d1d1b;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.request-checkout__field:focus-within::after {
    transform: scaleX(1);
}

.request-checkout__field.has-error {
    border-color: #a92929;
}

.request-checkout__field-error {
    display: block;
    min-height: 0;
    color: #a92929;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.25;
}

.request-checkout__field-error:empty {
    display: none;
}

.request-checkout__consent label {
    display: grid;
    align-items: start;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    color: #6e6e6e;
    font-family: Athelas, Georgia, serif;
    font-size: 16px;
    line-height: 1.25;
    cursor: pointer;
}

.request-checkout__consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.request-checkout__checkbox {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease;
}

.request-checkout__checkbox::after {
    position: absolute;
    top: 4px;
    left: 8px;
    width: 6px;
    height: 11px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    content: "";
    opacity: 0;
    transform: rotate(45deg) scale(0.7);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.request-checkout__consent input:checked + .request-checkout__checkbox {
    border-color: #1d1d1b;
    background: #1d1d1b;
}

.request-checkout__consent input:checked + .request-checkout__checkbox::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.request-checkout__consent input:focus-visible + .request-checkout__checkbox {
    outline: 2px solid #1d1d1b;
    outline-offset: 3px;
}

.request-checkout__consent a,
.request-checkout__consent-text {
    color: #1d1d1b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.request-checkout__consent.has-error .request-checkout__checkbox {
    border-color: #a92929;
}

.request-checkout__submit,
.request-checkout__catalog-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    border: 1px solid #1d1d1b;
    border-radius: 100px;
    background: #fff;
    color: #1d1d1b;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        opacity 0.28s ease;
}

.request-checkout__submit {
    width: 100%;
}

.request-checkout__submit:hover,
.request-checkout__submit:focus-visible,
.request-checkout__catalog-button:hover,
.request-checkout__catalog-button:focus-visible {
    background: #1d1d1b;
    color: #fff;
}

.request-checkout__submit:disabled {
    opacity: 0.48;
    cursor: wait;
}

.request-checkout__submit.is-loading {
    background: #1d1d1b;
    color: #fff;
}

.request-checkout__status {
    min-height: 0;
    margin: -18px 0 0;
    color: #a92929;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
}

.request-checkout__status:empty {
    display: none;
}

.request-checkout__empty {
    display: flex;
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.request-checkout__empty h2 {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 48px;
    font-weight: 400;
}

.request-checkout__empty p {
    margin: 18px 0 30px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
}

/* Price-free WooCommerce request confirmation. */
.woocommerce-order-received .site-main > .woocommerce {
    background: #f7f6f2;
    color: #1d1d1b;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.woocommerce-order-received .woocommerce-order {
    width: 100%;
}

.lascala-thankyou {
    min-height: 74vh;
    padding: 106px 20px 84px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 8%, rgb(224 221 207 / 0.7), transparent 23rem),
        #f7f6f2;
}

.lascala-thankyou__container {
    display: grid;
    width: 100%;
    margin: 0 auto;
    column-gap: clamp(48px, 8vw, 170px);
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
}

.lascala-thankyou__hero {
    position: relative;
    max-width: none;
    padding: 0;
    border: 0;
}

.lascala-thankyou__mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #1d1d1b;
}

.lascala-thankyou__mark::after {
    width: 15px;
    height: 27px;
    margin-top: -5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    transform: rotate(45deg);
}

.lascala-thankyou__eyebrow,
.lascala-order-details__heading > p,
.lascala-customer-details > p {
    margin: 0 0 14px;
    color: #77746d;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lascala-thankyou h1 {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(58px, 5.15vw, 82px);
    font-weight: 400;
    line-height: 0.92;
    white-space: pre-line;
}

.lascala-thankyou__lead {
    max-width: 520px;
    margin: 22px 0 0;
    color: #5d5a54;
    font-size: 20px;
    line-height: 1.35;
}

.lascala-thankyou__overview {
    display: grid;
    align-self: end;
    max-width: none;
    margin: 0 0 1px;
    padding: 24px 0;
    border-top: 1px solid rgb(29 29 27 / 0.22);
    border-bottom: 1px solid rgb(29 29 27 / 0.22);
    list-style: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lascala-thankyou__overview li {
    display: flex;
    min-height: 56px;
    flex-direction: column;
    gap: 7px;
    padding: 0 24px;
    border-left: 1px solid rgb(29 29 27 / 0.2);
}

.lascala-thankyou__overview li:first-child {
    padding-left: 0;
    border-left: 0;
}

.lascala-thankyou__overview span,
.lascala-order-details__note > span {
    color: #77746d;
    font-size: 12px;
    line-height: 1.1;
    text-transform: uppercase;
}

.lascala-thankyou__overview strong {
    color: #1d1d1b;
    font-size: 16px;
    line-height: 1.2;
}

.lascala-order-details,
.lascala-customer-details {
    grid-column: 1 / -1;
    margin-top: 64px;
}

.lascala-order-details__heading,
.lascala-customer-details {
    max-width: none;
}

.lascala-order-details h2,
.lascala-customer-details h2 {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: clamp(36px, 3.3vw, 52px);
    font-weight: 400;
    line-height: 1;
}

.lascala-order-details__items {
    display: grid;
    max-width: none;
    margin: 26px 0 0;
    padding: 0;
    border-top: 1px solid rgb(29 29 27 / 0.22);
    list-style: none;
}

.lascala-order-details__item {
    display: grid;
    min-height: 134px;
    align-items: center;
    grid-template-columns: 104px minmax(0, 1fr) max-content;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid rgb(29 29 27 / 0.16);
}

.lascala-order-details__image,
.lascala-order-details__image img {
    width: 104px;
    height: 104px;
}

.lascala-order-details__image {
    overflow: hidden;
    background: #e7e4dc;
}

.lascala-order-details__image img {
    max-width: none;
    object-fit: cover;
}

.lascala-order-details__item-copy h3 {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
}

.lascala-order-details__item-copy h3 a {
    transition: opacity 0.24s ease;
}

.lascala-order-details__item-copy h3 a:hover,
.lascala-order-details__item-copy h3 a:focus-visible {
    opacity: 0.58;
}

.lascala-order-details__item-copy .wc-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin: 13px 0 0;
    color: #77746d;
    font-size: 14px;
    line-height: 1.25;
}

.lascala-order-details__item-copy .wc-item-meta li {
    display: flex;
    gap: 5px;
    margin: 0;
}

.lascala-order-details__item-copy .wc-item-meta p {
    margin: 0;
}

.lascala-order-details__quantity {
    align-self: start;
    padding-top: 7px;
    color: #77746d;
    font-size: 18px;
    line-height: 1;
}

.lascala-order-details__note {
    max-width: none;
    margin-top: 22px;
    padding: 22px 0 0;
}

.lascala-order-details__note p {
    margin: 9px 0 0;
    color: #4f4c47;
    font-size: 16px;
    line-height: 1.4;
}

.lascala-customer-details__card {
    display: grid;
    max-width: none;
    gap: 10px;
    margin-top: 28px;
    padding: 28px 30px;
    border: 1px solid rgb(29 29 27 / 0.18);
    background: rgb(255 255 255 / 0.52);
    color: #4f4c47;
    font-size: 17px;
    line-height: 1.35;
}

.lascala-customer-details__card a {
    width: fit-content;
    border-bottom: 1px solid currentcolor;
    transition: opacity 0.24s ease;
}

.lascala-customer-details__card a:hover,
.lascala-customer-details__card a:focus-visible {
    opacity: 0.55;
}

.lascala-thankyou__actions {
    grid-column: 1 / -1;
    margin-top: 48px;
}

.lascala-thankyou__button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid #1d1d1b;
    background: #1d1d1b;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.lascala-thankyou__button:hover,
.lascala-thankyou__button:focus-visible {
    background: transparent;
    color: #1d1d1b;
}

.lascala-thankyou__failed {
    grid-column: 1 / -1;
    min-height: 48vh;
    max-width: 720px;
}

.lascala-thankyou__failed p {
    margin: 26px 0 34px;
    font-size: 18px;
    line-height: 1.35;
}

/* Gateway add-ons can print totals after the regular layout: hide monetary UI there too. */
.woocommerce-order-received .woocommerce-order-overview__total,
.woocommerce-order-received .woocommerce-table--order-details .product-total,
.woocommerce-order-received .woocommerce-table--order-details tfoot,
.woocommerce-order-received .woocommerce-Price-amount,
.woocommerce-order-received .wc-bacs-bank-details {
    display: none !important;
}

@media (max-width: 1000px) {
    .lascala-thankyou__container {
        display: block;
    }

    .lascala-thankyou__overview {
        max-width: 825px;
        margin-top: 42px;
    }
}

@media (max-width: 1100px) {
    .lascala-thankyou {
        min-height: 0;
        padding: 112px 16px 72px;
    }

    .lascala-thankyou__hero {
        padding-bottom: 36px;
    }

    .lascala-thankyou__mark {
        width: 48px;
        height: 48px;
        margin-bottom: 26px;
    }

    .lascala-thankyou__mark::after {
        width: 12px;
        height: 21px;
    }

    .lascala-thankyou h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    .lascala-thankyou__lead {
        margin-top: 24px;
        font-size: 17px;
    }

    .lascala-thankyou__overview {
        gap: 18px;
        margin-top: 32px;
        padding-top: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .lascala-thankyou__overview li {
        min-height: 0;
        padding: 0 0 0 18px;
    }

    .lascala-thankyou__overview li:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .lascala-order-details,
    .lascala-customer-details {
        margin-top: 58px;
    }

    .lascala-order-details__items {
        margin-top: 26px;
    }

    .lascala-order-details__item {
        min-height: 92px;
        grid-template-columns: 74px minmax(0, 1fr) max-content;
        gap: 14px;
        padding: 10px 0;
    }

    .lascala-order-details__image,
    .lascala-order-details__image img {
        width: 74px;
        height: 74px;
    }

    .lascala-order-details__item-copy h3 {
        font-size: 19px;
    }

    .lascala-order-details__item-copy .wc-item-meta {
        margin-top: 8px;
        font-size: 12px;
    }

    .lascala-order-details__quantity {
        padding-top: 4px;
        font-size: 14px;
    }

    .lascala-customer-details__card {
        margin-top: 22px;
        padding: 22px;
        font-size: 16px;
    }

    .lascala-thankyou__actions {
        margin-top: 52px;
    }

    .lascala-thankyou__button {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .request-checkout {
        padding-right: 24px;
        padding-left: 24px;
    }

    .request-checkout__layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 38px;
    }

    .request-checkout__item {
        min-height: 210px;
        grid-template-columns: 188px minmax(220px, 1fr) 125px;
        gap: 20px;
    }

    .request-checkout__image-wrap,
    .request-checkout__image-wrap a {
        width: 188px;
        height: 188px;
    }

    .request-checkout__product-title {
        font-size: 30px;
    }

    .request-checkout__sku {
        margin-top: 18px;
        font-size: 15px;
    }

    .request-checkout__quantity {
        width: 150px;
        min-height: 50px;
        grid-template-columns: 1fr 46px 1fr;
        font-size: 19px;
    }

    .request-checkout__quantity button {
        height: 48px;
    }
}

@media (max-width: 1100px) {
    .project-hero {
        min-height: 700px;
        padding-top: 150px;
    }
    .project-hero__heading { top: 210px; }
    .project-hero__information-title { font-size: 30px; }
    .project-hero__fact dd { font-size: 21px; }
}

@media (max-width: 900px) {
    .request-checkout {
        padding-top: 130px;
    }

    .request-checkout__layout {
        display: block;
    }

    .request-checkout__form-card {
        width: min(100%, 620px);
        margin: 50px auto 0;
    }
}

@media (max-width: 640px) {
    .request-checkout {
        padding: 112px 16px 72px;
    }

    .request-checkout__breadcrumbs {
        font-size: 13px;
    }

    .request-checkout__heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .request-checkout__title {
        font-size: 48px;
    }

    .request-checkout__clear {
        align-self: flex-end;
        font-size: 15px;
    }

    .request-checkout__layout {
        margin-top: 30px;
    }

    .request-checkout__item {
        min-height: 0;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
        padding-bottom: 20px;
    }

    .request-checkout__item + .request-checkout__item {
        padding-top: 20px;
    }

    .request-checkout__image-wrap,
    .request-checkout__image-wrap a {
        width: 112px;
        height: 112px;
    }

    .request-checkout__product-title {
        font-size: 23px;
    }

    .request-checkout__sku {
        margin-top: 10px;
        font-size: 12px;
    }

    .request-checkout__quantity {
        width: 126px;
        min-height: 42px;
        margin-top: 18px;
        grid-template-columns: 1fr 40px 1fr;
        font-size: 16px;
    }

    .request-checkout__quantity button {
        height: 40px;
    }

    .request-checkout__item-side {
        display: flex;
        min-height: 34px;
        grid-column: 1 / -1;
        align-items: center;
        flex-direction: row;
    }

    .request-checkout__brand-logo,
    .woocommerce .request-checkout__brand-logo,
    .woocommerce-page .request-checkout__brand-logo {
        width: 110px;
        height: 32px;
        object-position: left center;
    }

    .request-checkout__remove {
        margin-left: auto;
        font-size: 14px;
    }

    .request-checkout__cross {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .request-checkout__cross::before,
    .request-checkout__cross::after {
        top: 8px;
    }

    .request-checkout__form-card {
        margin-top: 40px;
        padding: 28px 20px 22px;
        border-radius: 18px;
    }

    .request-checkout__form {
        gap: 25px;
    }

    .request-checkout__submit,
    .request-checkout__catalog-button {
        min-height: 50px;
        font-size: 16px;
    }

    .request-checkout__empty {
        min-height: 300px;
        padding: 40px 0;
    }

    .request-checkout__empty h2 {
        font-size: 38px;
    }

    .woocommerce-order-received .site-main > .woocommerce {
        padding: 130px 16px 72px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .request-checkout__item,
    .request-checkout__image,
    .request-checkout__field::after {
        transition: none;
    }
}

.about-history__gallery {
    width: 100vw;
    margin-top: 70px;
    overflow: hidden;
}

.about-history__track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding-right: 20px;
}

.about-history__track.is-marquee-ready {
    animation: about-history-marquee 42s linear infinite;
    will-change: transform;
}

.about-history__card {
    width: 320px;
    height: 180px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.about-history__card:hover {
    opacity: 1;
}

.about-history__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-history__columns {
    display: grid;
    width: min(calc(100% - 40px), 1157px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 39px;
    margin: 80px 20px 0 auto;
}

.about-history__column {
    margin: 0;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.principles {
    overflow: hidden;
    padding: 40px 20px;
    background: #fff;
}

.principles__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.33;
    text-transform: uppercase;
}

.principles__heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-top: 30px;
}

.principles__title {
    margin: 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.principles__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 6px;
    padding: 17px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.principles__button:hover,
.principles__button:focus-visible {
    background: #151515;
    color: #fff;
}

.principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.principles__card {
    position: relative;
    min-height: 396px;
    overflow: hidden;
    padding: 102px 20px 70px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f5f5f5;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.principles__card:hover,
.principles__card:focus-within,
.principles__card.is-open {
    border-color: #ececec;
    background: #fff;
}

.principles__icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 42px;
}

.principles__icon-svg,
.principles__plus-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.principles__card-title {
    width: min(100%, 302px);
    margin: 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.principles__description {
    position: absolute;
    right: 28px;
    bottom: 72px;
    left: 28px;
    display: grid;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
    pointer-events: none;
}

.principles__description-line {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 0.38s ease,
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.principles__card:hover .principles__description-line,
.principles__card:focus-within .principles__description-line,
.principles__card.is-open .principles__description-line {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: var(--principle-line-delay);
}

.principles__toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    place-items: center;
    background: transparent;
    color: #000;
    cursor: pointer;
}

.principles__plus-icon {
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.principles__card:hover .principles__plus-icon,
.principles__card:focus-within .principles__plus-icon,
.principles__card.is-open .principles__plus-icon {
    transform: rotate(45deg);
}

.principles__toggle:focus-visible {
    outline: 1px solid #000;
    outline-offset: 4px;
}

.mission {
    display: grid;
    grid-template-columns: 47.9167% minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    background: #f5f5f5;
}

.mission__media {
    position: relative;
    min-height: 673px;
    overflow: hidden;
    background: #fff;
}

.mission__image {
    position: absolute;
    top: -46.81%;
    left: -41.01%;
    display: block;
    width: 209.86%;
    height: 215.16%;
    max-width: none;
    object-fit: cover;
}

.mission__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px clamp(24px, 4.722vw, 68px) 27px clamp(24px, 4.167vw, 60px);
}

.mission__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mission__title {
    max-width: 622px;
    margin: 36px 0 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.mission__copy {
    display: grid;
    width: 100%;
    max-width: 622px;
    gap: 30px;
    margin-top: 40px;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.mission__copy p {
    margin: 0;
}

.mission__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 17px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    background: transparent;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
}

.mission__button:hover,
.mission__button:focus-visible {
    border-color: #151515;
    background: #151515;
    color: #fff;
}

.certificates {
    display: grid;
    grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
    gap: 16px;
    padding: 60px 20px;
    background: #fff;
}

.certificates__intro {
    min-width: 0;
}

.certificates__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.certificates__title {
    margin: 36px 0 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.certificates__description {
    max-width: 483px;
    margin: 36px 0 0;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.certificates__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0 20px;
    margin: 0;
    padding: 54px 0 0;
    list-style: none;
}

.certificates__item {
    min-width: 0;
}

.certificates__link {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 14px;
    border-radius: 4px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.certificates__link-main {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

.certificates__link-title {
    min-width: 0;
    overflow-wrap: anywhere;
}

.certificates__file-icon,
.certificates__download-icon {
    display: block;
    flex: 0 0 auto;
}

.certificates__file-icon {
    width: 21.3px;
    height: 26.7px;
}

.certificates__download-icon {
    width: 32px;
    height: 32px;
}

.certificates__link:hover,
.certificates__link:focus-visible {
    background: #f5f5f5;
    color: #000;
    outline: none;
}

.certificates__link:hover .certificates__link-title,
.certificates__link:focus-visible .certificates__link-title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.partners {
    margin-top: 60px;
    overflow: clip;
    background: #fff;
}

.partners__intro {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding-inline: 20px;
}

.partners__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
}

.partners__heading-row {
    display: flex;
    width: 100%;
    min-height: 120px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.partners__title {
    width: min(1075px, 100%);
    flex: 0 1 1075px;
    margin: 0;
    color: #151515;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
}

.partners__button {
    display: inline-flex;
    width: 239px;
    min-height: 49px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 1px solid #151515;
    border-radius: 100px;
    color: #151515;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.partners__button:hover,
.partners__button:focus-visible {
    background: #151515;
    color: #fff;
}

.partners__marquee {
    width: 100vw;
    margin-top: 60px;
    margin-left: 0;
    overflow: visible;
}

.partners__track {
    display: flex;
    width: max-content;
    gap: 15px;
    padding-right: 15px;
}

.partners__track.is-marquee-ready {
    animation: partners-marquee 38s linear infinite;
    will-change: transform;
}

.partners__item {
    width: 310px;
    height: 188px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgb(245 245 245 / 0.52);
}

.partners__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-grid-section {
    overflow: clip;
    padding: 70px 20px;
    background: #fff;
}

.partners-grid-section__grid {
    display: grid;
    width: min(1300px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 188px;
    gap: 20px;
    margin: 0 auto;
}

.partners-grid-section__card {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #f5f5f5;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

.partners-grid-section__card--wide {
    grid-column: span 2;
}

.partners-grid-section__card:hover,
.partners-grid-section__card:focus-visible {
    border-color: #cbcbcb;
    background: #fafafa;
    box-shadow: 0 10px 28px rgb(27 27 27 / 0.06);
    outline: none;
}

.partners-grid-section__logo {
    width: auto;
    max-width: min(100%, var(--partner-logo-width, 100%));
    max-height: min(100%, var(--partner-logo-height, 100%));
    object-fit: contain;
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.partners-grid-section__details {
    position: absolute;
    top: 154px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1d1d1b;
    font-family: Athelas, Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 12px, 0);
    transition:
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.32s;
    visibility: hidden;
}

.partners-grid-section__card--with-details:hover .partners-grid-section__logo,
.partners-grid-section__card--with-details:focus-visible .partners-grid-section__logo {
    opacity: 0.5;
}

.partners-grid-section__card--with-details:hover .partners-grid-section__details,
.partners-grid-section__card--with-details:focus-visible .partners-grid-section__details {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    transition-delay: 0s;
    visibility: visible;
}

.partners-grid-section__details-icon {
    width: 16px;
    height: 12px;
    flex: 0 0 auto;
}

.partners-fixed-showroom {
    position: relative;
    height: 642px;
    overflow: hidden;
    background: #1d2421;
    background-image: var(--partners-fixed-showroom-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.partners-fixed-showroom::after {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.4);
    content: "";
    pointer-events: none;
}

.partners-certificates {
    position: relative;
    padding: 60px 20px;
    overflow: clip;
    background: #fff;
    color: #000;
}

.partners-certificates__header {
    position: relative;
}

.partners-certificates__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}

.partners-certificates__title {
    max-width: 760px;
    margin: 32px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.partners-certificates__description {
    max-width: 588px;
    margin: 30px 0 0;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.partners-certificates__catalog-button {
    position: absolute;
    top: 60px;
    right: 0;
    display: inline-flex;
    width: 239px;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease,
        color 0.24s ease;
}

.partners-certificates__catalog-button:hover,
.partners-certificates__catalog-button:focus-visible {
    border-color: #151515;
    background: #151515;
    color: #fff;
    outline: none;
}

.partners-certificates__preview {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 185px;
    min-height: 256px;
    padding: 10px 16px 5px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.18);
    pointer-events: none;
}

.partners-certificates__preview[hidden] {
    display: none;
}

.partners-certificates__preview-item {
    margin: 0;
}

.partners-certificates__preview-item[hidden] {
    display: none;
}

.partners-certificates__preview-image {
    display: block;
    width: 151px;
    height: 213px;
    object-fit: contain;
}

.partners-certificates__preview-caption {
    margin-top: 6px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.partners-certificates__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    margin-top: 39px;
}

.partners-certificates__list {
    display: grid;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partners-certificates__item {
    min-width: 0;
}

.partners-certificates__link {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 28px;
    line-height: 1.15;
    text-decoration: none;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease,
        color 0.24s ease;
}

.partners-certificates__link-main,
.partners-certificates__link-action {
    display: flex;
    min-width: 0;
    align-items: center;
}

.partners-certificates__link-main {
    gap: 14px;
}

.partners-certificates__link-action {
    flex: 0 0 auto;
    gap: 30px;
}

.partners-certificates__link-title {
    min-width: 0;
    overflow-wrap: anywhere;
}

.partners-certificates__file-icon,
.partners-certificates__download-icon {
    display: block;
    flex: 0 0 auto;
}

.partners-certificates__file-icon {
    width: 23.4px;
    height: 28.7px;
}

.partners-certificates__download-icon {
    width: 32px;
    height: 32px;
}

.partners-certificates__download-label {
    display: none;
    color: rgb(0 0 0 / 0.7);
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.partners-certificates__link:hover,
.partners-certificates__link:focus-visible,
.partners-certificates__link.is-active {
    border-color: #f5f5f5;
    background: #f5f5f5;
    color: #000;
    outline: none;
}

.partners-certificates__link:hover .partners-certificates__link-title,
.partners-certificates__link:focus-visible .partners-certificates__link-title,
.partners-certificates__link.is-active .partners-certificates__link-title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.partners-certificates__link:hover .partners-certificates__download-label,
.partners-certificates__link:focus-visible .partners-certificates__download-label,
.partners-certificates__link.is-active .partners-certificates__download-label {
    display: block;
}

@media (max-width: 1100px) {
    .partners-certificates__title {
        font-size: clamp(48px, 5.45vw, 60px);
    }

    .partners-certificates__description {
        font-size: clamp(19px, 2.18vw, 24px);
    }

    .partners-certificates__link {
        font-size: clamp(22px, 2.55vw, 28px);
    }

    .partners-certificates__columns {
        gap: 36px;
    }

}

@media (max-width: 900px) {
    .partners-certificates {
        padding: 52px 32px 60px;
    }

    .partners-certificates__catalog-button {
        position: static;
        margin-top: 32px;
    }

    .partners-certificates__preview {
        position: relative;
        top: auto;
        left: auto;
        margin: 40px auto 0;
    }

    .partners-certificates__columns {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .partners-certificates {
        padding: 48px 16px 56px;
    }

    .partners-certificates__eyebrow {
        font-size: 14px;
        line-height: 1.2;
    }

    .partners-certificates__title {
        margin-top: 24px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.03;
    }

    .partners-certificates__description {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.28;
    }

    .partners-certificates__catalog-button {
        min-height: 48px;
        padding: 12px 28px;
        font-size: 16px;
    }

    .partners-certificates__preview {
        margin-top: 32px;
    }

    .partners-certificates__columns {
        margin-top: 32px;
    }

    .partners-certificates__link {
        min-height: 64px;
        gap: 14px;
        padding: 16px 12px;
        font-size: 17px;
        line-height: 1.15;
    }

    .partners-certificates__link-main {
        gap: 12px;
    }

    .partners-certificates__link-action {
        gap: 12px;
    }

    .partners-certificates__file-icon {
        width: 21px;
        height: 26px;
    }

    .partners-certificates__download-icon {
        width: 26px;
        height: 26px;
    }

    .partners-certificates__download-label {
        display: none !important;
        font-size: 16px;
    }
}

.news-section {
    margin-top: 80px;
    color: #151515;
}

.news-section__intro {
    display: flex;
    width: calc(100% - 40px);
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
}

.news-section__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.news-section__heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.news-section__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
}

.news-section__archive-button {
    display: inline-flex;
    min-height: 49px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 1px solid #151515;
    border-radius: 100px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.news-section__archive-button:hover,
.news-section__archive-button:focus-visible {
    background: #151515;
    color: #fff;
}

.news-section__slider {
    width: calc(100vw - 20px);
    margin-top: 53px;
    margin-left: 20px;
    overflow: hidden;
}

.news-section__slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

.news-card {
    position: relative;
    width: 380px;
    height: 512px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: #333;
}

.news-card__media,
.news-card__shade {
    position: absolute;
    inset: 0;
}

.news-card__media {
    overflow: hidden;
}

.news-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-card:first-child .news-card__image {
    top: -0.18%;
    height: 107.39%;
    object-fit: fill;
}

.news-card__shade {
    background: rgb(0 0 0 / 0.5);
    transition: background-color 0.35s ease;
}

.news-card:first-child .news-card__shade {
    background: rgb(0 0 0 / 0.4);
}

.news-card__date,
.news-card__title,
.news-card__button {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.news-card__date {
    bottom: 155px;
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.news-card__title {
    bottom: 94px;
    width: 345px;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.news-card__button {
    bottom: 11px;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 1px solid rgb(255 255 255 / 0.62);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    backdrop-filter: blur(7px);
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    transition:
        background-color 0.24s ease,
        color 0.24s ease,
        border-color 0.24s ease;
}

.news-card__button:hover,
.news-card__button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.news-card:hover .news-card__image {
    transform: scale(1.025);
}

.news-card:hover .news-card__shade {
    background: rgb(0 0 0 / 0.43);
}

.news-section__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.news-section__nav {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    padding: 0;
    border: 1px solid #151515;
    border-radius: 50%;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition:
        background-color 0.24s ease,
        color 0.24s ease,
        opacity 0.24s ease;
}

.news-section__nav:hover,
.news-section__nav:focus-visible {
    background: #151515;
    color: #fff;
}

.news-section__nav--prev .news-section__nav-icon {
    transform: rotate(180deg);
}

.news-section__nav.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.news-section__nav-icon {
    width: 24px;
    height: 24px;
}

.consultation-section {
    display: grid;
    min-height: 672px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #f5f5f5;
    color: #000;
}

.consultation-section__content {
    display: flex;
    min-width: 0;
    align-items: center;
    padding: 65px 30px 50px 20px;
}

.consultation-section__inner {
    display: flex;
    width: 100%;
    max-width: 670px;
    flex-direction: column;
    gap: 20px;
}

.consultation-section__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.consultation-section__main {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.consultation-section__copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.consultation-section__title {
    width: min(539px, 100%);
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
}

.consultation-section__description {
    margin: 0;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.consultation-section__visual {
    position: relative;
    min-width: 0;
    min-height: 672px;
    overflow: hidden;
}

.consultation-section__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.consultation-section:hover .consultation-section__image {
    transform: scale(1.018);
}

.consultation-section__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 0;
}

.consultation-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-form__fields > p {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
}

.consultation-form__fields > p > br {
    display: none;
}

.consultation-form__field {
    position: relative;
    display: block;
    margin: 0;
    font-family: Athelas, Georgia, serif;
}

.consultation-form__field-label {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 0;
    color: rgb(0 0 0 / 0.6);
    font-size: 20px;
    line-height: 1.2;
    pointer-events: none;
    transition:
        top 0.22s ease,
        color 0.22s ease,
        font-size 0.22s ease;
}

.consultation-form__field-label b {
    color: #000;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.consultation-form__field:focus-within .consultation-form__field-label,
.consultation-form__field.is-filled .consultation-form__field-label {
    top: 2px;
    color: #575757;
    font-size: 13px;
}

.consultation-form__field .wpcf7-form-control-wrap {
    display: block;
}

.consultation-form__control {
    display: block;
    width: 100%;
    height: 52px;
    padding: 19px 0 5px;
    border: 0;
    border-bottom: 1px solid #cacaca;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #151515;
    font-family: Athelas, Georgia, serif;
    font-size: 20px;
    line-height: 1.2;
    transition: border-color 0.22s ease;
}

.consultation-form__field:focus-within .consultation-form__control {
    border-color: #151515;
}

.consultation-form__control.wpcf7-not-valid {
    border-color: #9d3d32;
}

.consultation-section .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    color: #9d3d32;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.35;
}

.consultation-form__consent .wpcf7-form-control-wrap,
.consultation-form__consent .wpcf7-acceptance,
.consultation-form__consent .wpcf7-list-item,
.consultation-form__consent label {
    display: block;
    margin: 0;
}

.consultation-form__consent > p {
    margin: 0;
}

.consultation-form__consent label {
    position: relative;
    cursor: pointer;
}

.consultation-form__consent .wpcf7-list-item-label {
    display: block;
    padding-left: 28px;
    color: #827d7a;
    font-family: Athelas, Georgia, serif;
    font-size: 18px;
    line-height: 1.2;
}

.consultation-form__consent input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    appearance: none;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.consultation-form__consent input[type="checkbox"]::after {
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.consultation-form__consent input[type="checkbox"]:checked {
    border-color: #151515;
    background: #151515;
}

.consultation-form__consent input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.consultation-form__consent input[type="checkbox"]:focus-visible {
    outline: 2px solid #151515;
    outline-offset: 3px;
}

.consultation-form__consent a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.consultation-form__consent a:hover,
.consultation-form__consent a:focus-visible {
    opacity: 0.55;
}

.consultation-form__submit {
    display: flex;
    align-items: center;
    gap: 14px;
}

.consultation-form__submit > p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.consultation-form__button {
    min-height: 49px;
    padding: 12px 40px;
    border: 1px solid #151515;
    border-radius: 100px;
    appearance: none;
    background: transparent;
    color: #151515;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.24s ease,
        color 0.24s ease,
        opacity 0.24s ease;
}

.consultation-form__button:hover,
.consultation-form__button:focus-visible {
    background: #151515;
    color: #fff;
}

.consultation-form__button:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.consultation-section .wpcf7-spinner {
    width: 24px;
    height: 24px;
    margin: 0;
    background: #151515;
}

.consultation-section .wpcf7-response-output {
    margin: -24px 0 0 !important;
    padding: 12px 16px !important;
    border: 1px solid #151515 !important;
    border-radius: 12px;
    color: #151515;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

.consultation-section .wpcf7 form.invalid .wpcf7-response-output,
.consultation-section .wpcf7 form.unaccepted .wpcf7-response-output,
.consultation-section .wpcf7 form.failed .wpcf7-response-output,
.consultation-section .wpcf7 form.spam .wpcf7-response-output {
    border-color: #9d3d32 !important;
    background: rgb(157 61 50 / 0.06);
    color: #7e2f27;
}

.consultation-section .wpcf7 form.sent .wpcf7-response-output {
    border-color: #55745d !important;
    background: rgb(85 116 93 / 0.07);
    color: #3e5c46;
}

@keyframes partners-marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes about-history-marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes hero-cloud-drift-a {
    0%,
    100% {
        transform: translate3d(-4vw, -0.4vh, 0) scale(1.01);
    }
    50% {
        transform: translate3d(4vw, 1.4vh, 0) scale(1.04);
    }
}

@keyframes hero-cloud-drift-b {
    0%,
    100% {
        transform: translate3d(4vw, -0.7vh, 0) scaleX(-1) scale(0.96);
    }
    50% {
        transform: translate3d(-5vw, 1.2vh, 0) scaleX(-1) scale(1.01);
    }
}

@keyframes hero-cloud-drift-c {
    0%,
    100% {
        transform: translate3d(6vw, 0.6vh, 0) scale(0.8);
    }
    50% {
        transform: translate3d(-7vw, -1.3vh, 0) scale(0.86);
    }
}

@media (max-width: 1100px) {
    .site-footer__main {
        min-height: 720px;
        grid-template-columns: 300px minmax(0, 1fr);
    }
    .site-footer__brand {
        padding: 32px 20px;
    }
    .site-footer__brand .custom-logo-link {
        width: 260px;
    }
    .site-footer__content {
        padding-inline: 32px;
    }
    .site-footer__top {
        min-height: 370px;
        padding-top: 140px;
    }
    .site-footer__top-inner {
        min-height: 230px;
        grid-template-columns: 190px 210px;
        gap: 40px;
        padding: 68px 0 28px 70px;
    }
    .site-footer__decor--bathtub {
        left: 34px;
        width: 225px;
        height: 140px;
    }
    .site-footer__decor--shower {
        top: 80px;
        right: -30px;
        width: 160px;
        height: 350px;
    }
    .site-footer__middle {
        min-height: 270px;
    }
    .site-footer__navigation {
        padding: 56px 0 0 80px;
    }
    .site-footer__legal {
        bottom: 25px;
        left: 80px;
        grid-template-columns: minmax(240px, 1fr) minmax(190px, 1fr);
        gap: 20px;
    }
    .site-footer__decor--faucet {
        top: -26px;
        left: -20px;
        width: 120px;
        height: 375px;
    }
    .site-footer__rail {
        min-height: 80px;
        padding-top: 20px;
    }
    .site-footer__social-icons {
        margin-left: calc(50vw - 412px);
    }
    .page-hero__title {
        font-size: clamp(68px, 9vw, 100px);
    }
    .partners-video-hero {
        min-height: 700px;
    }
    .partners-video-hero__content {
        top: 214px;
        width: min(920px, calc(100% - 48px));
    }
    .partners-video-hero__eyebrow {
        font-size: 21px;
    }
    .partners-video-hero__title {
        font-size: clamp(58px, 7.2vw, 72px);
        line-height: 1.04;
    }
    .partners-video-hero__scroll {
        margin-top: 72px;
    }
    .partners-video-hero + .about-photo {
        margin-top: -220px;
    }
    .about-photo {
        min-height: 700px;
    }
    .about-photo__backdrop {
        height: 300px;
    }
    .about-photo__visual {
        top: 125px;
        width: min(70vw, 700px);
        height: 575px;
    }
    .about-photo__button {
        top: 622px;
    }
    .partners-video-hero + .partners-expanding-video {
        margin-top: -220px;
    }
    .partners-expanding-video {
        min-height: 700px;
    }
    .partners-expanding-video__frame {
        top: 125px;
        width: min(700px, calc(100% - 48px));
        height: 575px;
    }
    .partners-expanding-video__content {
        top: 100px;
        gap: 46px;
    }
    .partners-expanding-video__heading {
        gap: 28px;
    }
    .partners-expanding-video__title {
        font-size: 52px;
    }
    .partners-expanding-video__description {
        font-size: 21px;
    }
    .partners-expanding-video__button {
        bottom: 24px;
    }
    .hero__title-wrap {
        top: 13%;
        left: 0;
        width: 38vw;
    }
    .hero__title {
        font-size: clamp(38px, 4.4vw, 50px);
    }
    .hero__description {
        top: 29%;
        right: 0;
        width: 35%;
        font-size: clamp(18px, 2.15vw, 24px);
    }
    .hero__mountain {
        width: 108vw;
    }
    .hero__brand-origin,
    .hero__brand-flight {
        width: 76px;
    }
    .product-categories {
        padding-block: 88px;
    }
    .product-categories__container {
        width: min(100%, 760px);
    }
    .product-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 52px 24px;
    }
    .catalog-cta {
        min-height: 590px;
        padding-top: 385px;
    }
    .catalog-cta__title {
        font-size: clamp(38px, 5vw, 50px);
    }
    .about-showroom {
        padding-bottom: 80px;
    }
    .about-showroom__title {
        max-width: calc(100% - 40px);
        font-size: clamp(44px, 5.8vw, 60px);
    }
    .about-showroom__stage {
        height: 540px;
        margin-top: 110px;
    }
    .about-showroom__description {
        left: 20px;
        width: min(38vw, 340px);
        font-size: clamp(19px, 2.3vw, 24px);
    }
    .about-showroom__slider {
        --about-slide-width: 180px;
        --about-slide-height: 180px;
        --about-slide-active-width: 560px;
        --about-slide-active-height: 540px;
        transform: translateX(180px);
    }
    .stat-grid {
        width: calc(100% - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 24px;
    }
    .about-showroom__stats {
        margin-top: 100px;
    }
    .stat-grid__item {
        min-height: 140px;
    }
    .about-statistics {
        padding-block: 104px 88px;
    }
    .about-history__title {
        font-size: clamp(46px, 5.5vw, 60px);
    }
    .about-history__columns {
        width: calc(100% - 40px);
        gap: 28px;
        margin-right: 20px;
    }
    .about-history__column {
        font-size: clamp(19px, 2.3vw, 24px);
    }
    .principles__title {
        font-size: clamp(46px, 5.5vw, 60px);
    }
    .principles__card {
        min-height: 370px;
    }
    .principles__card-title {
        font-size: clamp(34px, 4vw, 40px);
    }
    .principles__description {
        font-size: clamp(19px, 2.3vw, 24px);
    }
    .mission__media {
        min-height: 620px;
    }
    .mission__content {
        padding-block: 52px;
    }
    .mission__title {
        font-size: clamp(48px, 5.45vw, 60px);
    }
    .mission__copy {
        font-size: clamp(19px, 2.18vw, 24px);
    }
    .certificates {
        grid-template-columns: minmax(300px, 36%) minmax(0, 1fr);
    }
    .certificates__title {
        font-size: clamp(48px, 5.45vw, 60px);
    }
    .certificates__description {
        font-size: clamp(19px, 2.18vw, 24px);
    }
    .certificates__link {
        font-size: clamp(19px, 2.18vw, 24px);
    }
    .partners__title {
        font-size: clamp(44px, 5.5vw, 60px);
        line-height: 1;
    }
    .partners-grid-section {
        padding: 56px 24px;
    }
    .partners-grid-section__grid {
        grid-auto-rows: 170px;
    }
    .partners-fixed-showroom {
        height: 520px;
    }
    .news-section__title {
        font-size: clamp(44px, 5.5vw, 60px);
        line-height: 1;
    }
    .consultation-section__content {
        padding-inline: 20px;
    }
    .consultation-section__title {
        font-size: clamp(44px, 5.5vw, 60px);
        line-height: 1;
    }
    .consultation-section__description {
        font-size: clamp(19px, 2.3vw, 24px);
    }
}

@media (max-width: 900px) {
    .text-editor-section {
        padding-top: 48px;
        padding-bottom: 72px;
    }
    .text-editor-section__content {
        font-size: 21px;
    }
    .text-editor-section__content h1 {
        font-size: clamp(56px, 9vw, 72px);
    }
    .text-editor-section__content h2 {
        font-size: clamp(38px, 6.5vw, 46px);
    }
    .site-footer__main {
        display: block;
        min-height: 0;
    }
    .page-hero {
        min-height: 400px;
    }
    .page-hero__clouds {
        top: 86px;
        width: 140vw;
        height: 360px;
    }
    .page-hero__title {
        top: 154px;
        font-size: clamp(58px, 10vw, 88px);
    }
    .partners-video-hero {
        min-height: 680px;
    }
    .partners-video-hero__content {
        top: 185px;
        width: calc(100% - 48px);
    }
    .partners-video-hero__eyebrow {
        font-size: 19px;
    }
    .partners-video-hero__title {
        font-size: clamp(50px, 8vw, 64px);
    }
    .partners-video-hero__scroll {
        width: 58px;
        height: 58px;
        margin-top: 64px;
    }
    .partners-video-hero + .about-photo {
        margin-top: -170px;
    }
    .about-photo {
        min-height: 640px;
    }
    .about-photo__backdrop {
        height: 310px;
    }
    .about-photo__visual {
        top: 72px;
        width: calc(100% - 64px);
        height: 530px;
    }
    .about-photo__button {
        top: 532px;
    }
    .partners-video-hero + .partners-expanding-video {
        margin-top: -170px;
    }
    .partners-expanding-video {
        min-height: 640px;
    }
    .partners-expanding-video__frame {
        top: 72px;
        width: calc(100% - 64px);
        height: 568px;
    }
    .partners-grid-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .partners-expanding-video__content {
        top: 96px;
        width: min(720px, calc(100% - 40px));
        gap: 38px;
    }
    .partners-expanding-video__title {
        font-size: 48px;
    }
    .partners-expanding-video__description {
        font-size: 19px;
    }
    .certificates {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
        padding-inline: 32px;
    }
    .certificates__list {
        padding-top: 0;
    }
    .site-footer__brand {
        min-height: 0;
        justify-content: center;
        padding: 64px 24px 48px;
    }
    .site-footer__brand .custom-logo-link {
        width: 220px;
    }
    .site-footer__content {
        padding: 0 32px 48px;
    }
    .site-footer__top {
        min-height: 390px;
        padding-top: 145px;
    }
    .site-footer__top-inner {
        min-height: 245px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
        padding: 62px 48px 36px;
    }
    .site-footer__decor--bathtub {
        left: 50%;
        width: 235px;
        height: 145px;
        transform: translateX(-50%);
    }
    .site-footer__decor--shower {
        display: none;
    }
    .site-footer__middle {
        min-height: 280px;
    }
    .site-footer__navigation {
        padding-left: 120px;
    }
    .site-footer__legal {
        left: 120px;
    }
    .site-footer__social-icons {
        margin-left: calc(50vw - 112px);
    }
    .consultation-section {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
    }
    .partners-fixed-showroom {
        background-attachment: scroll;
    }
    .consultation-section__content {
        padding: 64px 32px;
    }
    .consultation-section__inner {
        max-width: none;
    }
    .consultation-section__visual {
        min-height: 560px;
    }
}

@media (max-width: 767px) {
    .text-editor-section {
        padding: 36px 16px 56px;
    }
    .text-editor-section__breadcrumbs {
        margin-bottom: 42px;
        font-size: 13px;
    }
    .text-editor-section__content {
        font-size: 17px;
        line-height: 1.3;
    }
    .text-editor-section__content h1 {
        margin-bottom: 30px;
        font-size: clamp(40px, 12vw, 58px);
        line-height: 1;
    }
    .text-editor-section__content h2 {
        margin-top: 40px;
        margin-bottom: 22px;
        font-size: clamp(30px, 9vw, 40px);
    }
    .text-editor-section__content p + p,
    .text-editor-section__content p + ul,
    .text-editor-section__content p + ol,
    .text-editor-section__content ul + p,
    .text-editor-section__content ol + p,
    .text-editor-section__content ul + ul,
    .text-editor-section__content ol + ol {
        margin-top: 16px;
    }
    .site-header {
        padding: 16px 0;
    }
    .page-hero {
        min-height: 330px;
    }
    .page-hero__clouds {
        top: 62px;
        width: 190vw;
        height: 300px;
    }
    .page-hero__title {
        top: 136px;
        max-width: calc(100% - 32px);
        font-size: clamp(42px, 13vw, 64px);
        line-height: 0.96;
        white-space: normal;
    }
    .partners-video-hero {
        min-height: 640px;
    }
    .partners-video-hero__video {
        object-position: 55% center;
    }
    .partners-video-hero__content {
        top: 154px;
        width: calc(100% - 32px);
    }
    .partners-video-hero__eyebrow {
        font-size: 16px;
    }
    .partners-video-hero__title {
        margin-top: 18px;
        font-size: clamp(40px, 11.6vw, 52px);
        line-height: 0.98;
    }
    .partners-video-hero__scroll {
        width: 54px;
        height: 54px;
        margin-top: 54px;
    }
    .partners-video-hero__scroll-icon {
        width: 22px;
        height: 22px;
    }
    .partners-video-hero + .about-photo {
        margin-top: -120px;
    }
    .about-photo {
        min-height: 520px;
    }
    .about-photo__backdrop {
        height: 296px;
    }
    .about-photo__visual {
        top: 46px;
        width: calc(100% - 32px);
        height: min(440px, 128vw);
    }
    .about-photo__button {
        top: auto;
        bottom: 52px;
        min-height: 52px;
        padding: 14px 28px;
        font-size: 16px;
    }
    .partners-video-hero + .partners-expanding-video {
        margin-top: -120px;
    }
    .partners-expanding-video {
        min-height: 560px;
    }
    .partners-expanding-video__frame {
        top: 46px;
        width: calc(100% - 32px);
        height: 514px;
    }
    .partners-expanding-video__content {
        top: 68px;
        width: calc(100% - 28px);
        gap: 28px;
    }
    .partners-expanding-video__heading {
        gap: 16px;
    }
    .partners-expanding-video__eyebrow {
        font-size: 13px;
    }
    .partners-expanding-video__title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.02;
    }
    .partners-expanding-video__description {
        font-size: 16px;
        line-height: 1.25;
    }
    .partners-expanding-video__button {
        bottom: 22px;
        min-height: 52px;
        padding: 14px 28px;
        font-size: 16px;
    }
    .site-footer__brand {
        padding: 48px 16px 40px;
    }
    .site-footer__brand .custom-logo-link {
        width: 168px;
    }
    .site-footer__content {
        padding: 0 16px 40px;
    }
    .site-footer__top {
        min-height: 0;
        padding-top: 128px;
    }
    .site-footer__top-inner {
        display: block;
        min-height: 0;
        padding: 40px 0;
    }
    .site-footer__decor--bathtub {
        width: 208px;
        height: 128px;
    }
    .site-footer__contacts,
    .site-footer__social-copy {
        width: min(100%, 300px);
    }
    .site-footer__social-copy {
        margin-top: 36px;
    }
    .site-footer__heading {
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 1.2;
    }
    .site-footer__contact-list,
    .site-footer__social-text-links {
        font-size: 16px;
    }
    .site-footer__middle {
        min-height: 0;
        padding: 44px 0 36px;
    }
    .site-footer__navigation {
        padding: 0;
    }
    .site-footer__menu {
        grid-template-rows: repeat(3, 22px);
        grid-auto-columns: minmax(82px, auto);
        gap: 18px clamp(44px, 16vw, 80px);
    }
    .site-footer__menu a {
        font-size: 17px;
        line-height: 22px;
    }
    .site-footer__legal {
        position: relative;
        inset: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-top: 46px;
        font-size: 14px;
    }
    .site-footer__decor--faucet {
        top: auto;
        right: -25px;
        bottom: -18px;
        left: auto;
        width: 96px;
        height: 300px;
        opacity: 0.55;
    }
    .site-footer__rail {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding-top: 28px;
    }
    .site-footer__social-icons {
        gap: 12px;
        margin-left: 0;
    }
    .site-footer__social-icons a {
        width: 38px;
        height: 38px;
    }
    .site-footer__developer {
        margin-left: 0;
    }
    .site-footer__copyright {
        min-height: 58px;
        padding-inline: 16px;
        font-size: 13px;
    }
    .site-header__container {
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
    }
    .site-header__languages {
        gap: 7px;
    }
    .site-header__language {
        font-size: 15px;
    }
    .site-header__logo {
        top: 0;
    }
    .site-header__actions {
        gap: 14px;
    }
    .site-header__action {
        width: 22px;
        height: 22px;
    }
    .site-header__icon {
        width: 22px;
        height: 22px;
    }
    .site-header__cart-button {
        display: none;
    }
    .site-header__menu-label {
        display: none;
    }
    .site-header__burger {
        width: 42px;
        height: 42px;
    }
    .site-header__burger span {
        left: 5px;
        width: 32px;
    }
    .site-header__burger span:nth-child(1) {
        top: 12px;
    }
    .site-header__burger span:nth-child(2) {
        top: 21px;
    }
    .site-header__burger span:nth-child(3) {
        top: 30px;
    }
    .is-menu-open .site-header {
        padding-block: 16px;
    }
    .is-menu-open .site-header__menu-label {
        display: block;
        color: #000;
        font-size: 16px;
    }
    .is-menu-open .site-header__burger span {
        width: 32px;
    }
    .is-menu-open .site-header__burger span:nth-child(1) {
        top: 12px;
        left: 9px;
    }
    .is-menu-open .site-header__burger span:nth-child(2) {
        top: 21px;
        left: 1px;
    }
    .is-menu-open .site-header__burger span:nth-child(3) {
        top: 30px;
        left: 9px;
    }
    .site-search-panel__inner {
        width: calc(100% - 32px);
    }
    .site-search-panel__inner {
        padding-top: 72px;
    }
    .site-menu-panel__inner {
        display: grid;
        width: 100%;
        min-height: 100dvh;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto 1fr auto;
        padding: 84px 16px 28px;
    }
    .site-menu-panel__navigation {
        position: static;
        top: auto;
        grid-column: 1;
        grid-row: 1;
        justify-self: stretch;
        margin-top: 64px;
    }
    .site-menu-panel .site-menu--panel {
        align-items: flex-end;
        gap: 24px;
    }
    .site-menu-panel .site-menu--panel a {
        color: #000;
        font-weight: 400;
        font-size: 22px;
    }
    .site-menu-panel .site-menu--panel li:first-child a {
        font-weight: 400;
    }
    .site-menu-panel__categories {
        display: none;
        grid-column: 1;
        grid-row: 1;
        margin-top: 28px;
    }
    .site-menu-panel__projects {
        display: none;
        grid-column: 1;
        grid-row: 1;
        margin-top: 28px;
    }
    .site-menu-panel.is-mobile-catalog-open .site-menu-panel__categories,
    .site-menu-panel.is-mobile-projects-open .site-menu-panel__projects {
        display: block;
        animation: menu-mobile-submenu-in 0.38s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    }
    .site-menu-panel.is-mobile-submenu-open .site-menu-panel__navigation,
    .site-menu-panel.is-mobile-submenu-open .site-menu-panel__footer {
        display: none;
    }
    .site-menu-panel__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 34px;
    }
    .site-menu-panel__back {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        border: 0;
        background: transparent;
        color: #1b1b1b;
        cursor: pointer;
        font-family: Athelas, Georgia, serif;
        font-size: 18px;
        line-height: 1;
        text-transform: uppercase;
    }
    .site-menu-panel__back-arrow {
        width: 10px;
        height: 10px;
        border-bottom: 1.5px solid currentColor;
        border-left: 1.5px solid currentColor;
        transform: rotate(45deg);
    }
    .site-menu-panel__mobile-title {
        margin: 0;
        color: #000;
        font-family: Athelas, Georgia, serif;
        font-size: 18px;
        line-height: 1;
        text-transform: uppercase;
    }
    .site-menu-panel__category-grid,
    .site-menu-panel__project-grid {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 24px;
    }
    .site-menu-panel__category-item,
    .site-menu-panel__project-item {
        width: 100%;
    }
    .site-menu-panel__category-card,
    .site-menu-panel__project-card {
        display: block;
        width: 100%;
    }
    .site-menu-panel__category-media,
    .site-menu-panel__project-media {
        display: none;
    }
    .site-menu-panel__category-name,
    .site-menu-panel__project-name {
        display: block;
        color: #000;
        font-size: 22px;
        line-height: 1.2;
        text-align: right;
        text-transform: uppercase;
        transition: color 0.24s ease;
    }
    .site-menu-panel__category-card:hover .site-menu-panel__category-name,
    .site-menu-panel__category-card:focus-visible .site-menu-panel__category-name,
    .site-menu-panel__project-card:hover .site-menu-panel__project-name,
    .site-menu-panel__project-card:focus-visible .site-menu-panel__project-name {
        color: #1b1b1b;
    }
    .site-menu-panel__footer {
        position: static;
        right: auto;
        bottom: auto;
        left: auto;
        grid-column: 1;
        grid-row: 3;
        align-self: end;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        margin-top: 36px;
        box-shadow: none;
    }
    .site-menu-panel__socials {
        order: 2;
        flex: 0 0 auto;
    }
    .site-menu-panel__socials a {
        width: 38px;
        height: 38px;
    }
    .site-menu-panel__contacts {
        order: 1;
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    .site-menu-panel__contact {
        gap: 8px;
        font-size: clamp(11px, 3.4vw, 14px);
        white-space: nowrap;
    }
    @keyframes menu-mobile-submenu-in {
        from {
            opacity: 0;
            transform: translateX(18px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .site-menu {
        gap: 12px 20px;
    }
    .custom-logo {
        max-height: 54px;
    }
    .hero-motion {
        height: calc(100svh + 48svh);
    }
    .hero {
        min-height: 660px;
    }
    .hero__container {
        inset-inline: 16px;
    }
    .hero__title-wrap {
        top: 10%;
        left: 0;
        width: 100%;
    }
    .hero__title {
        max-width: 540px;
        font-size: clamp(34px, 10.2vw, 48px);
        line-height: 0.98;
    }
    .hero__description {
        top: 29%;
        right: auto;
        left: 0;
        width: min(88%, 430px);
        font-size: clamp(16px, 4.4vw, 20px);
        line-height: 1.28;
    }
    .hero__cloud {
        top: 3vh;
        left: -24vw;
        width: 156vw;
    }
    .hero__cloud--b {
        top: 13vh;
        left: 14vw;
        width: 100vw;
    }
    .hero__cloud--c {
        top: 28vh;
        left: 20vw;
        width: 112vw;
    }
    .hero__brand-origin,
    .hero__brand-flight {
        width: 76px;
    }
    .hero__brand-origin {
        top: 39%;
        left: 50%;
    }
    .hero__mountain {
        bottom: 5.5%;
        left: 52%;
        width: 174vw;
    }
    .hero__actions {
        width: 100%;
        gap: 8px;
        bottom: 18px;
    }
    .hero__button {
        width: calc(50% - 4px);
        min-height: 48px;
        padding: 10px 12px;
        font-size: clamp(13px, 3.75vw, 16px);
        white-space: normal;
        text-align: center;
    }
    .product-categories {
        padding: 64px 16px;
    }
    .product-categories__container {
        width: min(100%, 430px);
    }
    .product-categories__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .product-category-card {
        gap: 16px;
    }
    .product-category-card__name {
        font-size: clamp(26px, 8vw, 30px);
    }
    .catalog-cta {
        min-height: 560px;
        padding: 330px 16px 28px;
    }
    .catalog-cta__content {
        gap: 28px;
    }
    .catalog-cta__title {
        font-size: clamp(32px, 9.2vw, 40px);
        line-height: 1.02;
    }
    .catalog-cta__button {
        min-height: 52px;
        padding: 14px 28px;
        font-size: 16px;
    }
    .about-showroom {
        min-height: 0;
        padding: 48px 0 64px;
    }
    .about-showroom__eyebrow {
        margin-inline: 16px;
        font-size: 14px;
    }
    .about-showroom__title {
        margin: 24px 16px 0;
        font-size: clamp(34px, 10.2vw, 42px);
        line-height: 1.02;
    }
    .about-showroom__stage {
        height: auto;
        margin-top: 52px;
    }
    .about-showroom__description {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        margin: 0 16px 32px;
        font-size: 18px;
    }
    .about-showroom__slider {
        --about-slide-width: 140px;
        --about-slide-height: 160px;
        --about-slide-active-width: calc(100vw - 32px);
        --about-slide-active-height: 480px;
        position: relative;
        inset: auto;
        height: 480px;
        transform: none;
    }
    .about-showroom__slider .swiper-wrapper {
        align-items: center;
    }
    .about-showroom__media {
        top: 50%;
        bottom: auto;
        transform: translate3d(-50%, -50%, 0);
    }
    .stat-grid {
        width: calc(100% - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 16px;
    }
    .about-showroom__stats {
        margin-top: 64px;
    }
    .stat-grid__item {
        min-height: 132px;
        gap: 24px;
        padding-inline: 12px;
    }
    .stat-grid__number {
        font-size: clamp(42px, 12vw, 54px);
    }
    .stat-grid__label {
        font-size: 15px;
    }
    .about-statistics {
        padding-block: 72px 64px;
    }
    .about-history {
        padding-block: 48px 64px;
    }
    .about-history__intro {
        margin-inline: 16px;
    }
    .about-history__eyebrow {
        font-size: 14px;
    }
    .about-history__title {
        margin-top: 24px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.03;
    }
    .about-history__gallery {
        margin-top: 42px;
    }
    .about-history__track {
        gap: 12px;
        padding-right: 12px;
    }
    .about-history__card {
        width: 260px;
        height: 146px;
        border-radius: 16px;
    }
    .about-history__columns {
        width: calc(100% - 32px);
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        margin: 40px 16px 0;
    }
    .about-history__column {
        font-size: 18px;
        line-height: 1.28;
    }
    .mission {
        grid-template-columns: minmax(0, 1fr);
    }
    .mission__media {
        min-height: 0;
        aspect-ratio: 1 / 0.82;
    }
    .mission__image {
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-position: 42% 45%;
    }
    .mission__content {
        padding: 48px 16px 56px;
    }
    .mission__eyebrow {
        font-size: 14px;
    }
    .mission__title {
        margin-top: 24px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.03;
    }
    .mission__copy {
        gap: 22px;
        margin-top: 32px;
        font-size: 18px;
        line-height: 1.28;
    }
    .mission__button {
        min-height: 48px;
        margin-top: 36px;
        padding: 14px 28px;
        font-size: 16px;
    }
    .certificates {
        gap: 32px;
        padding: 48px 16px 56px;
    }
    .certificates__eyebrow {
        font-size: 14px;
    }
    .certificates__title {
        margin-top: 24px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.03;
    }
    .certificates__description {
        margin-top: 28px;
        font-size: 18px;
        line-height: 1.28;
    }
    .certificates__list {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }
    .certificates__link {
        min-height: 64px;
        gap: 14px;
        padding: 16px 12px;
        font-size: 17px;
        line-height: 1.15;
    }
    .certificates__link-main {
        gap: 12px;
    }
    .certificates__download-icon {
        width: 26px;
        height: 26px;
    }
    .principles {
        padding: 48px 16px 56px;
    }
    .principles__eyebrow {
        font-size: 14px;
    }
    .principles__heading-row {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }
    .principles__title {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.03;
    }
    .principles__button {
        min-height: 48px;
        margin-top: 0;
        padding: 14px 28px;
        font-size: 16px;
    }
    .principles__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
    .principles__card {
        min-height: 340px;
        padding: 92px 20px 68px;
    }
    .principles__card-title {
        font-size: clamp(32px, 9.2vw, 40px);
    }
    .principles__description {
        right: 24px;
        bottom: 68px;
        left: 24px;
        font-size: 18px;
        line-height: 1.28;
    }
    .principles__toggle {
        right: 16px;
        bottom: 16px;
    }
    .partners {
        margin-top: 40px;
    }
    .partners__intro {
        width: calc(100% - 32px);
        gap: 16px;
        margin-left: 16px;
    }
    .partners__eyebrow {
        font-size: 14px;
        line-height: 1.2;
    }
    .partners__heading-row {
        min-height: 0;
        flex-direction: column;
        gap: 24px;
    }
    .partners__title {
        width: 100%;
        flex: 0 0 auto;
        font-size: clamp(34px, 9.2vw, 42px);
        line-height: 1.02;
    }
    .partners__button {
        width: auto;
        min-height: 48px;
        padding-inline: 28px;
        font-size: 16px;
    }
    .partners__marquee {
        width: 100vw;
        margin-top: 36px;
        margin-left: 0;
    }
    .partners__track {
        gap: 10px;
        padding-right: 10px;
    }
    .partners__item {
        width: 240px;
        height: 146px;
        border-radius: 16px;
    }
    .partners-grid-section {
        padding: 40px 16px;
    }
    .partners-grid-section__grid {
        grid-auto-rows: clamp(120px, 36vw, 146px);
        gap: 12px;
    }
    .partners-grid-section__card {
        padding: 16px;
        border-radius: 16px;
    }
    .partners-grid-section__card--with-details {
        grid-column: span 2;
    }
    .partners-grid-section__details {
        top: auto;
        bottom: 13px;
        font-size: 16px;
    }
    .partners-grid-section__details-icon {
        width: 16px;
        height: 12px;
    }
    .partners-fixed-showroom {
        height: min(104vw, 440px);
        min-height: 300px;
    }
    .news-section {
        margin-top: 64px;
    }
    .news-section__intro {
        width: calc(100% - 32px);
        gap: 16px;
        margin-left: 16px;
    }
    .news-section__eyebrow {
        font-size: 14px;
        line-height: 1.2;
    }
    .news-section__heading-row {
        flex-direction: column;
        gap: 24px;
    }
    .news-section__title {
        font-size: clamp(34px, 10.2vw, 42px);
        line-height: 1.02;
    }
    .news-section__archive-button {
        min-height: 48px;
        padding-inline: 28px;
        font-size: 16px;
    }
    .news-section__slider {
        width: calc(100vw - 16px);
        margin-top: 36px;
        margin-left: 16px;
    }
    .news-card {
        width: min(calc(100vw - 32px), 340px);
        height: auto;
        aspect-ratio: 380 / 512;
        border-radius: 16px;
    }
    .news-card__date {
        bottom: 30.3%;
        font-size: 14px;
    }
    .news-card__title {
        bottom: 18.4%;
        width: calc(100% - 28px);
        font-size: 17px;
    }
    .news-card__button {
        bottom: 10px;
        min-height: 50px;
        padding: 14px 28px;
        font-size: 16px;
    }
    .news-section__navigation {
        margin-top: 28px;
    }
    .news-section__nav {
        width: 54px;
        height: 54px;
    }
    .consultation-section {
        margin-top: 64px;
    }
    .consultation-section__content {
        padding: 48px 16px 56px;
    }
    .consultation-section__inner {
        gap: 16px;
    }
    .consultation-section__eyebrow {
        font-size: 14px;
    }
    .consultation-section__main {
        gap: 36px;
    }
    .consultation-section__copy {
        gap: 20px;
    }
    .consultation-section__title {
        font-size: clamp(36px, 10.2vw, 44px);
        line-height: 1.02;
    }
    .consultation-section__description {
        font-size: 18px;
        line-height: 1.3;
    }
    .consultation-section__form .wpcf7-form {
        gap: 36px;
    }
    .consultation-form__field-label,
    .consultation-form__control {
        font-size: 18px;
    }
    .consultation-form__consent .wpcf7-list-item-label {
        font-size: 16px;
    }
    .consultation-form__button {
        min-height: 48px;
        padding-inline: 32px;
        font-size: 16px;
    }
    .consultation-section__visual {
        min-height: 420px;
    }
    .not-found {
        min-height: 0;
        padding: 110px 16px 64px;
    }
    .not-found__clouds {
        top: 116px;
        width: 132vw;
        height: min(70vw, 280px);
    }
    .not-found__content {
        padding-top: 46px;
    }
    .not-found__code {
        width: min(100%, 400px);
    }
    .not-found__title {
        width: min(100%, 330px);
        margin-top: 24px;
        font-size: clamp(25px, 7.6vw, 34px);
        line-height: 1.22;
    }
    .not-found__actions {
        width: 100%;
        gap: 12px;
        margin-top: 24px;
    }
    .not-found__button {
        min-height: 52px;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stat-grid__number {
        font-size: clamp(34px, 10.5vw, 42px);
    }
}

.has-partner-hero .site-header__logo {
    visibility: hidden;
    pointer-events: none;
}

.partner-hero {
    position: relative;
    min-height: 727px;
    overflow: hidden;
    background: #181512;
    color: #fff;
    isolation: isolate;
}

.partner-hero__image,
.partner-hero__video,
.partner-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.partner-hero__image,
.partner-hero__video {
    z-index: -2;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.partner-hero__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.4);
    pointer-events: none;
}

.partner-hero__logo {
    position: absolute;
    top: 205px;
    left: 50%;
    display: block;
    width: 148px;
    height: 55px;
    object-fit: contain;
    transform: translateX(-50%);
}

.partner-hero__title {
    position: absolute;
    top: calc(50% - 88.5px);
    left: 50%;
    width: max-content;
    max-width: calc(100% - 40px);
    margin: 0;
    color: #fff;
    font-family: Athelas, Georgia, serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 100px;
    text-align: center;
    transform: translateX(-50%);
}

.partner-hero__title[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}

.partner-hero__title[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.partner-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    cursor: pointer;
    place-items: center;
    transform: translateX(-50%);
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    backdrop-filter: blur(8px);
}

.partner-hero__scroll:hover,
.partner-hero__scroll:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.partner-hero__scroll-icon {
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.image-hero {
    position: relative;
    display: grid;
    min-height: 727px;
    overflow: hidden;
    background: #151515;
    color: #fff;
    isolation: isolate;
    place-items: center;
}

.image-hero__media,
.image-hero__overlay {
    position: absolute;
    inset: 0;
}

.image-hero__media {
    z-index: -2;
}

.image-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.woocommerce .image-hero__image,
.woocommerce-page .image-hero__image {
    height: 100%;
    max-width: none;
}

.image-hero__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.4);
    pointer-events: none;
}

.image-hero__content {
    position: absolute;
    top: 240px;
    left: 50%;
    display: flex;
    width: min(1266px, calc(100% - 40px));
    align-items: center;
    flex-direction: column;
    transform: translateX(-50%);
    text-align: center;
}

.image-hero__content[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}

.image-hero__content[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.image-hero__eyebrow {
    margin: 0;
    color: rgb(255 255 255 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.image-hero__title {
    width: min(1040px, 100%);
    margin: 20px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 84px;
    text-wrap: balance;
}

.post-type-archive-product .image-hero__content {
    width: min(1400px, calc(100% - 80px));
}

.post-type-archive-product .image-hero__title {
    width: 100%;
}

.image-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    cursor: pointer;
    place-items: center;
    transform: translateX(-50%);
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    backdrop-filter: blur(8px);
}

.image-hero__scroll:hover,
.image-hero__scroll:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.image-hero__scroll-icon {
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.category-brand-catalog {
    padding: 60px 20px 120px;
    overflow: hidden;
    background: #fff;
    color: #000;
}

.category-brand-catalog__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.category-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.category-brand + .category-brand {
    margin-top: 60px;
}

.category-brand__body {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 50px;
}

.category-brand__header {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.category-brand__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.category-brand__logo {
    width: auto;
    max-width: 154px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.category-brand__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-product-card,
.category-brand__showcase {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dedede;
    background: #fff;
}

.category-product-card {
    display: flex;
    min-height: 350px;
    align-items: center;
    flex-direction: column;
    padding: 39px 30px 16px;
    text-align: center;
    transition: background-color 0.35s ease;
}

.category-product-card__sku,
.category-product-card__name {
    display: block;
    width: 100%;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.category-product-card__sku {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.2;
}

.category-product-card__media {
    display: block;
    width: min(100%, 208px);
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.category-product-card__image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.woocommerce .category-product-card__image,
.woocommerce-page .category-product-card__image,
.woocommerce .category-brand__showcase-image,
.woocommerce-page .category-brand__showcase-image {
    height: 100%;
    max-width: none;
}

.category-product-card__name {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.category-product-card:hover,
.category-product-card:focus-visible {
    background: #f7f7f7;
}

.category-product-card:hover .category-product-card__image,
.category-product-card:focus-visible .category-product-card__image,
.category-brand__showcase:hover .category-brand__showcase-image,
.category-brand__showcase:focus-visible .category-brand__showcase-image {
    transform: scale(1.035);
}

.category-brand__showcase {
    min-height: 350px;
    aspect-ratio: 2 / 1;
    grid-column: span 2;
}

.category-brand__showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-brand__button {
    display: inline-flex;
    min-width: 164px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1px solid #000;
    border-radius: 999px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition:
        background-color 0.28s ease,
        color 0.28s ease;
}

.category-brand__button:hover,
.category-brand__button:focus-visible {
    background: #000;
    color: #fff;
}

/* WooCommerce single product */
.single-product .site-main {
    background: #fff;
    color: #1b1b1b;
}

.product-detail-notices {
    position: fixed;
    z-index: 140;
    top: 104px;
    right: 24px;
    display: grid;
    width: min(520px, calc(100% - 48px));
    gap: 10px;
    pointer-events: none;
}

.product-detail-notices:empty {
    display: none;
}

.product-detail-notices .woocommerce-message,
.product-detail-notices .woocommerce-error,
.product-detail-notices .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    position: relative;
    display: block;
    min-height: 76px;
    margin: 0;
    padding: 18px 52px 18px 64px;
    border: 1px solid #1b1b1b;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 54px rgb(0 0 0 / 0.12);
    color: #1b1b1b;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    list-style: none;
    pointer-events: auto;
    animation: lascala-notice-in 0.46s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.product-detail-notices .woocommerce-message::after,
.product-detail-notices .woocommerce-info::after,
.woocommerce-notices-wrapper .woocommerce-message::after,
.woocommerce-notices-wrapper .woocommerce-info::after {
    display: table;
    clear: both;
    content: "";
}

.product-detail-notices .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-error {
    padding-top: 15px;
    padding-bottom: 15px;
}

.product-detail-notices .woocommerce-error li,
.woocommerce-notices-wrapper .woocommerce-error li {
    margin: 0;
    padding: 3px 0;
    list-style: none;
}

.product-detail-notices .woocommerce-message::before,
.product-detail-notices .woocommerce-error::before,
.product-detail-notices .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-error::before,
.woocommerce-notices-wrapper .woocommerce-info::before {
    position: absolute;
    top: 50%;
    left: 20px;
    display: grid;
    width: 26px;
    height: 26px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "i";
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1;
    color: #1b1b1b;
    place-items: center;
    transform: translateY(-50%);
}

.product-detail-notices .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-message::before {
    content: "✓";
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
}

.product-detail-notices .woocommerce-error::before,
.woocommerce-notices-wrapper .woocommerce-error::before {
    content: "!";
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
}

.product-detail-notices .button,
.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-info .button {
    display: inline-flex !important;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 164px;
    margin: 0 0 0 18px !important;
    padding: 9px 22px !important;
    border: 1px solid #1b1b1b !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #1b1b1b !important;
    float: right;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.28s ease,
        color 0.28s ease;
}

.product-detail-notices .button:hover,
.product-detail-notices .button:focus-visible,
.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-message .button:focus-visible,
.woocommerce-notices-wrapper .woocommerce-info .button:hover,
.woocommerce-notices-wrapper .woocommerce-info .button:focus-visible {
    background: #1b1b1b !important;
    color: #fff !important;
}

.lascala-notice__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 0;
}

.lascala-notice__close::before,
.lascala-notice__close::after {
    position: absolute;
    top: 13px;
    left: 6px;
    width: 16px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: background-color 0.25s ease;
}

.lascala-notice__close::before {
    transform: rotate(45deg);
}

.lascala-notice__close::after {
    transform: rotate(-45deg);
}

.lascala-notice__close:hover,
.lascala-notice__close:focus-visible {
    color: #1b1b1b;
}

.woocommerce-message.is-notice-leaving,
.woocommerce-error.is-notice-leaving,
.woocommerce-info.is-notice-leaving {
    animation: lascala-notice-out 0.32s ease both;
}

@keyframes lascala-notice-in {
    from {
        opacity: 0;
        transform: translate3d(0, -14px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lascala-notice-out {
    to {
        opacity: 0;
        transform: translate3d(20px, 0, 0);
    }
}

@media (max-width: 767px) {
    .product-detail-notices {
        top: 82px;
        right: 12px;
        width: calc(100% - 24px);
    }

    .product-detail-notices .woocommerce-message,
    .product-detail-notices .woocommerce-error,
    .product-detail-notices .woocommerce-info,
    .woocommerce-notices-wrapper .woocommerce-message,
    .woocommerce-notices-wrapper .woocommerce-error,
    .woocommerce-notices-wrapper .woocommerce-info {
        min-height: 68px;
        padding: 15px 44px 15px 54px;
        border-radius: 10px;
        font-size: 14px;
    }

    .product-detail-notices .button,
    .woocommerce-notices-wrapper .woocommerce-message .button,
    .woocommerce-notices-wrapper .woocommerce-info .button {
        display: flex !important;
        width: fit-content;
        min-width: 150px;
        margin: 10px 0 0 !important;
        float: none;
    }

    .product-detail-notices .woocommerce-message::before,
    .product-detail-notices .woocommerce-error::before,
    .product-detail-notices .woocommerce-info::before,
    .woocommerce-notices-wrapper .woocommerce-message::before,
    .woocommerce-notices-wrapper .woocommerce-error::before,
    .woocommerce-notices-wrapper .woocommerce-info::before {
        left: 15px;
        width: 24px;
        height: 24px;
    }

    .lascala-notice__close {
        top: 10px;
        right: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-detail-notices .woocommerce-message,
    .product-detail-notices .woocommerce-error,
    .product-detail-notices .woocommerce-info,
    .woocommerce-notices-wrapper .woocommerce-message,
    .woocommerce-notices-wrapper .woocommerce-error,
    .woocommerce-notices-wrapper .woocommerce-info,
    .woocommerce-message.is-notice-leaving,
    .woocommerce-error.is-notice-leaving,
    .woocommerce-info.is-notice-leaving {
        animation: none;
    }
}

.product-detail {
    padding: 94px 20px 120px;
    overflow: clip;
}

.product-detail__container {
    display: grid;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.product-detail__gallery {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
}

.product-detail__gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #d9d9d9;
    aspect-ratio: 670 / 455;
}

.product-detail__gallery-image,
.woocommerce .product-detail__gallery-image,
.woocommerce-page .product-detail__gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.product-detail__gallery-item:hover .product-detail__gallery-image {
    transform: scale(1.025);
}

.product-detail__aside {
    align-self: start;
}

.product-detail__summary {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-detail__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.product-detail__heading-copy {
    width: min(100%, 498px);
}

.product-detail__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.product-detail__sku {
    margin: 30px 0 0;
    color: #757575;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.product-detail__brand-logo,
.woocommerce .product-detail__brand-logo,
.woocommerce-page .product-detail__brand-logo {
    width: 120px;
    height: 40px;
    max-width: 120px;
    flex: 0 0 120px;
    object-fit: contain;
    object-position: top right;
}

.product-detail__description {
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

.product-detail__section-title {
    margin: 0;
    padding: 0 0 14px;
    border-bottom: 1px solid #bababa;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail__description-copy {
    padding-top: 25px;
    font-size: 24px;
    line-height: 1.22;
}

.product-detail__description-copy p {
    margin: 0;
}

.product-detail__form,
.product-detail__options {
    display: flex;
    flex-direction: column;
}

.product-detail__form {
    margin: 0;
    gap: 50px;
}

.product-detail__options {
    gap: 50px;
}

.product-detail__option {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.product-detail__option-label {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail__choice {
    min-height: 47px;
    padding: 11px 20px;
    border: 1px solid #9c9c9c;
    border-radius: 4px;
    background: #fff;
    color: #040404;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.1;
    cursor: pointer;
    transition:
        border-color 0.24s ease,
        background-color 0.24s ease,
        color 0.24s ease,
        opacity 0.24s ease;
}

.product-detail__choice:not(.product-detail__choice--color):hover,
.product-detail__choice:not(.product-detail__choice--color):focus-visible,
.product-detail__choice:not(.product-detail__choice--color).is-selected {
    border-color: #000;
    background: #000;
    color: #fff;
}

.product-detail__choice:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.product-detail__choices--color {
    align-items: center;
}

.product-detail__choice--color {
    position: relative;
    display: block;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 50%;
    background: #f2f2f2;
}

.product-detail__choice--color::after {
    position: absolute;
    border: 2px solid transparent;
    border-radius: inherit;
    content: "";
    inset: 2px;
    pointer-events: none;
    transition: border-color 0.24s ease;
}

.product-detail__choice--color:hover::after,
.product-detail__choice--color:focus-visible::after,
.product-detail__choice--color.is-selected::after {
    border-color: #fff;
    box-shadow: 0 0 0 1px #000;
}

.product-detail__swatch-image,
.woocommerce .product-detail__swatch-image,
.woocommerce-page .product-detail__swatch-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.product-detail__variation {
    display: none !important;
}

.product-detail__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-detail__actions form {
    margin: 0;
}

.product-detail__button,
.woocommerce .product-detail__button,
.woocommerce-page .product-detail__button {
    display: inline-flex;
    min-width: 168px;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease,
        opacity 0.28s ease;
}

.product-detail__button--primary,
.woocommerce .product-detail__button--primary,
.woocommerce-page .product-detail__button--primary {
    background: #000 !important;
    color: #fff !important;
}

.product-detail__button--secondary {
    min-width: 239px;
    background: #fff;
    color: #000;
}

.product-detail__button--primary:hover,
.product-detail__button--primary:focus-visible,
.woocommerce .product-detail__button--primary:hover,
.woocommerce .product-detail__button--primary:focus-visible {
    background: #fff !important;
    color: #000 !important;
}

.product-detail__button--secondary:hover,
.product-detail__button--secondary:focus-visible {
    background: #000;
    color: #fff;
}

.product-detail__button.disabled,
.product-detail__button:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.product-detail__downloads {
    margin-top: 80px;
    border-top: 1px solid #bababa;
}

.product-detail__download {
    display: grid;
    min-height: 80px;
    align-items: center;
    padding: 18px;
    grid-template-columns: 24px minmax(0, 1fr) 25px;
    gap: 18px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
    transition: background-color 0.25s ease;
}

.product-detail__download + .product-detail__download {
    border-top: 1px solid #e3e3e3;
}

.product-detail__download:hover,
.product-detail__download:focus-visible {
    background: #f1f1f1;
}

.product-detail__download:hover span,
.product-detail__download:focus-visible span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-detail__download-file {
    width: 21.3px;
    height: 26.7px;
}

.product-detail__download-arrow {
    width: 25px;
    height: 25px;
}

@media (max-width: 1100px) {
    .product-detail__container {
        gap: 40px;
    }

    .product-detail__title {
        font-size: clamp(38px, 4.5vw, 50px);
    }

    .product-detail__description-copy,
    .product-detail__sku,
    .product-detail__option-label,
    .product-detail__section-title,
    .product-detail__download {
        font-size: 20px;
    }

    .product-detail__brand-logo,
    .woocommerce .product-detail__brand-logo,
    .woocommerce-page .product-detail__brand-logo {
        width: 96px;
        height: 34px;
        flex-basis: 96px;
    }
}

@media (max-width: 900px) {
    .product-detail {
        padding: 100px 16px 88px;
    }

    .product-detail__container {
        display: block;
    }

    .product-detail__gallery {
        display: grid;
        width: calc(100% + 16px);
        margin-right: -16px;
        padding-right: 16px;
        grid-auto-columns: min(84vw, 620px);
        grid-auto-flow: column;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .product-detail__gallery::-webkit-scrollbar {
        display: none;
    }

    .product-detail__gallery-item {
        scroll-snap-align: start;
    }

    .product-detail__aside {
        position: static;
        margin-top: 48px;
    }

    .product-detail__summary,
    .product-detail__form,
    .product-detail__options {
        gap: 38px;
    }

    .product-detail__downloads {
        margin-top: 56px;
    }
}

@media (max-width: 600px) {
    .product-detail__heading {
        gap: 18px;
    }

    .product-detail__title {
        font-size: 34px;
        line-height: 1.02;
    }

    .product-detail__sku {
        margin-top: 18px;
        font-size: 16px;
    }

    .product-detail__brand-logo,
    .woocommerce .product-detail__brand-logo,
    .woocommerce-page .product-detail__brand-logo {
        width: 76px;
        height: 28px;
        flex-basis: 76px;
    }

    .product-detail__section-title,
    .product-detail__option-label {
        font-size: 19px;
    }

    .product-detail__description-copy {
        padding-top: 18px;
        font-size: 17px;
        line-height: 1.35;
    }

    .product-detail__choice {
        min-height: 42px;
        padding: 9px 14px;
        font-size: 16px;
    }

    .product-detail__choice--color {
        width: 52px;
        min-width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
    }

    .product-detail__actions {
        gap: 12px;
    }

    .product-detail__button,
    .woocommerce .product-detail__button,
    .woocommerce-page .product-detail__button {
        min-width: 0;
        min-height: 46px;
        flex: 1 1 calc(50% - 6px);
        padding: 11px 18px;
        font-size: 15px;
    }

    .product-detail__download {
        min-height: 70px;
        padding: 15px 4px;
        grid-template-columns: 22px minmax(0, 1fr) 23px;
        gap: 12px;
        font-size: 17px;
    }
}

/* Project area galleries */
.project-area-sliders {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
    background: #f5f5f5;
}

.project-area-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    height: clamp(400px, 37.3vw, 537px);
    min-height: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.project-area-slider--media-right .project-area-slider__media { order: 2; }
.project-area-slider--media-right .project-area-slider__content { order: 1; }

.project-area-slider__media {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: #dedbd7;
}

.project-area-slider__swiper,
.project-area-slider__slide {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.project-area-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-area-slider__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px clamp(54px, 4.24vw, 61px);
}

.project-area-slider__title {
    margin: 0;
    color: #000;
    font-family: var(--font-heading, 'Athelas', Georgia, serif);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.project-area-slider__description {
    max-width: 608px;
    margin-top: 31px;
    color: #5d5d5d;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.project-area-slider__description p { margin: 0; }
.project-area-slider__description p + p { margin-top: 20px; }

.project-area-slider__navigation {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    display: flex;
    gap: 12px;
}

.project-area-slider__button {
    position: relative;
    display: inline-grid;
    width: 62px;
    height: 62px;
    padding: 0;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: rgb(32 20 14 / 25%);
    border: 1px solid transparent;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background-color .25s ease, border-color .25s ease, opacity .25s ease;
}

.project-area-slider__button:hover,
.project-area-slider__button:focus-visible {
    background: rgb(32 20 14 / 48%);
    border-color: rgb(255 255 255 / 82%);
    outline: none;
}

.project-area-slider__button:disabled {
    cursor: default;
    opacity: .52;
}

.project-area-slider__button--prev .project-area-slider__arrow { transform: rotate(180deg); }

.project-area-slider__arrow {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.project-area-slider__progress {
    position: absolute;
    inset: -1px;
    transform: rotate(-90deg);
}

.project-area-slider__progress svg { display: block; width: 100%; height: 100%; }

.project-area-slider__progress circle {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
    stroke-dasharray: 175.93;
    stroke-dashoffset: calc(175.93 * (1 - var(--slider-progress, 0)));
    transition: stroke-dashoffset .08s linear;
}

@media (max-width: 1100px) {
    .project-area-slider {
        height: clamp(400px, 48vw, 528px);
        min-height: 0;
    }
    .project-area-slider__content { padding: 48px 42px; }
    .project-area-slider__title { font-size: clamp(44px, 5.45vw, 60px); }
    .project-area-slider__description { font-size: 21px; }
}

@media (max-width: 1100px) {
    .project-area-sliders { gap: 32px; }
    .project-area-slider { display: flex; flex-direction: column; height: auto; min-height: 0; }
    .project-area-slider--media-right .project-area-slider__media,
    .project-area-slider--media-right .project-area-slider__content { order: initial; }
    .project-area-slider__media { height: auto; aspect-ratio: 4 / 3; }
    .project-area-slider__content { padding: 36px 20px 42px; }
    .project-area-slider__title { font-size: clamp(42px, 13vw, 54px); }
    .project-area-slider__description { margin-top: 20px; font-size: 18px; line-height: 1.28; }
    .project-area-slider__description p + p { margin-top: 16px; }
    .project-area-slider__navigation { right: 16px; bottom: 16px; gap: 10px; }
    .project-area-slider__button { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
    .project-area-slider[data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .project-area-slider__progress { display: none; }
}

/* Project promotional banners */
.project-promotional-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: min(1400px, calc(100% - 40px));
    margin: 80px auto;
}

.project-promotional-banners__card {
    position: relative;
    min-height: 499px;
    overflow: hidden;
    border-radius: 12px;
    isolation: isolate;
}

.project-promotional-banners__media,
.project-promotional-banners__overlay {
    position: absolute;
    inset: 0;
}

.project-promotional-banners__media { z-index: -2; }

.project-promotional-banners__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-promotional-banners__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 50%);
}

.project-promotional-banners__card:hover .project-promotional-banners__image { transform: scale(1.035); }

.project-promotional-banners__title {
    position: absolute;
    top: 266px;
    left: 20px;
    max-width: min(431px, calc(100% - 40px));
    margin: 0;
    color: #fff;
    font-family: var(--font-heading, 'Athelas', Georgia, serif);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.project-promotional-banners__link {
    position: absolute;
    bottom: 15px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 40px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    background: rgb(255 255 255 / 10%);
    border: 1px solid transparent;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
    transition: background-color .25s ease, border-color .25s ease;
}

.project-promotional-banners__link:hover,
.project-promotional-banners__link:focus-visible {
    color: #fff;
    background: rgb(255 255 255 / 22%);
    border-color: rgb(255 255 255 / 60%);
    outline: none;
}

@media (max-width: 900px) {
    .project-promotional-banners {
        grid-template-columns: minmax(0, 1fr);
        width: min(690px, calc(100% - 32px));
        margin-block: 56px;
    }
}

@media (max-width: 600px) {
    .project-promotional-banners { gap: 16px; margin-block: 40px; }
    .project-promotional-banners__card { min-height: min(499px, 120vw); }
    .project-promotional-banners__title {
        top: auto;
        bottom: 100px;
        left: 16px;
        max-width: calc(100% - 32px);
        font-size: clamp(40px, 12vw, 54px);
    }
    .project-promotional-banners__link {
        bottom: 14px;
        width: calc(100% - 32px);
        padding-inline: 20px;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-promotional-banners__card[data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .project-promotional-banners__image { transition: none; }
}

/* Project overview and areas */
.project-overview-areas {
    padding: 60px 0 100px;
    color: #000;
    background: #fff;
}

.project-overview-areas__container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.project-overview-areas__breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.2;
    list-style: none;
}

.project-overview-areas__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.project-overview-areas__breadcrumb:not(:last-child)::after {
    width: 4px;
    height: 4px;
    content: '';
    background: #000;
}

.project-overview-areas__breadcrumb a,
.project-overview-areas__breadcrumb span { color: #000; text-decoration: none; }
.project-overview-areas__breadcrumb.is-current span { color: #b8b8b8; }

.project-overview-areas__title {
    margin: 33px 0 0;
    font-family: var(--font-heading, 'Athelas', Georgia, serif);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.project-overview-areas__gallery-viewport {
    margin-top: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.project-overview-areas__gallery-viewport::-webkit-scrollbar { display: none; }

.project-overview-areas__gallery {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
}

.project-overview-areas__gallery-item {
    flex: 0 0 720px;
    width: 720px;
    height: 405px;
    margin: 0;
    overflow: hidden;
}

.project-overview-areas__gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overview-areas__intro {
    width: min(904px, calc(100% - 100px));
    margin: 69px 100px 0 auto;
    color: rgb(0 0 0 / 70%);
    font-size: 24px;
    line-height: 1.2;
}

.project-overview-areas__areas {
    display: flex;
    flex-direction: column;
    gap: 57px;
    margin-top: 58px;
}

.project-overview-areas__area {
    display: grid;
    grid-template-columns: 296px minmax(0, 938px);
    gap: 100px;
    align-items: start;
}

.project-overview-areas__area-title {
    margin: -9px 0 0;
    font-family: var(--font-heading, 'Athelas', Georgia, serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.project-overview-areas__area-copy {
    color: rgb(0 0 0 / 70%);
    font-size: 24px;
    line-height: 1.2;
}

.project-overview-areas__area-copy p { margin: 0; }
.project-overview-areas__area-copy p + p { margin-top: 30px; }

@media (max-width: 1100px) {
    .project-overview-areas__title { font-size: clamp(48px, 5.45vw, 60px); }
    .project-overview-areas__intro {
        width: min(904px, calc(100% - 48px));
        margin-right: 24px;
        font-size: 22px;
    }
    .project-overview-areas__area {
        grid-template-columns: minmax(190px, .33fr) minmax(0, 1fr);
        gap: 42px;
    }
    .project-overview-areas__area-copy { font-size: 22px; }
}

@media (max-width: 700px) {
    .project-overview-areas { padding: 44px 0 64px; }
    .project-overview-areas__container { width: calc(100% - 32px); }
    .project-overview-areas__breadcrumbs-list { gap: 6px 8px; font-size: 12px; }
    .project-overview-areas__breadcrumb { gap: 8px; }
    .project-overview-areas__title {
        margin-top: 22px;
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.03;
    }
    .project-overview-areas__gallery-viewport { margin-top: 28px; }
    .project-overview-areas__gallery { gap: 12px; padding: 0 16px; }
    .project-overview-areas__gallery-item {
        flex-basis: 82vw;
        width: 82vw;
        height: 52vw;
    }
    .project-overview-areas__intro {
        width: 100%;
        margin: 38px 0 0;
        font-size: 18px;
        line-height: 1.3;
    }
    .project-overview-areas__areas { gap: 38px; margin-top: 46px; }
    .project-overview-areas__area {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .project-overview-areas__area-title {
        margin: 0;
        font-size: clamp(38px, 11vw, 48px);
    }
    .project-overview-areas__area-copy { font-size: 18px; line-height: 1.3; }
    .project-overview-areas__area-copy p + p { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .project-overview-areas [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Optional product usage section */
.product-usage {
    overflow: hidden;
    padding: 60px 20px 76px;
    background: #f5f5f5;
}

.product-usage__container {
    width: 100%;
    margin: 0 auto;
}

.product-usage__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-usage__title {
    margin: 30px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.product-usage__body {
    display: grid;
    min-width: 0;
    margin-top: 28px;
    grid-template-columns: 211px minmax(0, 1fr);
    gap: 94px;
}

.product-usage__tabs {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-self: start;
    gap: 10px;
}

.product-usage__tab {
    display: flex;
    width: 100%;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #9c9c9c;
    border-radius: 100px;
    background: transparent;
    color: #040404;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    opacity: 0.6;
    cursor: pointer;
    transition:
        border-color 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease,
        opacity 0.28s ease;
}

.product-usage__tab:hover,
.product-usage__tab:focus-visible {
    border-color: #000;
    opacity: 1;
}

.product-usage__tab.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
    opacity: 1;
}

.product-usage__panels,
.product-usage__panel,
.product-usage__slider {
    min-width: 0;
}

.product-usage__panel[hidden] {
    display: none;
}

.product-usage__panel.is-entering {
    animation: product-usage-panel-in 0.48s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.product-usage__slider,
.product-usage__slider.swiper {
    overflow: visible;
    /* Allow following slides to continue to the right, but never underneath the tabs. */
    clip-path: inset(0 -100vw 0 0);
}

.product-usage__slide,
.product-usage__slide.swiper-slide {
    width: 670px;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #dedede;
    aspect-ratio: 670 / 377;
}

.product-usage__image,
.woocommerce .product-usage__image,
.woocommerce-page .product-usage__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.product-usage__slide:hover .product-usage__image {
    transform: scale(1.018);
}

.product-usage__navigation {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 28px;
    display: flex;
    gap: 12px;
    transform: translateY(-50%);
}

.product-usage__arrow {
    display: grid;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.2);
    color: #fff;
    place-items: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.product-usage__arrow:hover,
.product-usage__arrow:focus-visible {
    background: #fff;
    color: #000;
}

.product-usage__arrow-icon {
    width: 24px;
    height: 24px;
}

.product-usage__arrow--prev .product-usage__arrow-icon {
    transform: rotate(180deg);
}

.product-usage__arrow.swiper-button-disabled {
    opacity: 0.36;
    pointer-events: none;
}

@keyframes product-usage-panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .product-usage__body {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 46px;
    }

    .product-usage__title {
        font-size: clamp(48px, 5.5vw, 60px);
    }

    .product-usage__slide,
    .product-usage__slide.swiper-slide {
        width: min(670px, 68vw);
    }
}

@media (max-width: 800px) {
    .product-usage {
        padding: 52px 16px 64px;
    }

    .product-usage__title {
        margin-top: 22px;
        font-size: 44px;
    }

    .product-usage__body {
        display: block;
        margin-top: 26px;
    }

    .product-usage__tabs {
        width: calc(100% + 16px);
        flex-direction: row;
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .product-usage__tabs::-webkit-scrollbar {
        display: none;
    }

    .product-usage__tab {
        width: auto;
        min-width: max-content;
        flex: 0 0 auto;
        padding-inline: 24px;
        font-size: 18px;
    }

    .product-usage__panels {
        margin-top: 20px;
    }

    .product-usage__slide,
    .product-usage__slide.swiper-slide {
        width: min(670px, 84vw);
    }

    .product-usage__navigation {
        right: 18px;
    }

    .product-usage__arrow {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 520px) {
    .product-usage {
        padding-top: 44px;
        padding-bottom: 52px;
    }

    .product-usage__eyebrow {
        font-size: 14px;
    }

    .product-usage__title {
        margin-top: 18px;
        font-size: 38px;
        line-height: 1.04;
    }

    .product-usage__slide,
    .product-usage__slide.swiper-slide {
        width: 86vw;
        border-radius: 14px;
    }

    .product-usage__navigation {
        right: 12px;
        gap: 8px;
    }

    .product-usage__arrow {
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-usage__panel.is-entering {
        animation: none;
    }

    .product-usage__image,
    .product-usage__tab,
    .product-usage__arrow {
        transition: none;
    }
}

/* WooCommerce product cross-sells */
.product-cross-sells {
    overflow: hidden;
    padding: 60px 20px;
    background: #fff;
}

.product-cross-sells__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.product-cross-sells__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-cross-sells__heading-row {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 18px;
}

.product-cross-sells__title {
    margin: 0;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.product-cross-sells__catalog-link {
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    background: transparent;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color 0.28s ease, color 0.28s ease;
}

.product-cross-sells__catalog-link:hover,
.product-cross-sells__catalog-link:focus-visible {
    background: #000;
    color: #fff;
}

.product-cross-sells__catalog-link:focus-visible,
.product-cross-sells__card:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.product-cross-sells__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.product-cross-sells__card {
    display: flex;
    min-width: 0;
    min-height: 350px;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 39px 30px 16px;
    border: 1px solid #dedede;
    border-right-width: 0;
    background: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.product-cross-sells__card:last-child {
    border-right-width: 1px;
}

.product-cross-sells__sku,
.product-cross-sells__name {
    display: block;
    width: 100%;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-weight: 400;
}

.product-cross-sells__sku {
    min-height: 19px;
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.2;
}

.product-cross-sells__media {
    display: block;
    width: min(100%, 208px);
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1;
}

.product-cross-sells__image,
.woocommerce .product-cross-sells__image,
.woocommerce-page .product-cross-sells__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-cross-sells__name {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-cross-sells__card:hover,
.product-cross-sells__card:focus-visible {
    background: #f7f7f7;
}

.product-cross-sells__card:hover .product-cross-sells__image,
.product-cross-sells__card:focus-visible .product-cross-sells__image {
    transform: scale(1.035);
}

@media (max-width: 900px) {
    .product-cross-sells {
        padding: 52px 24px;
    }

    .product-cross-sells__title {
        font-size: clamp(46px, 7vw, 60px);
    }

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

    .product-cross-sells__card:nth-child(2n) {
        border-right-width: 1px;
    }

    .product-cross-sells__card:nth-child(n + 3) {
        border-top-width: 0;
    }
}

@media (max-width: 600px) {
    .product-cross-sells {
        padding: 44px 16px;
    }

    .product-cross-sells__eyebrow {
        font-size: 14px;
    }

    .product-cross-sells__heading-row {
        display: block;
        min-height: 0;
        margin-top: 18px;
    }

    .product-cross-sells__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .product-cross-sells__catalog-link {
        width: 100%;
        margin-top: 24px;
        font-size: 17px;
    }

    .product-cross-sells__grid {
        margin-top: 24px;
    }

    .product-cross-sells__card {
        min-height: 0;
        padding: 24px 12px 16px;
    }

    .product-cross-sells__sku {
        min-height: 34px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .product-cross-sells__name {
        margin-top: 14px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-cross-sells__catalog-link,
    .product-cross-sells__card,
    .product-cross-sells__image {
        transition: none;
    }
}

/* Optional product technical information section */
.product-technical {
    position: relative;
    z-index: 0;
    min-height: 642px;
    overflow: hidden;
    padding: 0 20px;
    color: #fff;
    isolation: isolate;
}

.product-technical__media,
.product-technical__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-technical__media {
    z-index: 0;
}

.product-technical__overlay {
    z-index: 1;
    background: rgb(0 0 0 / 0.6);
}

.product-technical__image,
.woocommerce .product-technical__image,
.woocommerce-page .product-technical__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.product-technical__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1400px);
    min-height: 642px;
    margin: 0 auto;
    padding: 60px 0 32px;
}

.product-technical__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-technical__title {
    margin: 22px 0 0;
    color: inherit;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.product-technical__documents {
    display: flex;
    width: min(614px, 100%);
    flex-direction: column;
    gap: 10px;
    margin-top: 190px;
}

.product-technical__document {
    display: grid;
    min-height: 76px;
    grid-template-columns: 24px minmax(0, 1fr) 25px;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.28s ease, border-color 0.28s ease;
}

.product-technical__document:hover,
.product-technical__document:focus-visible {
    border-color: rgb(255 255 255 / 0.3);
    background: rgb(255 255 255 / 0.22);
}

.product-technical__document:focus-visible,
.product-technical__catalog-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.product-technical__document:hover .product-technical__document-label,
.product-technical__document:focus-visible .product-technical__document-label {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-technical__file-icon {
    width: 23.333px;
    height: 28.667px;
    color: currentColor;
}

.product-technical__download-icon {
    width: 25px;
    height: 25px;
    color: currentColor;
}

.product-technical__catalog-link {
    position: absolute;
    right: 0;
    bottom: 32px;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 1px solid rgb(255 255 255 / 0.32);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.product-technical__catalog-link:hover,
.product-technical__catalog-link:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #000;
}

@media (max-width: 900px) {
    .product-technical {
        min-height: 0;
        padding: 0 24px;
    }

    .product-technical__container {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 56px 0 40px;
    }

    .product-technical__title {
        font-size: clamp(46px, 7vw, 60px);
    }

    .product-technical__documents {
        margin-top: 88px;
    }

    .product-technical__catalog-link {
        position: static;
        margin-top: 32px;
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .product-technical {
        padding: 0 16px;
    }

    .product-technical__container {
        padding: 44px 0 32px;
    }

    .product-technical__eyebrow {
        font-size: 14px;
    }

    .product-technical__title {
        margin-top: 18px;
        font-size: 38px;
        line-height: 1.04;
    }

    .product-technical__documents {
        margin-top: 62px;
    }

    .product-technical__document {
        min-height: 64px;
        grid-template-columns: 21.333px minmax(0, 1fr) 22px;
        gap: 12px;
        padding: 12px 16px;
        font-size: 18px;
    }

    .product-technical__file-icon {
        width: 21.333px;
        height: 26.167px;
    }

    .product-technical__download-icon {
        width: 22px;
        height: 22px;
    }

    .product-technical__catalog-link {
        width: 100%;
        min-height: 52px;
        margin-top: 24px;
        padding-inline: 24px;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-technical__document,
    .product-technical__catalog-link {
        transition: none;
    }
}

/* Header mini-cart */
.site-header__cart-button {
    position: relative;
}

.site-header__cart-count {
    position: absolute;
    top: -5px;
    right: -7px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__cart-count.is-empty {
    opacity: 0;
    transform: scale(0.65);
}

.site-mini-cart {
    position: fixed;
    z-index: 110;
    top: 96px;
    right: 20px;
    width: min(518px, calc(100vw - 40px));
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 20px rgb(6 37 91 / 0.1), 0 6px 20px rgb(24 44 73 / 0.12);
    color: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    transition:
        opacity 0.26s ease,
        visibility 0.26s ease,
        transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-mini-cart.has-items {
    padding: 14px;
}

.site-mini-cart.is-empty {
    width: min(468px, calc(100vw - 40px));
    padding: 6px;
}

.is-mini-cart-open .site-mini-cart {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.site-mini-cart__items {
    max-height: 396px;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #c6c6c6 transparent;
}

.site-mini-cart__item {
    display: grid;
    min-width: 0;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
    grid-template-columns: 112px minmax(0, 1fr) 32px;
    gap: 14px;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-mini-cart__item.is-removing {
    opacity: 0.42;
    transform: translateX(8px);
    pointer-events: none;
}

.site-mini-cart__image-link {
    display: block;
}

.site-mini-cart__image,
.woocommerce .site-mini-cart__image,
.woocommerce-page .site-mini-cart__image {
    display: block;
    width: 112px;
    height: 112px;
    max-width: none;
    background: #f5f5f5;
    object-fit: cover;
}

.site-mini-cart__copy {
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex-direction: column;
}

.site-mini-cart__name {
    display: -webkit-box;
    overflow: hidden;
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-mini-cart__sku {
    margin-top: 20px;
    color: #828282;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.25;
}

.site-mini-cart__remove,
.site-mini-cart__close {
    display: grid;
    padding: 0;
    border: 0;
    background: transparent;
    place-items: center;
    cursor: pointer;
}

.site-mini-cart__remove {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #f6f6f6;
    transition: background-color 0.22s ease, color 0.22s ease;
}

.site-mini-cart__remove:hover,
.site-mini-cart__remove:focus-visible {
    background: #e8e8e8;
}

.site-mini-cart__remove-icon {
    width: 15px;
    height: 16.5px;
}

.site-mini-cart__close {
    width: 24px;
    height: 24px;
    margin-left: auto;
    border-radius: 3px;
}

.site-mini-cart__close:hover,
.site-mini-cart__close:focus-visible {
    background: #f2f2f2;
}

.site-mini-cart__close-icon {
    width: 15.06px;
    height: 15.06px;
}

.site-mini-cart__empty-state {
    display: flex;
    min-height: 165px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px 10px;
    gap: 14px;
}

.site-mini-cart__empty-icon {
    width: 51px;
    height: 51px;
}

.site-mini-cart__empty-title {
    width: min(100%, 286px);
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.site-mini-cart__footer {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.site-mini-cart.is-empty .site-mini-cart__footer {
    padding: 14px 0;
}

.site-mini-cart__button {
    display: inline-flex;
    width: min(250px, 100%);
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 17px 32px;
    border: 1px solid #000;
    border-radius: 100px;
    background: #fff;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.site-mini-cart__button:hover,
.site-mini-cart__button:focus-visible {
    background: #000;
    color: #fff;
}

.product-detail__button.is-loading,
.woocommerce .product-detail__button.is-loading {
    cursor: wait;
}

.product-detail__actions .added_to_cart,
.product-detail__button.added::after,
.woocommerce .product-detail__button.added::after {
    display: none !important;
}

@media (max-width: 782px) {
    .admin-bar .site-mini-cart {
        top: 116px;
    }
}

@media (max-width: 600px) {
    .site-mini-cart,
    .site-mini-cart.is-empty {
        top: 74px;
        right: 12px;
        width: calc(100vw - 24px);
    }

    .admin-bar .site-mini-cart {
        top: 120px;
    }

    .site-mini-cart.has-items {
        padding: 10px;
    }

    .site-mini-cart__items {
        max-height: min(56vh, 360px);
    }

    .site-mini-cart__item {
        grid-template-columns: 82px minmax(0, 1fr) 30px;
        gap: 10px;
    }

    .site-mini-cart__image,
    .woocommerce .site-mini-cart__image,
    .woocommerce-page .site-mini-cart__image {
        width: 82px;
        height: 82px;
    }

    .site-mini-cart__copy {
        min-height: 82px;
    }

    .site-mini-cart__name {
        font-size: 18px;
    }

    .site-mini-cart__sku {
        margin-top: 12px;
        font-size: 12px;
    }

    .site-mini-cart__remove {
        width: 30px;
        height: 30px;
    }

    .site-mini-cart__empty-state {
        min-height: 150px;
    }

    .site-mini-cart__button {
        min-height: 52px;
        padding-block: 14px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-mini-cart,
    .site-mini-cart__item,
    .site-header__cart-count {
        transition-duration: 0.01ms;
    }
}

@media (max-width: 1100px) {
    .category-brand-catalog {
        padding: 56px 24px 96px;
    }

    .category-brand__body {
        gap: 38px;
    }

    .category-brand__title {
        font-size: 52px;
    }

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

    .category-product-card {
        min-height: 330px;
    }

    .category-brand__showcase {
        min-height: clamp(290px, 45vw, 350px);
    }

    .partner-hero {
        min-height: 700px;
    }

    .partner-hero__logo {
        top: 190px;
    }

    .partner-hero__title {
        max-width: calc(100% - 48px);
        font-size: clamp(68px, 9vw, 100px);
        line-height: 0.94;
    }
}

@media (max-width: 767px) {
    .category-brand-catalog {
        padding: 44px 16px 80px;
    }

    .category-brand {
        gap: 30px;
    }

    .category-brand + .category-brand {
        margin-top: 48px;
    }

    .category-brand__body {
        gap: 28px;
    }

    .category-brand__header {
        min-height: 40px;
        gap: 20px;
    }

    .category-brand__title {
        font-size: clamp(36px, 10vw, 44px);
    }

    .category-brand__logo {
        max-width: 112px;
        max-height: 32px;
    }

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

    .category-product-card {
        min-height: 0;
        padding: 20px 12px 14px;
    }

    .category-product-card__sku {
        min-height: 27px;
        margin-bottom: 10px;
        font-size: 11px;
    }

    .category-product-card__media {
        width: min(100%, 132px);
    }

    .category-product-card__name {
        margin-top: 14px;
        font-size: 14px;
    }

    .category-brand__showcase {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .category-brand__button {
        min-width: 0;
        min-height: 50px;
        padding: 13px 30px;
        font-size: 16px;
    }

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

    .image-hero__image {
        object-position: 59% center;
    }

    .image-hero__content {
        top: 154px;
        width: calc(100% - 32px);
    }

    .image-hero__eyebrow {
        font-size: 16px;
    }

    .image-hero__title {
        margin-top: 18px;
        font-size: clamp(40px, 11.6vw, 52px);
        line-height: 0.98;
    }

    .image-hero__scroll {
        bottom: 28px;
        width: 54px;
        height: 54px;
    }

    .image-hero__scroll-icon {
        width: 22px;
        height: 22px;
    }

    .partner-hero {
        min-height: 640px;
    }

    .partner-hero__image,
    .partner-hero__video {
        object-position: 58% center;
    }

    .partner-hero__logo {
        top: 150px;
        width: 132px;
        height: 49px;
    }

    .partner-hero__title {
        top: calc(50% - 62px);
        width: calc(100% - 32px);
        max-width: none;
        font-size: clamp(46px, 14vw, 68px);
        line-height: 0.96;
        text-wrap: balance;
    }

    .partner-hero__scroll {
        bottom: 28px;
        width: 54px;
        height: 54px;
    }

    .partner-hero__scroll-icon {
        width: 22px;
        height: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .image-hero__content[data-animate] {
        transform: translateX(-50%);
    }
    .partners-video-hero__scroll {
        transition: none;
    }
    .partners-expanding-video__frame {
        width: 100%;
    }
    .partners-expanding-video__content {
        opacity: 1;
        transform: translateX(-50%);
    }
    .partners-fixed-showroom {
        background-attachment: scroll;
    }
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    [data-animate] {
        opacity: 1;
        transform: none;
    }
    .hero-motion {
        height: auto;
    }
    .hero {
        position: relative;
    }
    .hero__cloud {
        animation: none;
    }
    .hero__mountain {
        transform: translateX(-50%);
    }
    .partners__track.is-marquee-ready {
        animation: none;
    }
    .about-history__track.is-marquee-ready {
        animation: none;
    }
    .principles__description-line {
        opacity: 1;
        transform: none;
    }
}

.blog-articles {
    overflow: hidden;
    padding: 60px 20px 120px;
    background: #fff;
    color: #060606;
}

.blog-articles__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.blog-articles__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8b8b8;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.blog-articles__breadcrumbs a {
    color: #060606;
    text-decoration: none;
}

.blog-articles__breadcrumbs a:hover,
.blog-articles__breadcrumbs a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-articles__breadcrumb-separator {
    width: 4px;
    height: 4px;
    background: currentcolor;
}

.blog-articles__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 46px;
}

.blog-articles__filter {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border: 1px solid #9c9c9c;
    border-radius: 4px;
    color: #040404;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.24s ease,
        border-color 0.24s ease,
        color 0.24s ease;
}

.blog-articles__filter:hover,
.blog-articles__filter:focus-visible,
.blog-articles__filter.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.blog-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 34px;
}

.blog-article-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
}

.blog-article-card__media {
    display: block;
    aspect-ratio: 440 / 296;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.blog-article-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-article-card:hover .blog-article-card__image,
.blog-article-card__media:focus-visible .blog-article-card__image {
    transform: scale(1.035);
}

.blog-article-card__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
}

.blog-article-card__heading {
    width: 100%;
}

.blog-article-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
}

.blog-article-card__category {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #f5f5f5;
    color: #000;
}

.blog-article-card__title {
    margin: 4px 0 0;
    color: #060606;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.18;
}

.blog-article-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-article-card__title a:hover,
.blog-article-card__title a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.blog-article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #cacaca;
    font-family: Athelas, Georgia, serif;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.24s ease;
}

.blog-article-card__link:hover,
.blog-article-card__link:focus-visible {
    color: #060606;
}

.blog-article-card__link-icon {
    display: block;
    width: 16px;
    height: 12px;
}

.blog-articles__more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.blog-articles__more-link {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.1;
    text-decoration: none;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.blog-articles__more-link:hover,
.blog-articles__more-link:focus-visible {
    background: #000;
    color: #fff;
}

.blog-articles__more-link.is-loading {
    cursor: progress;
    opacity: 0.58;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .blog-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-articles {
        padding: 40px 16px 80px;
    }

    .blog-articles__filters {
        gap: 8px;
        margin-top: 30px;
    }

    .blog-articles__filter {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 16px;
    }

    .blog-articles__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        margin-top: 28px;
    }

    .blog-article-card__title {
        font-size: 26px;
        line-height: 1.14;
    }

    .blog-article-card__link {
        font-size: 18px;
    }

    .blog-articles__more {
        margin-top: 40px;
    }
}

.article-hero {
    position: relative;
    display: grid;
    min-height: 727px;
    overflow: hidden;
    background: #151515;
    color: #fff;
    isolation: isolate;
    place-items: center;
}

.article-hero__media,
.article-hero__overlay {
    position: absolute;
    inset: 0;
}

.article-hero__media {
    z-index: -2;
}

.article-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.article-hero__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.4);
}

.article-hero__content {
    position: absolute;
    top: 240px;
    left: 50%;
    display: flex;
    width: min(877px, calc(100% - 40px));
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transform: translateX(-50%);
    text-align: center;
}

.article-hero__content[data-animate] {
    transform: translate3d(-50%, 20px, 0);
}

.article-hero__content[data-animate].is-visible {
    transform: translate3d(-50%, 0, 0);
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 17px;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.article-hero__category {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 4px;
    background: rgb(255 255 255 / 0.1);
}

.article-hero__title {
    width: 100%;
    margin: 0;
    color: #fff;
    font-family: Athelas, Georgia, serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 84px;
    text-wrap: balance;
}

.article-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    cursor: pointer;
    place-items: center;
    transform: translateX(-50%);
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease;
    backdrop-filter: blur(8px);
}

.article-hero__scroll:hover,
.article-hero__scroll:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

.article-hero__scroll-icon {
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.single-post .site-header__logo {
    visibility: hidden;
}

.blog-article {
    overflow: hidden;
    padding: 60px 20px 120px;
    background: #fff;
    color: #060606;
}

.blog-article__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.blog-article__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #b8b8b8;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.blog-article__breadcrumbs a {
    color: #060606;
    text-decoration: none;
}

.blog-article__breadcrumbs a:hover,
.blog-article__breadcrumbs a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-article__breadcrumb-separator {
    width: 4px;
    height: 4px;
    background: currentcolor;
}

.showrooms {
    overflow: hidden;
    padding: 50px 20px 100px;
    background: #fff;
    color: #000;
}

.showrooms__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.showrooms__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8b8b8;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.showrooms__breadcrumbs a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.24s ease;
}

.showrooms__breadcrumbs a:hover,
.showrooms__breadcrumbs a:focus-visible {
    opacity: 0.65;
}

.showrooms__breadcrumb-separator {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    background: #000;
}

.showrooms__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 43px;
}

.showrooms__grid[data-animate] {
    transform: translateY(20px);
}

.showroom-card {
    position: relative;
    min-height: 503px;
    overflow: hidden;
    border-radius: 20px;
    background: #151515;
    color: #fff;
    isolation: isolate;
}

.showroom-card__media,
.showroom-card__overlay {
    position: absolute;
    inset: 0;
}

.showroom-card__media {
    z-index: -2;
}

.showroom-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.showroom-card__overlay {
    z-index: -1;
    background: rgb(0 0 0 / 0.5);
    pointer-events: none;
}

.showroom-card__website {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: opacity 0.24s ease;
}

.showroom-card__website:hover,
.showroom-card__website:focus-visible {
    opacity: 0.7;
}

.showroom-card__logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: flex;
    max-width: 179px;
    max-height: 150px;
    align-items: flex-start;
    justify-content: flex-end;
}

.showroom-card__logo-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 179px;
    max-height: 150px;
}

.showroom-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 280px 20px 20px;
}

.showroom-card__title {
    margin: 0;
    color: #fff;
    font-family: Athelas, Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
}

.showroom-card__contacts {
    display: grid;
    gap: 8px;
    margin-top: 30px;
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.showroom-card__contacts p {
    margin: 0;
}

.showroom-card__map-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 1px solid rgb(255 255 255 / 0.35);
    border-radius: 100px;
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.showroom-card__map-link:hover,
.showroom-card__map-link:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #151515;
}

@media (max-width: 1100px) {
    .showrooms__grid {
        gap: 24px;
    }

    .showroom-card__content {
        padding-top: 250px;
    }

    .showroom-card__title {
        font-size: 42px;
    }

    .showroom-card__contacts,
    .showroom-card__website {
        font-size: 20px;
    }

    .showroom-card__map-link {
        right: 16px;
        bottom: 16px;
        min-height: 52px;
        padding: 12px 18px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .showrooms {
        padding: 40px 16px 80px;
    }

    .showrooms__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        margin-top: 36px;
    }

    .showroom-card {
        min-height: 0;
    }

    .showroom-card__website {
        top: 16px;
        left: 16px;
        max-width: calc(100% - 152px);
        font-size: 16px;
    }

    .showroom-card__logo {
        top: 16px;
        right: 16px;
        max-width: 118px;
        max-height: 100px;
    }

    .showroom-card__logo-image {
        max-width: 118px;
        max-height: 100px;
    }

    .showroom-card__content {
        padding: 142px 16px 20px;
    }

    .showroom-card__title {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.05;
    }

    .showroom-card__contacts {
        gap: 7px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.25;
    }

    .showroom-card__map-link {
        position: relative;
        right: auto;
        bottom: auto;
        width: fit-content;
        min-height: 50px;
        margin: 0 16px 20px;
        padding: 12px 18px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showrooms__grid[data-animate] {
        transform: none;
    }
}

.blog-article__content {
    max-width: 1000px;
    margin-top: 40px;
    color: rgb(0 0 0 / 0.7);
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.blog-article__content > * {
    margin-top: 0;
}

.blog-article__content > *:last-child {
    margin-bottom: 0;
}

.blog-article__content > p + p,
.blog-article__content > p + h2,
.blog-article__content > h2 + h2 {
    margin-top: 40px;
}

.blog-article__content > h2 {
    color: #000;
    font-family: Athelas, Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;
}

.blog-article__content > h2 + p {
    margin-top: 30px;
}

.article-related {
    overflow: hidden;
    padding: 60px 20px 40px;
    background: #fff;
    color: #000;
}

.article-related__container {
    width: min(100%, 1400px);
    margin: 0 auto;
}

.article-related__eyebrow {
    margin: 0;
    color: #cacaca;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.article-related__title {
    margin: 26px 0 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.article-catalog-cta {
    display: grid;
    min-height: 486px;
    grid-template-columns: minmax(0, 50.35fr) minmax(0, 49.65fr);
    overflow: hidden;
    background: #f5f5f5;
    color: #000;
}

.article-catalog-cta__content {
    display: flex;
    width: min(100%, 539px);
    align-self: center;
    justify-self: start;
    flex-direction: column;
    gap: 80px;
    margin-left: 20px;
    padding: 60px 0;
}

.article-catalog-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-catalog-cta__title {
    margin: 0;
    font-family: Athelas, Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}

.article-catalog-cta__description {
    margin: 0;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.article-catalog-cta__link {
    display: inline-flex;
    width: fit-content;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    font-family: Evolventa, "Avenir Next", "Century Gothic", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.24s ease,
        color 0.24s ease;
}

.article-catalog-cta__link:hover,
.article-catalog-cta__link:focus-visible {
    background: #000;
    color: #fff;
}

.article-catalog-cta__visual {
    min-width: 0;
}

.article-catalog-cta__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

@media (max-width: 767px) {
    .article-hero {
        min-height: 640px;
    }

    .article-hero__content {
        top: 146px;
        width: calc(100% - 32px);
        gap: 16px;
    }

    .article-hero__meta {
        gap: 12px;
        font-size: 18px;
    }

    .article-hero__category {
        min-height: 36px;
        padding: 8px 12px;
    }

    .article-hero__title {
        font-size: clamp(42px, 11.5vw, 56px);
        line-height: 1.02;
    }

    .article-hero__scroll {
        bottom: 28px;
        width: 54px;
        height: 54px;
    }

    .article-hero__scroll-icon {
        width: 22px;
        height: 22px;
    }

    .blog-article {
        padding: 40px 16px 80px;
    }

    .blog-article__content {
        margin-top: 32px;
        font-size: 18px;
    }

    .blog-article__content > p + p,
    .blog-article__content > p + h2,
    .blog-article__content > h2 + h2 {
        margin-top: 28px;
    }

    .blog-article__content > h2 {
        font-size: 38px;
    }

    .blog-article__content > h2 + p {
        margin-top: 22px;
    }

    .article-related {
        padding: 40px 16px 32px;
    }

    .article-related__title {
        margin-top: 20px;
        font-size: 42px;
    }

    .article-related__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        margin-top: 30px;
    }

    .article-catalog-cta {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .article-catalog-cta__content {
        width: auto;
        gap: 40px;
        margin: 0;
        padding: 64px 16px;
    }

    .article-catalog-cta__title {
        font-size: 42px;
    }

    .article-catalog-cta__description {
        font-size: 18px;
    }

    .article-catalog-cta__visual {
        aspect-ratio: 16 / 10;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-catalog-cta__content {
        width: calc(100% - 40px);
    }
}

@media (max-width: 900px) {
    .project-hero {
        min-height: 780px;
        align-items: flex-start;
        padding: 178px 24px 380px;
    }
    .project-hero__heading { top: 178px; }
    .project-hero__title { font-size: clamp(48px, 8.3vw, 68px); }
    .project-hero__information {
        right: 24px;
        bottom: 24px;
        left: 24px;
        width: calc(100% - 48px);
        gap: 24px;
        padding: 16px;
    }
    .project-hero__information-title { font-size: 25px; }
    .project-hero__fact {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .project-hero__fact dd {
        font-size: 19px;
        text-align: left;
    }
}

@media (max-width: 1100px) {
    .project-about__title { font-size: clamp(48px, 5.45vw, 60px); }
    .project-about__gallery-item {
        width: min(65vw, 640px);
        height: min(36.56vw, 360px);
    }
    .project-about__description {
        width: min(904px, calc(100% - 48px));
        max-width: none;
        margin: 70px auto 0;
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .project-about { padding-bottom: 52px; }
    .project-about__container {
        width: calc(100% - 32px);
        padding-top: 44px;
    }
    .project-about__breadcrumbs-list {
        gap: 6px 8px;
        font-size: 12px;
        line-height: 1.2;
    }
    .project-about__breadcrumb { gap: 8px; }
    .project-about__title {
        margin-top: 22px;
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.03;
    }
    .project-about__gallery-viewport { margin-top: 28px; }
    .project-about__gallery {
        padding-inline: 16px;
    }
    .project-about__gallery-item {
        width: 82vw;
        height: 52vw;
    }
    .project-about__gallery-navigation {
        right: 28px;
        bottom: 16px;
        gap: 8px;
    }
    .project-about__gallery-button {
        width: 46px;
        height: 46px;
    }
    .project-about__gallery-arrow { width: 18px; height: 18px; }
    .project-about__description {
        width: calc(100% - 32px);
        max-width: none;
        margin: 38px 16px 0;
        font-size: 18px;
        line-height: 1.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-about [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-hero [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 600px) {
    .project-hero {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        padding: 150px 16px 24px;
    }
    .project-hero__heading {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        gap: 14px;
        transform: none;
    }
    .project-hero__heading[data-animate],
    .project-hero__heading[data-animate].is-visible { transform: none; }
    .project-hero__title { font-size: clamp(42px, 12vw, 56px); }
    .project-hero__information {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 72px;
    }
}
