

/* Start:/local/assets-main-2026/css/style.css?178038544917419*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Скрыть попап до загрузки presentation-block.css во избежание мелькания */
.form-success-popup { opacity: 0; pointer-events: none; }

/* html {
} */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: white;
    font-family: "PP Pangram Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    background-color: #2B2926;
}


:root {
    --brown: #B99673;
    --light-brown: #FFD581;
    --brown-hover: #A37E58;
    --gray: #EEEEEE;
    --gray-hover: #EAEAEA;
    --green: #223A3A;
    --light-green: #5C7064;
    --radius: 40px;
}

a {
    text-decoration: none;
    color: white;

}

h1 {
    font-family: 'Playfair Regular';
    font-size: 192px;
    font-weight: 400;
    line-height: 240px;
    letter-spacing: -0.025em;
}

.button {
    font-family: 'PP Pangram Sans';
    padding: 12px 20px;
    color: white;
    background-color: #386B7C;
    border: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.button:hover {
    background-color: #2e5a69;
}

.button-white {
    background-color: white;
    color: #000;
}

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

.button-black{
    background-color: #000;
    color: white;
}

.container {
    max-width: 1328px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.center {
    padding-left: calc(50% - 720px);
    padding-right: calc(50% - 720px);
    overflow-x: clip;
}



.icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: transparent;
}


.custom-line {
    width: calc(100% - 128px) !important;
    height: 1px !important;
    border: none !important;
    background-color: #404040 !important;
    margin: 1px auto !important;
}

.gap10 {
    gap: 6px 12px;
}

.inputBlock {
    position: relative;
}

.inputBlock .errorText {
    position: absolute;
    top: calc(100% + 6px);
    font-size: 12px;
    line-height: 12px;
    color: #FF3333;
}

/* Ошибка инпута */
.inputBlock.error .errorBlock,
.searchInupt.error .errorBlock {
    transition: all 0.3s ease;
    opacity: 1;
}

.errorBlock {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    opacity: 0;
}

input::placeholder {
    font-family: PP Pangram Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.24px;
    color: white;
}

/* Ошибка инпута END */

/* Стили для состояния :checked */
.checkbox-label {
    cursor: pointer;
    font-family: PP Pangram Sans;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
}

.checkbox-label .errorText {
    position: absolute;
    top: calc(100% + 6px);
    font-size: 12px;
    line-height: 12px;
    color: #FF3333;
}

.real-checkbox:checked+.custom-checkbox::before {
    transform: translate(-3%, -10%) scale(1);
}

.custom-checkbox {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: white;

    border: 1px solid #E0E4F4;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: sub;
    position: relative;
}

.custom-checkbox::before {
    content: '';
    display: inline-block;
    height: 40px;
    width: 34px;
    background-image: url('/local/assets/img/svg/active-checkbox.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-3%, -3%) scale(0);
    transition: 0.1s ease-in;
}

/* ховер текста */
label:hover {
    color: var(--gray-hover);
}

/* ховер чекбокса*/
label:hover .custom-checkbox {
    border-color: var(--gray-hover);
    background: var(--gray-hover);
}

.checkbox-label a {
    color: #6B4A29;
}

.real-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

/* Стили для состояния :checked */

/* табы */
.tabContent.active {
    display: block;
}

.tabContent {
    display: none;
}

.tabContent {
    display: none;
}

.tabContent.active {
    display: block;
}

.tab.active {
    color: #fff;
}

/* табы END */

.mob {
    display: none;
}

@media (max-width: 500px) {
    .mob {
        display: inline-block;
    }
}

.logo {
    max-width: 190px;
    width: 120px;
}

@media (max-width: 1024px) {
    .logo {
        max-width: 130px;
    }

    .center {
        padding-left: 20px;
        padding-right: 20px;
    }

    .center.block__architect {
        padding: 0px;
    }

    h1 {
        font-size: 80px;
        line-height: 53px;
        letter-spacing: -0.01em;
    }

    .button {
        /* color: white;
        background-color: var(--brown);
        border-radius: 8px; */
        border: none;
        font-size: 14px;
    }

    .button-white {
        background-color: white;
        color: #000;
    }



}

.hideScroll::-webkit-scrollbar,
.tabs::-webkit-scrollbar {
    display: none;
}


/* Скрываем scrollbar для IE, Edge и Firefox */
.hideScroll,
.tabs {
    -ms-overflow-style: none;
    /* IE и Edge */
    scrollbar-width: none;
    /* Firefox */
}


/* стили слайдера */
.slick-track {
    display: flex;
}

.block__architect_slider .slider__item {
    width: 491px;
    height: 583px;
    margin: 0 20px;
    transition: transform 0.3s ease;
}

.block__architect_slider .slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-slide {
    transition: transform 0.3s ease;
}


.arrow-slider {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: #2B2926;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.arrow-slider-left {
    left: 48px;
}

.arrow-slider-right {
    right: 48px;
}

.icon_arrow-right {
    rotate: 180deg;
}

.arrow-slider .icon-arrow {
    transition: all 0.3s ease;
}

.arrow-slider:hover span {
    opacity: 0.7;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

.back-call-phone {
    color: #161616;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.back-call-phone .icon-phone:before {
    color: var(--brown);
}


textarea {
    resize: none;
}

textarea:focus {
    outline: none;
    border: 1px solid transparent;
}


.textarea-input {
    width: 100%;
    resize: none;
    background-color: #F6F7FB;
    border: none;
    padding-bottom: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 140.33%;




    background-color: transparent;
    /* border-bottom: 1px solid #D0B9A3; */
}


.textarea-input::placeholder {
    font-family: PP Pangram Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.24px;
    color: white;
    text-align: left;
    padding-bottom: 16px;

    border-bottom: 1px solid #D0B9A3;
}


/* автозаполенение стили — без подсветки фона.
   Поля форм светлые (.popup__input, color #333), поэтому фон оставляем
   прозрачным (трюк с длинным transition не даёт браузеру закрасить поле),
   а текст — тёмным, как в обычном состоянии поля. */
input.input:-webkit-autofill,
input.input:-webkit-autofill:hover,
input.input:-webkit-autofill:focus,
input.input:-webkit-autofill:active {
    -webkit-text-fill-color: #333333;
    transition: background-color 600000s 0s, color 600000s 0s;
}

/* автозаполенение стили END */

.padding-block {
    padding: 0px 64px 0px 64px;
}

.padding-block.padding-block120px{
    padding-bottom: 120px;
}

/* скрыть новые в мобилке */
@media (max-width: 1240px) {
    /* .only-desctop{
        display: none;
    } */
}

/* скрыть новые в мобилке END */


@media (max-width: 800px) {
    .arrow-slider {
        height: 48px;
        width: 48px;
    }

    .arrow-slider-right {
        right: 20px;
    }

    .arrow-slider-left {
        left: 20px;
    }

    .padding-block.padding-block120px,
    .padding-block {
        padding: 0px;
    }

}

/* стили слайдера END */




.info-clinic__map {
    height: 720px;
    position: relative;
    width: 100%;
    background-color: grey;
    border-radius: 20px;
    overflow: hidden;
    /* filter: grayscale(1) */
}


.button-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 1000;
}

.button-container button {
    background: gray;
    padding: 10px;
    border-radius: 10px;
}

.close-question-text {
    position: absolute;
    right: 10px;
    padding: 0px;
    top: 0px;
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .info-clinic__map {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        margin-left: 0px;
        height: 200px;
    }
}


/* .ymaps-2-1-79-ground-pane{
    filter: grayscale(1)
} */

@media (max-width: 1400px) {
    .center.main-block.no-pb {
        padding-bottom: 0px;
    }
}

.walk_gallery2,
.walk_gallery {
    position: relative;
    padding-top: 30px;
    height: 1133px;
    margin-bottom: 105px;
}

.walk_gallery__title {
    font-size: 96px;
    line-height: 105px;
    font-family: 'Playfair Regular';
    margin-bottom: 92px;
    position: relative;
    z-index: 1;
}

.walk_gallery__title.walk_gallery__title-small{
    font-size: 48px;
    line-height: 130%;
}

.walk_gallery__title.walk_gallery__title-small span {
    padding-left: 0px;
}

.walk_gallery__title span {
    display: block;
    color: #FFD581;
    padding-left: 91px;
}

.walk_gallery__img {
    position: absolute;
    left: 44.7%;
    top: 0;
}

.walk_gallery__img2 {
    position: absolute;
    right: 63.3%;
    top: 532px;
}

.walk_gallery__text {
    margin-left: 90px;
    background: #C49F8A;
    padding: 56px;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    max-width: 776px;
}

.walk_gallery__feature {
    top: 150px;
    left: 50%;
    font-family: 'Playfair Regular';
    font-size: 80px;
    line-height: 100px;
    color: #FFD581;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.walk_gallery__feature_label {
    font-size: 16px;
    line-height: 22px;
    font-family: "PP Pangram Sans", sans-serif;
}

.link-social{
    margin-top: auto;
    transition: all .3s ease;
    display: flex;
    align-items: center;
}

.link-social i{
    color: #B99673;
    margin-right: 8px;
    font-size: 22px;
}

.footer .link-social i{
    margin-right: 0px;
}

@media (max-width: 1199px) {
    .walk_gallery__title {
        padding-left: 0;
        text-align: center;
        font-size: 48px;
        line-height: 63px;
        margin-bottom: 464px;
    }

    .walk_gallery__title span {
        padding-left: 0;
    }

    .walk_gallery__img {
        left: 0;
        top: 180px;
        width: 100%;
        height: 620px;
        width: 620px;
        object-position: center;
    }

    .walk_gallery__img2 {
        width: 192px;
        height: 246px;
        right: 0;
        top: 1092px;
    }

    .walk_gallery__text {
        margin-left: 0;
        max-width: 327px;
        padding: 32px;
        font-size: 16px;
        line-height: 24px;
        margin-left: -20px;
    }

    .walk_gallery__feature {
        top: 40px;
        left: 0;
        font-size: 46px;
        line-height: 70px;
        max-width: 134px;
    }

    .walk_gallery__feature_label {
        font-size: 10px;
        line-height: 16px;
    }


    .walk_gallery2,
    .walk_gallery {
        height: 1336px;
        overflow: hidden;
    }

    .walk_gallery__title.walk_gallery__title-small{
        font-size: 28px;
        line-height: 42px;
    }
}

.yard {
    padding: 120px 0;
    padding-top: 0;
}

.yard__row {
    display: grid;
    grid-template-columns: 677px 1fr;
    gap: 77px;
}

.yard__row.mb40{
    margin-bottom: 40px;
}

.yard__row.yard__row-revers{
    grid-template-columns: 1fr 677px ;
    align-items: center;
}

.yard__row-revers .yard__circles{
    margin-bottom: 0;
}

.yard__row-revers .yard__circles-parent{
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.yard__extra_text ul {
    list-style: none;
    padding-left: 0;
}

.yard__extra_text li {
    position: relative;
    padding-left: 10px;
}

.yard__extra_text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 56%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 50%;
}

.yard__circles {
    display: flex;
    gap: 30px;
    margin-bottom: 42px;
}

.yard__circle {
    width: 323px;
    height: 323px;
    border-radius: 50%;
    object-fit: cover;
}

.yard__extra_text {
    background: #223A3A;
    padding: 87px 51px;
    font-size: 20px;
    line-height: 30px;
}

.yard__title {
    font-family: Playfair Display;
    font-size: 48px;
    line-height: 63px;
    margin-bottom: 46px;
    margin-top: 60px;
}

.yard__title span {
    color: #FFD581;
}

.yard__text {
    color: #CCCCCC;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 106px;
}

.yard__text:last-child {
    margin-bottom: 0;
}

.yard__feature {
    font-size: 100px;
    line-height: 144px;
    margin-bottom: 20px;
    color: #FFD581;
    margin-bottom: 54px;
    font-family: Playfair Display;
}

.yard__feature_label {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-family: "PP Pangram Sans", sans-serif;
}

@media (max-width: 1199px) {
    .yard {
        padding: 30px 0;
        padding-bottom: 160px;
    }

    .yard__row.yard__row-revers,
    .yard__row {
        grid-template-columns: 100%;
        gap: 50px;
        margin-bottom: 40px;
    }

    .yard__row:last-child {
        margin-bottom: 0;
    }

    .yard__row:nth-child(1)>div:nth-child(1) {
        order: 10;
    }

    .yard__title {
        font-size: 36px;
        line-height: 47px;
        margin-top: 0;
        margin-bottom: 32px;
    }

    .yard__text {
        font-size: 16px;
        line-height: 24px;
    }

    .yard__circles {
        display: block;
        margin-left: -20px;
        margin-right: -20px;
        padding-right: 20px;
        padding-left: 20px;
        white-space: nowrap;
        gap: 22px;
        overflow: auto;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
        font-size: 0;
        margin-bottom: 0;
    }

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

    .yard__circle {
        width: 246px;
        height: 246px;
        display: inline-block;
        vertical-align: top;
        margin-right: 22px;
    }

    .yard__circle:last-child {
        margin-right: 0;
    }

    .yard__extra_text {
        margin: 0 -20px;
        padding: 44px 20px;
    }
    .yard__feature {
        font-size: 60px;
        line-height: 84px;
        margin-bottom: 25px;
    }
}


.grecaptcha-badge{
    display: none !important;
}

@media (min-width: 767px) {
    .link-social:hover{
        color: #B99673;
        cursor: pointer;
    }


}

.go_up {
    position: fixed;
    bottom: 46px;
    right: 56px;   
    display: flex;
    justify-content: center;
    align-items: center;
    background: #B99673;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s;
    pointer-events: all;
    z-index: 100;
}
.go_up.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-feedback{
    position: fixed;
    bottom: 122px;
    right: 56px;   
    display: flex;
    justify-content: center;
    align-items: center;
    background: #B99673;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s;
    pointer-events: all;
    z-index: 100;
}

.popup-feedback-content__item{
    background: white;
    padding: 8px 24px;
    color: black;
    border-radius: 48px;
    width: fit-content;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.popup-feedback-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

@media (max-width: 767px) {
    .go_up {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 18px;
    }
    .popup-feedback{
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 80px;
    }

    .go_up svg {
        width: 11px;
        height: auto;
    }

    .walk_gallery2{
        height: 1119px;
    }

    .walk_gallery__img.walk_gallery__img-amin3{
        top: 124px;
    }

    .walk_gallery__img2.walk_gallery__img-amin4{
        top: 920px;
    }

    .walk_gallery__title.walk_gallery__title-small{
        margin-bottom: 424px;
    }
}
/* End */


/* Start:/local/assets-main-2026/css/fonts.css?17786554171544*/
@font-face {
    font-family: 'Disruptors Script';
    src: url('/local/assets-main-2026/fonts/DisruptorsScript-Regular.woff2') format('woff2'),
         url('/local/assets-main-2026/fonts/DisruptorsScript-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Pangram Sans';
    src: url('/local/assets-main-2026/fonts/PPPangramSans-Medium.woff2') format('woff2'),
         url('/local/assets-main-2026/fonts/PPPangramSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Pangram Sans';
    src: url('/local/assets-main-2026/fonts/PPPangramSans-Semibold.woff2') format('woff2'),
         url('/local/assets-main-2026/fonts/PPPangramSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Pangram Sans Compact';
    src: url('/local/assets-main-2026/fonts/PPPangramSans-CompactRegular.woff2') format('woff2'),
         url('/local/assets-main-2026/fonts/PPPangramSans-CompactRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Regular';
    src: url('/local/assets-main-2026/fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
         url('/local/assets-main-2026/fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* End */


/* Start:/local/assets-main-2026/fonts/icomoon/style.css?17782486273753*/
@font-face {
  font-family: 'icomoon';
  src:  url('/local/assets-main-2026/fonts/icomoon/fonts/icomoon.eot?a8ybna');
  src:  url('/local/assets-main-2026/fonts/icomoon/fonts/icomoon.eot?a8ybna#iefix') format('embedded-opentype'),
    url('/local/assets-main-2026/fonts/icomoon/fonts/icomoon.ttf?a8ybna') format('truetype'),
    url('/local/assets-main-2026/fonts/icomoon/fonts/icomoon.woff?a8ybna') format('woff'),
    url('/local/assets-main-2026/fonts/icomoon/fonts/icomoon.svg?a8ybna#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-phone2:before {
  content: "\e933";
}
.icon-telegram:before {
  content: "\e932";
}
.icon-worth17:before {
  content: "\e931";
}
.icon-star2:before {
  content: "\e92f";
}
.icon-star:before {
  content: "\e92e";
}
.icon-like:before {
  content: "\e930";
}
.icon-lock-open:before {
  content: "\e92c";
  color: #ffd581;
}
.icon-lock:before {
  content: "\e92d";
  color: #ffd480;
}
.icon-play:before {
  content: "\e92b";
  color: #fff;
}
.icon-bank:before {
  content: "\e92a";
}
.icon-money:before {
  content: "\e928";
}
.icon-circle:before {
  content: "\e929";
}
.icon-computer:before {
  content: "\e927";
  color: #b99673;
}
.icon-real-estate:before {
  content: "\e925";
  color: #b99673;
}
.icon-sofa2:before {
  content: "\e926";
  color: #b99673;
}
.icon-parents:before {
  content: "\e924";
  color: #b99673;
}
.icon-facade:before {
  content: "\e923";
  color: #b99673;
}
.icon-sofa:before {
  content: "\e920";
  color: #b99673;
}
.icon-kitchen:before {
  content: "\e91f";
  color: #b99673;
}
.icon-bathroom:before {
  content: "\e921";
  color: #b99673;
}
.icon-bedroom:before {
  content: "\e922";
  color: #b99673;
}
.icon-video3:before {
  content: "\e91c";
}
.icon-video2:before {
  content: "\e91d";
}
.icon-video1:before {
  content: "\e91e";
}
.icon-worth16:before {
  content: "\e918";
}
.icon-worth15:before {
  content: "\e919";
}
.icon-worth14:before {
  content: "\e91a";
}
.icon-worth13:before {
  content: "\e91b";
}
.icon-worth12:before {
  content: "\e914";
}
.icon-worth11:before {
  content: "\e915";
}
.icon-worth10:before {
  content: "\e916";
}
.icon-worth9:before {
  content: "\e917";
}
.icon-arrow:before {
  content: "\e913";
}
.icon-worth7:before {
  content: "\e912";
  color: #5c7064;
}
.icon-worth8:before {
  content: "\e90b";
  color: #5c7064;
}
.icon-worth6:before {
  content: "\e90c";
  color: #5c7064;
}
.icon-worth5:before {
  content: "\e90d";
  color: #5c7064;
}
.icon-worth4:before {
  content: "\e90e";
  color: #5c7064;
}
.icon-worth3:before {
  content: "\e90f";
  color: #5c7064;
}
.icon-worth2:before {
  content: "\e910";
  color: #5c7064;
}
.icon-worth1:before {
  content: "\e911";
  color: #5c7064;
}
.icon-check:before {
  content: "\e909";
  color: #b99673;
}
.icon-close:before {
  content: "\e90a";
  color: #fff;
}
.icon-Union:before {
  content: "\e904";
  color: #b99673;
}
.icon-ellips:before {
  content: "\e905";
  color: #b99673;
}
.icon-logo2 .path1:before {
  content: "\e906";
  color: rgb(185, 150, 115);
}
.icon-logo2 .path2:before {
  content: "\e907";
  margin-left: -2.98046875em;
  color: rgb(255, 255, 255);
}
.icon-logo2 .path3:before {
  content: "\e908";
  margin-left: -2.98046875em;
  color: rgb(185, 150, 115);
}
.icon-arrows:before {
  content: "\e902";
  color: #b99673;
}
.icon-mail:before {
  content: "\e903";
  color: #b99673;
}
.icon-burger:before {
  content: "\e901";
  color: #e0e0e0;
}
.icon-phone:before {
  content: "\e900";
  color: #fff;
}

/* End */


/* Start:/local/assets-main-2026/css/components/hero-block.css?17803874907842*/
/* ==================================================
   Hero Block — блок 25, 1440×1614px
   ================================================== */

.hero {
    position: relative;
    width: 100%;
    background-color: #1C2311;
    overflow: hidden;
    z-index: 5;
}

/* ---- Background photo — в потоке, задаёт высоту блока ---- */
.hero__bg {
    display: block;
    width: 100%;
}

.hero__bg img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1359px;
    z-index: 5;
}

/* ---- Bottom dark gradient (dark green fades up) ---- */
.hero__overlay-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 392px;
    background: linear-gradient(
        0deg,
        #1C2311 0%,
        rgba(19, 25, 14, 0) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* ==================================================
   Navigation bar — внутри .hero__container
   ================================================== */
.hero__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 164px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 16px;
}

/* Left: phone + badge */
.hero__nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 368px;
}

.hero__phone-btn .icon-phone {
    font-size: 20px;
    line-height: 1;
}

.hero__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    height: 48px;
    border-radius: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    transition: background 0.2s;
}

.hero__phone-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    height: 48px;
    border-radius: 8px;
    background: #37697A;
    border: none;
    color: #fff;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    cursor: pointer;
}

/* Center: logo */
.hero__nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.hero__logo-main {
    font-family: 'Playfair Regular', serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    color: #EAF0F4;
    letter-spacing: 0.02em;
}

.hero__logo-sub {
    font-family: 'Playfair Regular', serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    color: #EAF0F4;
}

/* Right: CTA + menu */
.hero__nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 339px;
}

.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
    border: none;
    color: #161616;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.hero__cta-btn:hover {
    background: #EAF0F4;
}

.hero__menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    height: 48px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.hero__menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ==================================================
   Hero headline
   ================================================== */
.hero__title {
    position: absolute;
    left: 257px;
    top: 243px;
    width: 597px;
    font-family: 'Disruptors Script', cursive;
    font-size: 122px;
    font-weight: 400;
    line-height: 62px;
    letter-spacing: -0.025em;
    color: #fff;
    z-index: 5;
    pointer-events: none;
}

/* ==================================================
   Bottom text columns
   ================================================== */
.hero__texts {
    position: absolute;
    left: 0;
    bottom: 53px;
    width: 100%;
    padding-left: 208px;
    display: flex;
    gap: 111px;
    z-index: 5;
}

.hero__text-left {
    width: 370px;
    flex-shrink: 0;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    color: #fff;
}

.hero__text-right {
    width: 434px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    color: #fff;
}

.hero__text-right p {
    margin: 0;
}

/* ---- Низ hero: на десктопе обёртка прозрачна (слоган и колонки
   позиционируются абсолютно как раньше), на мобиле — flex-колонка ---- */
.hero__bottom {
    display: contents;
}

/* ---- Рукописный слоган над текстовыми колонками (блок 25) ---- */
.hero__slogan {
    position: absolute;
    left: 115px;
    right: 56px;
    bottom: 180px;
    margin: 0;
    font-family: 'Disruptors Script', cursive;
    font-size: 73px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: -0.025em;
    color: #fff;
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .hero__cta-btn {
        display: none;
    }
    .hero__menu-btn span {
        display: none;
    }
    .hero__nav-logo {
        order: -1;
    }
    .hero__nav-left {
        margin-left: auto;
        width: auto;
        gap: 8px;
    }
    .hero__nav-right {
        width: auto;
    }
    .hero__phone-btn {
        padding: 8px;
    }
    .hero__menu-btn {
        padding: 8px;
    }
    .hero__logo-sub {
        display: none;
    }
    .hero__logo-main {
        font-size: 32px;
        line-height: 32px;
    }
    .hero__nav {
        height: auto;
    }
    .hero__nav-inner {
        height: 80px;
    }
    .hero__badge {
        height: 32px;
        padding: 4px 12px;
        font-size: 14px;
        order: 1;
    }
    .hero__phone-btn {
        order: 2;
    }
    .hero__phone-btn span:last-child {
        display: none;
    }
    .hero__title {
        left: 16px;
        top: 97px;
        padding-left: 11px;
        font-size: 68px;
        line-height: 42px;
    }
    .hero__bottom {
        display: flex;
        flex-direction: column;
        gap: 28px;
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 40px;
        z-index: 5;
    }
    .hero__texts {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        gap: 24px;
        padding-left: 0;
        flex-direction: column;
    }
    .hero__text-right {
        width: 100%;
        font-size: 16px;
        line-height: 18px;
    }
    .hero__text-left {
        width: 100%;
        font-size: 16px;
        line-height: 18px;
    }
    .hero__slogan {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        font-size: 34px;
        line-height: 30px;
        white-space: normal;
    }
}
/* End */


/* Start:/local/assets-main-2026/css/components/features-block.css?17800379064158*/
/* ==================================================
   Features Block — 2 ряда по 5 квадратов
   ================================================== */

.features {
    position: relative;
    z-index: 2;
    background: #1C2311;
    margin-top: -91px;
}

.features__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: translate(0, 155px);
    overflow: hidden;
}

.features__row {
    display: flex;
    gap: 16px;
    will-change: transform;
}

/* ---- Базовый квадрат ---- */
.features__item {
    flex: 0 0 266px;
    width: 266px;
    height: 266px;
    overflow: hidden;
}

/* ---- Фото-квадрат ---- */
.features__item--photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #3a3832;
}

/* ---- Стат-квадрат (общий) ---- */
.features__item--stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    background: #fff;
}

.features__item--teal {
    background: #37697A;
}

/* ---- Общие свойства числового блока ---- */
.features__num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8px;
}

/* Белые плитки: одиночная большая цифра — 82.44px */
.features__item--stat:not(.features__item--teal) .features__num {
    font-size: 82.44px;
    line-height: 100%;
    color: #37697A;
}

/* Бирюзовые плитки: весь текст — 34.04px */
.features__item--teal .features__num {
    font-size: 34.04px;
    line-height: 44.16px;
    color: #fff;
}

/* Бирюзовые плитки: только цифры — 54.96px */
.features__item--teal .features__num b {
    font-size: 54.96px;
    font-weight: 400;
    line-height: 44.16px;
}

/* ---- Подписи — 20.61px PP Pangram ---- */
.features__label {
    display: block;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 20.61px;
    font-weight: 400;
    line-height: 24.04px;
    letter-spacing: 0;
    text-align: center;
    text-transform: lowercase;
    color: #464646;
}

.features__item--teal .features__label {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1199px) {
    .features__item {
        width: 132px;
        height: 132px;
        flex: 0 0 132px;
        padding-left: 0;
        padding-right: 0;
    }
    .features__row, .features__list {
        gap: 12px;
    }
    .features__item--stat:not(.features__item--teal) .features__num {
        font-size: 60px;
    }
    .features__num {
        margin-bottom: 4px;
    }
    .features__label {
        font-size: 12px;
        line-height: 16px;
    }
    .features__item--teal .features__num {
        font-size: 14px;
        line-height: 16px;
    }
    .features__item--teal .features__num b {
        font-size: 42px;
        line-height: 32px;
    }
    .features__list {
        transform: translate(0, 65px);
    }
    .features {
        margin-top: -40px;
    }
}

/* ---- Мобайл: плитки чуть меньше (анимация-проезд остаётся) ---- */
@media (max-width: 767px) {
    .features__item {
        width: 104px;
        height: 104px;
        flex: 0 0 104px;
    }
    .features__row,
    .features__list {
        gap: 10px;
    }
    /* Ряды прижаты к разным краям: первый — влево, второй — вправо */
    .features__row:first-child {
        align-self: flex-start;
    }
    .features__row:last-child {
        align-self: flex-end;
    }
    .features__item--stat:not(.features__item--teal) .features__num {
        font-size: 46px;
    }
    .features__item--teal .features__num {
        font-size: 12px;
        line-height: 14px;
    }
    .features__item--teal .features__num b {
        font-size: 32px;
        line-height: 26px;
    }
    .features__label {
        font-size: 10px;
        line-height: 13px;
    }
}
/* End */


/* Start:/local/assets-main-2026/css/components/philosophy-block.css?17803854492031*/
/* ==================================================
   Philosophy Block 
   ================================================== */

.philosophy {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #FCF8F5;
    padding-top: 332px;
}

.philosophy__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            #FCF8F5 calc(50% - 720px),
            transparent calc(50% - 660px),
            transparent calc(50% + 660px),
            #FCF8F5 calc(50% + 720px)
        ),
        url('/local/assets-main-2026/img/philosophy/bg.jpg') center bottom / 1440px 1180px no-repeat;
    background-color: #FCF8F5;
    z-index: 0;
}

.philosophy__container {
    position: relative;
    z-index: 1;
    max-width: 890px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 870px;
    display: flex;
    flex-direction: column;
}

/* ---- Заголовок ---- */
.philosophy__title {
    font-family: 'Playfair Display', 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #37697A;
    margin-bottom: 54px;
}

/* ---- Текстовая часть — левая колонка ---- */
.philosophy__body {
    max-width: 480px;
}

.philosophy__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #2B2926;
}

.philosophy__text + .philosophy__text {
    margin-top: 24px;
}

@media (max-width: 1199px) {
    .philosophy {
        padding-top: 146px;
    }
    .philosophy__title {
        font-size: 40px;
        margin-bottom: 32px;
    }
    .philosophy__text {
        font-size: 16px;
        line-height: 24px;
    }
    .philosophy__text + .philosophy__text {
        margin-top: 12px;
    }
    .philosophy__container {
        min-height: 799px;
    }
    .philosophy__bg {
        background-size: 920px 754px;
        background-position: -430px bottom;
    }
}
/* End */


/* Start:/local/assets-main-2026/css/components/comfort-block.css?17800654073541*/
/* ==================================================
   Comfort Block
   ================================================== */

.comfort {
    background-color: #FCF8F5;
    padding-top: 55px;
    padding-bottom: 69px;
}

.comfort__wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 68.3% 1fr;
}

/* ---- Верхняя левая часть: лид + первые 4 иконки ---- */
.comfort__content {
    grid-column: 1;
    grid-row: 1;
    padding: 67px 64px 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ---- Фото: правая колонка, обе строки ---- */
.comfort__photo {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 560px;
    overflow: hidden;
}

.comfort__photo-inner {
    width: 471px;
    height: 526px;
    background-image: url('/local/assets-main-2026/img/comfort/2.jpg');
    background-size: cover;
    background-position: center;
}

/* ---- Нижняя левая часть: последние 4 иконки ---- */
.comfort__grid-bot {
    grid-column: 1;
    grid-row: 2;
    padding: 66px 64px 88px 72px;
}

/* ---- Общие стили сетки иконок ---- */
.comfort__lead {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #2B2926;
    max-width: 660px;
    margin-bottom: 57px;
}

.comfort__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 66px 54px;
}

.comfort__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comfort__icon {
    flex-shrink: 0;
    font-size: 53px;
    line-height: 1;
}

.comfort__icon::before {
    color: #37697A !important;
}

.comfort__item-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #333333;
}

/* ---- Без анимации: inner-div заполняет родителя абсолютом ---- */
@media (max-width: 1199px) {
    .comfort__photo {
        position: relative;
    }
    .comfort__photo-inner {
        position: absolute;
        inset: 0;
        height: 100%;
    }
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .comfort__wrap {
        grid-template-columns: 60% 1fr;
    }
    .comfort__content {
        padding: 48px 40px 0 40px;
    }
    .comfort__grid-bot {
        padding: 48px 40px 64px 40px;
    }
    .comfort__grid {
        gap: 40px 36px;
    }
    .comfort__icon {
        font-size: 44px;
    }
    .comfort__item-text {
        font-size: 16px;
        line-height: 20px;
    }
    .comfort__lead {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 32px;
    }
}

/* ---- Мобильный стек: контент → фото → нижние иконки ---- */
@media (max-width: 880px) {
    .comfort {
        padding-top: 48px;
        padding-bottom: 0;
    }
    .comfort__wrap {
        display: flex;
        flex-direction: column;
    }
    .comfort__content {
        padding: 0 16px 48px;
    }
    .comfort__photo {
        min-height: 420px;
        order: 2;
    }
    .comfort__grid-bot {
        order: 3;
        padding: 40px 16px 80px;
    }
    .comfort__content {
        order: 1;
    }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
    .comfort__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .comfort__photo {
        min-height: 629px;
    }
    .comfort__icon {
        font-size: 49px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/aparts-layouts.css?17803874906108*/

.aparts_layouts {
    background-color: #37697A;
    padding: 70px 0 68px;
}

.aparts_layouts__container {
    padding: 0 16px;
}

.aparts_layouts__heading {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 100%;
    color: white;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 49px;
}

.aparts_layouts__card {
    background: white;
    padding: 44px 48px;
    max-width: 1312px;
    min-height: 584px;
    margin: 0 auto;
}

/* Tabs */

.aparts_layouts__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 35px;
}

.aparts_layouts__tab {
    padding: 9px 27px;
    border-radius: 48px;
    border: none;
    background-color: #EEEEEE;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    color: #333333;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.aparts_layouts__tab.active {
    background-color: #37697A;
    color: white;
}

/* Content grid */

.aparts_layouts__card .tabContent.active {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: center;
}

/* Info column */

.aparts_layouts__title {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 100%;
    color: #161616;
    margin-bottom: 11px;
    white-space: nowrap;
}

.aparts_layouts__subtitle {
    font-size: 19px;
    font-weight: 400;
    line-height: 100%;
    color: #161616;
    margin-bottom: 39px;
}

/* Параметры квартиры (Стоимость/Площадь) — по аналогии со старым шаблоном,
   обе в одну строку */
.param-appartment__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 48px;
    margin: 0 0 32px;
}

.param-appartment__item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
}

.param-appartment__item > span {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #8A8A8A;
}

.param-appartment__item-content {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #37697A;
}

/* Safari/iOS Data Detectors превращают цены и площади в ссылки (телефон/дата) и навязывают свои стили — сбрасываем обратно к стилям контейнера */
.param-appartment__item-content a[x-apple-data-detectors],
.param-appartment__item-content a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    pointer-events: none;
}

.aparts_layouts__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aparts_layouts__list li {
    position: relative;
    padding-left: 14px;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    font-weight: 400;
}

.aparts_layouts__list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: -1px;
    color: #2B2926;
    font-size: 22px;
    line-height: 0.9;
}

.aparts_layouts__cta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.aparts_layouts__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #2B2926;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.aparts_layouts__phone:hover {
    color: #386B7C;
}

.aparts_layouts__phone .icon-phone::before {
    color: #386B7C;
}

/* Plan image column */

.aparts_layouts__plan {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.aparts_layouts__plan img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive */

@media (max-width: 1200px) {
    .aparts_layouts__heading {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {

    .aparts_layouts__heading {
        font-size: 48px;
        margin-bottom: 32px;
    }

    .aparts_layouts__card .tabContent.active {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aparts_layouts__plan {
        order: -1;
    }

    .aparts_layouts__plan img {
        max-height: 360px;
    }
}

@media (max-width: 767px) {
    .aparts_layouts {
        padding: 60px 0 20px;
    }

    .aparts_layouts__heading {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 30px;
        text-align: left;
    }

    .aparts_layouts__card {
        padding: 40px 16px;
    }

    .aparts_layouts__tab {
        padding: 9px 22px
    }

    .aparts_layouts__tabs {
        margin-bottom: 32px;
    }

    .aparts_layouts__title {
        font-size: 20px;
        line-height: 100%;
        margin-bottom: 11px;
        white-space: normal;
    }

    .aparts_layouts__subtitle {
        font-size: 16px;
        line-height: 100%;
        margin-bottom: 32px;
    }

    .aparts_layouts__list {
        gap: 16px;
        margin-bottom: 32px;
    }

    .aparts_layouts__list li {
        font-size: 16px;
        line-height: 20px;
    }

    .aparts_layouts__plan img {
        max-height: 260px;
    }

    .aparts_layouts__cta {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .aparts_layouts__card .tabContent.active {
        gap: 0;
    }

    .aparts_layouts__info {
        display: contents;
    }

    .aparts_layouts__title { order: 1; }
    .aparts_layouts__subtitle { order: 2; }
    .param-appartment__items { order: 3; }
    .aparts_layouts__plan {
        order: 4;
        margin-bottom: 24px;
    }
    .aparts_layouts__list { order: 5; }
    .aparts_layouts__cta { order: 6; }

    .aparts_layouts__phone {
        font-weight: 400;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/video.css?17799756522098*/
.video {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 804;
    overflow: hidden;
}
.video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-top: 79px;
    padding-left: 16px;
    padding-right: 16px;
    pointer-events: none;
}
.video__title {
    font-size: 70px;
    line-height: 100%;
    font-family: 'Playfair Regular';
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #37697A;
    height: 51px;
    padding: 0 31px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    font-family: PP Pangram Sans;
    font-weight: 600;
    pointer-events: all;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.video__play:hover {
    background-color: #4a8a9a;
    transform: translate(-50%, -50%) scale(1.06);
}
.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(43, 41, 38, 0.55);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.video__close svg {
    width: 22px;
    height: 22px;
}
.video__close:hover {
    background: rgba(43, 41, 38, 0.8);
}
.video__close.is-visible {
    display: flex;
}

@media (max-width: 1199px) {
    .video__overlay {
        padding-top: 40px;
    }
    .video__title {
        font-size: 40px;
        line-height: 44px;
    }
    .video {
        max-height: 800px;
    }
}
@media (max-width: 767px) {
    .video {
        aspect-ratio: 375 / 696;
    }
    .video__title {
        text-align: left;
    }
}
/* End */


/* Start:/local/assets-main-2026/css/components/payments.css?17804068434566*/
.payments {
    background: #FCF8F5;
    padding: 93px 16px 75px;
    text-align: center;
    overflow-x: clip;
}
.payments__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #37697A;
    letter-spacing: -0.02em;
    margin-bottom: 91px;
}
.payments__list {
    display: flex;
    justify-content: center;
    gap: clamp(48px, 7vw, 110px);
}
.payments__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.payments__name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.payments__name-row .payments__name {
    margin-bottom: 0;
}
.payments__tooltip-wrap {
    position: relative;
    display: inline-flex;
}
.payments__tooltip-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #37697A;
    background: transparent;
    color: #37697A;
    font-family: 'PP Pangram Sans';
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color .2s ease, color .2s ease;
}
.payments__tooltip-wrap:hover .payments__tooltip-toggle,
.payments__tooltip-wrap:focus-within .payments__tooltip-toggle {
    background: #37697A;
    color: #fff;
}
.payments__tooltip {
    --shift: 0px;
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(calc(-50% + var(--shift)));
    width: min(420px, calc(100vw - 32px));
    background: #fff;
    color: #333;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 20px 22px;
    font-family: 'PP Pangram Sans';
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease, visibility .15s ease;
}
.payments__tooltip::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}
.payments__tooltip::after {
    content: '';
    position: absolute;
    left: calc(50% - var(--shift));
    top: -6px;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #E5E5E5;
    border-top: 1px solid #E5E5E5;
}
.payments__tooltip-wrap:hover .payments__tooltip,
.payments__tooltip-wrap:focus-within .payments__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.payments__icon {
    width: 74px;
    height: 74px;
    object-fit: contain;
    margin-bottom: 14px;
}
.payments__name {
    font-family: 'PP Pangram Sans';
    font-size: 37px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 14px;
}
.payments__desc {
    font-family: 'PP Pangram Sans Compact';
    font-size: 32px;
    font-weight: 400;
    color: #37697A;
    line-height: 1;
}

@media (max-width: 1199px) {
    .payments {
        padding-top: 80px;
        padding-bottom: 79px;
    }
    .payments__title {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 48px;
    }
    .payments__list {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .payments__name {
        font-size: 32px;
        line-height: 100%;
        margin-bottom: 9px;
    }
    .payments__desc {
        font-size: 24px;
        line-height: 34px;
    }
    .payments__name-row {
        gap: 10px;
        margin-bottom: 9px;
    }
    .payments__tooltip-toggle {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
    .payments__tooltip {
        font-size: 13px;
        padding: 16px 18px;
        width: min(320px, calc(100vw - 32px));
    }
}

@media (max-width: 767px) {
    .payments {
        text-align: center;
        padding: 56px 16px 56px;
    }
    .payments__title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 36px;
    }
    .payments__list {
        align-items: center;
        gap: 28px;
    }
    .payments__item {
        align-items: center;
    }
    .payments__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    .payments__name {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .payments__name-row {
        gap: 8px;
        margin-bottom: 6px;
    }
    .payments__desc {
        font-size: 16px;
        line-height: 1.2;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/arhitecture-block.css?17803874903552*/
/* ==================================================
   Architecture Block
   ================================================== */

.arhitecture {
    background-color: #37697A;
    padding-top: 105px;
    padding-bottom: 75px;
    overflow: hidden;
}

.arhitecture__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 80px;
}

/* ---- Slider ---- */
.arhitecture__slider-wrap {
    position: relative;
}

.arhitecture__slider .slick-list {
    overflow: visible;
}

.arhitecture__slide {
    width: 491px;
    height: 585px;
    margin: 0 20px;
}

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


/* ---- Arrows ---- */
.arhitecture__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2B2926;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.arhitecture__arrow:hover {
    opacity: 0.75;
}

.arhitecture__arrow--prev {
    left: 48px;
}

.arhitecture__arrow--next {
    right: 48px;
}

.arhitecture__arrow .icon-arrow {
    font-size: 20px;
    color: #fff;
    display: block;
    line-height: 1;
}

.arhitecture__arrow--next .icon-arrow {
    transform: rotate(180deg);
}

/* ---- Texts ---- */
.arhitecture__texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    max-width: 1151px;
    margin: 59px auto 0;
    padding: 0 80px;
}

.arhitecture__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
}

.arhitecture__desc {
    font-size: 18px;
    line-height: 26px;
    max-width: 1098px;
    margin: 0 auto;
    margin-bottom: 80px;
    text-align: center;
    padding: 0 16px;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .arhitecture__title {
        font-size: 72px;
    }

    .arhitecture__slide {
        width: auto;
        height: 420px;
    }

    .arhitecture__arrow {
        width: 60px;
        height: 60px;
    }

    .arhitecture__arrow--prev {
        left: 24px;
    }

    .arhitecture__arrow--next {
        right: 24px;
    }

    .arhitecture__texts {
        padding: 0 40px;
        gap: 32px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .arhitecture {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .arhitecture__title {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
        text-align: left;
    }

    .arhitecture__desc {
        text-align: left;
        font-size: 16px;
        line-height: 24px;
    }

    .arhitecture__slide {
        width: auto;
        height: 585px;
        margin: 0;
    }

    .arhitecture__arrow {
        width: 48px;
        height: 48px;
    }

    .arhitecture__arrow--prev {
        left: 16px;
    }

    .arhitecture__arrow--next {
        right: 16px;
    }

    .arhitecture__arrow .icon-arrow {
        font-size: 16px;
    }

    .arhitecture__texts {
        grid-template-columns: 1fr;
        padding: 0 16px;
        margin-top: 40px;
        gap: 40px;
    }

    .arhitecture__text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/gallery-block.css?17803854491322*/
/* ==================================================
   Gallery Block
   ================================================== */

.gallery {
    background-color: #FCF8F5;
    padding-top: 106px;
    padding-bottom: 0;
}

.gallery__container {
    max-width: 908px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    margin-bottom: 75px;
}

.gallery__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    color: #37697A;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 75px;
}

.gallery__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
}

.gallery__img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .gallery {
        padding-top: 80px;
    }

    .gallery__container {
        padding: 0 16px;
        margin-bottom: 60px;
        text-align: left;
    }

    .gallery__title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 40px;
    }

    .gallery__text {
        font-size: 16px;
        line-height: 24px;
    }

    .gallery__img {
        width: 100%;
        height: 509px;
        object-fit: cover;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/lobby-design-block.css?17803854493221*/
/* ==================================================
   Lobby Design Block
   ================================================== */

.lobby_design {
    background-color: #37697A;
    padding: 33px 16px 110px;
    overflow: hidden;
}

.lobby_design__inner {
    display: grid;
    grid-template-columns: 48.8% 1fr;
    column-gap: 45px;
    align-items: center;
    max-width: 1218px;
    margin: 0 auto;
}

/* ---- Photo + caption under it — left column ---- */
.lobby_design__media {
    grid-column: 1;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ---- Right column: текст + сетки иконок (компактный стек) ---- */
.lobby_design__col {
    grid-column: 2;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.lobby_design__photo {
    width: 100%;
    height: auto;
    display: block;
}

.lobby_design__note {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
}

/* ---- Text ---- */
.lobby_design__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    padding-bottom: 52px;
}

/* ---- Feature grids ---- */
.lobby_design__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
}

.lobby_design__grid--top {
    padding-bottom: 40px;
}

.lobby_design__item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lobby_design__item-icon {
    width: 49px;
    height: 49px;
    flex-shrink: 0;
}

.lobby_design__item-label {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .lobby_design {
        padding: 48px;
    }

    .lobby_design__text {
        font-size: 16px;
        line-height: 24px;
    }
    .lobby_design {
        padding: 0;
    }
    
    .lobby_design__inner {
        display: flex;
        flex-direction: column;
    }

    /* обёртка прозрачна — дети участвуют в flex напрямую,
       порядок задаётся order у text/grid/media */
    .lobby_design__col {
        display: contents;
    }

    .lobby_design__text {
        order: 1;
        padding: 0 16px 40px;
        font-size: 16px;
        line-height: 24px;
    }
    
    .lobby_design__grid--top {
        order: 2;
        padding: 0 16px 0;
        padding-bottom: 0;
    }
    
    .lobby_design__media {
        order: 3;
        gap: 0;
    }

    .lobby_design__photo {
        width: calc(100% - 32px);
        height: 236px;
        object-fit: cover;
        margin: 40px 16px 0;
    }

    .lobby_design__note {
        padding: 16px 16px 0;
        font-size: 16px;
        line-height: 24px;
    }
    
    .lobby_design__grid--bot {
        order: 4;
        padding: 40px 16px 50px;
    }
    
    .lobby_design__grid {
        gap: 28px 20px;
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .lobby_design__item {
        gap: 13px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
}

/* End */


/* Start:/local/assets-main-2026/css/components/territory-block.css?17803854492508*/
/* ==================================================
   Territory Block
   ================================================== */

.territory {
    background-color: #FCF8F5;
    overflow: hidden;
    padding-bottom: 100px;
}

.territory__container {
    padding: 0 16px;
    max-width: 1240px;
    margin: 0 auto;
}

/* ---- Title area ---- */
.territory__head {
    padding: 115px 0 50px;
}

.territory__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.05;
    color: #37697A;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* ---- Body: left col + sketch ---- */
.territory__body {
    display: grid;
    grid-template-columns: 1fr 734px;
    column-gap: 77px;
}

/* ---- Left column ---- */
.territory__left {
    padding: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 122px;
}

.territory__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #2B2926;
}

.territory__photo {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- Sketch image ---- */
.territory__sketch {
    display: block;
    width: 734px;
    height: 503px;
    object-fit: cover;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .territory__head {
        padding: 64px 0 48px;
    }

    .territory__title {
        font-size: 72px;
    }

    .territory__body {
        grid-template-columns: 42% 58%;
    }

    .territory__left {
        padding: 0 24px 48px 48px;
        gap: 48px;
    }

    .territory__text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .territory__head {
        padding: 80px 0 0;
    }

    .territory__title {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: 0;
        text-align: left;
    }

    .territory__body {
        display: flex;
        flex-direction: column;
    }

    .territory__sketch {
        order: -1;
        width: calc(100% + 64px);
        margin-left: -32px;
        margin-right: -32px;
        height: auto;
    }

    .territory__left {
        order: 1;
        padding: 20px 0 0;
        gap: 40px;
    }

    .territory__text {
        font-size: 16px;
        line-height: 24px;
    }

    .territory__photo {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .territory {
        padding-bottom: 80px;
        overflow: clip;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/infrastructure-block.css?17803854495655*/
/* ==================================================
   Infrastructure Block
   ================================================== */

.infrastructure {
    background-color: #37697A;
    padding: 110px 0 40px;
    position: relative;
    z-index: 1;
}

.infrastructure__container {
    max-width: 1271px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- Title ---- */
.infrastructure__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 62px;
}

/* ---- Map wrap ---- */
.infrastructure__map-wrap {
    position: relative;
    overflow: hidden;
}

.infrastructure__map {
    width: 100%;
    height: 646px;
    overflow: hidden;
}

/* ---- Legend ---- */
.infrastructure__legend {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #FCF8F5;
    padding: 18px 17px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    z-index: 100;
}

.infrastructure__legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s;
}

.infrastructure__legend-item:hover {
    opacity: 0.7;
}

.infrastructure__legend-item--active {
    opacity: 1 !important;
}

.infrastructure__legend-item--active .infrastructure__legend-label {
    color: #37697A;
}

.infrastructure__legend-dot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infrastructure__legend-dot img {
    display: block;
    width: 28px;
    height: 28px;
}

.infrastructure__legend-label {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #333333;
}

.infrastructure__legend-count {
    font-size: 11px;
    color: #9E9E9E;
    margin-left: 3px;
    vertical-align: super;
    font-weight: 400;
}

/* ---- Footer text ---- */
.infrastructure__footer {
    margin-top: 62px;
    text-align: center;
}

.infrastructure__footer p {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
}

/* ---- Yandex map custom markers ---- */
/* Позволяем плашке выходить за границы контейнеров Яндекс.Карт */
[class*="ymaps"][class*="inner-panes"],
[class*="ymaps"][class*="places-pane"],
[class*="ymaps"][class*="placemark-overlay"] {
    overflow: visible !important;
}

.infra-marker-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.infra-marker-pin {
    width: 56px;
    height: 56px;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.infra-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 34px;
    transform: translateY(-50%);
    background: #37697A;
    color: #fff;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 18px 12px 22px;
    border-radius: 0 24px 24px 0;
    white-space: nowrap;
    z-index: 1;
}

.infra-marker-wrap.is-open .infra-label {
    display: block;
}

.infra-marker--main {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%);
    background: #fff;
}

.infra-marker--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.infra-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2B2926;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .infrastructure__container {
        padding: 0 32px;
    }

    .infrastructure__title {
        font-size: 70px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .infrastructure {
        padding: 60px 0 30px;
    }

    .infrastructure__container {
        padding: 0 16px;
    }

    .infrastructure__title {
        font-size: 36px;
        margin-bottom: 40px;
        text-align: left;
    }

    /* Карта во всю ширину экрана */
    .infrastructure__map-wrap {
        margin: 0 -16px;
    }

    .infrastructure__map {
        height: 420px;
    }

    /* Легенда — статичная панель под картой (как на десктопе, но без absolute);
       все пункты всегда видны, 2 колонки */
    .infrastructure__legend {
        position: static;
        bottom: auto;
        left: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        background: #FCF8F5;
        padding: 16px;
    }

    .infrastructure__legend-item {
        gap: 8px;
        white-space: normal;
    }

    .infrastructure__legend-dot,
    .infrastructure__legend-dot img {
        width: 24px;
        height: 24px;
    }

    .infrastructure__legend-label {
        font-size: 13px;
        line-height: 16px;
    }

    .infrastructure__footer {
        margin-top: 40px;
        text-align: left;
    }

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

}

/* End */


/* Start:/local/assets-main-2026/css/components/assistent-block.css?17803854492437*/
/* ==================================================
   Assistent Block
   ================================================== */

.assistent {
    background-color: #FCF8F5;
    padding: 500px 0;
    margin: -500px 0;
    overflow: hidden;
}

.assistent__container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 0 0 16px;
    display: grid;
    grid-template-columns: 70% 30%;
}

/* ---- Left column ---- */
.assistent__left {
    padding: 117px 48px 199px 0;
    display: flex;
    flex-direction: column;
    gap: 147px;
}

.assistent__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.05;
    color: #37697A;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.assistent__texts {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 626px;
    position: relative;
    z-index: 1;
}

.assistent__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #2B2926;
}

/* ---- Right column ---- */
.assistent__right {
    display: flex;
    flex-direction: column;
    position: relative;
}

.assistent__photo-top {
    position: absolute;
    right: -55px;
    top: 0;
    width: 338px;
    height: 964px;
}

.assistent__photo-main {
    position: absolute;
    top: 359px;
    right: 123px;
    width: 419px;
    height: 542px;
}

/* ---- Mobile ---- */
@media (max-width: 1199px) {
    /* На мобиле убираем десктопный overlay-трюк (padding/margin 500px),
       из-за которого появлялся пустой провал перед блоком */
    .assistent {
        padding: 0 0 64px;
        margin: 0;
    }

    .assistent__container {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
    }

    .assistent__left {
        order: 2;
        padding: 0;
        gap: 40px;
    }

    .assistent__title {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .assistent__texts {
        gap: 24px;
        padding: 0;
    }

    .assistent__text {
        font-size: 16px;
        line-height: 24px;
    }

    .assistent__right {
        display: none;
    }

    .assistent__photo-top {
        display: none;
    }

    .assistent__photo-main {
        display: none;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/terraces-block.css?17803854491977*/
/* ==================================================
   Terraces Block — «Квартиры с террасами»
   ================================================== */

.terraces {
    background-color: #FCF8F5;
    overflow: hidden;
    text-align: center;
}

.terraces__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 73px;
    color: #37697A;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding-top: 107px;
}

.terraces__quote {
    font-family: 'Disruptors Script', cursive;
    font-size: 73px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: -0.025em;
    color: #465E69;
    margin-top: 36px;
}

.terraces__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
    max-width: 555px;
    margin: 38px auto 0;
}

.terraces__photo {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 70px;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .terraces__title {
        font-size: 56px;
        line-height: 1.05;
        padding-top: 80px;
    }

    .terraces__quote {
        font-size: 56px;
        line-height: 36px;
        margin-top: 28px;
    }

    .terraces__text {
        margin-top: 32px;
        padding: 0 32px;
    }

    .terraces__photo {
        margin-top: 56px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .terraces {
        text-align: left;
    }

    .terraces__title {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: 0;
        padding: 0 16px 0;
    }

    .terraces__quote {
        font-size: 32px;
        line-height: 28px;
        padding: 0 16px;
        margin-top: 20px;
    }

    .terraces__text {
        font-size: 16px;
        line-height: 24px;
        padding: 0 16px;
        margin-top: 24px;
    }

    .terraces__photo {
        margin-top: 32px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/details-block.css?17803874903542*/
/* ==================================================
   Details Block — «Тонкость в деталях»
   ================================================== */

.details {
    background-color: #37697A;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.details__inner {
    position: relative;
    min-height: 698px;
}

.details__container {
    padding: 0 501px 0 16px; /* 485px фото + 16px отступ */
    max-width: 1439px;
    margin: 0 auto;
}

.details__content {
    padding: 161px 54px 70px 54px;
}

.details__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0 0 56px 0;
}

.details__lead {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #FFFFFF;
    max-width: 766px;
    margin: 0 0 57px 0;
}

.details__grid {
    display: grid;
    grid-template-columns: repeat(2, 329px);
    column-gap: 0;
    row-gap: 62px;
}

.details__grid--second {
    margin-top: 62px;
}

.details__item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.details__icon {
    flex: 0 0 53px;
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.details__item-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #FFFFFF;
    padding-top: 4px;
}

.details__photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 485px;
    height: 100%;
    overflow: hidden;
}

.details__photo-inner {
    width: 100%;
    height: calc(100% + 160px);
    background-image: url('/local/assets-main-2026/img/details/interior.jpg');
    background-size: cover;
    background-position: center;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .details__inner {
        min-height: 560px;
    }

    .details__container {
        padding-right: 376px; /* 360px фото + 16px отступ */
    }

    .details__content {
        padding: 80px 24px;
    }

    .details__title {
        font-size: 48px;
        line-height: 1.05;
        margin-bottom: 32px;
    }

    .details__lead {
        margin-bottom: 40px;
    }

    .details__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        column-gap: 24px;
    }

    .details__grid--second {
        margin-top: 40px;
    }

    .details__photo {
        width: 360px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .details__inner {
        min-height: 0;
    }

    .details__container {
        max-width: none;
        padding: 0;
    }

    .details__content {
        padding: 56px 16px;
    }

    .details__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: 0;
        margin-bottom: 20px;
    }

    .details__lead {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
    }

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

    .details__grid--second {
        margin-top: 24px;
    }

    .details__icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .details__item-text {
        font-size: 16px;
        line-height: 20px;
    }

    .details__photo {
        position: static;
        display: block;
        width: calc(100% + 32px);
        margin: 32px -16px;
        height: 320px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/intercom-block.css?17804068432176*/
/* ==================================================
   Intercom Block — «Расширенный функционал домофонии»
   ================================================== */

.intercom {
    background-color: #FCF8F5;
    overflow: hidden;
}

.intercom__inner {
    display: grid;
    grid-template-columns: 485px 1fr;
    min-height: 632px;
}

.intercom__photo {
    width: 485px;
    height: 632px;
    overflow: hidden;
}

.intercom__photo-inner {
    width: 100%;
    height: calc(100% + 160px);
    background-image: url('/local/assets-main-2026/img/intercom/door.jpg');
    background-size: cover;
    background-position: center;
}

.intercom__content {
    padding: 115px 90px 0 73px;
}

.intercom__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 73px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #37697A;
    margin: 0 0 48px 0;
    max-width: 791px;
}

.intercom__texts {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 695px;
}

.intercom__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #333333;
    margin: 0;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .intercom__inner {
        grid-template-columns: 360px 1fr;
        min-height: 540px;
    }

    .intercom__photo {
        width: 360px;
        height: 540px;
    }

    .intercom__content {
        padding: 80px 40px 0 40px;
    }

    .intercom__title {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 32px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .intercom__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .intercom__photo {
        width: 100%;
        height: 320px;
    }

    .intercom__content {
        padding: 56px 16px;
    }

    .intercom__title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .intercom__texts {
        gap: 16px;
    }

    .intercom__text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/parking-block.css?17803874906060*/
/* ==================================================
   Parking Block — «Подземный паркинг + Двор + Детство»
   ================================================== */

.parking {
    background-color: #37697A;
    color: #FFFFFF;
    overflow: hidden;
    padding: 120px 0 0;
}

.parking__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 60px 0;
    padding: 0 16px;
}

.parking__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #FFFFFF;
    text-align: center;
    max-width: 1032px;
    margin: 0 auto 80px;
    padding: 0 16px;
}

/* ---- Slider ---- */
.parking__slider-wrap {
    position: relative;
}

.parking__slider .slick-list {
    overflow: visible;
}

.parking__slide {
    width: 491px;
    height: 585px;
    margin: 0 20px;
}

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

.parking__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2B2926;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.2s;
}

.parking__arrow:hover {
    opacity: 0.8;
}

.parking__arrow--prev {
    left: 48px;
}

.parking__arrow--next {
    right: 48px;
}

.parking__arrow svg {
    width: 21px;
    height: 21px;
}

.parking__arrow--next svg {
    transform: rotate(180deg);
}

/* ---- Yard subsection ---- */
.parking__yard {
    display: grid;
    grid-template-columns: 542px 695px;
    gap: 61px;
    padding: 132px 0 0;
    align-items: center;
}

.parking__yard-photo {
    width: 542px;
    height: 373px;
    object-fit: cover;
}

.parking__subtitle {
    font-family: 'Playfair Regular', serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 61px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0 0 27px 0;
}

.parking__yard-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
    max-width: 685px;
}

/* ---- Kids subsection ---- */
.parking__kids {
    margin-top: 39px;
    position: relative;
    min-height: 678px;
    display: flex;
    align-items: center;
}

.parking__kids .container {
    width: 100%;
    padding-right: calc(64px + 466px); /* стандартный отступ + ширина фото */
}

.parking__kids-title {
    font-family: 'Playfair Regular', serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 61px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0 0 27px 0;
}

.parking__kids-content {
    max-width: 694px;
}

.parking__kids-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
}

.parking__kids-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 466px;
    height: 100%;
    object-fit: cover;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .parking {
        padding: 80px 0 0;
    }

    .parking__title {
        font-size: 48px;
        line-height: 1.05;
        margin-bottom: 40px;
    }

    .parking__text {
        margin-bottom: 56px;
        padding: 0 32px;
    }

    .parking__slide {
        width: auto;
        height: 420px;
    }

    .parking__arrow {
        width: 60px;
        height: 60px;
    }

    .parking__arrow--prev {
        left: 24px;
    }

    .parking__arrow--next {
        right: 24px;
    }

    .parking .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .parking__yard {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        padding: 80px 0 0;
    }

    .parking__yard-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 542 / 373;
    }

    .parking__subtitle,
    .parking__kids-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .parking__kids .container {
        padding-right: calc(32px + 360px); /* стандартный отступ + ширина фото */
    }

    .parking__kids-photo {
        width: 360px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .parking {
        padding: 56px 0 0;
    }

    .parking__title {
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: 0;
        margin-bottom: 24px;
        padding: 0 16px;
        text-align: left;
    }

    .parking__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
        padding: 0 16px;
        text-align: left;
    }

    .parking__slide {
        width: auto;
        height: 585px;
        margin: 0;
    }

    .parking__arrow {
        width: 48px;
        height: 48px;
    }

    .parking__arrow svg {
        width: 16px;
        height: 16px;
    }

    .parking .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .parking__yard {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0 0;
    }

    .parking__yard-photo {
        order: 2;
    }

    .parking__yard-content {
        order: 1;
    }

    .parking__subtitle,
    .parking__kids-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .parking__yard-text,
    .parking__kids-text {
        font-size: 16px;
        line-height: 24px;
    }

    .parking__kids {
        min-height: 0;
        display: block;
    }

    .parking__kids .container {
        padding-right: 16px;
    }

    .parking__kids-photo {
        position: static;
        display: block;
        width: calc(100% - 32px);
        height: 320px;
        margin: 24px 16px 0;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/invite-block.css?17803854492395*/
/* ==================================================
   Invite Block — «Приглашаем посетить»
   ================================================== */

.invite {
    background-color: #FCF8F5;
    overflow: hidden;
    padding: 60px 0;
    padding-bottom: 0;
}

.invite .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.invite__left {
    flex: 1;
}

.invite__title {
    font-family: 'Disruptors Script', cursive;
    font-size: 130px;
    font-weight: 400;
    line-height: 90.68px;
    letter-spacing: -0.025em;
    color: #37697A;
    margin: 0 0 24px 0;
}

.invite__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #37697A;
    margin: 0;
    max-width: 280px;
    margin-left: 290px;
}

.invite__photo {
    flex-shrink: 0;
    width: 584px;
    height: 534px;
    position: relative;
}

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

.invite__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(251, 247, 244, 0) 66%, rgba(250, 246, 244, 1) 100%);
    pointer-events: none;
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .invite .container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 32px;
        padding-right: 32px;
    }

    .invite__title {
        font-size: 80px;
        line-height: 1;
        margin-bottom: 16px;
    }

    .invite__text {
        max-width: 480px;
    }

    .invite__photo {
        width: 100%;
        max-width: 584px;
        height: auto;
        aspect-ratio: 584 / 534;
        margin: 24px 0 0 auto;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .invite {
        padding-bottom: 0;
    }

    .invite .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .invite__title {
        font-size: 56px;
        line-height: 1;
        margin-bottom: 12px;
    }

    .invite__text {
        font-size: 16px;
        line-height: 24px;
        margin-left: 0;
    }

    .invite__photo {
        width: calc(100% + 64px);
        margin-left: -32px;
        margin-right: -32px;
        margin-top: 24px;
        max-width: none;
        height: auto;
        aspect-ratio: 584 / 534;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/presentation-block.css?17785951058038*/
/* ==================================================
   Presentation Block — «Получите презентацию» (форма)
   ================================================== */

.presentation {
    background-color: #FCF8F5;
    position: relative;
    min-height: 866px;
    overflow: hidden;
}

.presentation .container {
    padding-right: calc(16px + 580px); /* стандартный отступ + ширина фото */
}

/* ---- Форма (левая часть) ---- */
.presentation__form {
    padding: 105px 0 80px 0;
    max-width: 691px;
}

.presentation__title {
    font-family: 'Playfair Regular', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 73px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #37697A;
    margin: 0 0 48px 0;
}

.presentation__fields {
    display: flex;
    flex-direction: column;
}

.presentation__input-wrap {
    margin-bottom: 42px;
}

.presentation__input {
    width: 455px;
    max-width: 100%;
    padding: 0 0 16px 0;
    border: none;
    border-bottom: 1px solid #37697A;
    background: transparent;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
    outline: none;
}

.presentation__input::placeholder {
    color: #333333;
    opacity: 1;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* ---- Чекбокс ---- */
.presentation__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    max-width: 421px;
}

.presentation__check-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.presentation__checkbox-box,
.presentation__radio-box {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 99px;
    border: 1px solid #37697A;
    background-color: transparent;
    position: relative;
    transition: background-color 0.2s ease;
}

.presentation__checkbox-box::after,
.presentation__radio-box::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 7px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: translate(-50%, -75%) rotate(-45deg);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.presentation__check-input:checked ~ .presentation__checkbox-box,
.presentation__check-input:checked ~ .presentation__radio-box {
    background-color: #37697A;
}

.presentation__check-input:checked ~ .presentation__checkbox-box::after,
.presentation__check-input:checked ~ .presentation__radio-box::after {
    opacity: 1;
}

.presentation__check:hover {
    color: inherit;
}

/* ---- Текст рядом с чекбоксом/радио ---- */
.presentation__check-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #333333;
    padding-top: 8px;
}

.presentation__check-link {
    color: #37697A;
}

.presentation__check-text a {
    color: #333333;
    text-decoration: underline;
}

/* ---- Кнопка ---- */
.presentation__submit {
    width: 455px;
    max-width: 100%;
    height: 56px;
    background-color: #37697A;
    border: none;
    color: #FFFFFF;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    margin-top: 21px;
    transition: background-color 0.2s ease;
}

.presentation__submit:hover {
    background-color: #2D5C6B;
}

.presentation__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---- Error states ---- */
.presentation__input-wrap.error .presentation__input {
    border-bottom-color: #FF3333;
}

.presentation__input-wrap .errorText {
    color: #FF3333;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 12px;
    line-height: 16px;
    margin-top: 6px;
}

.presentation__check.error .presentation__checkbox-box,
.presentation__check.error .presentation__radio-box {
    border-color: #FF3333;
}

.presentation__check .errorText {
    display: none;
}

/* ---- Success ---- */
.presentation__success {
    display: none;
    margin-top: 18px;
    padding: 12px 18px;
    background-color: rgba(55, 105, 122, 0.1);
    border-left: 3px solid #37697A;
    color: #37697A;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.presentation__success.active {
    display: block;
}

/* ---- Фото (правая часть, absolute) ---- */
.presentation__photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 580px;
    height: 100%;
    background-color: #3A3731;
    overflow: hidden;
}

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

/* ---- Success Popup ---- */
.form-success-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.form-success-popup__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(43, 41, 38, 0.75);
    backdrop-filter: blur(4px);
}

.form-success-popup__card {
    position: relative;
    z-index: 1;
    background-color: #FCF8F5;
    padding: 64px 56px 56px;
    max-width: 480px;
    width: calc(100% - 32px);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.form-success-popup.is-open .form-success-popup__card {
    transform: translateY(0);
}

.form-success-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #37697A;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.form-success-popup__close:hover {
    opacity: 0.6;
}

.form-success-popup__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.form-success-popup__title {
    font-family: 'Playfair Regular', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #37697A;
    margin: 0 0 16px 0;
}

.form-success-popup__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
    margin: 0;
}

@media (max-width: 767px) {
    .form-success-popup__card {
        padding: 48px 24px 40px;
    }

    .form-success-popup__title {
        font-size: 28px;
    }
}

/* ---- 1200px ---- */
@media (max-width: 1199px) {
    .presentation .container {
        padding-right: calc(32px + 360px); /* стандартный отступ + ширина фото */
    }

    .presentation__form {
        padding: 80px 0 80px 40px;
    }

    .presentation__title {
        font-size: 48px;
        line-height: 1.05;
        margin-bottom: 32px;
    }

    .presentation__photo {
        width: 360px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .presentation {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .presentation .container {
        order: 1;
        padding-right: 16px;
    }

    .presentation__form {
        padding: 24px 0 56px 0;
        max-width: 100%;
    }

    .presentation__input-wrap {
        margin-bottom: 24px;
    }

    .presentation__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: 0;
        margin-bottom: 28px;
    }

    .presentation__input,
    .presentation__submit {
        width: 100%;
    }

    .presentation__photo {
        order: 2;
        position: static;
        width: 100%;
        height: 280px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/footer-block.css?17803111654934*/
/* ==================================================
   Footer Block
   ================================================== */

.footer {
    background-color: #FCF8F5;
    color: #333333;
    padding: 34px 0 60px;
    position: relative;
}

.footer__divider {
    border: none;
    height: 1px;
    background-color: #404040;
    margin: 0 0 96px 0;
}


/* ---- Top: logo + about + stats ---- */
.footer__top {
    display: flex;
    gap: 246px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.footer__logo {
    width: 312px;
    height: 105px;
    flex-shrink: 0;
}

.footer__top-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.footer__about {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
    margin: 0;
    max-width: 754px;
}

.footer__stats {
    display: flex;
    gap: 67px;
}

.footer__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__stat:nth-child(1) { width: 310px; }
.footer__stat:nth-child(2) { width: 380px; }

.footer__stat-num {
    font-family: 'Playfair Regular', serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    color: #333333;
    white-space: nowrap;
}

.footer__stat-num span {
    font-size: 36px;
}

.footer__stat-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
    margin: 0;
}

/* ---- Footer rows (Projects, Sales, Contacts) ---- */
.footer__row {
    display: grid;
    grid-template-columns: 555px 1fr;
    align-items: start;
    margin-bottom: 64px;
}

.footer__row:last-child {
    margin-bottom: 0;
}

.footer__heading {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: #333333;
    margin: 0;
}

/* ---- Projects ---- */
.footer__projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__project {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
}

.footer__project-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* ---- Sales address ---- */
.footer__address {
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    margin: 0;
}

/* ---- Contacts ---- */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer__contact-row .footer__contact:first-child {
    width: 263.5px;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'PP Pangram Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__contact:hover {
    opacity: 0.7;
}

.footer__contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__contact-icon svg,
.footer__contact-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ---- 1443px ---- */
@media (max-width: 1442px) {
    .footer {
        padding: 32px 0 60px;
    }

    .footer__divider {
        margin-bottom: 56px;
    }

    .footer__top {
        gap: 80px;
    }

    .footer__logo {
        width: 220px;
        height: auto;
    }

    .footer__row {
        grid-template-columns: 280px 1fr;
    }

    .footer__heading {
        font-size: 28px;
    }

    .footer__stats {
        flex-wrap: wrap;
        row-gap: 24px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .footer {
        padding: 24px 0 40px;
    }

    .footer__divider {
        display: none;
    }

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

    .footer__stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer__stat:nth-child(1),
    .footer__stat:nth-child(2) {
        width: 100%;
    }

    .footer__stat-num {
        font-size: 48px;
    }

    .footer__stat-num span {
        font-size: 28px;
    }

    .footer__row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .footer__heading {
        font-size: 24px;
    }

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

    .footer__contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer__contact-row .footer__contact:first-child {
        width: auto;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/popup-2026.css?17785951054333*/
/* ===== POPUP 2026 — BASE ===== */

.popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow: hidden;
}

.popup.active {
    display: block;
}

/* Крестик закрытия */
.popup__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #333333;
    transition: opacity 0.2s;
    z-index: 2;
}

.popup__close:hover {
    opacity: 0.6;
}

.popup__close svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Оверлей (фон за модалкой) */
.popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 22, 0.9);
    cursor: pointer;
}

/* Алиас для совместимости с popup-captcha-2026.js */
.popup-content-new {
    position: relative;
}

/* SUCCESS STATE */
.popup__success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.popup__success-icon {
    margin-bottom: 20px;
}

.popup__success-icon svg {
    width: 48px;
    height: 48px;
}

.popup__success-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
    color: #37697A;
    margin-bottom: 12px;
}

.popup__success-text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

/* Инпуты — общая база для форм в попапах */
.popup__input-wrap {
    position: relative;
    border-bottom: 1px solid #37697A;
    padding-bottom: 16px;
}

.popup__input-wrap.error {
    border-bottom-color: #D94040;
}

.popup__input-wrap .errorBlock {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.popup__input,
.popup__textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding: 0;
}

.popup__input::placeholder,
.popup__textarea::placeholder {
    color: #333333;
    opacity: 0.5;
}

.popup__textarea {
    resize: none;
    min-height: 48px;
}

/* Чекбокс */
.popup__check {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-wrap: wrap;
}

.popup__check-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.popup__checkbox-box {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #37697A;
    border-radius: 99px;
    background: #FCF8F5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.popup__check-input:checked + .popup__checkbox-box {
    background: #37697A;
}

.popup__check-input:checked + .popup__checkbox-box::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-2px);
}

.popup__check-text {
    flex: 1;
    min-width: 0;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}

.popup__check-link {
    color: #37697A;
    text-decoration: underline;
}

/* Ошибка чекбокса — border красный */
.popup__check.error .popup__checkbox-box {
    border-color: #D94040;
}

/* Текст ошибки под чекбоксом */
.popup__check .errorText {
    flex-basis: 100%;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: #D94040;
    margin-top: -4px;
    padding-left: 44px;
}

/* Кнопка submit */
.popup__submit {
    width: 100%;
    height: 56px;
    background: #37697A;
    color: #FFFFFF;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.popup__submit:hover {
    background: #2D5C6B;
}

.popup__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* End */


/* Start:/local/assets-main-2026/css/components/popup-project-details.css?17803854493622*/
/* ===== ПОПАП «УЗНАТЬ ДЕТАЛИ ПРОЕКТА» — DRAWER СПРАВА ===== */

.popup--project-details {
    justify-content: flex-end;
    align-items: stretch;
}

.popup--project-details.active {
    display: flex;
}

.popup--project-details .popup__overlay {
    background: rgba(22, 22, 22, 0.9);
}

.popup--project-details .popup__inner {
    position: relative;
    width: 640px;
    flex-shrink: 0;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #FCF8F5;
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup--project-details.active .popup__inner {
    transform: translateX(0);
}

.popup--project-details .popup-content-new {
    padding: 96px 97px 64px 88px;
    min-height: 100%;
    box-sizing: border-box;
}

/* Крестик */
.popup--project-details .popup__close {
    top: 32px;
    right: 24px;
}

/* Заголовок */
.popup--project-details .popup__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 50px;
    color: #37697A;
    text-transform: uppercase;
    margin-bottom: 42px;
}

/* Форма */
.popup--project-details .popup__form {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

/* Блок полей */
.popup--project-details .popup__fields {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

/* Финальные поля — после них чекбокс и кнопка */
.popup--project-details .popup__check {
    margin-top: 0;
}

/* Кнопка — ширина 100% */
.popup--project-details .popup__submit {
    margin-top: 0;
}

/* Инпуты — левое выравнивание, цвет текста */
.popup--project-details .popup__input,
.popup--project-details .popup__textarea {
    text-align: left;
    color: #333333;
}

/* Textarea — та же высота что и текстовые поля */
.popup--project-details .popup__textarea {
    min-height: 0;
    height: 24px;
    overflow: hidden;
}

/* Телефон под кнопкой */
.popup__phone-link {
    display: block;
    text-align: center;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #37697A;
    text-decoration: none;
    margin-top: 20px;
    transition: opacity 0.2s;
}

.popup__phone-link:hover {
    opacity: 0.7;
    color: #37697A;
    text-decoration: none;
}

/* В попапе «Заказать звонок» телефон под кнопкой не показываем (batch 64–73) */
.popup--back-call-2026 .popup__phone-link {
    display: none;
}

/* «скачать» в чекбоксе — тёмная подчёркнутая ссылка */
.popup__check-link--dark {
    color: #333333;
}

/* ===== MOBILE ===== */

@media (max-width: 767px) {
    .popup--project-details .popup__inner {
        width: 100%;
        transform: translateY(100%);
    }

    .popup--project-details.active .popup__inner {
        transform: translateY(0);
    }

    .popup--project-details .popup-content-new {
        padding: 80px 24px 48px 24px;
    }

    .popup--project-details .popup__title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 32px;
    }

    .popup--project-details .popup__form {
        gap: 32px;
    }

    .popup--project-details .popup__fields {
        gap: 32px;
    }
}

@media (max-width: 400px) {
    .popup--project-details .popup-content-new {
        padding: 72px 16px 40px 16px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/popup-callback-2026.css?17785951052449*/
/* ===== ПОПАПЫ «ЗАКАЗАТЬ ЗВОНОК» И «ОСТАВИТЬ ЗАЯВКУ» (2026) ===== */

.popup--callback-2026,
.popup--application-2026 {
    align-items: center;
    justify-content: center;
}

.popup--callback-2026.active,
.popup--application-2026.active {
    display: flex;
}

.popup--callback-2026 .popup__inner,
.popup--application-2026 .popup__inner {
    position: relative;
    width: 560px;
    max-width: calc(100% - 32px);
    background: #FCF8F5;
    border-radius: 0;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.popup--callback-2026.active .popup__inner,
.popup--application-2026.active .popup__inner {
    transform: translateY(0);
    opacity: 1;
}

.popup--callback-2026 .popup-content-new,
.popup--application-2026 .popup-content-new {
    padding: 56px 56px 48px;
}

/* Крестик */
.popup--callback-2026 .popup__close,
.popup--application-2026 .popup__close {
    top: 20px;
    right: 20px;
    color: #37697A;
}

/* Заголовок */
.popup--callback-2026 .popup__title,
.popup--application-2026 .popup__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 42px;
    color: #37697A;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Подзаголовок */
.popup--callback-2026 .popup__subtitle,
.popup--application-2026 .popup__subtitle {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 36px;
    opacity: 0.7;
}

/* Форма */
.popup--callback-2026 .popup__form,
.popup--application-2026 .popup__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 767px) {
    .popup--callback-2026 .popup__inner,
    .popup--application-2026 .popup__inner {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        overflow-y: auto;
    }

    .popup--callback-2026.active,
    .popup--application-2026.active {
        align-items: flex-end;
    }

    .popup--callback-2026 .popup-content-new,
    .popup--application-2026 .popup-content-new {
        padding: 48px 24px 40px;
    }

    .popup--callback-2026 .popup__title,
    .popup--application-2026 .popup__title {
        font-size: 24px;
        line-height: 34px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/popup-feedback-2026.css?17803854495152*/
/* ===== ПОПАП ОБРАТНОЙ СВЯЗИ — МЕНЮ 2×2 (2026) ===== */

.popup--feedback-2026 {
    align-items: center;
    justify-content: center;
}

.popup--feedback-2026.active {
    display: flex;
}

.popup--feedback-2026 .popup__inner {
    position: relative;
    width: 442px;
    max-width: calc(100% - 32px);
    background: #FCF8F5;
    border-radius: 16px;
    z-index: 1;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.popup--feedback-2026.active .popup__inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup--feedback-2026 .popup-content-new {
    padding: 56px 50px 50px;
    border-radius: 16px;
    overflow: hidden;
}

/* Крестик */
.popup--feedback-2026 .popup__close {
    top: 16px;
    right: 16px;
    color: #333333;
}

/* Заголовок */
.popup--feedback-2026 .popup__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #37697A;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

/* Сетка 2×2 */
.feedback-menu {
    display: grid;
    grid-template-columns: 163px 163px;
    grid-template-rows: 118px 118px;
    gap: 16px;
}

/* Порядок карточек на десктопе.
   «Позвонить» (единственная ссылка <a>) скрыта — звонок только в мобилке.
   Порядок задаётся явно, чтобы разметка в footer.php и static index.php
   рендерилась одинаково. */
.feedback-menu a.feedback-menu__item {
    display: none;
}

.feedback-menu [data-open-popup="back-call-2026"] {
    order: 1; /* Заказать обратный звонок */
}

.feedback-menu [data-open-popup="project-details"] {
    order: 2; /* Консультация */
}

.feedback-menu [data-open-popup="presentation-2026"] {
    order: 3; /* Получить презентацию */
    /* «Позвонить» скрыта на десктопе → остаётся 3 карточки и эта одна в нижнем
       ряду. Растягиваем её на обе колонки и центрируем, чтобы не висела слева. */
    grid-column: 1 / -1;
    justify-self: center;
    width: 163px;
}

/* Одна карточка */
.feedback-menu__item {
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 16px 8px;
    transition: box-shadow 0.2s, transform 0.15s;
    color: #464646;
}

.feedback-menu__item:hover {
    box-shadow: 0 4px 16px rgba(55, 105, 122, 0.15);
    transform: translateY(-2px);
    color: #464646;
    text-decoration: none;
}

.feedback-menu__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-menu__icon svg {
    width: 32px;
    height: 32px;
}

.feedback-menu__text {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #464646;
}

/* ===== MOBILE ===== */

@media (max-width: 520px) {
    .popup--feedback-2026 .popup__inner {
        width: calc(100% - 32px);
        border-radius: 12px;
    }

    .popup--feedback-2026 .popup-content-new {
        padding: 40px 20px 32px;
    }

    .popup--feedback-2026 .popup__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .feedback-menu {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Мобильная последовательность:
       Позвонить → Заказать обратный звонок → Консультация → Получить презентацию */
    .feedback-menu a.feedback-menu__item {
        display: flex;
        order: 1; /* Позвонить */
    }

    .feedback-menu [data-open-popup="back-call-2026"] {
        order: 2; /* Заказать обратный звонок */
    }

    .feedback-menu [data-open-popup="project-details"] {
        order: 3; /* Консультация */
    }

    .feedback-menu [data-open-popup="presentation-2026"] {
        order: 4; /* Получить презентацию */
        /* На мобилке показываются все 4 карточки (сетка 2×2) — сбрасываем
           десктопное центрирование. */
        grid-column: auto;
        justify-self: stretch;
        width: auto;
    }

    .feedback-menu__item {
        height: 100px;
        gap: 8px;
        padding: 12px 6px;
    }

    .feedback-menu__icon {
        width: 28px;
        height: 28px;
    }

    .feedback-menu__icon svg {
        width: 28px;
        height: 28px;
    }

    .feedback-menu__text {
        font-size: 12px;
        line-height: 16px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/menu-overlay.css?17785951055107*/
/* ===== МЕНЮ-ПАНЕЛЬ (RIGHT SLIDE, 2026) ===== */

@keyframes menuSlideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes menuOverlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.popup--menu-overlay {
    background: transparent;
}

.popup--menu-overlay.active {
    display: block;
}

.popup--menu-overlay .popup__overlay {
    background: rgba(22, 22, 22, 0.7);
    opacity: 0;
}

.popup--menu-overlay.active .popup__overlay {
    animation: menuOverlayFadeIn 0.35s ease forwards;
}

/* Сама панель */
.menu-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 867px;
    max-width: 100vw;
    height: 100%;
    background: #37697A;
    overflow-y: auto;
    transform: translateX(100%);
}

.popup--menu-overlay.active .menu-overlay {
    transform: translateX(0);
    animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.menu-overlay__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 59px 51px 60px 87px;
    box-sizing: border-box;
}

/* ===== ШАПКА ===== */

.menu-overlay__head {
    display: flex;
    align-items: center;
    height: 54px;
    flex-shrink: 0;
}

.menu-overlay__logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.menu-overlay__logo img {
    display: block;
    height: 54px;
    width: auto;
    max-width: 100%;
}

.menu-overlay__head-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

/* CTA «Квартиры» в шапке */
.menu-overlay__cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 181px;
    height: 54px;
    background: #FBF7F4;
    color: #37697A;
    border: none;
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.menu-overlay__cta-header:hover {
    background: rgba(251, 247, 244, 0.8);
    color: #37697A;
    text-decoration: none;
}

/* Кнопка закрытия — иконка X */
.menu-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    padding: 4px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.menu-overlay__close:hover {
    opacity: 0.7;
}

.menu-overlay__close svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* ===== НАВИГАЦИЯ — две колонки ===== */

.menu-overlay__nav {
    display: flex;
    padding-top: 82px;
    flex: 1;
    align-items: flex-start;
}

.menu-overlay__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-overlay__col:first-child {
    width: 369px;
    flex-shrink: 0;
}

.menu-overlay__link {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 38px;
    color: #FBF7F4;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.menu-overlay__link:hover {
    opacity: 0.6;
    text-decoration: none;
    color: #FBF7F4;
}

/* ===== ПОДВАЛ МЕНЮ ===== */

.menu-overlay__footer {
    margin-top: auto;
    padding-top: 52px;
    flex-shrink: 0;
}

.menu-overlay__footer-title {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 38px;
    color: #FBF7F4;
    margin-bottom: 20px;
}

.menu-overlay__address {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #FBF7F4;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}

.menu-overlay__address:hover {
    opacity: 0.7;
    color: #FBF7F4;
}

.menu-overlay__schedule {
    display: grid;
    grid-template-columns: 84px 1fr;
}

.menu-overlay__schedule-day,
.menu-overlay__schedule-time {
    font-family: 'PP Pangram Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 29px;
    color: #FBF7F4;
}

/* ===== TABLET ===== */

@media (max-width: 1000px) {
    .menu-overlay {
        width: 100vw;
    }

    .menu-overlay__inner {
        padding: 40px 32px 40px 40px;
    }
}

/* ===== MOBILE ===== */

@media (max-width: 767px) {
    .menu-overlay__inner {
        padding: 32px 20px 40px 24px;
    }

    .menu-overlay__head {
        height: auto;
    }

    .menu-overlay__cta-header {
        display: none;
    }

    .menu-overlay__nav {
        flex-direction: column;
        padding-top: 48px;
    }

    .menu-overlay__col:first-child {
        width: 100%;
        flex-shrink: unset;
    }

    .menu-overlay__col + .menu-overlay__col {
        margin-top: 22px;
    }

    .menu-overlay__link {
        font-size: 20px;
        line-height: 30px;
    }

    .menu-overlay__footer-title {
        font-size: 20px;
        line-height: 30px;
    }
}

/* End */


/* Start:/local/assets-main-2026/css/components/floating-buttons.css?17803854491837*/
/* ===== ПЛАВАЮЩИЕ КНОПКИ (FIXED BOTTOM-RIGHT) ===== */

.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* Общий стиль кнопок */
.floating-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
    transform: translateY(0);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

/* Кнопка "наверх" — белая */
.floating-btn--scroll-top {
    background: #FFFFFF;
    color: #386B7C;
}

.floating-btn--scroll-top[hidden] {
    display: none;
}

/* Кнопка обратной связи */
.floating-btn--feedback {
    background: #386B7C;
    color: #FFFFFF;
}

/* ===== MOBILE ===== */

@media (max-width: 767px) {
    .floating-buttons {
        bottom: 20px;
        right: 16px;
        gap: 8px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Кнопка выбора связи на мобилке крупнее — основное целевое действие */
    .floating-btn--feedback {
        width: 64px;
        height: 64px;
    }

    .floating-btn--feedback svg {
        width: 24px;
        height: 24px;
    }
}

/* End */
/* /local/assets-main-2026/css/style.css?178038544917419 */
/* /local/assets-main-2026/css/fonts.css?17786554171544 */
/* /local/assets-main-2026/fonts/icomoon/style.css?17782486273753 */
/* /local/assets-main-2026/css/components/hero-block.css?17803874907842 */
/* /local/assets-main-2026/css/components/features-block.css?17800379064158 */
/* /local/assets-main-2026/css/components/philosophy-block.css?17803854492031 */
/* /local/assets-main-2026/css/components/comfort-block.css?17800654073541 */
/* /local/assets-main-2026/css/components/aparts-layouts.css?17803874906108 */
/* /local/assets-main-2026/css/components/video.css?17799756522098 */
/* /local/assets-main-2026/css/components/payments.css?17804068434566 */
/* /local/assets-main-2026/css/components/arhitecture-block.css?17803874903552 */
/* /local/assets-main-2026/css/components/gallery-block.css?17803854491322 */
/* /local/assets-main-2026/css/components/lobby-design-block.css?17803854493221 */
/* /local/assets-main-2026/css/components/territory-block.css?17803854492508 */
/* /local/assets-main-2026/css/components/infrastructure-block.css?17803854495655 */
/* /local/assets-main-2026/css/components/assistent-block.css?17803854492437 */
/* /local/assets-main-2026/css/components/terraces-block.css?17803854491977 */
/* /local/assets-main-2026/css/components/details-block.css?17803874903542 */
/* /local/assets-main-2026/css/components/intercom-block.css?17804068432176 */
/* /local/assets-main-2026/css/components/parking-block.css?17803874906060 */
/* /local/assets-main-2026/css/components/invite-block.css?17803854492395 */
/* /local/assets-main-2026/css/components/presentation-block.css?17785951058038 */
/* /local/assets-main-2026/css/components/footer-block.css?17803111654934 */
/* /local/assets-main-2026/css/components/popup-2026.css?17785951054333 */
/* /local/assets-main-2026/css/components/popup-project-details.css?17803854493622 */
/* /local/assets-main-2026/css/components/popup-callback-2026.css?17785951052449 */
/* /local/assets-main-2026/css/components/popup-feedback-2026.css?17803854495152 */
/* /local/assets-main-2026/css/components/menu-overlay.css?17785951055107 */
/* /local/assets-main-2026/css/components/floating-buttons.css?17803854491837 */
