* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #fafafa;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    background: #202020;
    padding-top: 15px;
    padding-bottom: 15px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.d-flex {
    display: flex;
}

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

.align-items-center{
    align-items: center;
}

.justify-content-space {
    justify-content: space-between;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.watch__block {
    max-width: 170px;
    width: 100%;
}

.watch__block p {
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
    padding-left: 8px;
}

.mail__block {
    max-width: 173px;
    width: 100%;
}

.mail__block p {
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
    padding-left: 8px;
}

.mail__block p a {
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    color: #fff;
}

.mail__block p a:hover {
    color: #E5AF71;
}

.button__header {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 11px 42px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

.button__header__block {
    max-width: 425px;
    width: 100%;
}

.nav__header {
    backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.11);
    position: absolute;
    margin-top: 8px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    display: flex;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 10px;
    z-index: 1;
}

.nav__header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1086px;
    width: 100%;
}

.nav__header ul li {
    list-style-type: none;
}

.nav__header ul li a {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.nav__header ul li a:hover {
    color: #E5AF71;
}

.head__block {
    width: 100%;
    height: 667px;
    background: url(../img/bg.png); /* любой цвет */
    background-size: cover;
}

.head__block__slogan {
    padding-top: 151px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    padding-bottom: 7px;
}

.head__block__hr {
    border: 1px solid #e5af71;
    max-width: 466px;
    width: 100%;
    height: 0;
}

.head__block__title {
    font-weight: 600;
    font-size: 45px;
    line-height: 133%;
    color: #fff;
    padding-bottom: 20px;
    max-width: 683px;
    width: 100%;
}

.head__block__title span {
    color: #e5af71;
}

.head__block__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    max-width: 683px;
    width: 100%;
}

.head__block__button {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    color: #fff;
    padding: 20px 95px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin-top: 106px;
}

.about {
    padding-top: 75px;
}

.about__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 35px;
}

.about__title span {
    color: #e5af71;
}

.about__img {
    border-radius: 15px;
    max-width: 537px;
    width: 100%;
    max-height: 358px;
    height: 100%;
    object-fit: cover;
}

.about__descript {
    max-width: 610px;
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    line-height: 200%;
}

.about__spetialisation__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-top: 35px;
    padding-bottom: 43px;
    text-align: center;
}

/* Контейнер */
.spec-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

/* Карточка */
.spec-item {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 283px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.20); /* затемнение */
    background-blend-mode: multiply;
}

/* Затемнение */
.spec-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

/* Текст */
.spec-item p {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    bottom: 30px;
    text-align: center;
}

/* Hover эффект */
.spec-item:hover {
    transform: translateY(-5px);
}

.spec-item:hover p {
    color: #E5AF71;
}

.preim__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 53px;
    padding-top: 67px;
}

.preim__title span {
    color: #e5af71;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Карточка */
.feature-card {
    position: relative;
    width: 100%;
    height: 425px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* Затемнение */
.feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .50s ease;
}

/* Текстовый контейнер */
.feature-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    width: auto;
    color: white;
}

/* Заголовок — ВСЕГДА ВИДЕН */
.feature-text h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    opacity: 1;
    transform: translateY(0);
    transition: all .50s ease;
}

/* Описание — скрыто */
.feature-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all .50s ease;
}

/* Hover эффект */
.feature-card:hover .feature-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.feature-card:hover .feature-text h3 {
    transform: translateY(-20px);
}

.feature-card:hover .feature-text p {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

/* Адаптив */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-card {
        height: 400px;
    }
}

.category__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
    padding-top: 58px;
}

.category__title span {
    color: #e5af71;
}

.category__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 51px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Карточка */
.catalog-card {
    position: relative;
    width: 100%;
    height: 425px;
    border-radius: 15px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
}

/* Заголовок */
.catalog-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* Кнопка */
.catalog-btn {
    display: inline-block;
    padding: 9px 50px;
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

/* Адаптив планшет */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-card {
        height: 380px;
    }

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

/* Адаптив телефон */
@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog-card {
        height: 320px;
    }

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

    .catalog-btn {
        font-size: 13px;
        padding: 7px 41px;
    }
}

/* ОБОЛОЧКА — ДОЛЖНА БЫТЬ relative */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}

/* ЛЕНТА */
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .3s ease;
}

/* КАРТОЧКИ */
.carousel-item {
    min-width: 386px;
    width: 100%;
    max-height: 271px;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* СТРЕЛКИ — ВОТ ТУТ ГЛАВНАЯ ФИШКА */
.carousel-arrow {
    cursor: pointer;
}

/* КНОПКА СНИЗУ — ВЫРОВНЕНА ПО ЦЕНТРУ */
.carousel-more-btn {
    display: block;
    padding: 13px 61px;
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

/* ─────────────────────────────── */
/* 📱 АДАПТИВ ДЛЯ ПЛАНШЕТА */
/* ─────────────────────────────── */
@media (max-width: 1024px) {
    .carousel-item {
        min-width: 300px;
        height: 220px;
    }

    .carousel-wrapper {
        padding: 0 0px;
        margin-bottom: 13px;
    }

    .carousel-arrow {
        padding: 0px 3px;
        font-size: 22px;
    }
}

/* ─────────────────────────────── */
/* 📱 АДАПТИВ ДЛЯ МОБИЛЫ */
/* ─────────────────────────────── */
@media (max-width: 600px) {

    .carousel-track {
        gap: 12px;
    }

    .carousel-item {
        min-width: 85%; /* показать 1 карточку полностью */
        height: 210px;
    }

    .carousel-wrapper {
        padding: 0 0px;
        margin-bottom: 13px;
    }

    .carousel-arrow {
        padding: 0px 3px;
        font-size: 20px;
    }

    .carousel-more-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}

.form-section {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.form-card {
    background: #fff;
    width: 1200px;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 0 18px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.form-card__left {
    width: 60%;
}

.form-card__left h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    margin-bottom: 20px;
}

.form-card__left h2 span {
    color: #e9a96b;
}

.form-card__left p {
    font-weight: 400;
    font-size: 17px;
    line-height: 200%;
}

/* Правая колонка */
.form-card__right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-card__right__contacts {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.form-card__right input {
    width: auto;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    max-width: 406px;
    box-shadow: 0 0 11px 0 rgba(138, 138, 138, 0.15);
    background: #fff;
}

.form-card__right input::placeholder {
    color: #d9d9d9;
}

.form-card__right button {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.form-card__right__contacts input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    max-width: 406px;
    box-shadow: 0 0 11px 0 rgba(138, 138, 138, 0.15);
    background: #fff;
}

.form-card__right__contacts input::placeholder {
    color: #d9d9d9;
}

.form-card__right__contacts button {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    max-width: 261px;
    width: 100%;
}

/* 📱📱 Адаптив для планшетов */
@media (max-width: 992px) {
    .form-card {
        flex-direction: column;
        padding: 40px;
        width: 100%;
    }

    .form-card__left,
    .form-card__right {
        width: 100%;
    }
}

/* 📱 Мобильный */
@media (max-width: 600px) {
    .form-card {
        padding: 25px 15px;
        gap: 30px;
    }

    .form-card__left h2 {
        font-size: 18px;
    }
}

.etaps__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    max-width: 367px;
    width: 100%;
}

.etaps__title span {
    color: #e5af71;
}

.etabs__block__row__one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 27px;
}

.etabs__block__row__one__block__img {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    max-width: 384px;
    height: 243px;
    width: 100%;
}

.etabs__block__row__one__block__img__num {
    position: absolute;
    top: 30px;
    left: 25px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    width: auto;
}

.etabs__block__row__one__block__img__title {
    position: absolute;
    bottom: 30px;
    left: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    width: auto;
}

.etabs__block__row__two__left__four__block {
    max-width: 793px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.etabs__block__row__one__block__img__big {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    max-width: 384px;
    height: 513px;
    width: 100%;
}

.etabs__block__row__two {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
    padding-top: 58px;
}

.price__title span {
    color: #e5af71;
}

.price__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 51px;
}

.price__block {
    box-shadow: inset 3px 0 0 0 #e5af71;
    background: #fff;
    border-radius: 20px;
    padding: 27px 25px;
    margin-bottom: 18px;
}

.align-items-end {
    align-items: end;
}

.price__block__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 159%;
    padding-bottom: 11px;
}

.price__block__descript {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    max-width: 670px;
    width: 100%;
}

.price__block__price {
    font-weight: 700;
    font-size: 20px;
}

.button__price {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 13px 88px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

.mt-27 {
    margin-top: 27px;
}

.sertiv__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 31px;
    padding-top: 58px;
}

.sertiv__title span {
    color: #e5af71;
}

.sertiv__img__block {
    max-width: 723px;
    width: 100%;

}

.sertiv__img {
    max-width: 346px;
    width: 100%;
    height: 487px;
    object-fit: cover;
}

.workers__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
    padding-top: 55px;
}

.workers__title span {
    color: #e5af71;
}

.workers__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 36px;
}

/* ОБОЛОЧКА — ДОЛЖНА БЫТЬ relative */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}

/* ЛЕНТА */
.carousel-track2 {
    display: flex;
    gap: 20px;
    transition: transform .3s ease;
}

/* КАРТОЧКИ */
.carousel-item2 {
    min-width: 386px;
    width: 100%;
    height: 465px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* СТРЕЛКИ — ВОТ ТУТ ГЛАВНАЯ ФИШКА */
.carousel-arrow2 {
    cursor: pointer;
}

/* ─────────────────────────────── */
/* 📱 АДАПТИВ ДЛЯ ПЛАНШЕТА */
/* ─────────────────────────────── */
@media (max-width: 1024px) {
    .carousel-item2 {
        min-width: 300px;
        height: 220px;
    }

    .carousel-wrapper2 {
        padding: 0 0px;
        margin-bottom: 13px;
    }

    .carousel-arrow2 {
        padding: 0px 3px;
        font-size: 22px;
    }
}

/* ─────────────────────────────── */
/* 📱 АДАПТИВ ДЛЯ МОБИЛЫ */
/* ─────────────────────────────── */
@media (max-width: 600px) {

    .carousel-track2 {
        gap: 12px;
    }

    .carousel-item2 {
        min-width: 85%; /* показать 1 карточку полностью */
        height: 410px;
    }

    .carousel-wrapper {
        padding: 0 0px;
        margin-bottom: 13px;
    }

    .carousel-arrow2 {
        padding: 0px 3px;
        font-size: 20px;
    }
}

.carousel-item2__text {
    position: absolute;
    bottom: 36px;
    left: 27px;
}

.carousel-item2__text__title {
    font-weight: 700;
    font-size: 18px;
    color: #fafafa;
    padding-bottom: 12px;
}

.carousel-item2__text__desc {
    font-weight: 600;
    font-size: 16px;
    color: #fafafa;
}

.reviews__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
    padding-top: 55px;
}

.reviews__title span {
    color: #e5af71;
}

.reviews__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 40px;
}

.reviews__block {
    border: 1px solid #ebebeb;
    border-radius: 20px;
    max-width: 532px;
    width: 100%;
    padding: 35px 27px;
    margin-bottom: 20px;
}

.rev__img {
    max-width: 82px;
    height: 82px;
    object-fit: cover;
    margin-right: 30px;
}

.reviews__block__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 175%;
    color: #e5af71;
    padding-bottom: 6px;
}

.reviews__block__subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 175%;
    color: #1e1e1e;
}

.reviews__block__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 173%;
    color: #1e1e1e;
    width: auto;
    padding-top: 26px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.news__block {
    max-width: 389px;
    width: 100%;
    margin-bottom: 40px;
}

.news__block__img {
    max-width: 389px;
    width: 100%;
    height: 243px;
    margin-bottom: 14px;
}

.news__block__title {
    font-weight: 600;
    font-size: 16px;
    color: #8e8b8b;
    margin-bottom: 14px;
}

.news__block__link {
    font-weight: 600;
    font-size: 16px;
    color: #e5af71;
}

.news__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
}

.news__title span {
    color: #e5af71;
}

.news__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 50px;
}

.quest__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
    padding-bottom: 11px;
    padding-top: 30px;
}

.quest__title span {
    color: #e5af71;
}

.quest__subtitle {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 50px;
}

.faq {
    max-width: 900px;
    margin: 40px auto;
}

.faq-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.faq-item {
    border-radius: 20px;
    background: #fefefe;
    padding: 0;
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    color: #343434;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: inherit;
}

.faq-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #E5AF71;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    transition: transform .3s ease;
}

/* Поворот плюса */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .35s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 300px;
}

.button__contacts {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 13px 56px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.contacts__info__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 117%;
    color: #080808;
    padding-bottom: 58px;
}

.contacts {
    padding-top: 75px;
    padding-bottom: 54px;
}

.contacts__info {
    max-width: 520px;
    width: 100%;
}

.contacts__info__block {
    max-width: 351px;
    width: 100%;
    padding-bottom: 20px;
}

.contacts__info__block p a {
    color: #080808;
}

.contacts__info__block p a:hover {
    color: #E5AF71;
}

.contacts__info__block p {
    padding-left: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #080808;
}

.contacts__info__block div svg {
    width: 20px;
    height: 20px;
}

.map iframe {
    border-radius: 20px;
    width: 669px;
    height: 442px;
}

footer {
    padding-top: 72px;
    padding-bottom: 32px;
    background: #202020;
    color: #fff;
}

.align-items-start {
    align-items: start;
}

.footer__logo {
    padding-bottom: 26px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.footer__cust__text {
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.footer__call__phone a {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.footer__one__block {
    padding-bottom: 36px;
}

.footer__one__block a {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.footer__one__block a:hover {
    color: #e5af71;
}

.footer__call__phone a:hover {
    color: #e5af71;
}

.footer__block__link__title {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding-bottom: 20px;
}

.footer__block__link__link {
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}

.footer__block__link__link:hover {
    color: #e5af71;
}

.footer__block__link__link__p {
    padding-bottom: 15px;
}

.text-center {
    text-align: center;
    padding-top: 72px;
}

.head__block__about {
    position: relative;
    width: 100%;
    height: 358px;
    background-color: rgba(0, 0, 0, 0.60); /* затемнение */
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.breadkr {
    padding-top: 121px;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fafafa;
    padding-bottom: 7px;
}

.breadkr a {
    color: #fafafa;
}

.head__block__hr__second__page {
    border: 1px solid #e5af71;
    max-width: 466px;
    width: 100%;
    height: 0;
}

.head__block__title__second__page {
    font-weight: 600;
    font-size: 25px;
    line-height: 148%;
    color: #fafafa;
    padding-bottom: 20px;
    max-width: 1100px;
    width: 100%;
    padding-top: 44px;
}

.mt-90 {
    margin-top: 90px;
}

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

.peregorodki__block__text__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 148%;
    color: #1e1e1e;
    padding-bottom: 27px;
}

.peregorodki__block__text__descript {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #1e1e1e;
    padding-bottom: 51px;
}

.peregorodki__block__text__and__img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 51px;
}

.peregorodki__block__text__and__img__content__text {
    max-width: 550px;
    width: 100%;
}

.peregorodki__block__text__and__img__content__text__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 148%;
    color: #1e1e1e;
    padding-bottom: 34px;
}

.peregorodki__block__text__and__img__content__text__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #1e1e1e;
}

.peregorodki__block__text__and__img__pic {
    border-radius: 15px;
    max-width: 590px;
    width: 100%;
    height: 425px;
    object-fit: cover;
}

.peregorodki__block__text__only__descript {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #1e1e1e;
    padding-bottom: 44px;
}

.projects-section {
    width: 100%;
    margin: 40px 0;
}

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.projects-filter button {
    padding: 10px 22px;
    border-radius: 8px;
    background: #E5AF71;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    opacity: .85;
    transition: .2s;
}

.projects-filter button.active,
.projects-filter button:hover {
    opacity: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.projects-grid__news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.project-card__news {
    display: flex;
    flex-direction: column;
}

.project-img {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 18px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

/* Затемнение на hover */
/* тёмный слой */
.project-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: .3s ease;
    z-index: 1;           /* ← overlay ниже текста */
}

/* текстовая инфа */
.project-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: .3s ease;
    z-index: 2;           /* ← текст выше overlay */
}

.project-img:hover img {
    transform: scale(1.05);
}

.project-img:hover::after {
    opacity: 1;
}

.project-img:hover .project-info {
    opacity: 1;
}

.info-title {
    font-size: 23px;
    font-weight: 700;
}

.info-sub {
    font-size: 18px;
    opacity: .9;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0 4px;
    color: #111;
}

.project-more {
    color: #E5AF71;
    font-size: 16px;
    text-decoration: none;
}

@media(max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-img {
        height: 320px;
    }
}


.mt-55 {
    margin-top: 55px;
}

.project-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Базовый порядок — текст слева, картинка справа */
.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Четные блоки — меняем порядок */
.project-item:nth-child(even) img {
    order: 1;   /* картинку ставим слева */
}
.project-item:nth-child(even) .p-text {
    order: 2;   /* текст справа */
}

/* Нечётные — наоборот */
.project-item:nth-child(odd) img {
    order: 2;   /* картинка справа */
}
.project-item:nth-child(odd) .p-text {
    order: 1;   /* текст слева */
}

/* Дефолтный стиль картинки */
.p-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Адаптив — на телефоне всегда сначала картинка */
@media (max-width: 900px) {
    .project-item {
        grid-template-columns: 1fr;  /* одна колонка */
    }
    .project-item img,
    .project-item .p-text {
        order: unset;   /* возвращаем обычный порядок */
    }
}

.p-text h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 163%;
    color: #000;
    padding-bottom: 26px;
}

.p-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 163%;
    color: #000;
}

.price__page__img__block {
    max-width: 266px;
    width: 100%;
    height: 171px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 20px;
}

.contacts__page__phone {
    font-weight: 600;
    font-size: 20px;
    padding-left: 7px;
    color: #343434;
}

.contacts__page__mail {
    font-weight: 600;
    font-size: 20px;
    color: #343434;
    padding-left: 7px;
}

.contacts__page__adress {
    font-weight: 600;
    font-size: 20px;
    max-width: 381px;
    width: 100%;
    padding-left: 7px;
    color: #343434;
}

.map__contact iframe {
    max-width: 100%;
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.contact__page__form {
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 15px;
    padding: 50px 80px;
}

.contact__page__form__title {
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    padding-bottom: 59px;
}

.rekvizits__block {
    padding-bottom: 30px;
}

.rekvizits__block li {
    list-style-type: none;
    font-weight: 500;
    font-size: 20px;
    color: #343434;
    padding-bottom: 20px;
}

.button__header__rekvizits {
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 11px 42px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

.news__single__block__img {
    max-width: 699px;
    width: 100%;
    height: 404px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 10px;
}

.news__content__style {
    padding-bottom: 49px;
}

.news__content__style > h1, h2, h3, h4, h5, h6 {
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 600;
    font-size: 25px;
    line-height: 147%;
    color: #1e1e1e;
}

.news__content__style p {
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 147%;
    color: #1e1e1e;
}

.news__content__style ul {
    margin-left: 15px;
}

.news__content__style ul li {
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 147%;
    color: #1e1e1e;
}

.news__content__style ol {
    margin-left: 20px;
}

.news__content__style ol li {
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 147%;
    color: #1e1e1e;
}

.news__single__block__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 147%;
    color: #1e1e1e;
    padding-bottom: 49px;
}

.mobile__menu {
    display: none;
    cursor: pointer;
}

.d-none-pc {
    display: none;
}



.sitemap-section {
    padding: 70px 0;
}

.sitemap-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #343434;
}


/* ===== BLOCK TITLES ===== */

.sitemap-block-title {
    font-size: 22px;
    font-weight: 700;
    margin: 55px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e6e6e6;
}

.sitemap-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 10px;
}


/* ===== LIST STYLES (UNIVERSAL) ===== */

.sitemap-list,
.sitemap-list ul,
.page_item_has_children > ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding-left: 0;
}

.sitemap-item,
.page_item,
.page_item_has_children,
.sitemap-list li {
    margin-bottom: 8px;
    list-style-type: none;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
}


/* ===== LINKS ===== */

.sitemap-link,
.page_item a,
.sitemap-list a {
    font-size: 18px;
    color: #343434;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s ease;
    display: inline-block;
}

.sitemap-link:hover,
.page_item a:hover,
.sitemap-list a:hover {
    color: #E5AF71;
    text-decoration: underline;
}


/* ===== CHILD INDENTATION ===== */

.page_item_has_children ul,
.sitemap-list ul {
    margin-left: 22px;
    padding-left: 15px;
    border-left: 2px solid #f0f0f0;
}


/* ===== EMPTY ITEMS ===== */
.sitemap-item-empty {
    color: #888;
    font-size: 16px;
    padding-left: 5px;
}


/* ===== ACCENTED ITEMS ===== */

.sitemap-important {
    font-weight: 700;
    color: #343434;
}


/* ===== SPACING FIXES ===== */

.sitemap-section .container > *:last-child {
    margin-bottom: 0;
}


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

@media(max-width: 768px) {

    .sitemap-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .sitemap-block-title {
        font-size: 24px;
    }

    .sitemap-subtitle {
        font-size: 20px;
    }

    .sitemap-link,
    .page_item a {
        font-size: 17px;
    }

    .page_item_has_children ul {
        margin-left: 15px;
    }
}

.form-message {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* Затемнение фона */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

/* Контейнер попапа */
.popup-content {
    position: relative;
    background: #fff;
    padding: 35px 30px;
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: popupShow .3s ease;
}

/* Анимация появления */
@keyframes popupShow {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Кнопка закрытия */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Заголовок */
.popup-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Поля формы (как в твоих формах) */
.popup-form input {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px 16px;
    box-shadow: 0 0 11px 0 rgba(138, 138, 138, 0.15);
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    max-width: -webkit-fill-available;
    border: none;
}

/* Кнопка */
.popup-form button {
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(90deg, #e5af71 0%, #d89c57 48.56%, #e5af71 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

/* Мобилка */
@media (max-width: 480px) {
    .popup-content {
        width: 100%;
        max-width: 95%;
        padding: 25px 20px;
    }
}
