:root {
    --um-black: #050505;
    --um-graphite: #191919;
    --um-ink: #242424;
    --um-muted: #6f6f6f;
    --um-line: rgba(5, 5, 5, 0.1);
    --um-line-strong: rgba(5, 5, 5, 0.18);
    --um-paper: #ffffff;
    --um-soft: #f5f5f3;
    --um-warm: #d7c3a2;
    --um-danger: #d72727;
    --um-header-height: 68px;
    --um-radius: 4px;
    --um-container: min(100% - 48px, 1440px);
    --um-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --um-scrollbar-track: rgba(5, 5, 5, 0.05);
    --um-scrollbar-thumb: rgba(5, 5, 5, 0.28);
    --um-scrollbar-thumb-hover: rgba(5, 5, 5, 0.44);
}

@media (max-width: 900px) {
    .favorites-layout {
        grid-template-columns: 1fr;
    }

    .favorites-offer {
        position: static;
    }

    .favorite-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .favorite-item strong,
    .favorite-item button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .favorites-page {
        width: min(100% - 32px, 1440px);
    }

    .favorites-empty {
        padding: 28px;
    }

    .favorite-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .favorites-offer__paper {
        padding: 22px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scrollbar-color: var(--um-scrollbar-thumb) var(--um-scrollbar-track);
    scrollbar-width: thin;
}

* {
    scrollbar-color: var(--um-scrollbar-thumb) transparent;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    min-height: 48px;
    background: var(--um-scrollbar-thumb);
    border: 3px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--um-scrollbar-thumb-hover);
    border: 3px solid transparent;
    background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
    background: transparent;
}

body {
    margin: 0;
    overflow-x: clip;
    background: var(--um-paper);
    color: var(--um-black);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.is-locked {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--um-black);
    color: var(--um-paper);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--um-header-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--um-line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: var(--um-container);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-header__left,
.site-header__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header__brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-weight: 760;
    letter-spacing: 0;
}

.brand-logo__mark {
    display: inline-grid;
    grid-template-columns: repeat(3, 2px);
    gap: 3px;
    height: 18px;
    align-items: stretch;
}

.brand-logo__mark span {
    display: block;
    background: currentColor;
}

.brand-logo__text {
    font-size: 25px;
    line-height: 1;
}

.icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: var(--um-black);
    background: transparent;
    border: 0;
    border-radius: var(--um-radius);
    cursor: pointer;
    transition: background-color 160ms var(--um-ease), transform 120ms var(--um-ease);
}

.icon-button:hover {
    background: rgba(5, 5, 5, 0.055);
}

.icon-button:active {
    transform: scale(0.97);
}

.icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__desktop-nav {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--um-ink);
    font-size: 12px;
    font-weight: 620;
    line-height: 1;
    text-transform: uppercase;
    transition: color 160ms var(--um-ease);
}

.site-nav__list a:hover {
    color: var(--um-muted);
}

.site-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    transition: opacity 220ms var(--um-ease);
}

.site-overlay.is-visible {
    opacity: 1;
}

.site-menu,
.site-catalog,
.site-search {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}

.site-menu.is-open,
.site-catalog.is-open,
.site-search.is-open {
    pointer-events: auto;
    visibility: visible;
}

.site-menu__panel,
.site-catalog__panel {
    width: min(460px, 100%);
    height: 100%;
    max-height: 100dvh;
    padding: 22px clamp(24px, 3.5vw, 44px) 34px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    background: var(--um-paper);
    transform: translateX(-100%);
    transition: transform 260ms var(--um-ease);
    box-shadow: 24px 0 80px rgba(0, 0, 0, 0.14);
}

.site-menu.is-open .site-menu__panel,
.site-catalog.is-open .site-catalog__panel {
    transform: translateX(0);
}

.site-menu__top,
.site-search__top {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-catalog__title {
    font-size: 22px;
    font-weight: 760;
    line-height: 1;
}

.site-menu__nav {
    margin-top: clamp(42px, 8vh, 74px);
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    border-top: 1px solid var(--um-line);
}

.site-menu__list,
.site-catalog__list {
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    list-style: none;
}

.site-menu__list li,
.site-catalog__list li {
    border-bottom: 1px solid var(--um-line);
}

.site-menu__list a {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding-right: 2px;
    color: var(--um-black);
    font-size: 16px;
    font-weight: 680;
    line-height: 1;
    text-transform: uppercase;
    transition: color 160ms var(--um-ease), transform 160ms var(--um-ease);
}

.site-menu__list a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: 0.34;
    transform: rotate(45deg);
    transition: opacity 160ms var(--um-ease), transform 160ms var(--um-ease);
}

.site-menu__list a:hover {
    color: var(--um-black);
}

.site-menu__list a:hover::after {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
}

.site-catalog__nav {
    margin-top: clamp(34px, 7vh, 62px);
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    border-top: 1px solid var(--um-line);
}

.site-catalog__list a {
    width: 100%;
    max-width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding-right: 2px;
    color: var(--um-black);
    transition: color 160ms var(--um-ease), transform 160ms var(--um-ease);
}

.site-catalog__list span {
    font-size: 17px;
    font-weight: 720;
    line-height: 1.1;
    text-transform: uppercase;
}

.site-catalog__list small {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.site-catalog__list a:hover {
    color: var(--um-black);
}

.site-catalog__list a:hover small {
    color: var(--um-black);
}

.site-menu__footer {
    margin-top: auto;
    padding-top: 34px;
    flex: 0 0 auto;
    display: grid;
    gap: 8px;
    color: var(--um-muted);
    font-size: 13px;
}

.site-search {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--um-header-height) + 24px);
}

.site-search__panel {
    width: var(--um-container);
    padding: clamp(24px, 4vw, 44px);
    background: var(--um-paper);
    border: 1px solid var(--um-line);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms var(--um-ease), transform 220ms var(--um-ease);
}

.site-search.is-open .site-search__panel {
    opacity: 1;
    transform: translateY(0);
}

.site-search__label {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-search__form {
    margin-top: 26px;
}

.site-search__form .aws-container {
    width: 100%;
}

.site-search__form .aws-search-form,
.site-search__fallback-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    height: auto;
    background: transparent;
}

.site-search__form .aws-wrapper {
    height: 58px;
}

.site-search__form .aws-search-field,
.site-search__form input[type="search"] {
    min-width: 0;
    width: 100%;
    height: 58px;
    padding: 0 18px;
    color: var(--um-black);
    background: var(--um-soft);
    border: 1px solid transparent;
    border-radius: var(--um-radius);
    outline: none;
    box-shadow: none;
    font-size: 16px;
}

.site-search__form .aws-search-field:focus,
.site-search__form input[type="search"]:focus {
    border-color: var(--um-line-strong);
    background: var(--um-paper);
}

.site-search__form .aws-search-label {
    display: none;
}

.site-search__form .aws-search-clear {
    right: 16px;
    color: var(--um-muted);
}

.site-search__form .aws-loader {
    right: 46px;
}

.site-search__form .aws-search-btn,
.site-search__form button,
.button-primary {
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    background: var(--um-black);
    border: 1px solid var(--um-black);
    border-radius: var(--um-radius);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
    cursor: pointer;
}

.site-search__form .aws-search-btn {
    width: 58px;
    min-width: 58px;
    padding: 0;
}

.site-search__form .aws-search-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.aws-search-result {
    margin-top: 12px;
    border: 1px solid var(--um-line);
    border-radius: var(--um-radius);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

.aws-search-result .aws_result_item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--um-line);
}

.aws-search-result .aws_result_item:hover,
.aws-search-result .aws_result_item.hovered {
    background: var(--um-soft);
}

.aws-search-result .aws_result_image {
    width: 64px;
    height: 64px;
}

.aws-search-result .aws_result_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aws-search-result .aws_result_title {
    color: var(--um-black);
    font-size: 14px;
    font-weight: 760;
}

.aws-search-result .aws_result_excerpt,
.aws-search-result .aws_result_cats,
.aws-search-result .aws_result_sku {
    color: var(--um-muted);
    font-size: 12px;
    line-height: 1.45;
}

.aws-search-result .aws_result_price {
    color: var(--um-black);
    font-size: 13px;
    font-weight: 760;
}

.site-main {
    min-height: calc(100vh - var(--um-header-height));
}

.home-hero {
    position: relative;
    min-height: calc(100vh - var(--um-header-height));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--um-graphite);
}

.home-hero--catalog {
    min-height: calc(100vh - var(--um-header-height));
    grid-template-rows: 1fr auto;
}

.home-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--um-graphite);
}

.home-hero__image img,
.home-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-hero__image img {
    filter: saturate(0.86) contrast(1.06);
}

.home-hero__video {
    filter: saturate(0.92) contrast(1.04);
}

.home-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08) 42%);
}

.home-hero--video .home-hero__image::after {
    opacity: 0.18;
    animation: heroVideoShadeIn 700ms var(--um-ease) 650ms forwards;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.44) 46%, rgba(0, 0, 0, 0.14) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04) 46%);
}

.home-hero--video .home-hero__content,
.home-hero--video .home-hero__stats {
    opacity: 0;
    transform: translateY(18px);
    animation: heroVideoTextIn 700ms var(--um-ease) 800ms forwards;
}

.home-hero--video .home-hero__stats {
    animation-delay: 950ms;
}

@keyframes heroVideoShadeIn {
    from {
        opacity: 0.18;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroVideoTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero--video .home-hero__image::after,
    .home-hero--video .home-hero__content,
    .home-hero--video .home-hero__stats {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.home-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0.34)),
        radial-gradient(circle at 78% 22%, rgba(215, 195, 162, 0.18), transparent 26%),
        linear-gradient(135deg, #161616 0%, #30302e 45%, #0a0a0a 100%);
}

.home-hero__media::before,
.home-hero__media::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.68);
    transform-origin: left center;
}

.home-hero__media::before {
    width: 72vw;
    height: 2px;
    top: 34%;
    left: 10%;
    transform: rotate(-18deg);
    box-shadow: 0 90px 0 rgba(5, 5, 5, 0.75), 0 180px 0 rgba(255, 255, 255, 0.28);
}

.home-hero__media::after {
    width: 42vw;
    height: 14px;
    right: -4%;
    bottom: 32%;
    transform: rotate(-18deg);
    background: rgba(255, 255, 255, 0.82);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: var(--um-container);
    margin: 0 auto;
    padding: 0 0 clamp(56px, 9vh, 96px);
    color: var(--um-paper);
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eyebrow {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 680;
    line-height: 0.96;
    text-wrap: balance;
}

.home-hero p:not(.eyebrow) {
    max-width: 640px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.35vw, 20px);
}

.home-hero .button-primary {
    background: var(--um-paper);
    border-color: var(--um-paper);
    color: var(--um-black);
}

.button-secondary {
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--um-radius);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.home-hero__stats {
    position: relative;
    z-index: 2;
    width: var(--um-container);
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero__stats span {
    min-height: 70px;
    padding: 18px 22px 0 0;
    display: grid;
    gap: 2px;
    font-size: 13px;
}

.home-hero__stats strong {
    color: var(--um-paper);
    font-size: 24px;
    line-height: 1;
}

.home-series {
    background: var(--um-black);
}

.home-series-card {
    position: relative;
    min-height: clamp(560px, 62vw, 720px);
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--um-paper);
}

.home-series-card + .home-series-card {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-series-card__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--um-graphite);
}

.home-series-card__image img,
.home-series-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-series-card__image img {
    filter: saturate(0.82) contrast(1.08) brightness(0.88);
    transform: scale(1.035);
    transition: transform 900ms var(--um-ease), filter 900ms var(--um-ease);
}

.home-series-card:hover .home-series-card__image img {
    filter: saturate(0.9) contrast(1.08) brightness(0.94);
    transform: scale(1.055);
}

.home-series-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48) 72%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.48));
}

.home-series-card__content {
    width: min(100% - 48px, 820px);
    padding: clamp(76px, 9vw, 116px) 0;
    display: grid;
    justify-items: center;
    text-align: center;
}

.home-series-card h2 {
    margin: 0;
    font-size: clamp(48px, 5.8vw, 82px);
    font-weight: 540;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.home-series-card__line {
    width: 104px;
    height: 1px;
    margin: 24px 0 24px;
    background: rgba(255, 255, 255, 0.64);
}

.home-series-card p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(15px, 1.18vw, 18px);
    line-height: 1.7;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
}

.home-series-card__button {
    min-height: 50px;
    margin-top: 36px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--um-radius);
    font-size: 12px;
    font-weight: 720;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    transition: background-color 180ms var(--um-ease), border-color 180ms var(--um-ease), color 180ms var(--um-ease), transform 180ms var(--um-ease);
}

.home-series-card__button:hover {
    background: var(--um-paper);
    border-color: var(--um-paper);
    color: var(--um-black);
    transform: translateY(-1px);
}

.home-series-card--metastripe .home-series-card__image img {
    object-position: 50% 48%;
}

.home-series-card--orbitra .home-series-card__image img {
    object-position: 50% 44%;
}

.home-series-card--linear-15 .home-series-card__image img {
    object-position: 50% 50%;
}

.home-section {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(58px, 8vw, 112px) 0;
}

.home-section--intro {
    padding-top: clamp(64px, 8vw, 104px);
}

.home-section--dark {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - 1440px) / 2));
    padding-right: max(24px, calc((100% - 1440px) / 2));
    color: var(--um-paper);
    background: var(--um-black);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 32px;
}

.section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.section-heading h2,
.home-spec h2 {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 68px);
    font-weight: 660;
    line-height: 0.98;
    text-wrap: balance;
}

.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
    opacity: 0.72;
}

.text-link:hover {
    opacity: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.category-card {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: end;
    overflow: hidden;
    background: var(--um-soft);
}

.category-card--wide {
    grid-column: span 2;
}

.category-card__media {
    position: absolute;
    inset: 0;
    background: #deddda;
}

.category-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 420ms var(--um-ease);
}

.category-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.category-card__placeholder {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.55), transparent 45%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 2px, transparent 2px 34px),
        #d9d8d4;
}

.category-card__body {
    position: relative;
    z-index: 1;
    min-height: 112px;
    padding: 22px;
    display: grid;
    align-content: end;
    gap: 10px;
    color: var(--um-paper);
}

.category-card__title {
    font-size: clamp(22px, 2.1vw, 34px);
    font-weight: 680;
    line-height: 1;
}

.category-card__meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.category-card:hover .category-card__media img {
    transform: scale(1.045);
}

.series-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(220px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow-x: auto;
}

.category-card--series {
    min-height: 420px;
    background: var(--um-graphite);
}

.category-card--series .category-card__title {
    font-size: clamp(24px, 2.2vw, 38px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.product-card {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-rows: 1fr auto;
    background: var(--um-paper);
}

.product-card__link {
    min-height: 360px;
    display: grid;
    grid-template-rows: 1fr auto;
}

.favorite-button {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: var(--um-black);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(5, 5, 5, 0.12);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform 160ms var(--um-ease), color 160ms var(--um-ease);
}

.favorite-button:hover {
    transform: scale(1.04);
}

.favorite-button .icon {
    width: 20px;
    height: 20px;
    fill: transparent;
}

.favorite-button.is-active {
    color: var(--um-danger);
}

.favorite-button.is-active .icon {
    fill: currentColor;
}

.product-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
}

.product-card__media {
    min-height: 260px;
    padding: 24px;
    display: grid;
    place-items: center;
    background: #f0efed;
}

.product-card__media img {
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 260ms var(--um-ease);
}

.product-card:hover .product-card__media img {
    transform: translateY(-4px);
}

.product-card__body {
    min-height: 98px;
    padding: 18px;
    display: grid;
    gap: 8px;
    align-content: start;
    border-top: 1px solid var(--um-line);
}

.product-card__title {
    font-size: 15px;
    font-weight: 660;
    line-height: 1.25;
}

.product-card__sku {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 680;
    text-transform: uppercase;
}

.search-page {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 8vw, 120px);
}

.search-hero {
    max-width: 1080px;
    margin-bottom: clamp(34px, 5vw, 64px);
}

.search-hero .eyebrow,
.search-empty .eyebrow {
    color: var(--um-muted);
}

.search-hero h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(42px, 6.4vw, 86px);
    font-weight: 660;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.search-hero__meta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-hero__meta span {
    min-height: 34px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 720;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid var(--um-line);
}

.search-page__form {
    max-width: 960px;
    margin-top: 34px;
}

.search-page__form .aws-container {
    width: 100%;
}

.search-page__form .aws-search-form,
.search-page__form .site-search__fallback-form {
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.search-page__form .aws-wrapper {
    width: 100%;
    height: 100%;
}

.search-page__form .aws-search-field,
.search-page__form input[type="search"] {
    width: 100%;
    height: 72px;
    padding: 0 24px;
    color: var(--um-black);
    font: inherit;
    font-size: clamp(18px, 1.8vw, 24px);
    background: var(--um-soft);
    border: 1px solid var(--um-line);
    border-radius: 0;
    outline: none;
    transition: border-color 160ms var(--um-ease), background 160ms var(--um-ease);
}

.search-page__form .aws-search-field:focus,
.search-page__form input[type="search"]:focus {
    background: var(--um-paper);
    border-color: var(--um-black);
}

.search-page__form .aws-search-btn,
.search-page__form button {
    min-width: 150px;
    height: 72px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: var(--um-black);
    border: 1px solid var(--um-black);
    border-radius: 0;
    cursor: pointer;
    transition: transform 160ms var(--um-ease), background 160ms var(--um-ease);
}

.search-page__form .aws-search-btn:hover,
.search-page__form button:hover {
    background: var(--um-graphite);
}

.search-section {
    margin-top: clamp(38px, 5vw, 72px);
}

.search-section__head {
    margin-bottom: 18px;
    padding-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--um-line);
}

.search-section__head h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 640;
    line-height: 1;
}

.search-section__head span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.search-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.search-materials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.search-material {
    min-height: 220px;
    background: var(--um-paper);
}

.search-material a {
    min-height: 220px;
    padding: 24px;
    display: grid;
    align-content: space-between;
    gap: 18px;
}

.search-material span {
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.search-material strong {
    display: block;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 640;
    line-height: 1.05;
    text-wrap: balance;
}

.search-material p {
    margin: 0;
    color: var(--um-muted);
    font-size: 14px;
    line-height: 1.55;
}

.search-empty {
    max-width: 780px;
    padding: clamp(36px, 5vw, 64px);
    background: var(--um-soft);
    border: 1px solid var(--um-line);
}

.search-empty h2 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 640;
    line-height: 1;
    text-wrap: balance;
}

.search-empty p:not(.eyebrow) {
    max-width: 520px;
    margin: 22px 0 30px;
    color: var(--um-muted);
    font-size: 17px;
}

.catalog-page {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
}

.catalog-page__header {
    max-width: 920px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.catalog-page__header .eyebrow {
    color: var(--um-muted);
}

.catalog-page__header h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 104px);
    font-weight: 660;
    line-height: 0.96;
    letter-spacing: 0;
}

.catalog-page__description {
    max-width: 720px;
    margin-top: 24px;
    color: var(--um-muted);
    font-size: clamp(16px, 1.4vw, 20px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
}

.catalog-tile {
    position: relative;
    min-height: 360px;
    display: grid;
    overflow: hidden;
    background: var(--um-graphite);
    color: var(--um-paper);
}

.catalog-tile__media {
    position: absolute;
    inset: 0;
    background: #deddda;
}

.catalog-tile__media img,
.catalog-tile__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms var(--um-ease), filter 700ms var(--um-ease);
}

.catalog-tile__media img {
    filter: saturate(0.88) contrast(1.05);
}

.catalog-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66));
}

.catalog-tile__placeholder {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
        var(--um-graphite);
}

.catalog-tile__body {
    position: relative;
    z-index: 1;
    min-height: 126px;
    padding: 24px;
    display: grid;
    align-content: end;
    gap: 10px;
    align-self: end;
}

.catalog-tile__title {
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 660;
    line-height: 1;
}

.catalog-tile__meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.catalog-tile:hover .catalog-tile__media img {
    filter: saturate(0.96) contrast(1.05);
    transform: scale(1.045);
}

.catalog-product-grid {
    background: var(--um-line);
}

.catalog-page__empty {
    padding: 34px;
    color: var(--um-muted);
    border: 1px solid var(--um-line);
}

.catalog-page--series {
    padding-top: 0;
}

.series-hero {
    position: relative;
    min-height: clamp(520px, 64vw, 720px);
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    color: var(--um-paper);
    background: var(--um-black);
}

.series-intro__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--um-graphite);
}

.series-intro__media img,
.series-intro__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.series-intro__media img {
    max-width: none;
    filter: saturate(0.9) contrast(1.08) brightness(0.8);
}

.series-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.38));
}

.series-intro__placeholder {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
        var(--um-graphite);
}

.series-hero__content {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: clamp(80px, 12vw, 148px) 0 clamp(46px, 7vw, 82px);
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    column-gap: clamp(28px, 6vw, 96px);
    row-gap: 8px;
}

.series-hero__content .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
}

.series-hero h1 {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: clamp(58px, 9vw, 128px);
    font-weight: 620;
    line-height: 0.86;
    letter-spacing: 0;
    text-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.series-hero__description {
    grid-column: 2;
    grid-row: 2;
    max-width: 600px;
    align-self: end;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.58;
}

.series-hero__description p {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.series-hero__description p + p {
    display: none;
}

.series-products {
    margin-top: clamp(44px, 6vw, 76px);
}

.series-products__head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--um-line);
}

.series-products__head h2 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 640;
    line-height: 1;
}

.series-products__head span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.series-products .product-grid {
    border: 0;
    background: transparent;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.series-products .product-card {
    min-height: auto;
    overflow: hidden;
    border: 1px solid rgba(5, 5, 5, 0.08);
    background: var(--um-paper);
    transition: border-color 180ms var(--um-ease), box-shadow 180ms var(--um-ease), transform 180ms var(--um-ease);
}

.series-products .product-card__link {
    min-height: auto;
}

.series-products .product-card:hover {
    border-color: rgba(5, 5, 5, 0.18);
    box-shadow: 0 18px 44px rgba(5, 5, 5, 0.08);
    transform: translateY(-3px);
}

.series-products .product-card__media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #f0efed;
}

.series-products .product-card__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    mix-blend-mode: normal;
    transform: scale(1.001);
    transition: transform 360ms var(--um-ease);
}

.series-products .product-card:hover .product-card__media img {
    transform: scale(1.045);
}

.series-products .product-card__body {
    min-height: 116px;
    padding: 20px 22px 22px;
    background: var(--um-paper);
}

.series-products .product-card__title {
    font-size: 16px;
    line-height: 1.22;
}

.series-products .product-card__sku {
    width: auto;
    padding: 0;
    color: rgba(5, 5, 5, 0.48);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 620;
    letter-spacing: 0.08em;
}

.series-products .pagination {
    margin: clamp(34px, 5vw, 56px) 0 0;
}

.series-products .pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.series-products .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.series-products .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-ink);
    background: var(--um-paper);
    border: 1px solid rgba(5, 5, 5, 0.12);
    font-size: 13px;
    font-weight: 720;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms var(--um-ease), background 160ms var(--um-ease), border-color 160ms var(--um-ease);
}

.series-products a.page-numbers:hover {
    color: var(--um-paper);
    background: var(--um-ink);
    border-color: var(--um-ink);
}

.series-products .page-numbers.current {
    color: var(--um-paper);
    background: var(--um-ink);
    border-color: var(--um-ink);
}

.series-products .page-numbers.prev,
.series-products .page-numbers.next {
    min-width: 108px;
    padding: 0 18px;
}

.home-spec {
    margin-bottom: clamp(40px, 6vw, 76px);
    padding: clamp(34px, 5vw, 62px);
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: clamp(30px, 6vw, 90px);
    background: var(--um-soft);
    border: 1px solid var(--um-line);
}

.home-spec__list {
    display: grid;
    gap: 1px;
    background: var(--um-line);
}

.home-spec__list div {
    padding: 22px;
    display: grid;
    gap: 8px;
    background: var(--um-soft);
}

.home-spec__list strong {
    font-size: 18px;
}

.home-spec__list span {
    color: var(--um-muted);
    font-size: 14px;
}

.page-shell {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 112px) 0;
}

.content-frame__header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--um-line);
}

.content-frame h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 650;
    line-height: 1;
}

.content-frame__body {
    max-width: 860px;
    padding-top: 34px;
}

.contact-page {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(58px, 8vw, 112px) 0 clamp(70px, 9vw, 128px);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
    align-items: end;
    gap: clamp(32px, 7vw, 120px);
    padding-top: clamp(46px, 6vw, 86px);
    padding-bottom: clamp(34px, 5vw, 62px);
    border-bottom: 1px solid var(--um-line);
}

.contact-eyebrow {
    margin: 0 0 16px;
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(58px, 10vw, 142px);
    font-weight: 640;
    line-height: 0.88;
    letter-spacing: 0;
}

.contact-hero__copy > p:not(.contact-eyebrow) {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--um-muted);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.5;
}

.contact-hero__quick {
    display: grid;
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.contact-hero__quick a {
    min-height: 118px;
    padding: 24px;
    display: grid;
    align-content: space-between;
    gap: 22px;
    color: var(--um-ink);
    background: var(--um-paper);
}

.contact-hero__quick span,
.contact-card span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.contact-hero__quick strong {
    font-size: clamp(19px, 2vw, 28px);
    font-weight: 640;
    line-height: 1;
}

.contact-layout {
    margin-top: clamp(34px, 5vw, 70px);
    display: grid;
    grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(22px, 3vw, 34px);
}

.contact-panel,
.contact-card,
.contact-map {
    border: 1px solid var(--um-line);
}

.contact-panel {
    min-height: 520px;
    padding: clamp(28px, 4vw, 46px);
    display: grid;
    align-content: end;
}

.contact-panel--dark {
    color: var(--um-paper);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 38%),
        var(--um-black);
    border-color: var(--um-black);
}

.contact-panel--dark .contact-eyebrow,
.contact-panel--dark p {
    color: rgba(255, 255, 255, 0.66);
}

.contact-panel h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(34px, 4.6vw, 74px);
    font-weight: 640;
    line-height: 0.96;
}

.contact-panel p:not(.contact-eyebrow) {
    max-width: 470px;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.58;
}

.contact-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.contact-button--light {
    color: var(--um-ink);
    background: var(--um-paper);
    border-color: var(--um-paper);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.contact-card {
    min-height: 252px;
    padding: clamp(22px, 3vw, 34px);
    display: grid;
    align-content: start;
    gap: 14px;
    background: var(--um-paper);
}

.contact-card h2 {
    max-width: 340px;
    margin: 10px 0 4px;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 640;
    line-height: 1;
}

.contact-card a {
    width: fit-content;
    color: var(--um-ink);
    font-size: 16px;
    font-weight: 620;
    text-decoration: none;
    border-bottom: 1px solid rgba(5, 5, 5, 0.22);
}

.contact-card p {
    max-width: 340px;
    margin: 0;
    color: var(--um-muted);
    font-size: 15px;
    line-height: 1.52;
}

.contact-map {
    margin-top: clamp(22px, 3vw, 34px);
    min-height: 260px;
    padding: clamp(26px, 4vw, 46px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(28px, 6vw, 90px);
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(5, 5, 5, 0.05) 1px, transparent 1px),
        var(--um-soft);
    background-size: 42px 42px;
}

.contact-map h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 5.5vw, 82px);
    font-weight: 640;
    line-height: 0.96;
}

.contact-map > p {
    margin: 0;
    color: var(--um-muted);
    font-size: 16px;
    line-height: 1.58;
}

.services-page {
    width: var(--um-container);
    margin: 0 auto;
    padding: 0 0 clamp(70px, 9vw, 128px);
}

.services-hero {
    padding: clamp(70px, 8vw, 120px) 0 clamp(44px, 6vw, 82px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.58fr);
    align-items: end;
    gap: clamp(38px, 8vw, 124px);
    border-bottom: 1px solid var(--um-line);
}

.services-eyebrow {
    margin: 0 0 18px;
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.services-hero h1 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(54px, 8vw, 118px);
    font-weight: 640;
    line-height: 0.9;
}

.services-hero__aside {
    padding-bottom: 8px;
}

.services-hero__aside p {
    margin: 0;
    color: var(--um-muted);
    font-size: 17px;
    line-height: 1.62;
}

.services-hero__aside a,
.services-cta a {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    background: var(--um-black);
    border: 1px solid var(--um-black);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.services-hero__aside a {
    margin-top: 30px;
}

.services-intro {
    padding: clamp(44px, 6vw, 78px) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
    gap: clamp(34px, 7vw, 104px);
    align-items: end;
    border-bottom: 1px solid var(--um-line);
}

.services-intro > p {
    max-width: 900px;
    margin: 0;
    font-size: clamp(32px, 4.6vw, 72px);
    font-weight: 640;
    line-height: 0.98;
}

.services-intro > div {
    display: grid;
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.services-intro span {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    color: var(--um-muted);
    background: var(--um-paper);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.services-list {
    display: grid;
}

.service-row {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
    border-bottom: 1px solid var(--um-line);
}

.service-row:nth-child(even) .service-row__media {
    order: 2;
}

.service-row__media {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
    background: var(--um-soft);
}

.service-row__media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    filter: saturate(0.88) contrast(0.98);
}

.service-row__content {
    padding: clamp(30px, 5vw, 70px);
    display: grid;
    align-content: end;
}

.service-row__content > span,
.services-process li span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
}

.service-row h2 {
    max-width: 620px;
    margin: clamp(90px, 14vw, 180px) 0 0;
    font-size: clamp(36px, 4.6vw, 72px);
    font-weight: 640;
    line-height: 0.96;
}

.service-row p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--um-muted);
    font-size: 16px;
    line-height: 1.62;
}

.service-row ul {
    max-width: 560px;
    margin: 34px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.service-row li {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    color: var(--um-muted);
    border: 1px solid var(--um-line);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.services-process {
    padding: clamp(54px, 7vw, 96px) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(36px, 8vw, 118px);
    border-bottom: 1px solid var(--um-line);
}

.services-process h2 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 640;
    line-height: 0.96;
}

.services-process ol {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
    list-style: none;
}

.services-process li {
    min-height: 150px;
    padding: 24px;
    display: grid;
    grid-template-columns: 44px minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    background: var(--um-paper);
}

.services-process strong {
    color: var(--um-ink);
    font-size: 20px;
    font-weight: 680;
    line-height: 1.08;
}

.services-process p {
    margin: 0;
    color: var(--um-muted);
    font-size: 15px;
    line-height: 1.55;
}

.services-cta {
    min-height: clamp(380px, 42vw, 560px);
    padding: clamp(34px, 5vw, 70px);
    display: grid;
    align-content: end;
    color: var(--um-paper);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
        var(--um-black);
}

.services-cta .services-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.services-cta h2 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(42px, 6vw, 92px);
    font-weight: 640;
    line-height: 0.94;
}

.services-cta > div {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-cta a {
    color: var(--um-ink);
    background: var(--um-paper);
    border-color: rgba(255, 255, 255, 0.3);
}

.about-page {
    background: var(--um-paper);
}

.about-hero {
    position: relative;
    min-height: clamp(620px, 72vw, 860px);
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    color: var(--um-paper);
    background: var(--um-black);
}

.about-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.68) saturate(0.82) contrast(1.06);
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 68%, rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 46%);
}

.about-hero__content {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(96px, 13vw, 172px) 0 clamp(50px, 7vw, 86px);
}

.about-eyebrow {
    margin: 0 0 18px;
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.about-hero .about-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.about-hero h1 {
    max-width: 1080px;
    margin: 0;
    font-size: clamp(54px, 9vw, 138px);
    font-weight: 640;
    line-height: 0.9;
    letter-spacing: 0;
}

.about-hero p:not(.about-eyebrow) {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.55;
}

.about-statement,
.about-split,
.about-principles,
.about-feature {
    width: var(--um-container);
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: calc(var(--um-header-height) + 22px);
}

.about-statement {
    padding: clamp(48px, 6vw, 86px) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
    gap: clamp(36px, 7vw, 110px);
    align-items: center;
    border-bottom: 1px solid var(--um-line);
}

.about-statement > p {
    max-width: 760px;
    margin: 0;
    font-size: clamp(30px, 3.45vw, 52px);
    font-weight: 620;
    line-height: 1.08;
}

.about-stats {
    display: grid;
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.about-stats span {
    min-height: 92px;
    padding: 18px 20px;
    display: grid;
    align-content: center;
    gap: 4px;
    color: var(--um-muted);
    background: var(--um-paper);
    font-size: 13px;
    font-weight: 680;
    text-transform: uppercase;
}

.about-stats strong {
    color: var(--um-ink);
    font-size: 34px;
    line-height: 1;
}

.about-split {
    padding: clamp(54px, 7vw, 96px) 0;
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.about-split__copy h2,
.about-feature h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 640;
    line-height: 0.96;
}

.about-split__copy h2 {
    max-width: 540px;
    font-size: clamp(38px, 4.6vw, 70px);
}

.about-split__copy p:not(.about-eyebrow),
.about-feature p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--um-muted);
    font-size: 16px;
    line-height: 1.62;
}

.about-split__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--um-soft);
}

.about-split__media img,
.about-feature > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.about-principles article {
    min-height: 330px;
    padding: clamp(24px, 3vw, 38px);
    display: grid;
    align-content: space-between;
    gap: 30px;
    background: var(--um-paper);
}

.about-principles span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 760;
}

.about-principles h2 {
    max-width: 360px;
    margin: auto 0 0;
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 640;
    line-height: 1;
}

.about-principles p {
    max-width: 360px;
    margin: 0;
    color: var(--um-muted);
    font-size: 15px;
    line-height: 1.55;
}

.about-feature {
    margin-top: clamp(34px, 5vw, 70px);
    margin-bottom: clamp(70px, 9vw, 128px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.78fr);
    gap: 0;
    align-items: stretch;
    color: var(--um-paper);
    background: var(--um-black);
}

.about-feature > img {
    min-height: 500px;
    filter: brightness(0.88) saturate(0.85);
}

.about-feature > div {
    padding: clamp(38px, 4.8vw, 66px);
    display: grid;
    align-content: end;
}

.about-feature h2 {
    max-width: 520px;
    font-size: clamp(42px, 4.2vw, 64px);
}

.about-feature .about-eyebrow,
.about-feature p {
    color: rgba(255, 255, 255, 0.68);
}

.about-feature a {
    width: fit-content;
    min-height: 50px;
    margin-top: 34px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    color: var(--um-ink);
    background: var(--um-paper);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.single-product-page {
    background: var(--um-paper);
}

.single-product-shell {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(34px, 5vw, 72px) 0 clamp(70px, 9vw, 128px);
    display: grid;
    grid-template-columns: minmax(420px, 0.82fr) minmax(390px, 0.68fr);
    gap: clamp(28px, 4.2vw, 60px);
    align-items: start;
}

.product-gallery {
    width: min(100%, 620px);
    min-width: 0;
}

.product-gallery__stage {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #efeeec;
    border: 1px solid rgba(5, 5, 5, 0.08);
}

.product-gallery__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--um-ease);
}

.product-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.product-gallery__slide img,
.product-gallery__video,
.product-gallery__video iframe,
.product-gallery__video video {
    width: 100%;
    height: 100%;
    display: block;
}

.product-gallery__slide img {
    max-width: none;
    object-fit: cover;
}

.product-gallery__video {
    display: grid;
    place-items: center;
    background: var(--um-black);
}

.product-gallery__video iframe,
.product-gallery__video video {
    border: 0;
    object-fit: contain;
}

.product-gallery__video a {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-paper);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.product-gallery__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    pointer-events: none;
}

.product-gallery__controls button {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--um-ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(5, 5, 5, 0.12);
    backdrop-filter: blur(14px);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 180ms var(--um-ease), background 180ms var(--um-ease), border-color 180ms var(--um-ease);
}

.product-gallery__controls button:hover {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(5, 5, 5, 0.2);
}

.product-gallery__controls button span {
    width: 11px;
    height: 11px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.product-gallery__nav--prev span {
    transform: translateX(2px) rotate(-135deg);
}

.product-gallery__nav--next span {
    transform: translateX(-2px) rotate(45deg);
}

.product-gallery__controls > span {
    position: absolute;
    left: 50%;
    bottom: 18px;
    min-width: 54px;
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(5, 5, 5, 0.66);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(5, 5, 5, 0.08);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 760;
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
    pointer-events: none;
}

.product-gallery__thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.product-gallery__thumbs button {
    aspect-ratio: 1 / 1;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--um-ink);
    background: var(--um-soft);
    border: 1px solid rgba(5, 5, 5, 0.08);
    cursor: pointer;
    opacity: 0.58;
    transition: opacity 180ms var(--um-ease), border-color 180ms var(--um-ease);
}

.product-gallery__thumbs button.is-active {
    border-color: rgba(5, 5, 5, 0.34);
    opacity: 1;
}

.product-gallery__thumbs button.is-active::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    pointer-events: none;
}

.product-gallery__thumbs button:hover {
    opacity: 1;
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-gallery__thumbs span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.product-summary {
    position: sticky;
    top: calc(var(--um-header-height) + 18px);
    display: grid;
    gap: 18px;
}

.product-summary__top {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--um-line);
}

.product-summary__category {
    margin-bottom: 10px;
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.product-summary h1 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(30px, 2.55vw, 42px);
    font-weight: 640;
    line-height: 1.03;
    overflow-wrap: anywhere;
}

.product-summary__sku {
    margin: 12px 0 0;
    color: rgba(5, 5, 5, 0.48);
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-summary__description {
    margin-top: 14px;
    color: var(--um-muted);
    font-size: 14px;
    line-height: 1.48;
}

.product-summary__description p {
    margin: 0;
}

.product-options,
.product-specs,
.product-files {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--um-line);
}

.product-options h2,
.product-specs h2,
.product-files h2 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.product-variation-form {
    display: grid;
    gap: 10px;
}

.product-variation-form .variations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.product-variation-form label {
    align-self: end;
    margin-top: 0;
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 720;
    text-transform: uppercase;
}

.product-variation-form select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: var(--um-ink);
    background: var(--um-paper);
    border: 1px solid rgba(5, 5, 5, 0.16);
    border-radius: 0;
}

.product-variation-form .reset_variations {
    width: fit-content;
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 720;
    text-transform: uppercase;
}

.product-variation-form .single_variation_wrap {
    margin-top: 4px;
}

.product-variation-form .single_variation {
    min-height: 0;
    color: var(--um-muted);
    font-size: 13px;
}

.product-variation-form .single_variation:empty {
    display: none;
}

.product-variation-form .woocommerce-variation {
    padding: 16px;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(5, 5, 5, 0.12);
    background: rgba(5, 5, 5, 0.025);
}

.product-variation-form .woocommerce-variation:empty {
    display: none;
}

.product-variation-form .woocommerce-variation-price {
    color: var(--um-ink);
}

.product-variation-form .woocommerce-variation-price .price {
    margin: 0;
    display: block;
    color: var(--um-ink);
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 720;
    line-height: 1;
}

.product-variation-form .woocommerce-variation-price .amount,
.product-variation-form .woocommerce-variation-price bdi {
    color: inherit;
    font: inherit;
}

.product-variation-form .woocommerce-variation-description {
    color: var(--um-muted);
    font-size: 14px;
    line-height: 1.48;
}

.product-variation-form .woocommerce-variation-description:empty {
    display: none;
}

.product-variation-form .woocommerce-variation-description p {
    margin: 0;
}

.product-variation-form .woocommerce-variation-sku {
    padding-top: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(5, 5, 5, 0.1);
    color: rgba(5, 5, 5, 0.54);
    font-size: 11px;
    font-weight: 720;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-variation-form .woocommerce-variation-sku span {
    color: rgba(5, 5, 5, 0.42);
}

.product-variation-form .woocommerce-variation-sku strong {
    color: var(--um-ink);
    font-weight: 760;
    text-align: right;
}

.product-variation-form .woocommerce-variation-availability {
    margin: 0;
}

.product-variation-form .woocommerce-variation-availability:empty {
    display: none;
}

.product-variation-form .woocommerce-variation-availability p {
    margin: 0;
    color: rgba(5, 5, 5, 0.5);
    font-size: 11px;
    font-weight: 720;
    text-transform: uppercase;
}

.product-variation-form .woocommerce-variation-availability .in-stock {
    color: rgba(5, 5, 5, 0.56);
}

.product-variation-form .woocommerce-variation-availability .out-of-stock {
    color: var(--um-danger);
}

.product-summary__actions {
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    background: var(--um-soft);
    border: 1px solid var(--um-line);
}

.product-summary__favorite {
    position: static;
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--um-paper);
    background: var(--um-black);
    border-color: var(--um-black);
    border-radius: 0;
    backdrop-filter: none;
}

.product-summary__favorite::after {
    content: "Добавить в избранное";
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-summary__favorite:hover {
    color: var(--um-paper);
    background: var(--um-graphite);
    transform: translateY(-1px);
}

.product-summary__favorite.is-active {
    color: var(--um-paper);
    background: var(--um-danger);
    border-color: var(--um-danger);
}

.product-summary__favorite.is-active::after {
    content: "В избранном";
}

.product-summary__favorite .icon {
    width: 19px;
    height: 19px;
}

.product-summary__favorites-link {
    min-height: 58px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--um-ink);
    background: var(--um-paper);
    border: 1px solid var(--um-line);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 160ms var(--um-ease), background 160ms var(--um-ease);
}

.product-summary__favorites-link:hover {
    background: #fdfdfc;
    border-color: var(--um-line-strong);
}

.favorite-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 160;
    width: min(calc(100vw - 32px), 420px);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    color: var(--um-paper);
    background: rgba(5, 5, 5, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(5, 5, 5, 0.28);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 180ms var(--um-ease), transform 180ms var(--um-ease);
}

.favorite-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.favorite-toast strong {
    display: block;
    font-size: 15px;
    font-weight: 720;
    line-height: 1.2;
}

.favorite-toast span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.35;
}

.favorite-toast a {
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: var(--um-black);
    background: var(--um-paper);
    font-size: 11px;
    font-weight: 780;
    text-transform: uppercase;
}

.favorites-page {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 96px) 0;
}

.favorites-hero {
    max-width: 760px;
    margin-bottom: 46px;
}

.favorites-hero h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 112px);
    line-height: 0.92;
}

.favorites-hero p:not(.eyebrow) {
    max-width: 620px;
    color: var(--um-muted);
    font-size: 18px;
}

.favorites-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 36px;
    align-items: start;
}

.favorites-list {
    display: grid;
    gap: 18px;
}

.favorites-empty {
    padding: 48px;
    background: var(--um-soft);
    border: 1px solid var(--um-line);
}

.favorites-empty h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.favorites-empty p {
    margin: 0 0 24px;
    color: var(--um-muted);
}

.favorite-item {
    min-height: 116px;
    padding: 14px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 92px auto auto auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--um-line);
    background: var(--um-paper);
}

.favorite-item.is-dragging {
    opacity: 0.48;
}

.favorite-item__media {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--um-soft);
}

.favorite-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-item__body {
    display: grid;
    gap: 5px;
}

.favorite-item__body a {
    font-size: 16px;
    font-weight: 720;
}

.favorite-item__body span {
    color: var(--um-muted);
    font-size: 12px;
    font-weight: 720;
    text-transform: uppercase;
}

.favorite-item__body small {
    color: rgba(5, 5, 5, 0.56);
    font-size: 12px;
    line-height: 1.4;
}

.favorite-item strong {
    white-space: nowrap;
}

.favorite-item__qty {
    display: grid;
    gap: 6px;
    color: var(--um-muted);
    font-size: 10px;
    font-weight: 760;
    text-transform: uppercase;
}

.favorite-item__qty input {
    width: 78px;
    height: 40px;
    padding: 0 10px;
    color: var(--um-black);
    background: var(--um-soft);
    border: 1px solid var(--um-line);
    border-radius: var(--um-radius);
    font: inherit;
    font-size: 14px;
}

.favorite-item button {
    padding: 10px 12px;
    color: var(--um-muted);
    background: transparent;
    border: 1px solid var(--um-line);
    cursor: pointer;
}

.favorite-item--needs-config {
    background: #fffaf0;
    border-color: rgba(214, 158, 46, 0.34);
}

.favorite-item--needs-config strong {
    font-size: 0;
}

.favorite-item--needs-config strong::after {
    content: "Требуется настройка";
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    color: #8a5a00;
    background: rgba(214, 158, 46, 0.12);
    border: 1px solid rgba(214, 158, 46, 0.22);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.favorite-item__notice {
    color: #8a5a00;
}

.favorite-item__configure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    color: var(--um-paper);
    background: var(--um-black);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.favorites-rooms-toolbar {
    padding: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    background: var(--um-soft);
    border: 1px solid var(--um-line);
}

.favorites-rooms-toolbar span {
    display: block;
    font-size: 18px;
    font-weight: 760;
}

.favorites-rooms-toolbar small {
    color: var(--um-muted);
}

.favorites-rooms-toolbar form {
    display: flex;
    gap: 8px;
}

.favorites-rooms-toolbar input {
    height: 42px;
    min-width: 220px;
    padding: 0 12px;
    border: 1px solid var(--um-line);
    border-radius: var(--um-radius);
    background: var(--um-paper);
}

.favorites-rooms-toolbar button {
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--um-black);
    border-radius: var(--um-radius);
    background: var(--um-black);
    color: var(--um-paper);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.favorites-rooms {
    display: grid;
    gap: 14px;
}

.favorites-room {
    border: 1px solid var(--um-line);
    background: var(--um-paper);
}

.favorites-room__head {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--um-line);
}

.favorites-room__head h2 {
    margin: 0;
    font-size: 18px;
}

.favorites-room__head button {
    min-height: 34px;
    padding: 0 12px;
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--um-line);
    border-radius: 999px;
    cursor: pointer;
    transition: color 160ms var(--um-ease), border-color 160ms var(--um-ease), background 160ms var(--um-ease);
}

.favorites-room__head button:hover {
    color: var(--um-danger);
    background: rgba(215, 39, 39, 0.06);
    border-color: rgba(215, 39, 39, 0.28);
}

.favorites-room__head small {
    color: var(--um-muted);
    font-weight: 760;
}

.favorites-room__drop {
    min-height: 92px;
    padding: 12px;
    display: grid;
    gap: 10px;
}

.favorites-room__drop.is-over {
    background: rgba(5, 5, 5, 0.04);
}

.favorites-room__empty {
    min-height: 68px;
    display: grid;
    place-items: center;
    color: var(--um-muted);
    border: 1px dashed var(--um-line-strong);
    font-size: 13px;
}

.favorites-offer {
    position: sticky;
    top: calc(var(--um-header-height) + 24px);
}

.favorites-offer__paper {
    padding: 28px;
    background: var(--um-black);
    color: var(--um-paper);
}

.favorites-offer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
}

.favorites-offer__paper h2 {
    margin: 0 0 24px;
    font-size: 72px;
    line-height: 0.9;
}

.favorites-offer__paper dl {
    margin: 0 0 28px;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.favorites-offer__paper dl div {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.favorites-offer__paper dt {
    color: rgba(255, 255, 255, 0.58);
}

.favorites-download:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.config-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    padding: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
}

.config-modal.is-open {
    display: flex;
}

.config-modal__panel {
    position: relative;
    width: min(100%, 520px);
    padding: 34px;
    background: var(--um-paper);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.config-modal__panel h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.config-modal__panel p:not(.eyebrow) {
    color: var(--um-muted);
}

.config-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.config-modal__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.config-modal__actions button {
    padding: 14px 18px;
    background: transparent;
    border: 1px solid var(--um-line);
    cursor: pointer;
}

.product-specs dl {
    max-height: 320px;
    margin: 0;
    display: grid;
    gap: 1px;
    overflow: auto;
    background: var(--um-line);
    border: 1px solid var(--um-line);
}

.product-specs dl div {
    min-height: 42px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: minmax(112px, 0.52fr) 1fr;
    gap: 14px;
    background: var(--um-paper);
}

.product-specs dt,
.product-specs dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}

.product-specs dt {
    color: var(--um-muted);
}

.product-files__list {
    display: grid;
    gap: 6px;
}

.product-files__list a {
    min-height: 46px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--um-line);
}

.product-files__list span {
    font-size: 14px;
    font-weight: 640;
}

.product-files__list small {
    color: var(--um-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .single-product-shell {
        grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 0.72fr);
        gap: 32px;
    }

    .product-gallery {
        width: min(100%, 560px);
    }
}

.site-footer {
    color: var(--um-paper);
    background: var(--um-black);
}

.site-footer__inner {
    width: var(--um-container);
    margin: 0 auto;
    padding: clamp(46px, 6vw, 76px) 0;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) 1fr 1fr;
    gap: clamp(32px, 6vw, 96px);
}

.site-footer .brand-logo__text {
    font-size: 28px;
}

.site-footer__brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__links a,
.site-footer__contacts a,
.site-footer__bottom span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-style: normal;
    transition: color 160ms var(--um-ease);
}

.site-footer__links a:hover,
.site-footer__contacts a:hover {
    color: var(--um-paper);
}

.site-footer__contacts {
    display: grid;
    align-content: start;
    gap: 10px;
    font-style: normal;
}

.site-footer__bottom {
    width: var(--um-container);
    margin: 0 auto;
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .site-header__inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .site-header__desktop-nav {
        display: none;
    }

    .site-header__brand {
        justify-content: center;
    }

    .site-header__right {
        justify-content: flex-end;
    }

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

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

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

    .series-rail {
        grid-template-columns: repeat(6, minmax(260px, 1fr));
    }

    .home-spec {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .series-products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --um-header-height: 62px;
        --um-container: min(100% - 32px, 1440px);
    }

    .site-header__inner {
        gap: 10px;
    }

    .site-header__left,
    .site-header__right {
        gap: 2px;
    }

    .brand-logo__text {
        font-size: 23px;
    }

    .site-menu__panel {
        padding: 18px 24px 30px;
    }

    .site-menu__nav {
        margin-top: 54px;
    }

    .site-search {
        padding-top: calc(var(--um-header-height) + 12px);
    }

    .site-search__form {
        grid-template-columns: 1fr;
    }

    .site-search__form .aws-container {
        display: block;
        width: 100% !important;
        max-width: none;
    }

    .site-search__form .aws-search-form,
    .site-search__fallback-form {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100% !important;
        min-width: 0;
    }

    .site-search__form .aws-wrapper {
        display: block !important;
        width: 100% !important;
        min-width: 0;
    }

    .site-search__form .aws-search-field,
    .site-search__form input[type="search"] {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .site-search__form .aws-search-btn {
        width: 100%;
        min-width: 100%;
    }

    .search-page {
        padding: 50px 0 68px;
    }

    .search-hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .search-page__form .aws-search-form,
    .search-page__form .site-search__fallback-form {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .search-page__form .aws-search-field,
    .search-page__form input[type="search"] {
        height: 60px;
        padding: 0 18px;
        font-size: 18px;
    }

    .search-page__form .aws-search-btn,
    .search-page__form button {
        width: 100%;
        min-width: 100%;
        height: 54px;
    }

    .search-section__head {
        align-items: start;
        flex-direction: column;
    }

    .search-product-grid,
    .search-materials {
        grid-template-columns: 1fr;
    }

    .favorites-layout {
        grid-template-columns: 1fr;
    }

    .favorites-rooms-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .favorites-rooms-toolbar form {
        flex-direction: column;
    }

    .favorites-rooms-toolbar input {
        min-width: 0;
        width: 100%;
    }

    .favorite-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .favorite-item__qty,
    .favorite-item strong,
    .favorite-item button,
    .favorite-item__configure {
        grid-column: 2;
        justify-self: start;
    }

    .product-summary__actions {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .product-summary__favorites-link {
        width: 100%;
    }

    .favorite-toast {
        right: 16px;
        bottom: 16px;
        grid-template-columns: 1fr;
    }

    .favorite-toast a {
        width: 100%;
        justify-content: center;
    }

    .home-hero {
        min-height: 760px;
    }

    .home-hero--catalog {
        min-height: 760px;
    }

    .home-hero__content {
        padding-bottom: 48px;
    }

    .home-hero__image img,
    .home-hero__video {
        filter: brightness(0.68) saturate(0.82) contrast(1.08);
    }

    .home-hero__image::after {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.62)),
            linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 48%);
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(36px, 9.2vw, 48px);
        line-height: 1.02;
        overflow-wrap: break-word;
        text-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
    }

    .home-series-card {
        min-height: 520px;
    }

    .home-series-card__content {
        width: min(100% - 32px, 520px);
        padding: 64px 0;
    }

    .home-series-card h2 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .home-series-card__line {
        margin: 22px 0 18px;
    }

    .home-series-card p {
        font-size: 15px;
        line-height: 1.58;
    }

    .home-series-card__button {
        width: min(100%, 240px);
        margin-top: 28px;
        padding: 0 20px;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
    }

    .home-hero__stats span {
        min-height: 52px;
        padding-top: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

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

    .section-heading,
    .section-heading--split {
        display: grid;
        align-items: start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .section-heading h2,
    .home-spec h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .category-grid,
    .catalog-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .series-products .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalog-page {
        padding: 50px 0 64px;
    }

    .catalog-page__header h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .catalog-tile {
        min-height: 310px;
    }

    .catalog-page--series {
        width: 100%;
        padding-top: 0;
    }

    .series-hero {
        min-height: 620px;
    }

    .series-hero__content {
        width: min(100% - 32px, 1180px);
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 96px 0 42px;
    }

    .series-hero__content .eyebrow,
    .series-hero h1,
    .series-hero__description {
        grid-column: 1;
        grid-row: auto;
    }

    .series-hero h1 {
        font-size: clamp(52px, 16vw, 72px);
    }

    .series-hero__description {
        max-width: none;
    }

    .series-hero__description p {
        -webkit-line-clamp: 4;
    }

    .series-products {
        width: var(--um-container);
        margin-left: auto;
        margin-right: auto;
        margin-top: 52px;
    }

    .series-products__head {
        display: grid;
        align-items: start;
    }

    .category-card,
    .category-card--series {
        min-height: 310px;
    }

    .category-card--wide {
        grid-column: auto;
    }

    .series-rail {
        display: flex;
        gap: 1px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 16px;
        border-left: 0;
        border-right: 0;
        scroll-snap-type: x mandatory;
    }

    .series-rail .category-card {
        min-width: 78vw;
        scroll-snap-align: start;
    }

    .product-card {
        min-height: 320px;
    }

    .product-card__media {
        min-height: 230px;
    }

    .contact-page {
        padding: 42px 0 72px;
    }

    .contact-hero {
        grid-template-columns: 1fr;
        align-content: end;
        gap: 34px;
        padding-top: 54px;
        padding-bottom: 34px;
    }

    .contact-hero h1 {
        font-size: clamp(46px, 14vw, 64px);
        line-height: 0.94;
    }

    .contact-hero__copy > p:not(.contact-eyebrow) {
        margin-top: 20px;
        font-size: 16px;
    }

    .contact-hero__quick a {
        min-height: 94px;
        padding: 20px;
    }

    .contact-layout,
    .contact-map {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        min-height: 440px;
    }

    .contact-actions {
        display: grid;
    }

    .contact-button {
        width: 100%;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 210px;
    }

    .contact-map {
        min-height: 340px;
        align-items: end;
    }

    .services-page {
        padding: 0 0 72px;
    }

    .services-hero {
        padding: 54px 0 42px;
        grid-template-columns: 1fr;
        align-content: end;
        gap: 28px;
    }

    .services-hero h1 {
        font-size: clamp(44px, 13vw, 62px);
        line-height: 0.94;
    }

    .services-hero__aside {
        padding-bottom: 34px;
    }

    .services-hero__aside p {
        font-size: 16px;
    }

    .services-hero__aside a,
    .services-cta a {
        width: 100%;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-intro > p {
        font-size: clamp(30px, 9vw, 44px);
    }

    .service-row,
    .service-row:nth-child(even) {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .service-row:nth-child(even) .service-row__media {
        order: 0;
    }

    .service-row__media,
    .service-row__media img {
        min-height: 280px;
    }

    .service-row__content {
        padding: 30px 0 42px;
    }

    .service-row h2 {
        margin-top: 74px;
        font-size: clamp(34px, 10vw, 48px);
    }

    .service-row ul {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-process {
        grid-template-columns: 1fr;
    }

    .services-process h2 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .services-process li {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services-cta {
        min-height: 420px;
        padding: 32px 22px;
    }

    .services-cta h2 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .services-cta > div {
        display: grid;
    }

    .about-hero {
        min-height: 720px;
    }

    .about-hero__content {
        width: min(100% - 32px, 1440px);
        padding: 112px 0 48px;
    }

    .about-hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.98;
    }

    .about-hero p:not(.about-eyebrow) {
        margin-top: 22px;
        font-size: 16px;
    }

    .about-statement,
    .about-split,
    .about-feature {
        grid-template-columns: 1fr;
    }

    .about-statement {
        padding: 54px 0;
    }

    .about-statement > p {
        font-size: clamp(30px, 9vw, 44px);
    }

    .about-split {
        padding: 48px 0;
    }

    .about-split__media {
        aspect-ratio: 4 / 3;
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principles article {
        min-height: 250px;
    }

    .about-feature {
        margin-top: 32px;
        margin-bottom: 72px;
    }

    .about-feature > img {
        min-height: 340px;
    }

    .about-feature > div {
        padding: 28px 22px 34px;
    }

    .single-product-shell {
        padding: 24px 0 72px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        width: 100%;
    }

    .product-gallery__stage {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .product-gallery__controls {
        padding: 12px;
    }

    .product-gallery__controls button {
        width: 40px;
        height: 40px;
    }

    .product-gallery__controls > span {
        bottom: 12px;
        min-height: 28px;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-summary {
        position: static;
        gap: 24px;
    }

    .product-summary h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .product-variation-form .variations {
        grid-template-columns: 1fr;
    }

    .product-specs dl {
        max-height: none;
    }

    .product-specs dl div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-files__list a {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-spec {
        padding: 28px 20px;
        margin-bottom: 40px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-footer__bottom small {
        width: 100%;
        margin-left: 0;
    }
}
