/* Поверх mirror-from-home.css: типографика и нейтральные утилиты (классы из site_markup_clean). */
:root {
    --font-sans: "Unbounded", Arial, Helvetica, sans-serif;
    --font-serif: "Unbounded", Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--font-sans);
}

.site-home {
    max-width: 100%;
}

.site-home .section.ce9434c3d74 {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: none !important;
    border: none !important;
}

/* Mirror: на desktop opacity:0 до скролл-анимации; без Megadis JS блоки остаются невидимыми */
@media (min-width: 992px) {
    .site-home [data-zero-opacity~="screen"] {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.site-hidden {
    display: none !important;
}

.site-page-enter {
    opacity: 0;
}

.site-page-ready {
    opacity: 1;
    transition: opacity 0.28s ease;
}

.site-page-leaving {
    opacity: 0;
    transition: opacity 0.22s ease;
}

.site-flow-text {
    flex-grow: 1;
    max-width: 100%;
}

.lead-notice {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%, 12px);
    z-index: 1200;
    max-width: min(92vw, 520px);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #3d4f3f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lead-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.lead-notice.is-error {
    background: #8a2c2c;
}

@keyframes site-header-icon-pop {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }
    70% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.site-header-icon-once {
    display: inline-block;
    animation: site-header-icon-pop 0.7s ease-out 1 both;
}

.site-header-icon-once--delayed {
    animation-delay: 0.12s;
}

/* Глобальные отступы контента как на главной (поверх container-стилей). */
main#main > .page-head,
main#main > section.section {
    padding-inline: 150px !important;
}

main#main > .about-page {
    padding-inline: 150px !important;
}

main#main > .page-head > .container,
main#main > section.section > .container {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
}

main#main > .about-page > .container {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
}

@media (max-width: 1199px) {
    main#main > .page-head,
    main#main > section.section,
    main#main > .about-page {
        padding-inline: 1rem !important;
    }
}

body.page-product main#main > .page-head,
body.page-product main#main > section.section {
    background: #f1f1f1;
}


.breadcrumb .breadcrumb__current {
    color: #b2bf53;
    font-weight: 700;
}

body.page-about main#main > article.about-page,
body.page-services main#main > article.about-page,
body.page-articles main#main > article.about-page,
body.page-gallery main#main > article.about-page,
body.page-reviews main#main > article.about-page,
body.page-faq main#main > article.about-page,
body.page-how-we-work main#main > article.about-page {
    background: #f1f1f1 !important;
}

.faq-page__list {
    margin: 1.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-page__item {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-left: 4px solid #b2bf53;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.faq-page__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 1rem 1.15rem;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.35;
    text-align: left;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-page__question:hover {
    background: #f9faf5;
}

.faq-page__question::after {
    flex-shrink: 0;
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    color: #3d4f3f;
    transition: transform 0.35s ease;
}

.faq-page__item.is-open .faq-page__question::after {
    transform: rotate(45deg);
}

.faq-page__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-page__item.is-open .faq-page__panel {
    grid-template-rows: 1fr;
}

.faq-page__panel-inner {
    overflow: hidden;
}

.faq-page__answer {
    padding: 0 1.15rem 1.15rem;
    border-top: 1px solid transparent;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.32s ease,
        transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.2s ease;
}

.faq-page__item.is-open .faq-page__answer {
    border-top-color: #eee;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.06s;
}

@media (prefers-reduced-motion: reduce) {
    .faq-page__panel,
    .faq-page__answer,
    .faq-page__question::after {
        transition: none;
    }

    .faq-page__item:not(.is-open) .faq-page__answer {
        opacity: 0;
    }

    .faq-page__item.is-open .faq-page__answer {
        opacity: 1;
        transform: none;
    }
}

.faq-page__answer p:last-child,
.faq-page__answer ul:last-child {
    margin-bottom: 0;
}

.faq-page__answer ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.faq-page__cta {
    margin-top: 2rem;
    line-height: 1.6;
    color: #444;
}

.faq-page__cta a {
    font-weight: 700;
    color: #3d4f3f;
}

/* Галерея: сетка 3×3 (8 фото) */
.gallery-page__grid {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-page__figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    background: #e8e8e8;
    aspect-ratio: 16 / 10;
}

.gallery-page__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-page__figure:hover .gallery-page__img {
    transform: scale(1.03);
}

.gallery-page__more {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

/* Отзывы: сетка 3×4 (12 карточек) */
.reviews-page__grid {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.reviews-page__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reviews-page__card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.reviews-page__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-page__card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.2rem);
    border-top: 3px solid #b2bf53;
}

.reviews-page__card-stars {
    color: #b2bf53;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.reviews-page__card-text {
    flex: 1;
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #333;
}

.reviews-page__card-name {
    font-weight: 800;
    color: #000;
}

.reviews-page__card-role {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.15rem;
}

.reviews-page__footer {
    margin-top: 2rem;
    line-height: 1.6;
    color: #444;
}

.reviews-page__footer a {
    color: #3d4f3f;
    font-weight: 600;
}

.reviews-page__gallery-link {
    display: inline-block;
    margin-left: 1rem;
}

@media (max-width: 1199px) {
    .gallery-page__grid,
    .reviews-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-page__grid,
    .reviews-page__grid {
        grid-template-columns: 1fr;
    }

    .reviews-page__gallery-link {
        display: block;
        margin: 0.75rem 0 0;
    }
}

.articles-page__list {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.articles-page__item {
    min-width: 0;
}

.articles-page__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}

.articles-page__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.articles-page__card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.articles-page__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.articles-page__card-media:hover .articles-page__card-img {
    transform: scale(1.04);
}

.articles-page__card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2vw, 1.4rem);
    border-top: 3px solid #b2bf53;
}

.articles-page__card-title {
    margin: 0 0 0.55rem;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 800;
    line-height: 1.35;
}

.articles-page__card-title a {
    color: #000;
    text-decoration: none;
}

.articles-page__card-title a:hover {
    color: #3d4f3f;
}

.articles-page__card-excerpt {
    flex: 1;
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #444;
}

.articles-page__card-more {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3d4f3f;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.articles-page__hero {
    margin: 0 0 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
}

.articles-page__hero-img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.articles-page__back {
    margin-top: 2rem;
}

.articles-page__back a {
    font-weight: 600;
    color: #3d4f3f;
}

@media (max-width: 1199px) {
    .articles-page__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .articles-page__list {
        grid-template-columns: 1fr;
    }
}

/* Страница услуг: навигация и карточки основных услуг */
.services-page__intro,
.services-page__outro {
    margin-bottom: 0;
}

.services-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.75rem 0 1.5rem;
}

.services-page__nav-link {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    text-decoration: none;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.services-page__nav-link:hover {
    border-color: #b2bf53;
    color: #3d4f3f;
    background: #f7f9ee;
}

.services-page__cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.services-page__card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-left: 4px solid #b2bf53;
    border-radius: 12px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    scroll-margin-top: 6rem;
}

.services-page__card-label {
    margin: 0 0 0.5rem;
}

.services-page__card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.15rem 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1a1a;
    background: #eef2d4;
    border-radius: 6px;
}

.services-page__card-title {
    margin: 0 0 1rem;
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: #000;
}

.services-page__card-body {
    margin: 0;
}

.services-page__card-body p:last-child,
.services-page__card-body .about-page__list:last-child {
    margin-bottom: 0;
}

.services-page__card-cta {
    display: inline-block;
    margin-top: 0.25rem;
    font-weight: 700;
    color: #3d4f3f;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.services-page__card-cta:hover {
    color: #2f3d31;
}

.services-page__outro {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

@media (min-width: 992px) {
    .services-page__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .services-page__card:nth-child(3),
    .services-page__card:nth-child(6) {
        grid-column: 1 / -1;
    }
}

/* Каталог: поля фильтра не должны выходить за рамки сайдбара. */
body.page-catalog .catalog-sidebar {
    overflow: hidden;
}

body.page-catalog .catalog-sidebar,
body.page-catalog .catalog-sidebar * {
    box-sizing: border-box !important;
}

body.page-catalog .catalog-sidebar {
    padding: 1rem !important;
}

body.page-catalog .catalog-filters {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
}

body.page-catalog .catalog-filters .form__field {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    margin: 0 0 1rem !important;
    padding: 0 !important;
    overflow: hidden;
}

body.page-catalog .catalog-filters .form__field > label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.8rem !important;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1c1f;
    letter-spacing: 0.01em;
}

body.page-catalog .catalog-filters .form__field > label::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(61, 79, 63, 0.22);
}


body.page-catalog .catalog-filters .form__field input,
body.page-catalog .catalog-filters .form__field select {
    display: block;
    inline-size: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    margin: 0 !important;
}

body.page-catalog .catalog-filters .form__field input,
body.page-catalog .catalog-filters .form__field select,
body.page-catalog #filter-category,
body.page-catalog #filter-material,
body.page-catalog #filter-sort {
    width: 100% !important;
    max-width: 100% !important;
}

/* Каталог на ПК: карточки строго по 3 в ряд (3-3-3). */
@media (min-width: 1024px) {
    body.page-catalog .catalog-results .grid-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

body.page-catalog .catalog-results .card {
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease;
}

body.page-catalog .catalog-results .card .card__media img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

body.page-catalog .catalog-results .card:hover,
body.page-catalog .catalog-results .card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 14, 13, 0.12);
    border-color: rgba(61, 79, 63, 0.28);
}

body.page-catalog .catalog-results .card:hover .card__media img,
body.page-catalog .catalog-results .card:focus-within .card__media img {
    transform: scale(1.03);
    filter: saturate(1.04);
}

body.page-catalog .catalog-results .card__actions,
body.page-catalog .catalog-results .card__action {
    margin-top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
}

body.page-catalog .catalog-results .card__price {
    margin: 0;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    justify-content: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: #3d4f3f;
    border: 1px solid #2f3d31;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    box-shadow: 0 6px 14px rgba(61, 79, 63, 0.24);
}

body.page-catalog .catalog-results .card__actions .btn,
body.page-catalog .catalog-results .card__action .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.05;
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
}

body.page-catalog .catalog-results .card__actions .btn:not(.btn--primary):hover,
body.page-catalog .catalog-results .card__action .btn:not(.btn--primary):hover {
    background: rgba(61, 79, 63, 0.12);
    border-color: rgba(61, 79, 63, 0.28);
    color: #2f3d31;
}

@media (max-width: 680px) {
    body.page-catalog .catalog-results .card__actions,
    body.page-catalog .catalog-results .card__action {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-catalog .catalog-results .card__actions .btn,
    body.page-catalog .catalog-results .card__action .btn {
        width: 100%;
    }
}

body.page-catalog .catalog-filters__actions {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* «Ещё»: выпадающий список переполненных пунктов меню */
/* Одна строка: иначе пункты переносятся и scrollWidth не показывает переполнение */
.hor-menu.flex-menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    /* в зеркале justify-content:flex-end — первая ссылка «Главная» оказывается за левым краем при overflow */
    justify-content: flex-start !important;
}

/* В шапке пунктам меню нельзя растягиваться, иначе «Еще» появляется слишком рано. */
.hor-menu .site-flow-text {
    flex-grow: 0 !important;
}

.hor-menu.flex-menu .hor-menu__list {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex: 1 1 auto !important;
    align-items: center;
    min-width: 0 !important;
    max-width: 100%;
    overflow: visible !important;
    justify-content: flex-start !important;
}

.hor-menu.flex-menu .hor-menu__more_list {
    position: relative;
    flex: 0 0 auto;
}

/* колонка с меню в шапке — иначе flex не сжимает и пункты «вылезают» */
.div:has(> .hor-menu.flex-menu) {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
}

/* Ряд логотип + меню + кнопка: меню занимает всё доступное место. */
.div.c7e7d8fad9e {
    display: flex !important;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.div.c7e7d8fad9e > .div.ca208ecfed3 {
    flex: 0 0 auto;
}

.div.c7e7d8fad9e > .div.c3a211ddc36 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
}

.div.c7e7d8fad9e > .div.c3a211ddc36 > .hor-menu.flex-menu {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.div.c7e7d8fad9e > .div.c3a211ddc36 > .link-universal.cf09a85f161 {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Зеркальная шапка: main.css вешает бежевый sticky .site-header — убираем, остаются карточки mirror */
.site-header.section.c0874b2302e {
    position: relative !important;
    top: auto !important;
    z-index: 10;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

@media (min-width: 901px) {
    .site-header.section.c0874b2302e .site-header-contacts.div.c1e52a4553b {
        background-color: rgba(var(--color-ixb0f55sg), 0.12) !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }

    .site-header.section.c0874b2302e .site-header-brand.div.c7e7d8fad9e {
        background-color: #fff !important;
    }
}

/* Логотип: десктоп — только картинка */
.site-header-logo__meta,
.site-header-mobile-call {
    display: none;
}

.site-header-logo__link {
    display: inline-block;
}

.site-header-logo__fit,
.site-header-logo__img {
    display: block;
}

/* Выпадающий список под «О нас» (пункты — отдельные страницы) */
.hor-menu.flex-menu .hor-menu__item.has-child {
    position: relative;
    z-index: 55;
}

.hor-menu.flex-menu .hor-menu__item.has-child > ul.site-about-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    z-index: 70;
    min-width: 220px;
    max-width: min(280px, 92vw);
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hor-menu.flex-menu .hor-menu__item.has-child:hover > ul.site-about-submenu,
.hor-menu.flex-menu .hor-menu__item.has-child:focus-within > ul.site-about-submenu {
    display: block;
}

.hor-menu.flex-menu .hor-menu__item.has-child > ul.site-about-submenu > li {
    display: block;
    width: 100%;
}

.hor-menu.flex-menu .hor-menu__item.has-child > ul.site-about-submenu .hor-menu__link {
    display: block;
    padding: 0.55rem 1rem;
    white-space: nowrap;
}

.hor-menu.flex-menu .hor-menu__item.has-child > ul.site-about-submenu .hor-menu__link:hover {
    background: #f3f4ef;
}

.hor-menu.flex-menu .hor-menu__more_list > li > .hor-menu__sub_list {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    z-index: 60;
    min-width: 220px;
    max-width: min(320px, 90vw);
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.hor-menu.flex-menu .hor-menu__more_list > li > .hor-menu__sub_list > li {
    display: block;
    width: 100%;
}

.hor-menu.flex-menu .hor-menu__more_list > li > .hor-menu__sub_list .hor-menu__link {
    display: block;
    padding: 0.55rem 1rem;
}

.hor-menu.flex-menu .hor-menu__more_list > li > .hor-menu__sub_list .hor-menu__sub_list {
    display: none !important;
}

.site-mobile-nav__head,
.site-mobile-nav__foot,
.site-mobile-nav__body {
    display: none;
}

@media (min-width: 901px) {
    .hor-menu.flex-menu .site-mobile-nav__body {
        display: contents;
    }
}

@media (max-width: 900px) {
    .hor-menu.flex-menu .site-mobile-nav__body {
        display: block;
    }
    .div.c7e7d8fad9e:not(.site-header-brand) > .div.c3a211ddc36 {
        grid-template-columns: minmax(0, 1fr) auto !important;
        column-gap: 0.55rem;
    }

    .div.c7e7d8fad9e > .div.c3a211ddc36 > .link-universal.cf09a85f161 {
        display: none !important;
    }

    .site-mobile-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0.9rem;
        right: 0.9rem;
        margin-left: 0;
        z-index: 92;
        background: #fff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    }

    .site-header-brand .hor-menu.flex-menu[data-site-nav] {
        position: fixed !important;
        inset: 0 0 0 auto !important;
        width: min(86vw, 360px) !important;
        min-width: min(86vw, 360px) !important;
        max-width: min(86vw, 360px) !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        background: #fff !important;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
        transform: translateX(102%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.2s ease;
        overflow: hidden;
        z-index: 80;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
    }

    .site-header-brand .hor-menu.flex-menu[data-site-nav].is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    body.site-mobile-nav-open .about-page__fab {
        opacity: 0;
        pointer-events: none;
    }

    .site-mobile-nav__head,
    .site-mobile-nav__foot {
        flex: 0 0 auto;
        flex-shrink: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        align-self: stretch;
    }

    .site-mobile-nav__head {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 1rem 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-mobile-nav__foot {
        display: block;
    }

    .site-mobile-nav__logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 160px;
        margin: 0 auto;
    }

    .site-mobile-nav__logo-img {
        display: block;
        width: auto;
        max-width: 140px;
        height: auto;
        max-height: 56px;
        margin: 0 auto;
        object-fit: contain;
        object-position: center center;
    }

    .site-mobile-nav__body {
        flex: 1 1 auto;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0;
        min-width: 0;
        box-sizing: border-box;
        align-self: stretch;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0.35rem 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .site-mobile-nav__foot {
        padding: 0.85rem 1rem max(1.1rem, env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: #f7f8f3;
    }

    .site-mobile-nav__call {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: #b2bf53;
        color: #1f2228;
        font-size: 0.9rem;
        font-weight: 800;
        text-decoration: none;
        text-align: center;
    }

    .site-mobile-nav__social {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        margin-top: 0.75rem;
        width: 100%;
    }

    .site-mobile-nav__social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #3d4f3f;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .site-mobile-nav__social-link:hover {
        background: #eef2d4;
        border-color: rgba(61, 79, 63, 0.25);
        color: #2f3d31;
    }

    .site-mobile-nav__social-link svg {
        display: block;
        width: 22px;
        height: 22px;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__more_list,
    .hor-menu.flex-menu[data-site-nav] .site-hidden-desktop-overflow {
        display: none !important;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__item {
        width: 100%;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__link,
    .hor-menu.flex-menu[data-site-nav] .hor-menu__more_link {
        display: block;
        padding: 0.75rem 0.2rem;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__item.has-child > ul.site-about-submenu,
    .hor-menu.flex-menu[data-site-nav] .hor-menu__more_list > li > .hor-menu__sub_list {
        position: static;
        display: block !important;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        min-width: 0;
        max-width: none;
        padding: 0 0 0 0.8rem;
        margin: 0 0 0.35rem;
        background: transparent;
    }

    .hor-menu.flex-menu[data-site-nav] .hor-menu__item.has-child > ul.site-about-submenu .hor-menu__link,
    .hor-menu.flex-menu[data-site-nav] .hor-menu__more_list > li > .hor-menu__sub_list .hor-menu__link {
        padding: 0.5rem 0.2rem;
    }

    /* Мобильная шапка: логотип + подпись, меню только в выезжающей панели */
    .site-header.section.c0874b2302e {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        margin-bottom: 0.35rem;
    }

    .site-header-brand.div.c7e7d8fad9e {
        order: 1;
        position: relative;
        display: block !important;
        width: 100%;
        padding: 0.65rem 3.35rem 0.65rem 0.65rem;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden;
    }

    .site-header-brand.div.c7e7d8fad9e > .div.c3a211ddc36 {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        overflow: visible;
        border: 0;
        z-index: 81;
    }

    .site-header-brand .hor-menu.flex-menu[data-site-nav]:not(.is-open) .hor-menu__list,
    .site-header-brand .hor-menu.flex-menu[data-site-nav]:not(.is-open) .hor-menu__more_list {
        display: none !important;
    }

    .site-header-logo.div.ca208ecfed3 {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .site-header-logo__link {
        display: block !important;
        flex: 0 1 auto;
        min-width: 0;
        text-decoration: none;
    }

    .site-header-logo__fit {
        flex: 0 0 auto;
        width: 88px !important;
        height: auto !important;
        max-width: 88px !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
        overflow: hidden;
    }

    .site-header-logo__img {
        display: block;
        width: 100% !important;
        height: auto !important;
        max-width: 88px !important;
        max-height: 64px !important;
        object-fit: contain !important;
        object-position: left top;
    }

    .site-header-mobile-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        align-self: center;
        margin: 0;
        margin-left: auto;
        padding: 0.45rem 0.75rem;
        border-radius: 999px;
        background: #b2bf53;
        color: #1f2228;
        font-size: 0.72rem;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
    }

    .site-header-contacts.div.c1e52a4553b {
        order: 2;
        border-radius: 14px;
        overflow: hidden;
    }

    .site-header-contacts .div.cfda34f217a {
        padding: 0.65rem 0.75rem !important;
    }

    .site-header-contacts .div.c6819e2402c {
        padding: 0 0.75rem 0.65rem !important;
    }

    .site-header-contacts .svg_image {
        flex-shrink: 0;
    }

    .site-header-contacts .text,
    .site-header-contacts .site-flow-text {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
    }

    .site-header-contacts .link-universal.ca222a86169 {
        margin-top: 0.35rem;
    }
}

@media (max-width: 480px) {
    .site-header-brand.div.c7e7d8fad9e {
        padding-right: 3.1rem;
    }

    .site-header-logo__fit {
        width: 76px !important;
        max-width: 76px !important;
    }

    .site-header-logo__img {
        max-width: 76px !important;
        max-height: 56px !important;
    }

    .site-header-mobile-call {
        padding: 0.4rem 0.65rem;
        font-size: 0.68rem;
    }
}

.ux-map.c7e82accc3c {
    position: relative;
    overflow: hidden;
}

.map-info-card {
    position: absolute;
    left: 1.1rem;
    top: 3.2rem;
    bottom: auto;
    z-index: 2;
    width: min(440px, calc(100% - 2.2rem));
    min-height: 230px;
    padding: 1.15rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.09);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
}

.map-info-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.22rem;
    font-weight: 800;
    color: #1f2228;
}

.map-info-card__row {
    margin: 0.62rem 0;
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.4;
    color: #2f333a;
}

.map-info-card__row a {
    color: #2f3d31;
    text-decoration: none;
    font-weight: 600;
}

.map-info-card__row a:hover {
    text-decoration: underline;
}

/* Подпись студии под блоком «Написать нам» / соцсети в футере */
.section.cc862714d07 .site-footer-credit {
    display: block;
    margin: 0.75rem auto 0;
    padding: 0 1rem 0.25rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(80, 80, 80, 0.85);
}

.site-footer-credit__heart {
    display: inline-block;
    margin: 0 0.12em;
    color: #c45c5c;
    font-size: 0.95em;
    vertical-align: baseline;
}

.site-footer-credit__link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(80, 80, 80, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-credit__link:hover {
    color: #2f333a;
    border-bottom-color: rgba(47, 51, 58, 0.45);
}

body.page-catalog .pagination a {
    transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

body.page-catalog .pagination a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(15, 14, 13, 0.1);
}

body.page-catalog .pagination a.is-pressing {
    transform: scale(0.94);
    box-shadow: 0 2px 5px rgba(15, 14, 13, 0.12);
}

@media (max-width: 991px) {
    .ux-map.c7e82accc3c {
        overflow: visible;
    }

    .map-info-card {
        display: none;
        position: static;
        margin: 0.8rem 0.65rem 0;
        width: calc(100% - 1.3rem);
        min-height: 0;
        padding: 0.85rem 0.9rem;
    }
}

body.site-modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(21, 22, 26, 0.65);
}

@keyframes lead-modal-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lead-modal-dialog-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-modal__dialog {
    position: relative;
    max-width: 440px;
    width: min(440px, calc(100vw - 2rem));
    margin: 0;
    background: #f7f7f8;
    border-radius: 1.5rem;
    padding: 1.65rem 1.55rem 1.4rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    z-index: 1;
}

.lead-modal:not(.site-hidden) .lead-modal__backdrop {
    animation: lead-modal-fade-in 0.28s ease forwards;
}

.lead-modal:not(.site-hidden) .lead-modal__dialog {
    animation: lead-modal-dialog-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lead-modal__close {
    position: absolute;
    top: 0.8rem;
    right: 0.85rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lead-modal__close::before,
.lead-modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.45rem;
    height: 1.75px;
    background: #21252e;
    transform-origin: center;
}

.lead-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal__title {
    margin: 0 0 0.45rem;
    color: #4b4d53;
    font-size: clamp(1.6rem, 3.4vw, 2.45rem);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.lead-modal__subtitle {
    margin: 0 0 0.95rem;
    color: #818288;
    font-size: clamp(0.9rem, 1.55vw, 1.12rem);
    line-height: 1.2;
    max-width: 34rem;
}

.lead-modal__context {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem;
    border: 1px solid #d6d7d8;
    border-radius: 0.8rem;
    background: #fff;
    margin-bottom: 0.8rem;
}

.lead-modal__context-img {
    width: 56px;
    height: 56px;
    border-radius: 0.5rem;
    object-fit: cover;
    flex: 0 0 auto;
}

.lead-modal__context-title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.25;
    font-weight: 700;
    color: #2a2d34;
}

.lead-modal__form .form__field {
    margin-bottom: 0.65rem;
}

.lead-modal__form input {
    width: 100%;
    border: 2px solid #d6d7d8;
    border-radius: 0.8rem;
    background: #f7f7f8;
    color: #1f2228;
    font-size: clamp(0.95rem, 1.4vw, 1.06rem);
    line-height: 1.15;
    font-weight: 600;
    padding: 0.7rem 0.95rem;
    outline: none;
}

.lead-modal__form input::placeholder {
    color: #9a9ba0;
}

.lead-modal__form input:focus {
    border-color: #a6b84d;
}

.lead-modal__submit {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 1.6rem;
    padding: 0.62rem 1.5rem;
    min-width: 0;
    width: auto;
    max-width: none;
    background: #b0c34f;
    color: #fff;
    font-size: clamp(0.95rem, 1.7vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.lead-modal__submit:hover {
    filter: brightness(0.97);
}

@media (max-width: 640px) {
    .lead-modal {
        align-items: flex-start;
        padding: 0.5rem;
    }

    .lead-modal__dialog {
        width: calc(100% - 0.75rem);
        margin: 0.5rem auto;
        border-radius: 1rem;
        padding: 1.15rem 0.95rem 1rem;
        max-height: calc(100vh - 1rem);
    }

    .lead-modal__title {
        white-space: normal;
    }
}

/* Сетка категорий продукции (главная, секция 02) — как референс: 4×2, фото + две строки подписи */
/* Родитель .c608f44cca8 — column flex + align-items:center; без stretch блок сжимается по контенту */
.product-cat-grid-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    text-align: left;
}

.product-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    column-gap: clamp(1.5rem, 3vw, 3rem);
    row-gap: clamp(2rem, 3.5vw, 3.5rem);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.5rem 0 1rem;
    box-sizing: border-box;
}

.product-cat-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-cat-card:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

.product-cat-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    flex: 0 0 auto;
    height: clamp(200px, 22vw, 280px);
    min-height: clamp(200px, 22vw, 280px);
    margin-bottom: clamp(0.85rem, 1.6vw, 1.35rem);
    box-sizing: border-box;
}

.product-cat-card__media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(78%, 204px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.product-cat-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}

.product-cat-card__caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    flex: 0 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.product-cat-card__eyebrow {
    font-size: clamp(0.62rem, 0.85vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9d9f;
    line-height: 1.25;
}

.product-cat-card__title {
    margin-top: 0.28rem;
    font-size: clamp(0.78rem, 1.05vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1c1f;
    line-height: 1.2;
}

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

@media (max-width: 479px) {
    .section.c5d22ae0fbc .div.c608f44cca8,
    .section.c5d22ae0fbc .product-cat-grid-wrap,
    .section.c5d22ae0fbc .product-cat-grid {
        height: auto !important;
        min-height: 0 !important;
    }

    .product-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 0.85rem;
        row-gap: 1.25rem;
    }

    .product-cat-card__media {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 0;
        background: #f1f1f1;
    }

    .product-cat-card__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .product-cat-grid > .product-cat-card:last-child:nth-child(odd) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

/* Главный экран: увеличить правое изображение на телефоне */
@media (max-width: 767px) {
    .product-cat-card {
        display: grid;
        width: 100%;
    }

    .product-cat-card__media,
    .product-cat-card__caption {
        grid-area: 1 / 1;
    }

    .product-cat-card__media {
        position: relative;
        margin-bottom: 0;
        overflow: hidden;
        width: 100%;
        padding: 0 !important;
        aspect-ratio: 4 / 3;
        height: auto !important;
        min-height: 0 !important;
        background: #f1f1f1;
    }

    .product-cat-card__media::after {
        height: min(74%, 174px);
    }

    .product-cat-card__caption {
        align-self: end;
        padding: 0.65rem 0.7rem 0.75rem;
        position: relative;
        z-index: 2;
    }

    .product-cat-card__eyebrow {
        color: rgba(255, 255, 255, 0.88);
    }

    .product-cat-card__title {
        color: #fff;
    }

    .product-cat-card__img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    #ir3igkgc7_0 {
        width: min(72vw, 320px) !important;
        max-width: 100% !important;
    }

    #iriqhjl5h_0 {
        width: 100% !important;
        height: auto !important;
    }

    #il11hljf7_0 {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (hover: hover) and (pointer: fine) {
    .product-cat-card:hover .product-cat-card__img {
        transform: scale(1.04);
    }

    .product-cat-card:hover .product-cat-card__media::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.08) 100%);
    }
}

.site-home .section.home-works,
.site-home .section.cac9451bbc6 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-top: 5% !important;
    padding-bottom: 5% !important;
    overflow-x: hidden;
    overflow-y: hidden;
}

.site-home .section.home-works {
    background-image: var(--image-izrv9x7gp);
    background-repeat: no-repeat;
    background-position: left -346px top -56px;
    background-size: 806px auto;
}

.site-home .section.home-works > .c369952bcac,
.site-home .section.cac9451bbc6 > .c369952bcac {
    width: 100% !important;
    max-width: 1500px !important;
    position: relative;
}

@media (max-width: 991px) {
    .site-home .section.home-works {
        padding-left: 3% !important;
        padding-right: 3% !important;
        background-image: var(--image-ityyaii8p), linear-gradient(rgba(var(--color-iwzyg8x78), 0.08) 0%, rgba(var(--color-iwzyg8x78), 0.08) 100%), linear-gradient(rgba(var(--color-ih4egpp5c), 0.96) 0%, rgba(var(--color-ih4egpp5c), 0.96) 100%), var(--image-i8y4drf9c) !important;
        background-color: transparent !important;
        background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
        background-position: center center, left 0 top 0, left 0 top 0, center center !important;
        background-size: auto, auto, auto, cover !important;
    }

    .site-home .section.home-works .blocklist__item_title,
    .site-home .section.home-works .heading,
    .site-home .section.home-works .text,
    .site-home .section.home-works .cd7065b813f,
    .site-home .section.home-works .ca5373469c9,
    .site-home .section.home-works .c3710a380d6 {
        color: rgba(var(--color-i87h6mdn0), 1) !important;
    }
}

@media (max-width: 479px) {
    .site-home .section.home-works {
        padding-top: 10% !important;
        padding-bottom: 10% !important;
        background-image: none, linear-gradient(rgba(var(--color-ihn53zqut), 0.08) 0%, rgba(var(--color-ihn53zqut), 0.08) 100%), linear-gradient(rgba(var(--color-ic85fdsti), 0.96) 0%, rgba(var(--color-ic85fdsti), 0.96) 100%), var(--image-iifajkabg) !important;
        background-color: transparent !important;
        background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
        background-position: center center, left 0 top 0, left 0 top 0, center center !important;
        background-size: auto, auto, auto, cover !important;
    }
}

.site-home .section.home-works .home-works__marquee {
    overflow: hidden;
    width: 100%;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.home-works__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: home-works-scroll 36s linear infinite;
}

.home-works__item {
    display: block;
    width: clamp(300px, 36vw, 480px);
    border-radius: 1rem;
    overflow: hidden;
}

.home-works__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.home-works__item:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.home-works__marquee:hover .home-works__track {
    animation-play-state: paused;
}

@keyframes home-works-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.625rem));
    }
}

@media (max-width: 991px) {
    .site-home .section.home-works .home-works__marquee {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scrollbar-width: thin;
    }

    .site-home .section.home-works .home-works__track {
        animation: none !important;
        transform: none !important;
        width: max-content;
    }

    .site-home .section.home-works .home-works__item {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .home-works__track {
        gap: 0.85rem;
    }

    .home-works__item {
        width: min(85vw, 380px);
    }

    .home-works__item img {
        min-height: 200px;
    }
}

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

    .site-home .section.home-works .home-works__marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* «О нас» — та же ширина, что у каталога: секция с отступами, контент max-width 1500px по центру */
.site-home .section.cd605ec37ec {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
}

.site-home .section.cd605ec37ec .c61b007ca06,
.site-home .section.cd605ec37ec .c257a507f8f {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

.site-home .section.cd605ec37ec .c257a507f8f {
    margin-top: 0.5rem !important;
    column-gap: clamp(1rem, 3vw, 2.5rem);
    align-items: stretch !important;
}

.site-home .section.cd605ec37ec .c0816aa5418,
.site-home .section.cd605ec37ec .c6133dde2ac {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.site-home .section.cd605ec37ec .cd49bf4f759,
.site-home .section.cd605ec37ec .c091341e3d8 {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    padding-left: 0 !important;
}

.site-home .section.cd605ec37ec .cc7e5d48a76 {
    margin-bottom: 0 !important;
    padding: 0.15rem 0.5rem 0 !important;
}

.site-home .section.cd605ec37ec .c6133dde2ac {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    align-self: stretch !important;
    min-height: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.site-home .section.cd605ec37ec .c6133dde2ac .ca361047e3e {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
    flex-shrink: 0 !important;
}

.site-home .section.cd605ec37ec .c091341e3d8 {
    align-self: stretch !important;
}

/* Услуги справа в «О нас» — только десктоп */
.site-home .section.cd605ec37ec .home-about-services {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding-left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.site-home .section.cd605ec37ec .home-about-services .c30e0327703 {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin-bottom: 0.75rem !important;
    padding: 0.45rem 1rem !important;
    border-radius: 999px;
    border: 1px solid rgba(61, 79, 63, 0.35);
    background: rgba(255, 255, 255, 0.85);
    color: #2a3328;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    box-sizing: border-box;
}

.site-home .section.cd605ec37ec .home-about-services .c30e0327703 .site-flow-text,
.site-home .section.cd605ec37ec .home-about-services .c30e0327703 span {
    color: inherit;
    font-weight: inherit;
}

.site-home .section.cd605ec37ec .home-about-services__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    width: 100% !important;
    margin-top: 0 !important;
}

.site-home .section.cd605ec37ec .home-about-services__list .list__item {
    width: 100% !important;
}

.site-home .section.cd605ec37ec .home-about-services__link {
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: color 0.2s ease;
}

.site-home .section.cd605ec37ec .home-about-services__link:hover {
    color: #3d4f3f !important;
}

.site-home .section.cd605ec37ec .home-about-services__link .ce0f2c85c22 {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.45;
    font-weight: 500;
}

@media (min-width: 768px) {
    .site-home .section.cd605ec37ec .home-about-services {
        display: flex !important;
        padding-left: clamp(1.25rem, 2.5vw, 2.5rem) !important;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .site-home .section.cd605ec37ec .c61b007ca06,
    .site-home .section.cd605ec37ec .c257a507f8f {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        row-gap: 0.75rem;
        align-items: stretch !important;
    }

    .site-home .section.cd605ec37ec .c0816aa5418,
    .site-home .section.cd605ec37ec .cd49bf4f759,
    .site-home .section.cd605ec37ec .c6133dde2ac,
    .site-home .section.cd605ec37ec .c091341e3d8 {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .site-home .section.cd605ec37ec .c6133dde2ac {
        min-height: 0 !important;
        align-self: auto !important;
        margin-bottom: 0.75rem !important;
    }

    .site-home .section.cd605ec37ec .c6133dde2ac .ca361047e3e {
        margin-top: 1rem !important;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .site-home .section.cd605ec37ec .c091341e3d8 {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }

    .site-home .section.cd605ec37ec .cd27ed59e71 {
        width: 100% !important;
        height: auto !important;
        min-height: 140px;
        max-height: 200px;
        margin-bottom: 1rem !important;
    }

    .site-home .section.cd605ec37ec .cc71286b93c {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-top: 0 !important;
        position: relative !important;
    }

    .site-home .section.cd605ec37ec .home-about-services,
    .site-home .section.cd605ec37ec .cdf72ac1d0a {
        display: none !important;
    }

    .site-home .section.cd605ec37ec .cc71286b93c .c00efab8183 {
        display: none !important;
    }

    .site-home .section.cd605ec37ec .home-about-stats-row {
        flex-wrap: wrap !important;
        row-gap: 0.5rem !important;
    }

    .site-home .section.cd605ec37ec .home-about-stats-row > .c557624265d,
    .site-home .section.cd605ec37ec .home-about-stats-row > .home-about-stat {
        flex: 1 1 calc(33.333% - 0.35rem) !important;
        padding: 0.5rem 0.4rem !important;
    }

    .site-home .section.cd605ec37ec .home-about-stats-row .cbb17347994,
    .site-home .section.cd605ec37ec .home-about-stats-row .c85aa480e98 {
        white-space: normal !important;
        font-size: 0.75rem !important;
    }
}

/* Три счётчика на всю ширину колонки (как сетка преимуществ ниже) */
.site-home .section.cd605ec37ec .home-about-stats-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: clamp(0.5rem, 1.5vw, 1rem) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.site-home .section.cd605ec37ec .home-about-stats-row > .c557624265d,
.site-home .section.cd605ec37ec .home-about-stats-row > .home-about-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0.65rem 0.75rem !important;
    box-sizing: border-box !important;
}

.site-home .section.cd605ec37ec .home-about-stats-row .cbb17347994 {
    font-size: clamp(1.1rem, 2.2vw, 1.75rem) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

.site-home .section.cd605ec37ec .home-about-stats-row .c85aa480e98 {
    font-size: clamp(0.7rem, 1.4vw, 0.95rem) !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
}

/* Блок преимуществ — 8 пунктов, 2 колонки, карточки с выделением */
.site-home .section.cd605ec37ec .c4703aa3488 {
    width: 100% !important;
    max-width: 100% !important;
}

.site-home .section.cd605ec37ec .c4703aa3488 .cb735f699d9 {
    width: 100% !important;
    height: auto !important;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__list.c636ff114aa {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    height: auto !important;
    align-items: stretch !important;
    column-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item__outer.c58d3c9ae9f {
    display: flex !important;
    flex-shrink: 0 !important;
    width: calc(50% - 0.375rem) !important;
    max-width: calc(50% - 0.375rem) !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item.c26c2d8eeec {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    box-sizing: border-box !important;
    padding: 0.85rem 0.95rem !important;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(61, 79, 63, 0.14);
    min-height: 4.75rem;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item .svg_image.cfbf8b77570 {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    min-width: 3.5rem !important;
    margin-right: 0.85rem !important;
    overflow: visible !important;
    border-radius: 0.5rem;
    background: rgba(61, 79, 63, 0.09);
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item .svg_image.cfbf8b77570 svg {
    width: 2.4rem !important;
    height: 2.4rem !important;
    max-width: 2.4rem !important;
    max-height: 2.4rem !important;
    flex-shrink: 0 !important;
    fill: #3d4f3f;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item_title.c4d89e6b26d {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    align-self: center !important;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.4;
    font-weight: 600;
    color: #2a3328;
}

.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item_title .site-flow-text,
.site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item_title span {
    display: block;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .site-home .section.cd605ec37ec .c4703aa3488 .blocklist__list.c636ff114aa {
        column-gap: 0.5rem !important;
        row-gap: 0.5rem !important;
    }

    .site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item__outer.c58d3c9ae9f {
        width: calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
    }

    .site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item.c26c2d8eeec {
        padding: 0.7rem 0.75rem !important;
        min-height: 4.25rem;
    }

    .site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item .svg_image.cfbf8b77570 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        min-width: 2.5rem !important;
        margin-right: 0.65rem !important;
    }

    .site-home .section.cd605ec37ec .c4703aa3488 .blocklist__item .svg_image.cfbf8b77570 svg {
        width: 1.75rem !important;
        height: 1.75rem !important;
        max-width: 1.75rem !important;
        max-height: 1.75rem !important;
    }
}

/* Бегущая строка преимуществ (section-04): текст в один ряд на мобильных */
.site-home .section.cbf785dfdef {
    overflow: hidden;
}

.site-home .section.cbf785dfdef .cdada828995 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.site-home .section.cbf785dfdef .blocklist__list.c5a90bc71e2 {
    align-items: center;
}

.site-home .section.cbf785dfdef .blocklist__item__outer.c5a85760747 {
    min-width: 0;
    flex-shrink: 0;
}

.site-home .section.cbf785dfdef .blocklist__item.ced21bdcc64 {
    min-width: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.site-home .section.cbf785dfdef .heading.c7f382364c3,
.site-home .section.cbf785dfdef .heading.c7f382364c3 .text-block-wrap-div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

@media (max-width: 767px) {
    .site-home .section.cbf785dfdef {
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }

    /* Каждый пункт — по ширине текста в одну строку, лента прокручивается */
    .site-home .section.cbf785dfdef .blocklist__item__outer.c5a85760747 {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        flex-basis: auto !important;
    }

    .site-home .section.cbf785dfdef .blocklist__item.ced21bdcc64 {
        width: max-content;
        max-width: none;
        margin: 0.35rem 0.65rem !important;
        padding: 0;
    }

    .site-home .section.cbf785dfdef .blocklist__item .svg_image.c2ad8c22d1b {
        width: 2.25rem !important;
        height: 2.25rem !important;
        min-width: 2.25rem !important;
        margin-right: 0.45rem !important;
        padding: 0.4rem !important;
        flex-shrink: 0;
    }

    .site-home .section.cbf785dfdef .blocklist__item .svg_image.c2ad8c22d1b svg {
        width: 1.15rem !important;
        height: 1.15rem !important;
        max-width: 1.15rem !important;
        max-height: 1.15rem !important;
    }

    .site-home .section.cbf785dfdef .heading.c7f382364c3 {
        flex: 0 1 auto;
        width: auto;
        max-width: none;
        font-size: clamp(0.6875rem, 3.2vw, 0.875rem) !important;
        line-height: 1.2 !important;
        font-weight: 600;
    }
}

@media (max-width: 399px) {
    .site-home .section.cbf785dfdef .blocklist__item.ced21bdcc64 {
        margin: 0.3rem 0.5rem !important;
    }

    .site-home .section.cbf785dfdef .blocklist__item .svg_image.c2ad8c22d1b {
        width: 2rem !important;
        height: 2rem !important;
        min-width: 2rem !important;
        margin-right: 0.35rem !important;
        padding: 0.35rem !important;
    }

    .site-home .section.cbf785dfdef .blocklist__item .svg_image.c2ad8c22d1b svg {
        width: 1rem !important;
        height: 1rem !important;
        max-width: 1rem !important;
        max-height: 1rem !important;
    }

    .site-home .section.cbf785dfdef .heading.c7f382364c3 {
        font-size: clamp(0.625rem, 2.9vw, 0.8125rem) !important;
    }
}

/* «Почему выбирают нас» и «Наши работы» — двухколоночный intro на desktop */
@media (min-width: 992px) {
    .site-home .section.cac9451bbc6 .c48d77d5745,
    .site-home .section.home-works .c48d77d5745 {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .site-home .section.cac9451bbc6 .c0da50ff8b2,
    .site-home .section.cac9451bbc6 .c044bfedbbf,
    .site-home .section.home-works .c0da50ff8b2,
    .site-home .section.home-works .c044bfedbbf {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: 50%;
    }

    .site-home .section.cac9451bbc6 .c4138996f98 {
        width: 100% !important;
        margin-top: 2rem;
    }

    .site-home .section.cac9451bbc6 .blocklist__list.c7b6b543a56 {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .site-home .section.cac9451bbc6 .blocklist__item__outer.cdcc1f8c4d8 {
        width: 25% !important;
        max-width: 25% !important;
        flex: 0 0 25% !important;
        box-sizing: border-box;
    }

    .site-home .section.cac9451bbc6 .blocklist__item.ca2d7c6a77d {
        height: 100%;
        box-sizing: border-box;
    }

    .site-home .section.cac9451bbc6 .heading.ca5373469c9,
    .site-home .section.home-works .heading.ca5373469c9 {
        font-size: clamp(1.5rem, 2.5vw, 2.25rem) !important;
        line-height: 1.2 !important;
    }
}

/* Отзывы section-09: desktop — 2 карточки в blocklist, mobile — отдельный слайдер */
@media (min-width: 992px) {
    .site-home .section.cc3b8518937 .reviews-mobile-slider {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .site-home .section.cc3b8518937 .cc8f0db5c04 {
        display: none !important;
    }

    .site-home .section.cc3b8518937 .c60883cf9e2 {
        display: none !important;
    }

    .site-home .section.cc3b8518937 .cd2a9bf47f0 {
        display: none !important;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.75rem;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 1rem calc(50% - 50vw) 0;
        padding: 0 0.75rem 0.5rem;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card {
        flex: 0 0 calc(100vw - 1.5rem) !important;
        width: calc(100vw - 1.5rem) !important;
        min-width: calc(100vw - 1.5rem) !important;
        max-width: calc(100vw - 1.5rem) !important;
        box-sizing: border-box;
        border-radius: 1.2rem;
        background: #fff;
        padding: 0;
        overflow: hidden;
        border: 1px solid #e2e2e2;
        scroll-snap-align: center;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__photo {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__stars,
    .site-home .section.cc3b8518937 .reviews-mobile-card__text,
    .site-home .section.cc3b8518937 .reviews-mobile-card__name,
    .site-home .section.cc3b8518937 .reviews-mobile-card__role {
        padding-inline: 1rem;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__stars {
        padding-top: 0.85rem;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__role {
        padding-bottom: 1rem;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__stars {
        color: #b5c65b;
        font-weight: 700;
        letter-spacing: 0.15em;
        margin-bottom: 0.65rem;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__text {
        margin: 0 0 0.9rem;
        color: #2d2f35;
        line-height: 1.38;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__name {
        font-weight: 700;
        color: #1f2228;
        margin-bottom: 0.2rem;
    }

    .site-home .section.cc3b8518937 .reviews-mobile-card__role {
        color: #848a92;
    }
}
