@font-face {
    font-family: "Collectica";
    src: url("../Coolvetica/coolvetica rg.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

button {
    font: inherit;
    color: inherit;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-synthesis: weight;
    -webkit-font-smoothing: subpixel-antialiased;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 100%;
    min-height: 64px;
    padding: 0 35px;
}

.nav-left {
    justify-self: start;
}

.nav-center {
    justify-self: center;
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 28px;
}

.nav-right > :not(.nav-divider) {
    align-self: center;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-list a:hover {
    opacity: 0.6;
}

.logo {
    display: block;
    line-height: 0;
}

.logo img {
    display: block;
    width: 154px;
    height: auto;
}

.btn-icon,
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}

.btn-icon img,
.btn-cart img {
    display: block;
    width: 22px;
    height: 22px;
}

.btn-cart {
    position: relative;
    gap: 6px;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 8px;
    font-weight: 100;
    line-height: 1;
}

.nav-divider {
    width: 1px;
    background: #e0e0e0;
    flex-shrink: 0;
    align-self: stretch;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.btn-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-synthesis: weight;
}

.btn-menu__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.btn-menu__icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: 18px;
    height: 12px;
}

.btn-menu__icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    border-radius: 1px;
}

/* Hero */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 0 40px 40px;
    max-width: 900px;
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Collectica", Arial, sans-serif;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* Catalog preview */

.catalog-preview {
    
    padding: 40px 0 28px;
}

.catalog-preview__inner {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.catalog-preview__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.catalog-preview__top h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #212121;
}

.catalog-preview__arrows {
    display: flex;
    align-items: center;
    gap: 28px;
}

.catalog-preview__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
}

.catalog-preview__arrow-icon path {
    stroke-width: 1.5;
}

.catalog-preview__arrow:hover:not(.swiper-button-disabled) {
    box-shadow: rgba(0, 0, 0, 0.08) 0 0 12px 0 inset;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.catalog-preview__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.catalog-preview__line {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 12px 0 20px;
}

.catalog-swiper {
    overflow: hidden;
}

.catalog-swiper .swiper-slide {
    width: 200px;
    height: auto;
}

.catalog-card {
    width: 200px;
}

.catalog-card__image {
    --card-btn-size: 24px;
    --card-corner-gap: 8px;
    --card-corner-radius: 8px;
    --card-bg: #efefef;
    --card-corner-bg: #ffffff;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.catalog-card__corner {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: var(--card-corner-gap) 0 0 var(--card-corner-gap);
    background: var(--card-corner-bg);
    border-top-left-radius: var(--card-corner-radius);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.catalog-card__image img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply !important;
    color: transparent;
    position: relative;
    z-index: 1;
}

.catalog-card__btn {
    width: var(--card-btn-size);
    height: var(--card-btn-size);
    border: 0;
    border-radius: 6px;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.catalog-card__btn svg {
    display: block;
    width: 16px;
    height: 16px;
}

.catalog-card p {
    margin: 8px 0 0;
    width: 200px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;

}

/* Recommended */

.recommended {
    background: #fff;
    padding: 40px 0 48px;
}

.recommended__inner {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.recommended__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.recommended__top h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #212121;
}

.recommended__arrows {
    display: flex;
    align-items: center;
    gap: 28px;
}

.recommended__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
}

.recommended__arrow path {
    stroke-width: 1.5;
}

.recommended__arrow:hover:not(.swiper-button-disabled) {
    box-shadow: rgba(0, 0, 0, 0.08) 0 0 12px 0 inset;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.recommended__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.recommended__line {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 12px 0 20px;
}

.recommended__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.recommended__filter {
    border: 1px solid transparent;
    border-radius: 999px;
   
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 18px;
    cursor: pointer;
    border-color: rgb(216, 216, 222);
    border-radius: 24px;
    color: rgb(142, 142, 152);
    box-shadow: none;
    background: #fff;
}

.recommended__filter--active {
    
    box-shadow: rgba(0, 0, 0, 0.08) 0 0 12px 0 inset;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: #212121;
}

.recommended-swiper {
    overflow: hidden;
}

.recommended-swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.product-card {
    width: 280px;
}

.product-card__image-wrap {
    position: relative;
    width: 280px;
    height: 280px;
}

.product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    background: #efefef;
    overflow: hidden;
}

.product-card__image-stack {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image-layer {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    transition: opacity 0.35s ease;
}

.product-card__image-layer--default {
    position: relative;
    z-index: 1;
}

.product-card__image-layer--hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
}

.product-card:hover .product-card__image-layer--hover {
    opacity: 1;
}

.product-card:hover .product-card__image-layer--default {
    opacity: 0;
}

.product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.product-card__favorite {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.product-card__previews {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 8px;
}

.product-card__preview {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: #efefef;
    overflow: visible;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.product-card__preview img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: cover;
    object-position: center;
}

.product-card__preview--active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: #212121;
}

.product-card__title {
    margin: 10px 0 0;
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    letter-spacing: .1px;
    font-weight: 500;
    line-height: 1.3;
    color: #212121;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__price {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
    letter-spacing: .2px;
}

/* Spotlight */

.spotlight {
    position: relative;
    min-height: 150vh;
    color: #111;
}

.spotlight__bg {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.spotlight__media {
    position: absolute;
    inset: 0;
}

.spotlight__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    border: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.spotlight__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.88) 14%,
        rgba(255, 255, 255, 0.45) 36%,
        rgba(255, 255, 255, 0.08) 62%,
        rgba(255, 255, 255, 0) 78%
    );
    pointer-events: none;
}

.spotlight__inner {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
    min-height: 150vh;
    padding: 48px 50px 44px;
}

.spotlight__content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.spotlight__label {
    margin: 0 0 52px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.spotlight__title {
    margin: 0;
    max-width: 100%;
    font-size: 61px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.spotlight__text {
    margin: 24px 0 0;
    max-width: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 900px;
}

.spotlight__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 64px;
    row-gap: 24px;
    width: 100%;
    margin-top: 40px;
    align-items: start;
}

.spotlight__nav-link {
    padding-left: 18px;
    border-left: 1px solid rgba(17, 17, 17, 0.4);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    transition: opacity 0.2s ease;
}

.spotlight__nav-link:hover {
    opacity: 0.65;
}

/* Our approach */

.our-approach {
    background-color: #f8f7f6;
    padding: 80px 0;
}

.our-approach__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.our-approach__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.our-approach__left {
    flex-shrink: 0;
}

.our-approach__left .caption {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1922;
}

.our-approach__right {
    width: 100%;
    max-width: 981px;
}

.our-approach__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.our-approach__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    border-top: 1px solid #1b1922;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.our-approach__item svg {
    transition: all 0.3s ease;
}

.our-approach__item svg path {
    transition: fill 0.3s ease;
}

.our-approach__item:hover {
    background-color: #1b1922;
    color: #fff;
}

.our-approach__item:hover .our-approach__caption {
    color: #fff;
}

.our-approach__item:hover p {
    color: #fff;
}

.our-approach__item:hover svg path {
    fill: #fff;
}

.our-approach__icon {
    display: block;
    flex-shrink: 0;
}

.our-approach__caption {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: #1b1922;
    transition: color 0.3s ease;
}

.our-approach__item p {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: #1b1922;
    transition: color 0.3s ease;
}

/* News */

.news-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0 48px;
}

.news-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 315px;
    background-color: #1b1922;
    pointer-events: none;
}

.news-section__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.news-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1b1922;
    padding-bottom: 24px;
}

.news-section .caption {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1922;
}

.news-section .linkSite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.25;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.news-section .linkSite::after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19 13V5H11' stroke='%231B1922' stroke-linecap='round'/%3e%3cpath d='M19 5L5 19' stroke='%231B1922' stroke-linecap='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.news-section .linkSite:hover {
    text-decoration-color: currentcolor;
}

.slider-news {
    margin-top: 24px;
    overflow: visible;
}

.slider-news .swiper-wrapper {
    align-items: initial;
}

.slider-news .swiper-slide {
    height: auto;
    width: 508px;
}

.slider-news p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.news-item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 3;
}

.news-item .site-media {
    position: relative;
    width: 100%;
    padding-top: calc(370 / 644 * 100%);
}

.news-item .site-media picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-item .site-media picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item__date {
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 3;
    padding: 10px 14px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.news-item__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    height: 100%;
    padding: 24px;
}

.news-item__link {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.news-item__link:hover {
    text-decoration-color: currentcolor;
}

.news-item__content p {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.news-item .linkSite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.news-item .linkSite::after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19 13V5H11' stroke='%231B1922' stroke-linecap='round'/%3e%3cpath d='M19 5L5 19' stroke='%231B1922' stroke-linecap='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Video section */

.video-section {
    overflow: hidden;
    padding: 40px 0 48px;
}

.video-section__inner,
.location__inner,
.footer-top__inner {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.video-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.video-section .caption,
.location .caption {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #212121;
}

.video-section-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.swiperBtnPrev,
.swiperBtnNext {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100px;
    height: 36px;
    min-width: 100px;
    border: 0;
    background-color: transparent;
    padding: 0;
    transition: transform 0.3s;
}

.swiperBtnPrev--dark {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='82' height='8' viewBox='0 0 82 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.646447 3.64645C0.451184 3.84171 0.451184 4.15829 0.646447 4.35355L3.82843 7.53553C4.02369 7.7308 4.34027 7.7308 4.53553 7.53553C4.7308 7.34027 4.7308 7.02369 4.53553 6.82843L1.70711 4L4.53553 1.17157C4.7308 0.976311 4.7308 0.659728 4.53553 0.464466C4.34027 0.269204 4.02369 0.269204 3.82843 0.464466L0.646447 3.64645ZM1 4.5H81.5V3.5H1V4.5Z' fill='%231B1922'/%3e%3c/svg%3e ");
}

.swiperBtnNext--dark {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='82' height='8' viewBox='0 0 82 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M81.3536 4.35355C81.5488 4.15829 81.5488 3.84171 81.3536 3.64645L78.1716 0.464466C77.9763 0.269204 77.6597 0.269204 77.4645 0.464466C77.2692 0.659728 77.2692 0.976311 77.4645 1.17157L80.2929 4L77.4645 6.82843C77.2692 7.02369 77.2692 7.34027 77.4645 7.53553C77.6597 7.7308 77.9763 7.7308 78.1716 7.53553L81.3536 4.35355ZM0.5 4.5H81V3.5H0.5V4.5Z' fill='%231B1922'/%3e%3c/svg%3e ");
}

.swiperBtnPrev:hover,
.swiperBtnNext:hover {
    transform: scale(0.9);
}

.swiperBtnPrev.swiper-button-disabled,
.swiperBtnNext.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.video-section .sliderVideo {
    margin-top: 32px;
    overflow: visible;
}

.sliderVideo .swiper-slide {
    width: 644px;
    height: auto;
}

.video-section .sliderVideo .picture {
    display: block;
    width: 100%;
    position: relative;
    aspect-ratio: 697 / 425;
    overflow: hidden;
    z-index: 1;
}

.video-section .sliderVideo .picture > a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
}

.video-section .sliderVideo .picture img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-section .sliderVideo .picture::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 25, 34, 0.05);
    left: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
}

.video-section .sliderVideo .picture svg {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.video-section .sliderVideo .picture > a:hover svg {
    transform: scale(1.1);
}

/* Location */

.location {
    background-color: #f8f7f6;
    padding: 40px 0 48px;
}

.location__body {
    margin-top: 40px;
    display: flex;
}

.location__left {
    background-color: #1b1922;
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 50%;
    max-width: 532px;
}

.location__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.location__col p {
    margin: 0;
    line-height: 1.5;
}

.location__right {
    width: 100%;
    position: relative;
    flex: 1;
}

.location .map,
.location #map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.location a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.location a:hover {
    text-decoration-color: #fff;
}

.linkSite--white {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.linkSite--white::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.8337 11.1667V4.50008H9.16699' stroke='white' stroke-width='0.833333' stroke-linecap='round'/%3e%3cpath d='M15.8337 4.5L4.16699 16.1667' stroke='white' stroke-width='0.833333' stroke-linecap='round'/%3e%3c/svg%3e ");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.linkSite--white:hover {
    text-decoration-color: #fff;
}

/* Footer top form */

.footer-top {
    padding: 80px 0;
    color: #1b1922;
    background-color: #f8f7f6;
}

.footer-top__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-top__inner > p {
    margin: 0;
    line-height: 1.5;
}

.caption--h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
}

.footer-top .checkblock {
    width: 100%;
}

.footer-form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.footer-form .input-item {
    width: calc(25% - 32px);
}

.footer-form .btn {
    width: calc(25% - 32px);
    justify-content: center;
    min-height: 74px;
}

.footer-form .check-list {
    width: 100%;
}

.footer-top input {
    color: #1b1922;
    border-color: #1b1922;
}

.footer-top input::placeholder {
    color: rgba(27, 25, 34, 0.7);
}

.input-item input {
    background: transparent;
    border: 0;
    outline: none;
    border-bottom: solid 1px #1b1922;
    height: 36px;
    width: 100%;
    font: inherit;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.check-list a {
    color: #1b1922 !important;
    text-decoration: underline;
    text-decoration-color: #1b1922 !important;
}

.check-list a:hover {
    text-decoration-color: transparent !important;
}

.checkblock {
    position: relative;
}

.checkblock input {
    display: none;
}

.checkblock input:checked + label::after {
    opacity: 1;
}

.checkblock label {
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.checkblock label::before {
    content: "";
    position: absolute;
    transition: all 0.3s;
    width: 24px;
    height: 24px;
    border: solid 1px #1b1922;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.checkblock label::after {
    content: "";
    position: absolute;
    transition: all 0.3s;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.6693 1L5.5026 10.1667L1.33594 6' stroke='%231B1922' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    opacity: 0;
}

.btn {
    appearance: none;
    border-radius: 0;
    position: relative;
    color: #1b1922;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    padding: 16px 30px;
    background: transparent;
    cursor: pointer;
}

.btn--borderDark {
    background-color: transparent;
    border: solid 1px #1b1922;
    color: #1b1922;
    text-align: center;
    justify-content: center;
}

.btn--borderDark.btn--arrow::after {
    content: "";
    position: relative;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19 13V5H11' stroke='%231B1922' stroke-linecap='round'/%3e%3cpath d='M19 5L5 19' stroke='%231B1922' stroke-linecap='round'/%3e%3c/svg%3e ");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    transition: transform 0.3s;
}

.btn--borderDark.btn--arrow:hover::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19 13V5H11' stroke='white' stroke-linecap='round'/%3e%3cpath d='M19 5L5 19' stroke='white' stroke-linecap='round'/%3e%3c/svg%3e ");
    transform: rotate(45deg);
}

.btn--borderDark:hover {
    background-color: #1b1922;
    color: #fff;
}

.btn--arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Footer */

.site-footer {
    background: #1c1c1c;
    color: #fff;
}

.site-footer__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 72px 50px 64px;
}

.site-footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 56px 64px;
}

.site-footer__col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.site-footer__col--cta {
    display: flex;
    align-items: flex-start;
}

.site-footer__title {
    margin: 0;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
}

.site-footer__col-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 56px;
    margin-top: 24px;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.site-footer__list--spaced {
    flex: 1;
    margin-top: 24px;
    justify-content: space-between;
}

.site-footer__list-item {
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.site-footer__list-item--muted {
    opacity: 0.5;
    font-weight: 400;
}

.site-footer__link {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
    text-decoration: underline;
}

.site-footer__logo {
    line-height: 0;
}

.site-footer__logo img {
    display: block;
    width: 154px;
    height: auto;
}

.site-footer__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    text-transform: uppercase;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px dashed #4b4b4b;
    border-radius: 100px;
    font-size: 13px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.site-footer__social:hover {
    border-color: #806b57;
    color: #806b57;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    font-weight: 300;
}

.site-footer__legal p {
    margin: 0;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 162px;
    height: 162px;
    border: 1px solid #977e65;
    border-radius: 50%;
    color: #977e65;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-footer__cta:hover {
    background: #fff;
    color: #000;
}

.site-footer__bottom {
    background: #000;
    text-align: center;
    padding: 20px 16px;
}

.site-footer__bottom a {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.7;
}

/* Responsive */

@media (max-width: 1439px) {
    .our-approach__right {
        max-width: 880px;
    }

    .our-approach__item {
        padding: 16px 24px;
    }
}

@media (max-width: 1279px) {
    .our-approach__right {
        max-width: 612px;
    }

    .news-section::before {
        height: 210px;
    }

    .news-item .site-media {
        padding-top: calc(200 / 404 * 100%);
    }

    .slider-news .swiper-slide {
        width: 404px;
    }

    .news-item__date {
        top: 10px;
        font-size: 12px;
        line-height: 14px;
    }

    .news-item__content {
        padding: 12px 24px;
    }

    .news-item__link {
        font-size: 18px;
        line-height: 20px;
    }

    .video-section__inner,
    .location__inner,
    .footer-top__inner {
        padding: 0 24px;
    }

    .video-section .sliderVideo {
        margin-top: 16px;
    }

    .video-section .sliderVideo .picture {
        aspect-ratio: 403 / 265;
    }

    .sliderVideo .swiper-slide {
        width: 403px;
    }

    .video-section .sliderVideo .picture svg {
        width: 40px;
        height: 40px;
    }

    .swiperBtnPrev,
    .swiperBtnNext {
        width: 45px;
        min-width: 45px;
        background-size: contain;
    }

    .location__body {
        margin-top: 16px;
    }

    .location__left {
        padding: 16px;
        max-width: 334px;
        gap: 8px;
    }

    .location__left strong {
        font-size: 16px;
        line-height: 20px;
    }

    .footer-top {
        padding: 32px 0;
    }

    .footer-top__inner {
        gap: 10px;
    }

    .caption--h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .footer-form {
        gap: 16px;
    }

    .footer-form .btn {
        min-height: 50px;
        min-width: 222px;
    }

    .checkblock label {
        padding-left: 24px;
    }

    .checkblock label::before,
    .checkblock label::after {
        width: 16px;
        height: 16px;
    }

    .checkblock label::after {
        background-size: 10px;
    }

    .btn {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        min-height: 54px;
        padding: 0 24px;
        gap: 16px;
    }

    .nav-list {
        gap: 18px;
    }

    .nav-list a,
    .nav-link,
    .btn-menu__label {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 0 56px 24px;
    }
}

@media (max-width: 900px) {
    .nav-left {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .nav-center {
        justify-self: start;
    }

    .nav-right {
        gap: 14px;
    }

    .nav-link {
        display: none;
    }

    .nav-divider:first-of-type {
        display: none;
    }

    .our-approach__inner {
        flex-direction: column;
        gap: 16px;
    }

    .our-approach__left {
        width: 100%;
    }

    .our-approach__right {
        max-width: 100%;
    }

    .news-section__inner {
        padding: 0 24px;
    }

    .video-section__inner,
    .location__inner,
    .footer-top__inner {
        padding: 0 24px;
    }

    .catalog-preview__inner {
        width: calc(100% - 32px);
    }

    .catalog-preview__top h2 {
        font-size: 30px;
    }

    .catalog-card p {
        font-size: 20px;
    }

    .recommended__inner {
        padding: 0 24px;
    }

    .site-footer__inner {
        padding: 56px 24px 48px;
    }

    .spotlight,
    .spotlight__inner {
        min-height: 120vh;
    }

    .spotlight__inner {
        padding: 40px 24px 36px;
    }

    .spotlight__title {
        font-size: 40px;
    }

    .spotlight__text {
        font-size: 18px;
    }

    .spotlight__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
    }

    .our-approach {
        padding: 60px 0;
    }

    .our-approach__container {
        padding: 0 24px;
    }

    .our-approach__list {
        gap: 18px;
    }

    .our-approach__item {
        padding: 13px 17px;
        gap: 9px;
    }

    .our-approach__icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        min-height: 50px;
        padding: 0 16px;
    }

    .logo img {
        width: 120px;
    }

    .hero-content {
        padding: 0 0 40px 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .catalog-preview {
        padding-top: 14px;
    }

    .catalog-preview__top h2 {
        font-size: 24px;
    }

    .catalog-preview__arrows {
        gap: 8px;
    }

    .catalog-card p {
        font-size: 18px;
    }

    .recommended {
        padding-top: 28px;
    }

    .recommended__top h2 {
        font-size: 24px;
    }

    .recommended__arrows {
        gap: 8px;
    }

    .recommended-swiper .swiper-slide,
    .product-card,
    .product-card__image-wrap {
        width: 240px;
    }

    .product-card__image-wrap {
        height: 240px;
    }

    .spotlight,
    .spotlight__inner {
        min-height: 100vh;
    }

    .spotlight__inner {
        padding: 32px 16px 28px;
    }

    .spotlight__label {
        margin-bottom: 24px;
    }

    .spotlight__title {
        font-size: 32px;
    }

    .spotlight__text {
        font-size: 16px;
    }

    .spotlight__nav {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 16px;
    }

    .our-approach {
        padding: 48px 0;
    }

    .our-approach__container {
        padding: 0 16px;
    }

    .our-approach__left {
        width: 100%;
    }

    .our-approach__list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .our-approach__item {
        padding-left: 52px;
    }

    .our-approach__icon {
        position: absolute;
        left: 16px;
        top: 12px;
        width: auto;
        height: auto;
    }

    .news-section::before {
        height: calc(50% - 15px);
    }

    .news-section__inner {
        padding: 0 16px;
    }

    .video-section__inner,
    .location__inner,
    .footer-top__inner {
        padding: 0 16px;
    }

    .news-section__head {
        padding-bottom: 12px;
    }

    .slider-news {
        margin-top: 12px;
    }

    .slider-news p {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }

    .news-item .site-media {
        padding-top: calc(200 / 330 * 100%);
    }

    .slider-news .swiper-slide {
        width: 330px;
    }

    .news-item__date {
        padding: 5px;
        font-size: 10px;
        line-height: 12px;
    }

    .news-item__content {
        padding: 12px;
    }

    .site-footer__main {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer__col--cta {
        align-self: flex-start;
    }

    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .video-section__head {
        align-items: flex-start;
    }

    .location__body {
        flex-direction: column;
    }

    .location__left {
        width: 100%;
        max-width: 100%;
    }

    .location__right {
        height: 200px;
        flex: initial;
    }

    .footer-top {
        padding: 16px 0;
    }

    .footer-form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-form .input-item,
    .footer-form .btn {
        width: 100%;
    }
}

