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

body {
    font-family: "Manrope", sans-serif;
    background: #FCF6F6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* fix admin bar icons */
#wpadminbar .ab-icon::before,
#wpadminbar .ab-item::before,
#wpadminbar .ab-empty-item::before {
    font-family: dashicons !important;
}

/* HEADER TOP */
.header-top {
    background: #1c1c1c;
    color: #fff;
    font-size: 14px;
}

.header-top__inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-top__left,
.header-top__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top__left a,
.header-top__right a,
.header-top__left span {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

/* HEADER MAIN */
.header-main {
    background: #fff;
    position: relative;
}

.header {
    position: sticky;
    top: 0;
    z-index: 9998;
}

.header-main__inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.nav {
    margin-left: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: #333;
    font-size: 15px;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-item > a:hover {
    color: #e8a39a;
}

/* submenu */
.menu-item-has-children {
    position: relative;
}

.submenu-toggle {
    display: none;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 0;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 20;
}

.sub-menu li a {
    display: block;
    padding: 12px 18px;
    color: #222;
    font-size: 15px;
    transition: background 0.25s ease, color 0.25s ease;
    font-weight: 600;
}

.sub-menu li a:hover {
    background: #f7f1ef;
    color: #e8a39a;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 47px;
    background: #e8a39a;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    text-transform: uppercase;
}

.btn:hover {
    background: #d98c82;
}

/* burger */
.burger {
    display: none;
    width: 27px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* TABLET */
@media (max-width: 1100px) {
    .menu {
        gap: 24px;
    }

    .menu-item > a {
        font-size: 15px;
    }

    .btn {
        padding: 0 20px;
        min-height: 48px;
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .header-top {
        display: none;
    }

    .header-main__inner {
        min-height: 80px;
    }

    .burger {
        display: flex;
        margin-left: auto;
    }

    .header-btn {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0 20px 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: 0.3s ease;
        z-index: 30;
        margin-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding-top: 18px;
    }

    .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .menu-item > a {
        width: 100%;
        padding: 16px 0;
        display: block;
        font-size: 17px;
    }

    .menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .menu-item-has-children > a {
        width: calc(100% - 44px);
    }

    .submenu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border: none;
        background: transparent;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }

    .submenu-toggle::before,
    .submenu-toggle::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 2px;
        background: #111;
        transition: 0.3s ease;
    }

    .submenu-toggle::after {
        transform: rotate(90deg);
    }

    .menu-item-has-children.open .submenu-toggle::after {
        transform: rotate(0deg);
    }

    .sub-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0 0 10px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .menu-item-has-children.open .sub-menu {
        display: block;
    }

    .sub-menu li a {
        padding: 10px 0 10px 16px;
        font-size: 15px;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* SMALL MOBILE */
@media (max-width: 575px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 22px;
    }

    .header-main__inner {
        min-height: 72px;
    }

    .menu-item > a {
        font-size: 16px;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 180px 0 36px;
}

.container__footer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.site-footer__decor img {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-footer__decor--left {
    top: 70px;
    left: 0;
    max-width: 320px;
}

.site-footer__decor--right {
    right: 0;
    bottom: 0;
    max-width: 360px;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 70px;
}

.site-footer__logo {
    display: inline-block;
    color: #111;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.site-footer__text {
    max-width: 310px;
    color: #4c4c4c;
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 34px;
}

.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #2f2f2f;
    font-size: 20px;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.site-footer__contact:hover {
    opacity: 0.75;
}

.site-footer__contact::before {
    content: '';
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.site-footer__contact--address::before {
    background-image: url("/wp-content/uploads/2026/04/vector-2.svg");
}

.site-footer__contact--phone::before {
    background-image: url("/wp-content/uploads/2026/04/vector-1.svg");
}

.site-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 54px;
}

.site-footer__menu li a {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
    color: #8b8b8b;
    font-size: 20px;
    line-height: 1.45;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.site-footer__menu li a::before {
    content: '';
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7.5' stroke='%23e8a39a' stroke-width='1.5'/%3E%3Cpath d='M10 6V14M6 10H14' stroke='%23e8a39a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.site-footer__menu li a:hover {
    color: #111;
}

.site-footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer__copy,
.site-footer__bottom-link {
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.4;
}

.site-footer__bottom-link {
    transition: opacity 0.3s ease;
}

.site-footer__bottom-link:hover {
    opacity: 0.75;
}

@media (max-width: 1199px) {
    .site-footer {
        padding: 90px 0 30px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px 40px;
    }

    .site-footer__col--info {
        grid-column: 1 / -1;
    }

    .site-footer__logo {
        font-size: 52px;
    }

    .site-footer__text,
    .site-footer__contact,
    .site-footer__menu li a {
        font-size: 18px;
    }

    .site-footer__menu {
        padding-top: 0;
    }

    .site-footer__decor--left {
        max-width: 220px;
    }

    .site-footer__decor--right {
        max-width: 260px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 70px 0 28px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    .site-footer__logo {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .site-footer__text {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .site-footer__contacts {
        gap: 14px;
    }

    .site-footer__contact {
        font-size: 17px;
        gap: 12px;
    }

    .site-footer__menu {
        gap: 18px;
    }

    .site-footer__menu li a {
        font-size: 17px;
        gap: 12px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 18px;
    }

    .site-footer__copy,
    .site-footer__bottom-link {
        font-size: 14px;
    }

    .site-footer__decor--left {
        max-width: 150px;
        top: 30px;
    }

    .site-footer__decor--right {
        max-width: 180px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 56px 0 24px;
    }

    .site-footer__logo {
        font-size: 32px;
    }

    .site-footer__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .site-footer__contact,
    .site-footer__menu li a {
        font-size: 16px;
    }

    .site-footer__decor--left {
        max-width: 110px;
        opacity: 0.7;
    }

    .site-footer__decor--right {
        max-width: 130px;
        opacity: 0.7;
    }
}

.contact-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #ddd;
}

.contact-hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 1.2s ease, visibility 1.2s ease, transform 6s ease;
}

.contact-hero__slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 28, 0.35);
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.contact-hero__content {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.contact-hero__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero__icon img {
    max-width: 50px;
    width: 100%;
    height: auto;
    display: block;
}

.contact-hero__title {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-hero,
    .contact-hero__content {
        min-height: 440px;
    }

    .contact-hero__title {
        font-size: 52px;
    }

    .contact-hero__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .contact-hero,
    .contact-hero__content {
        min-height: 360px;
    }

    .contact-hero__content {
        padding: 60px 0;
    }

    .contact-hero__title {
        font-size: 40px;
    }

    .contact-hero__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .contact-hero__overlay {
        background: rgba(28, 28, 28, 0.42);
    }
}

@media (max-width: 575px) {
    .contact-hero,
    .contact-hero__content {
        min-height: 300px;
    }

    .contact-hero__title {
        font-size: 32px;
    }

    .contact-hero__icon {
        width: 42px;
        height: 42px;
    }
}

.breadcrumbs {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumbs__inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.breadcrumbs__link,
.breadcrumbs__current,
.breadcrumbs__sep {
    font-size: 18px;
    line-height: 1.4;
}

.breadcrumbs__link {
    color: #fff;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.breadcrumbs__link:hover {
    color: #e8a39a;
}

.breadcrumbs__sep {
    color: #fff;
}

.breadcrumbs__current {
    color: #fff;
}

@media (max-width: 767px) {
    .breadcrumbs__inner {
        min-height: 46px;
        gap: 8px;
        padding: 8px 0;
    }

    .breadcrumbs__link,
    .breadcrumbs__current,
    .breadcrumbs__sep {
        font-size: 13px;
    }
}

.contact-info {
    padding: 70px 0 80px;
    background: #f8f8f8;
}

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

.contact-info__card {
    background: #f4eded;
    min-height: 250px;
    padding: 42px 30px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon img {
    max-width: 50px;
    max-height: 100%;
    display: block;
    width: 100%;
}

.contact-info__title {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 400;
    color: #2a2a2a;
}

.contact-info__title a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info__title a:hover {
    color: #e8a39a;
}

.contact-info__text {
    max-width: 290px;
    font-size: 19px;
    line-height: 1.5;
    color: #4b4b4b;
}

@media (max-width: 1199px) {
    .contact-info {
        padding: 60px 0 70px;
    }

    .contact-info__grid {
        gap: 24px;
    }

    .contact-info__card {
        min-height: 220px;
        padding: 34px 24px 30px;
    }

    .contact-info__title {
        font-size: 22px;
    }

    .contact-info__text {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info__card:last-child {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-info {
        padding: 50px 0 55px;
    }

    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-info__card,
    .contact-info__card:last-child {
        grid-column: auto;
        min-height: auto;
        padding: 30px 20px 26px;
    }

    .contact-info__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

    .contact-info__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-info__text {
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-info {
        padding: 40px 0 45px;
    }

    .contact-info__card {
        padding: 26px 16px 22px;
    }

    .contact-info__title {
        font-size: 18px;
    }

    .contact-info__text {
        font-size: 15px;
        line-height: 1.45;
    }
}

.contact-booking {
    padding: 0 20px 100px;
    background: #f8f8f8;
}

.contact-booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 760px;
}

.contact-booking__map {
    min-height: 760px;
    background: #ddd;
    border-radius: 20px;
}

.contact-booking__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.contact-booking__content {
    padding: 20px 20px 10px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-booking__topline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-booking__topicon {
    width: 46px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-booking__topicon img {
    display: block;
    max-width: 40px;
    height: auto;
    width: 100%;
}

.contact-booking__address {
    font-size: 20px;
    line-height: 1.3;
    color: #2a2a2a;
    font-weight: 500;
}

.contact-booking__title {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0 0 26px;
}

.contact-booking__info {
    margin-bottom: 20px;
}

.contact-booking__info p {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
    margin: 0 0 6px;
}

.contact-booking__form {
    width: 100%;
}

.contact-booking__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
}

.contact-booking__field {
    display: flex;
    flex-direction: column;
}

.contact-booking__field--full {
    grid-column: 1 / -1;
}

.contact-booking__field label {
    font-size: 18px;
    line-height: 1.3;
    color: #2b2b2b;
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-booking__field input,
.contact-booking__field select,
.contact-booking__field textarea {
    width: 100%;
    border: 1px solid #dddddd;
    background: transparent;
    outline: none;
    padding: 0 20px;
    font-size: 16px;
    color: #2b2b2b;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}

.contact-booking__field input,
.contact-booking__field select {
    height: 50px;
}

.contact-booking__field textarea {
    min-height: 170px;
    resize: vertical;
    padding-top: 18px;
}

.contact-booking__field input::placeholder,
.contact-booking__field textarea::placeholder {
    color: #b4b4b4;
}

.contact-booking__field input:focus,
.contact-booking__field select:focus,
.contact-booking__field textarea:focus {
    border-color: #d99b92;
    box-shadow: 0 0 0 1px #d99b92;
}

.contact-booking__btn {
    margin-top: 26px;
    min-width: 218px;
    height: 52px;
    border: none;
    background: #e2a196;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
    padding: 0 26px;
    border-radius: 5px;
}

.contact-booking__btn:hover {
    background: #cf8f84;
}

@media (max-width: 1399px) {
    .contact-booking__content {
        padding: 38px 40px 44px;
    }

    .contact-booking__title {
        font-size: 58px;
    }

    .contact-booking__address,
    .contact-booking__info p {
        font-size: 18px;
    }

    .contact-booking__field label,
    .contact-booking__field input,
    .contact-booking__field select,
    .contact-booking__field textarea {
        font-size: 16px;
    }

    .contact-booking__btn {
        font-size: 22px;
        height: 58px;
    }
}

@media (max-width: 1199px) {
    .contact-booking {
        padding-bottom: 80px;
    }

    .contact-booking__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-booking__map {
        min-height: 480px;
    }

    .contact-booking__content {
        padding: 38px 32px 40px;
    }

    .contact-booking__title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .contact-booking {
        padding-bottom: 60px;
    }

    .contact-booking__map {
        min-height: 320px;
    }

    .contact-booking__content {
        padding: 30px 16px 32px;
    }

    .contact-booking__topline {
        gap: 10px;
        margin-bottom: 16px;
    }

    .contact-booking__address {
        font-size: 16px;
    }

    .contact-booking__title {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .contact-booking__info {
        margin-bottom: 28px;
    }

    .contact-booking__info p {
        font-size: 16px;
    }

    .contact-booking__fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-booking__field input,
    .contact-booking__field select {
        height: 54px;
        padding: 0 16px;
    }

    .contact-booking__field textarea {
        min-height: 130px;
        padding: 14px 16px;
    }

    .contact-booking__field label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .contact-booking__btn {
        width: 100%;
        min-width: 100%;
        height: 54px;
        font-size: 18px;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .contact-booking__map {
        min-height: 280px;
    }

    .contact-booking__title {
        font-size: 30px;
    }
}

.news-page {
    padding: 70px 0 100px;
}

.news-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 36px;
    align-items: start;
    position: relative;
}



.news-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.news-list__tax {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.news-item__image {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.news-item__image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.news-item__card {
    width: calc(100% - 44px);
    margin: -28px auto 0;
    background: #fff;
    padding: 18px 22px 20px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.news-item__meta {
    margin-bottom: 8px;
}

.news-item__author {
    font-size: 12px;
    line-height: 1.3;
    color: #a3a3a3;
    position: relative;
    padding-left: 21px;
    padding-top: 2px;
}

.news-item__author::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='20' viewBox='0 0 16 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19V17C15 15.9391 14.5786 14.9217 13.8284 14.1716C13.0783 13.4214 12.0609 13 11 13H5C3.93913 13 2.92172 13.4214 2.17157 14.1716C1.42143 14.9217 1 15.9391 1 17V19M12 5C12 7.20914 10.2091 9 8 9C5.79086 9 4 7.20914 4 5C4 2.79086 5.79086 1 8 1C10.2091 1 12 2.79086 12 5Z' stroke='%23e2a196' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.news-item__title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.news-item__title a {
    color: #4f8ed8;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 23px;
}

.news-item__title a:hover {
    opacity: 0.8;
}

.news-item__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 18px;
}

.news-item__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 40px;
    border: 1px solid #efc3bb;
    color: #d59e95;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    border-radius: 5px;
}

.news-item__more:hover {
    background: #e2a196;
    color: #fff;
    border-color: #e2a196;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 50px;
}

.news-widget {
    background: #fff;
    padding: 30px;
}

.news-widget__title {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.3;
    color: #2a2a2a;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.news-widget__title::after {
    content: "";
    width: 34px;
    height: 2px;
    background: #e2a196;
    position: absolute;
    left: 0;
    bottom: 0;
}

.news-widget__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-widget__categories li + li {
    margin-top: 12px;
}

.news-widget__categories a {
    color: #8b8b8b;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-widget__categories a:hover {
    color: #e2a196;
}

.news-widget__recommended {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-mini {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
}

.news-mini__image {
    display: block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
}

.news-mini__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 120px;
}

.news-mini__meta {
    font-size: 11px;
    line-height: 1.3;
    color: #a3a3a3;
    margin-bottom: 4px;
}

.news-mini__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.news-mini__title a {
    color: #337ab7;
    text-decoration: none;
}

.news-widget__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 8px;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #ebebeb;
    background: #fafafa;
    color: #9a9a9a;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.news-tag:hover {
    border-color: #e2a196;
    color: #e2a196;
    background: #fff;
}

.news-pagination {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    margin: 0 4px;
    border: 1px solid #ececec;
    background: #fff;
    color: #8f8f8f;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background: #e2a196;
    border-color: #e2a196;
    color: #fff;
}

.news-empty {
    font-size: 16px;
    color: #666;
}

.news-widget__categories li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
}

/* стрелка */
.news-widget__categories li a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) translateX(-6px);
    opacity: 0;
    transition: 0.3s ease;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23e2a196' stroke-width='2'%3E%3Cpath d='M4 8h8M8 4l4 4-4 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* hover эффект */
.news-widget__categories li a:hover {
    color: #e2a196;
}

.news-widget__categories li a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 991px) {
    .news-page__grid {
        grid-template-columns: 1fr;
    }

    .news-list__tax {
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .news-sidebar {
        order: 2;
    }

    .news-page__content {
        order: 1;
    }
}

@media (max-width: 767px) {
    .news-page {
        padding: 40px 0 60px;
    }

    .news-item__image img {
        height: 260px;
    }

    .news-item__card {
        width: calc(100% - 20px);
        padding: 16px;
    }

    .news-item__title {
        font-size: 16px;
    }

    .news-widget {
        padding: 16px 14px 18px;
    }

    .news-widget__title {
        font-size: 18px;
    }
}

.single-news__thumbnail {
    margin-bottom: 28px;
    border-radius: 4px;
    overflow: hidden;
}

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

.single-news__meta {
    margin-bottom: 18px;
}

.single-news__date {
    font-size: 15px;
    line-height: 1.4;
    color: #5b5b5b;
    margin-bottom: 16px;
}

.single-news__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-news__category {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.4;
    color: #b28f8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-news__category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5A1.5 1.5 0 0 1 3.5 3H6l1.2 1.5H12.5A1.5 1.5 0 0 1 14 6v5.5A1.5 1.5 0 0 1 12.5 13h-9A1.5 1.5 0 0 1 2 11.5v-7Z' stroke='%23e2a196' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.single-news__category:hover {
    color: #e2a196;
}

.single-news__title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    color: #2f2f2f;
}

.single-news__content {
    font-size: 18px;
    line-height: 150%;
    color: #3f3f3f;
}

.single-news__content p {
    margin-bottom: 22px;
}

.single-news__content h2 {
    margin: 34px 0 18px;
    font-size: 33px;
    line-height: 1.2;
    font-weight: 600;
    color: #2f2f2f;
}

.single-news__content h3 {
    margin: 28px 0 16px;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 600;
    color: #2f2f2f;
}

.single-news__content ul,
.single-news__content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.single-news__content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.single-news__content strong {
    font-weight: 700;
    color: #2d2d2d;
}

.single-news__content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
}

@media (max-width: 991px) {
    .single-news__title {
        font-size: 26px;
    }

    .single-news__content {
        font-size: 18px;
    }

    .single-news__content h2 {
        font-size: 26px;
    }

    .single-news__content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .single-news__thumbnail {
        margin-bottom: 20px;
    }

    .single-news__date {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .single-news__category {
        font-size: 14px;
    }

    .single-news__title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .single-news__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .single-news__content h2 {
        font-size: 24px;
        margin: 28px 0 14px;
    }

    .single-news__content h3 {
        font-size: 20px;
    }
}

.news-widget__search form {
    display: flex;
    gap: 10px;
}

.news-widget__search input {
    width: 100%;
    height: 36px;
    border: 1px solid #dcdcdc;
    padding: 0 12px;
    outline: none;
    font-size: 14px;
    background: #fff;
}

.news-widget__search button {
    height: 36px;
    background: #e2a196;
    color: #fff;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.news-widget__search button:hover {
    background: #d68f84;
}

.news-sidebar__image-block {
    margin-top: 24px;
    background: #fff;
    overflow: hidden;
}

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

.news-sidebar__promo {
    margin-top: 24px;
    background: #fcf3f2;
    padding: 34px 24px;
    text-align: center;
}

.news-sidebar__promo-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-sidebar__promo-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: promoPulse 2.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes promoPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.news-sidebar__promo-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 12px;
}

.news-sidebar__promo-text {
    font-size: 16px;
    line-height: 1.5;
    color: #5a5a5a;
}

@media (max-width: 767px) {
    .news-sidebar__image-block,
    .news-sidebar__promo {
        margin-top: 18px;
    }

    .news-sidebar__promo {
        padding: 24px 18px;
    }

    .news-sidebar__promo-title {
        font-size: 22px;
    }

    .news-sidebar__promo-text {
        font-size: 15px;
    }
}

.services-archive {
    padding: 60px 0 100px;
    background: #f8f2f2;
    position: relative;
    overflow: hidden;
}

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

.service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 124px;
    padding: 34px 32px;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 10px;
}

.service-card__bg,
.service-card__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-card__bg {
    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.35s ease, transform 0.6s ease;
}

.service-card__overlay {
    background: rgba(28, 28, 28, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card__title,
.service-card__arrow {
    position: relative;
    z-index: 2;
    transition: color 0.35s ease, transform 0.35s ease;
}

.service-card__title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #2f2f2f;
    max-width: calc(100% - 34px);
}

.service-card__arrow {
    font-size: 32px;
    line-height: 1;
    color: #4b8ed8;
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card.has-image:hover .service-card__bg {
    opacity: 1;
    transform: scale(1);
}

.service-card.has-image:hover .service-card__overlay {
    opacity: 1;
}

.service-card.has-image:hover .service-card__title,
.service-card.has-image:hover .service-card__arrow {
    color: #fff;
}

.services-archive__empty {
    font-size: 18px;
    color: #666;
}

@media (max-width: 1199px) {
    .services-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-service__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services-archive {
        padding: 40px 0 60px;
    }

    .services-archive__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 100px;
        padding: 24px 20px;
    }

    .service-card__title {
        font-size: 20px;
    }

    .service-card__arrow {
        font-size: 26px;
    }

    .single-service {
        padding: 40px 0 60px;
    }

    .single-service__text {
        font-size: 16px;
        line-height: 1.7;
    }

    .single-service__text h2 {
        font-size: 28px;
    }

    .single-service__text h3 {
        font-size: 22px;
    }
}

.work-steps {
    padding: 70px 0 100px;
    background: #f8f8f8;
}

.work-steps__head {
    text-align: center;
    margin-bottom: 48px;
}

.work-steps__subtitle {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e2a196;
    margin-bottom: 18px;
}

.work-steps__title {
    font-size: 72px;
    line-height: 1.08;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0;
}

.work-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: start;
}

.work-step {
    text-align: center;
}

.work-step__circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 390px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: #f5eded;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, transform 0.35s ease;
}

.work-step__image {
    width: 62%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

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

.work-step__icon {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #e2a196;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.work-step__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.work-step__title {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0 0 16px;
    transition: color 0.35s ease;
}

.work-step__number {
    font-size: 40px;
    line-height: 1;
    color: #e2a196;
    transition: color 0.35s ease;
}

.work-step:hover .work-step__circle,
.work-step--active .work-step__circle {
    background: #de978f;
    transform: translateY(-4px);
}

.work-step:hover .work-step__icon,
.work-step--active .work-step__icon {
    background: #fff;
}

.work-step:hover .work-step__title,
.work-step--active .work-step__title {
    color: #fff;
}

.work-step:hover .work-step__number,
.work-step--active .work-step__number {
    color: #fff;
}

.steps {
    padding: 80px 0 50px;
    background: #f8f8f8;
}

.steps__head {
    text-align: center;
    margin-bottom: 60px;
}

.steps__subtitle {
    font-size: 16px;
    letter-spacing: 0.2em;
    color: #e2a196;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps__subtitle img {
    width: 50px;
}

.steps__title {
    font-size: 44px;
    font-weight: 400;
    margin: 0;
}

.services__prices__title {
    font-size: 44px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

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

/* КРУГ */
.step__circle {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1.1;
    border-radius: 50%;
    background: #f3eceb;
    margin: 0 auto;
    position: relative;

    display: flex;
    align-items: start;
    justify-content: center;

    transition: 0.4s;
}

/* КАРТИНКА ВНУТРИ */
.step__img {
    width: 60%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 50px;
}

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

/* ТЕКСТ ВНУТРИ */
.step__content {
    position: absolute;
    bottom: 40px;
    text-align: center;
}

.step__text {
    font-size: 22px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.step__num {
    font-size: 26px;
    color: #e2a196;
    transition: 0.3s;
}

/* ИКОНКА */
.step__icon {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);

    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e2a196;

    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon img {
    width: 36px;
    height: 36px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

/* ACTIVE / HOVER */
.step:hover .step__circle,
.step--active .step__circle {
    background: #de978f;
}

.step:hover .step__text,
.step--active .step__text {
    color: #fff;
}

.step:hover .step__num,
.step--active .step__num {
    color: #fff;
}



.step:hover .step__icon svg,
.step--active .step__icon svg {
    stroke: #de978f;
}

@media (max-width: 992px) {
    .steps__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}

.service-page .news-page__grid {
    align-items: start;
}

.single-service-content__thumbnail {
    margin-bottom: 34px;
    overflow: hidden;
}

.single-service-content__thumbnail img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.single-service-content__title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    color: #2f2f2f;
}

.single-service-content__text {
    font-size: 20px;
    line-height: 1.75;
    color: #3e3e3e;
    margin-bottom: 42px;
}

.single-service-content__text p {
    margin-bottom: 20px;
}

.single-service-content__text h2 {
    margin: 32px 0 16px;
    font-size: 38px;
    line-height: 1.2;
    color: #2f2f2f;
}

.single-service-content__text ul {
    padding-left: 16px;
}

.single-service-content__text ol {
    padding-left: 16px;
}

.single-service-content__text ul li {
    list-style-type: disc;
}

.single-service-content__text ol li {
    list-style-type: decimal;
}

.service-prices__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.service-prices__tab {
    border: 1px solid #e3b0a8;
    background: #fff;
    color: #d78f84;
    min-height: 48px;
    padding: 0 22px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s ease;
}

.service-prices__tab.is-active,
.service-prices__tab:hover {
    background: #e2a196;
    color: #fff;
    border-color: #e2a196;
}

.service-prices__panel {
    display: none;
}

.service-prices__panel.is-active {
    display: block;
}

.service-prices__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 24px;
}

.service-price-card {
    position: relative;
    background: #fff;
    padding: 20px 20px;
    min-height: 160px;
    overflow: hidden;
    border-radius: 5px;
}

.service-price-card__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.service-price-card__title {
    font-size: 23px;
    line-height: 1.25;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0;
}

.service-price-card__price {
    text-align: right;
    color: #e2a196;
    flex-shrink: 0;
}

.service-price-card__price span {
    display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 6px;
    text-transform: lowercase;
}

.service-price-card__price strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 400;
}

.service-price-card__text {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 85%;
    padding-top: 15px;
}

.service-price-card--featured {
    color: #fff;
}

.service-price-card--featured .service-price-card__bg,
.service-price-card--featured .service-price-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    opacity: 0;
    transform: scale(1.1);
    transition: 0.6s ease;
}

.service-price-card--featured .service-price-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-price-card--featured .service-price-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 28, 0.55);
    z-index: 2;

    opacity: 0;
    transition: 0.4s ease;
}

.service-price-card--featured .service-price-card__content {
    position: relative;
    z-index: 3;
    transition: 0.4s ease;
}

.service-price-card:hover .service-price-card__bg {
    opacity: 1;
    transform: scale(1);
}

.service-price-card:hover .service-price-card__overlay {
    opacity: 1;
}

.service-price-card--featured .service-price-card__title,
.service-price-card--featured .service-price-card__text,
.service-price-card--featured .service-price-card__price,
.service-price-card--featured .service-price-card__price strong,
.service-price-card--featured .service-price-card__price span {
    color: #2f2f2f;
}

.service-price-card {
    color: #2f2f2f;
}

.service-price-card:hover .service-price-card__title,
.service-price-card:hover .service-price-card__text,
.service-price-card:hover .service-price-card__price,
.service-price-card:hover .service-price-card__price strong,
.service-price-card:hover .service-price-card__price span {
    color: #fff;
}

.service-price-card:hover .service-price-card__content {
    transform: translateY(-5px);
}

@media (max-width: 1199px) {
    .single-service-content__title {
        font-size: 50px;
    }

    .service-prices__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .single-service-content__title {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .single-service-content__text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .service-prices__nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .service-prices__tab {
        width: 100%;
        min-height: 44px;
        font-size: 15px;
    }

    .service-price-card {
        padding: 20px 18px;
        min-height: auto;
    }

    .service-price-card__head {
        flex-direction: column;
        gap: 12px;
    }

    .service-price-card__title {
        font-size: 22px;
    }

    .service-price-card__price {
        text-align: left;
        display: flex;
        gap: 10px;
    }

    .service-price-card__price span,
    .service-price-card__price strong {
        font-size: 20px;
    }

    .service-price-card__text {
        max-width: 100%;
        font-size: 16px;
        padding-top: 15px;
    }
}
.about-hero {
    padding: 80px 0;
}

.about-hero__container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

/* ===== IMAGES ===== */

.about-hero__images {
    position: relative;
    width: 100%;
}

.about-hero__img {
    position: absolute;
    overflow: hidden;
}

.about-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* левая */
.about-hero__img--left {
    width: 420px;
    height: 420px;
    left: 0;
    top: 0;
    z-index: 1;
}

/* правая */
.about-hero__img--right {
    width: 420px;
    height: 420px;
    left: 161px;
    top: 140px;
    z-index: 2;
}

/* контакт */
.about-hero__contact {
    position: absolute;
    bottom: -20px;
    left: 60px;
    background: #2c2c2c;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border-right: 7px solid #e67d73;
    border-radius: 100px 0 0 100px;
}

.about-hero__contact-icon {
    font-size: 18px;
    background: #FCF6F6;
    border-radius: 50%;
    justify-content: center;
    margin: 0 10px 0 0;
    display: flex;
    padding: 13px;
}

.about-hero__contact-text span {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.about-hero__contact-text strong a {
    font-size: 16px;
    color: #fff;
}

/* ===== CONTENT ===== */

.about-hero__content {
    width: 100%;
}

.about-hero__label {
    font-size: 18px;
    color: #e67e73;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-hero__title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-hero__text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.about-hero__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about-hero__stat {
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}



/* кнопка */

.about-hero__btn {
    display: inline-block;
    padding: 14px 26px;
    background: #e67e73;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.about-hero__btn:hover {
    background: #d96a60;
}

.about__block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-special {
    position: relative;
    overflow: hidden;
    background: #f7f1f0;
    padding: 94px 0 110px;
}

.about-special__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.about-special__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.32;
}

.about-special__container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-special__content {
    max-width: 560px;
    margin-bottom: 34px;
}

.about-special__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dfa098;
}

.about-special__label-icon img {
    width: 50px;
}

.about-special__title {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 0.98;
    font-weight: 400;
    color: #313131;
}

.about-special__text {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: #5b5b5b;
}

.about-special__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #dc9a92;
    min-height: 128px;
    overflow: hidden;
    border-radius: 10px;
}

.about-special__stats-bg {
    position: absolute;
    border-radius: 999px;
    background: rgba(94, 54, 61, 0.12);
    pointer-events: none;
}

.about-special__stats-bg--left {
    width: 220px;
    height: 220px;
    left: 80px;
    bottom: -130px;
}

.about-special__stats-bg--center {
    width: 280px;
    height: 280px;
    left: 265px;
    bottom: -190px;
}

.about-special__stat {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 50px 26px;
}

.about-special__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 56px);
    background: rgba(255, 255, 255, 0.28);
}

.about-special__stat-icon img {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.about-special__stat-number {
    margin-bottom: 6px;
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.about-special__stat-text {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.about-special {
    background-image: url('/wp-content/uploads/2026/04/bg-16.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 1100px) {
    .about-special__title {
        font-size: 48px;
    }

    .about-special__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-special__stat:nth-child(2)::after {
        display: none;
    }

    .about-hero__img--right {
        width: 420px;
        height: 420px;
        left: 101px;
        top: 110px;
        z-index: 2;
    }
}

@media (max-width: 992px) {
        .about-hero__img--right {
        width: 380px;
        height: 380px;
        left: 101px;
        top: 110px;
        z-index: 2;
    }
}

@media (max-width: 767px) {

    .about__block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

    .about-hero__img {
    position: relative;
    overflow: hidden;
}

.about-hero__img--left {
    width: 100%;
    height: 400px;
    left: 0;
    top: 0;
    z-index: 1;
}

.about-hero__img--right {
        width: 100%;
        height: 480px;
        left: 0;
        top: 10px;
        z-index: 2;
    }

    .about-hero__contact {
        display: none;
    }

    .about-hero {
    padding: 80px 20px;
}

    .about-special {
        padding: 70px 0 80px;
    }

    .about-special__content {
        margin-bottom: 26px;
    }

    .about-special__title {
        font-size: 34px;
        line-height: 1.05;
    }

    .about-special__text {
        font-size: 15px;
    }

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

    .about-special__stat {
        padding: 22px 20px;
    }

    .about-special__stat::after {
        display: none;
    }

    .about-special__stats-bg--left,
    .about-special__stats-bg--center {
        display: none;
    }
}

.reviews-section {
    position: relative;
    padding: 90px 0 100px;
    background: #fbf5f4;
    overflow: hidden;
}

.reviews-section__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-section__grid {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.reviews-section__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9f4f49;
}

.reviews-section__label-icon img {
    width: 50px;
    line-height: 1;
}

.reviews-section__title {
    margin: 0;
    font-size: 45px;
    line-height: 0.98;
    font-weight: 400;
    color: #353535;
}

.reviews-section__decor {
    display: flex;
    gap: 38px;
    align-items: flex-start;
    margin-top: 56px;
}

.reviews-section__decor-item {
    position: relative;
    overflow: hidden;
    background: #f0e5e2;
}

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

/* форма, приближенная к макету */
.reviews-section__decor-item--left,
.reviews-section__decor-item--right {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 110px;
    border-bottom-right-radius: 110px;
    background-color: transparent;
}

.reviews-section__right {
    min-width: 0;
}

.reviews-section__slider {
    overflow: hidden;
    width: 100%;
}

.reviews-section__track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.reviews-section__slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding-right: 8px;
}

.reviews-section__card {
    background: #fff;
    border-radius: 34px;
    min-height: 548px;
    padding: 54px 54px 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews-section__avatar {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 34px;
    flex-shrink: 0;
}

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

.reviews-section__text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    line-height: 1.55;
    color: #363636;
}

.reviews-section__bottom {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid #e7dfdd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reviews-section__name {
    font-size: 24px;
    line-height: 1.2;
    color: #353535;
}

.reviews-section__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e4a29a;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.reviews-section__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

.reviews-section__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #e4a29a;
    opacity: 0.75;
    cursor: pointer;
    position: relative;
    transition: 0.25s ease;
}

.reviews-section__dot.is-active {
    background: transparent;
    opacity: 1;
}

.reviews-section__dot.is-active::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid #e4a29a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
    .reviews-section {
        padding: 80px 0 90px;
    }

    .reviews-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-section__left {
        max-width: 700px;
    }

    .reviews-section__title {
        font-size: 54px;
    }

    .reviews-section__decor {
        margin-top: 36px;
    }

    .reviews-section__card {
        min-height: auto;
    }

    .reviews-section__text {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 64px 0 74px;
    }

    .reviews-section__container {
        padding: 0 16px;
    }

    .reviews-section__title {
        font-size: 38px;
        line-height: 1.02;
    }

    .reviews-section__decor {
        gap: 18px;
        margin-top: 28px;
    }

    .reviews-section__decor-item--left,
    .reviews-section__decor-item--right {
        width: calc(100% - 9px);
        height: 100%;
        border-bottom-left-radius: 70px;
        border-bottom-right-radius: 70px;
    }

    .reviews-section__card {
        border-radius: 24px;
        padding: 28px 20px 24px;
    }

    .reviews-section__avatar {
        width: 88px;
        height: 88px;
        margin-bottom: 22px;
    }

    .reviews-section__text {
        font-size: 18px;
        line-height: 1.6;
    }

    .reviews-section__bottom {
        margin-top: 26px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .reviews-section__name {
        font-size: 24px;
    }

    .reviews-section__rating {
        font-size: 16px;
        gap: 6px;
        padding: 8px 16px;
    }

    .reviews-section__dots {
        gap: 16px;
        margin-top: 24px;
    }

    .reviews-section__dot {
        width: 10px;
        height: 10px;
    }

    .reviews-section__dot.is-active::before {
        width: 18px;
        height: 18px;
    }
}

.header-top__right a img {
    max-width: 20px;
}

.logos-slider {
    padding: 70px 0;
    overflow: hidden;
    background: #fbf5f4;
}

.logos-slider__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.logos-slider__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 90px;
    will-change: transform;
}

.logos-slider__item {
    flex: 0 0 auto;
    width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-slider__item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.logos-slider__item:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .logos-slider {
        padding: 55px 0;
    }

    .logos-slider__track {
        gap: 60px;
    }

    .logos-slider__item {
        width: 180px;
        height: 90px;
    }
}

@media (max-width: 767px) {
    .logos-slider {
        padding: 40px 0;
    }

    .logos-slider__container {
        padding: 0 16px;
    }

    .logos-slider__track {
        gap: 36px;
    }

    .logos-slider__item {
        width: 140px;
        height: 70px;
    }
}

.ns-hero {
    position: relative;
    overflow: hidden;
    background: #fcfbfb;
    padding: 60px 0 90px;
    min-height: 760px;
}

.ns-hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.ns-hero__content {
    position: relative;
    min-height: 650px;
}

/* ФОН */

.ns-hero__bg-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.ns-hero__bg-shape--top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;

}

.ns-hero__bg-shape--left {
position: absolute;
    left: 0;
    bottom: 0;
    width: 420px;
    height: 320px;
    background: #f5e7e4;
    z-index: 0;

    clip-path: path("M 0 0 L 0 320 L 420 320 Q 300 210 160 210 Q 40 210 0 0 Z");
}

.ns-hero__bg-shape--right {
     position: absolute;
    right: 0;
    bottom: 0;
    width: 420px;
    height: 320px;
    background: #f3dfdd;
    z-index: 0;

    clip-path: path("M 420 0 L 420 320 L 0 320 Q 120 220 260 220 Q 380 220 420 0 Z");
}

/* ЗАГОЛОВОК */

.ns-hero__title {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: 0;
    width: 100%;
    max-width: 1380px;

    font-size: clamp(64px, 16vw, 230px);
    line-height: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111;
    white-space: nowrap;
}

.ns-hero__title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        filter 0.6s ease;
}

.ns-hero__title span.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* КАРТИНКА */

.ns-hero__image-wrap {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: min(36vw, 540px);
    aspect-ratio: 1.22 / 1;
}

.ns-hero__image-ring {
    position: absolute;
    inset: 0;
    border: 2px solid #d99991;
    border-radius: 50% 45% 50% 45% / 50% 55% 45% 50%;
    transform: rotate(-8deg);
}

.ns-hero__image {
    position: absolute;
    inset: 16px;
    overflow: hidden;
    border-radius: 50% 45% 50% 45% / 50% 55% 45% 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

/* МЕТРО */

.ns-hero__metro {
    position: absolute;
    right: 160px;
    bottom: 70px;
    z-index: 3;

    font-size: clamp(28px, 4vw, 72px);
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #8f8992;
}

.ns-hero__subtitle {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translateX(-50%);
    z-index: 3;

    margin: 0;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    color: #27252A;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* ДЕКОР */

.ns-hero__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.ns-hero__decor--leaf {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(28vw, 420px);
    opacity: 0.18;
}

.ns-hero__decor--leaf img {
    width: 100%;
    display: block;
}

.ns-hero__decor--star {
    color: #d58e87;
    font-size: 34px;
    line-height: 1;
    animation: nsFloat 4s ease-in-out infinite;
}

.ns-hero__decor--star-1 {
    top: 180px;
    left: 32%;
    animation-delay: 0s;
}

.ns-hero__decor--star-2 {
    top: 340px;
    left: 29%;
    font-size: 22px;
    animation-delay: 1s;
}

.ns-hero__decor--star-3 {
    right: 40%;
    bottom: 135px;
    font-size: 26px;
    animation-delay: 2s;
}

@keyframes nsFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ПЛАВНОЕ ПОЯВЛЕНИЕ ФОТО */

.ns-hero__image-wrap,
.ns-hero__metro,
.ns-hero__decor--leaf {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.ns-hero__image-wrap.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ns-hero__metro.is-show {
    opacity: 1;
    transform: translateY(0);
}

.ns-hero__decor--leaf.is-show {
    opacity: 0.18;
    transform: translateX(-50%) translateY(0);
}

/* Для метро отдельно */
.ns-hero__metro {
    transform: translateY(30px);
}

/* АДАПТИВ */

@media (max-width: 1200px) {
    .ns-hero {
        min-height: 640px;
        padding: 40px 0 80px;
    }

    .ns-hero__content {
        min-height: 560px;
    }

    .ns-hero__image-wrap {
        top: 150px;
        width: min(48vw, 470px);
    }

    .ns-hero__metro {
        right: 60px;
        bottom: 100px;
    }
}

@media (max-width: 992px) {
    .ns-hero {
        min-height: auto;
        padding: 40px 0 70px;
    }

    .ns-hero__content {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-top: 40px;
    }

    .ns-hero__title {
        position: relative;
        top: 40px;
        left: auto;
        transform: none;
        max-width: 100%;
        justify-content: center;
        font-size: clamp(48px, 13vw, 110px);
        text-align: center;
        flex-wrap: wrap;
        gap: 2px;
    }

    .ns-hero__subtitle {
        position: absolute;
        top: 0;
        left: auto;
        transform: none;
        z-index: 3;
        margin: 0;
        font-size: 26px;
        font-weight: 400;
        line-height: 1;
        color: #27252A;
        text-transform: uppercase;
        letter-spacing: 0.01em;
        white-space: nowrap;
        /* right: 0; */
    }

    .ns-hero__image-wrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: min(88vw, 440px);
        margin-top: -10px;
    }

    .ns-hero__image-wrap.is-show {
        transform: translateY(0);
    }

    .ns-hero__metro {
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
        font-size: clamp(24px, 6vw, 42px);
    }

    .ns-hero__decor--leaf {
        width: min(60vw, 320px);
        bottom: 90px;
    }

    .ns-hero__decor--star-1 {
        top: 170px;
        left: 10%;
    }

    .ns-hero__decor--star-2 {
        top: 320px;
        left: 14%;
    }

    .ns-hero__decor--star-3 {
        right: 12%;
        bottom: 170px;
    }
}

@media (max-width: 576px) {
    .ns-hero {
        padding: 30px 0 50px;
    }

    .ns-hero__container {
        padding: 0 16px;
    }

    .ns-hero__title {
        font-size: 52px;
        line-height: 0.95;
    }

    .ns-hero__title span {
        transform: translateY(20px);
    }

    .ns-hero__image-wrap {
        width: 100%;
        max-width: 320px;
    }

    .ns-hero__metro {
        font-size: 28px;
    }

    .ns-hero__bg-shape--top {
        width: 360px;
        height: 180px;
        top: -60px;
    }

    .ns-hero__bg-shape--left,
    .ns-hero__bg-shape--right {
        width: 220px;
        height: 180px;
    }

    .ns-hero__decor--star {
        font-size: 22px;
    }
}

.news-sidebar__promo {
    cursor: pointer;
}

.salon-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.salon-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.salon-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.salon-popup__body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(680px, calc(100% - 32px));
    background: #fff;
    transform: translate(-50%, -50%) scale(0.96);
    transition: transform 0.3s ease;
    padding: 44px 40px 32px;
    box-sizing: border-box;
}

.salon-popup.is-open .salon-popup__body {
    transform: translate(-50%, -50%) scale(1);
}

.salon-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.salon-popup__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 32px;
}

.salon-popup__buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.salon-popup__btn {
    min-width: 250px;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 18px 24px;
    font-size: 18px;
    line-height: 1.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.salon-popup__btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .salon-popup__body {
        padding: 36px 20px 24px;
    }

    .salon-popup__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .salon-popup__buttons {
        gap: 16px;
    }

    .salon-popup__btn {
        width: 100%;
        min-width: 100%;
        font-size: 16px;
        padding: 16px 18px;
    }
}

.about-main {
    padding: 80px 0 100px;
    overflow: hidden;
}

.about-main__grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 90px;
    align-items: start;
    position: relative;
}

.about-main__media {
    position: sticky;
    top: 50px;
    min-height: 650px;
}

.about-main__shape {
    position: absolute;
    top: 38px;
    left: 0;
    width: 482px;
    height: 520px;
    background: #e8dfd5;
    clip-path: polygon(20% 0, 100% 0, 100% 78%, 80% 100%, 0 100%, 0 18%);
    z-index: 1;
}

.about-main__image {
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

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

.about-main__image--big {
    left: 0;
    top: 38px;
    width: 482px;
    height: 545px;
    clip-path: polygon(20% 0, 100% 0, 100% 78%, 80% 100%, 0 100%, 0 18%);
}

.about-main__image--small {
    right: 18px;
    top: 74px;
    width: 272px;
    height: 270px;
    border: 10px solid #fff;
    box-sizing: border-box;
}

.about-main__stat {
    position: absolute;
    left: -10px;
    bottom: 54px;
    background: #fff;
    padding: 26px 30px 22px;
    width: 210px;
    box-sizing: border-box;
    z-index: 3;
}

.about-main__stat-num {
    font-size: 28px;
    line-height: 1;
    color: #d79089;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-main__stat-text {
    font-size: 16px;
    line-height: 1.25;
    color: #222;
}

.about-main__content {
    padding-top: 30px;
}

.about-main__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.about-main__label img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.about-main__label span {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: #7d2320;
    text-transform: uppercase;
    font-weight: 500;
}

.about-main__title {
    font-size: 52px;
    line-height: 0.95;
    font-weight: 400;
    color: #3c3c3c;
    margin: 0 0 28px;
    max-width: 100%;
}

.about-main__text {
    color: #3d3d3d;
    font-size: 18px;
    line-height: 1.65;
}

.about-main__text p {
    margin: 0 0 10px;
}

.about-main__text ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.about-main__text li {
    margin-bottom: 8px;
}

.about-main__features {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 22px 50px;
}

.about-main__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    line-height: 1.35;
    color: #3b3b3b;
}

.about-main__feature img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-main__bottom {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid #e7b1aa;
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.about-main__btn {
    min-width: 182px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    background: #e8a39a;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.08em;
    border-radius: 5px;
}

.about-main__phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.about-main__phone-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid #e4a49e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-main__phone-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.about-main__phone-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-main__phone-text small {
    font-size: 16px;
    line-height: 1.2;
    color: #7d2320;
}

.about-main__phone-text strong {
    font-size: 20px;
    line-height: 1.2;
    color: #7d2320;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .about-main__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-main__media {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .about-main__content {
        padding-top: 0;
    }

    .about-main__title {
        font-size: 56px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-main {
        padding: 56px 0 70px;
    }

    .about-main__media {
        min-height: 470px;
    }

    .about-main__shape {
        width: 100%;
        max-width: 360px;
        height: 360px;
        top: 28px;
    }

    .about-main__image--big {
        width: 100%;
        max-width: 360px;
        height: 405px;
        top: 28px;
    }

    .about-main__image--small {
        width: 180px;
        height: 180px;
        right: 0;
        top: 60px;
        border-width: 6px;
    }

    .about-main__stat {
        left: 0;
        bottom: 16px;
        width: 170px;
        padding: 18px 18px 16px;
    }

    .about-main__stat-num {
        font-size: 22px;
    }

    .about-main__stat-text {
        font-size: 14px;
    }

    .about-main__label span {
        font-size: 14px;
    }

    .about-main__title {
        font-size: 42px;
    }

    .about-main__text {
        font-size: 16px;
    }

    .about-main__features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-main__feature {
        font-size: 16px;
    }

    .about-main__bottom {
        gap: 20px;
        align-items: flex-start;
    }

    .about-main__btn {
        width: 100%;
    }
}

.services-showcase {
    padding: 0;
    overflow: hidden;
}

.services-showcase__wrap {
    display: flex;
    height: 560px;
}

.services-showcase__item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: flex 0.55s ease, transform 0.55s ease;
}

.services-showcase__item.is-active {
    flex: 3.2 1 0;
}

.services-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 164, 157, 0.72), rgba(220, 164, 157, 0.16));
    opacity: 0;
    transition: opacity 0.45s ease;
}

.services-showcase__item.is-active .services-showcase__overlay {
    opacity: 1;
}

.services-showcase__arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.92);
    color: #d79c95;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 2;
}

.services-showcase__title {
    position: absolute;
    left: 44px;
    bottom: 34px;
    right: 30px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
}

.services-showcase__item.is-active .services-showcase__title,
.services-showcase__item.is-active .services-showcase__arrow {
    opacity: 1;
    transform: translateY(0);
}

.services-showcase__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    transition: background 0.35s ease;
}

.services-showcase__item.is-active::before {
    background: rgba(0,0,0,0);
}

@media (max-width: 991px) {
    .services-showcase__wrap {
        height: 440px;
    }

    .services-showcase__title {
        left: 24px;
        bottom: 24px;
        font-size: 22px;
    }

    .services-showcase__arrow {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .services-showcase__wrap {
        flex-direction: column;
        height: auto;
    }

    .services-showcase__item {
        min-height: 110px;
        flex: unset;
        transition: min-height 0.45s ease;
    }

    .services-showcase__item.is-active {
        min-height: 300px;
        flex: unset;
    }

    .services-showcase__title {
        font-size: 20px;
        left: 20px;
        bottom: 20px;
    }
}

.popular-services {
    padding: 90px 0 0px;
}

.popular-services__head {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.popular-services__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #7d2320;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 18px;
    line-height: 1.2;
}

.popular-services__label-icon img {
    width: 50px;
    line-height: 1;
}

.popular-services__title {
    margin: 0;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 400;
    color: #3c3c3c;
}

.popular-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 46px;
}

.popular-services__item {
    position: relative;
    min-height: 132px;
    padding: 34px 32px 30px;
    text-decoration: none;
    overflow: hidden;
    background: #fff;
    transition: color 0.35s ease, transform 0.35s ease;
    border-radius: 10px;
}

.popular-services__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.popular-services__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 26, 0.48);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.popular-services__item.is-active::before,
.popular-services__item.is-active .popular-services__item-overlay,
.popular-services__item:hover::before,
.popular-services__item:hover .popular-services__item-overlay {
    opacity: 1;
}

.popular-services__item.is-active::before,
.popular-services__item:hover::before {
    transform: scale(1);
}

.popular-services__top,
.popular-services__desc {
    position: relative;
    z-index: 2;
    display: block;
}

.popular-services__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.popular-services__name {
    font-size: 26px;
    line-height: 1.2;
    color: #2f2f33;
    transition: color 0.35s ease;
}

.popular-services__price {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #e29489;
    transition: color 0.35s ease;
}

.popular-services__desc {
    font-size: 17px;
    line-height: 1.45;
    color: #47474f;
    max-width: 88%;
    transition: color 0.35s ease;
}

.popular-services__item.is-active .popular-services__name,
.popular-services__item.is-active .popular-services__price,
.popular-services__item.is-active .popular-services__desc,
.popular-services__item:hover .popular-services__name,
.popular-services__item:hover .popular-services__price,
.popular-services__item:hover .popular-services__desc {
    color: #fff;
}

@media (max-width: 1199px) {
    .popular-services__title {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .popular-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .popular-services__title {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .popular-services {
        padding: 60px 0 70px;
    }

    .popular-services__head {
        margin-bottom: 34px;
    }

    .popular-services__title {
        font-size: 36px;
        line-height: 1.05;
    }

    .popular-services__item {
        padding: 24px 20px;
        min-height: 120px;
    }

    .popular-services__top {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }

    .popular-services__name {
        font-size: 24px;
    }

    .popular-services__price {
        font-size: 20px;
    }

    .popular-services__desc {
        max-width: 100%;
        font-size: 16px;
    }
}

.discount-banner {
    position: relative;
    overflow: hidden;
    background: #5D0203;
    padding: 92px 0 84px;
}

.discount-banner .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.discount-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.discount-banner__content {
    max-width: 610px;
    flex: 0 0 610px;
}

.discount-banner__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.discount-banner__label img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.discount-banner__label span {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.discount-banner__title {
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.discount-banner__actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.discount-banner__btn {
    height: 54px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.discount-banner__btn--fill {
    background: #e8a39a;
    color: #fff;
    border-radius: 5px;
}

.discount-banner__btn--fill:hover {
    background: #d58f86;
    border-color: #d58f86;
}

.discount-banner__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.discount-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.discount-banner__visual {
    position: relative;
    flex: 0 0 500px;
    height: 420px;
}

.discount-banner__flowers {
    position: absolute;
    left: -8px;
    top: 8px;
    width: 275px;
    z-index: 4;
    pointer-events: none;
}

.discount-banner__card {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    background: #f4f4f6;
}

.discount-banner__card--back {
    width: 300px;
    height: 300px;
    background: #f1f1f3;
    right: 18px;
    top: 38px;
    transform: rotate(28deg);
    z-index: 1;
}

.discount-banner__card--front {
    width: 320px;
    height: 320px;
    right: 55px;
    top: 62px;
    transform: rotate(28deg);
    z-index: 3;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

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

.discount-banner__decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}

.discount-banner__decor img {
    display: block;
    max-width: 100%;
    height: auto;
}

.discount-banner__decor--left {
    left: 0;
    bottom: 0;
    width: 155px;
}

.discount-banner__decor--right {
    right: 0;
    top: 18px;
    width: 145px;
}

@media (max-width: 1199px) {
    .discount-banner__inner {
        gap: 24px;
    }

    .discount-banner__content {
        flex: 1 1 auto;
        max-width: 560px;
    }

    .discount-banner__title {
        font-size: 60px;
    }

    .discount-banner__visual {
        flex: 0 0 420px;
        height: 360px;
    }

    .discount-banner__card--back {
        width: 250px;
        height: 250px;
    }

    .discount-banner__card--front {
        width: 270px;
        height: 270px;
    }

    .discount-banner__flowers {
        width: 220px;
        top: 96px;
    }
}

@media (max-width: 991px) {
    .discount-banner {
        padding: 72px 0;
    }

    .discount-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .discount-banner__content {
        max-width: 100%;
        flex: unset;
    }

    .discount-banner__title {
        font-size: 54px;
    }

    .discount-banner__visual {
        width: 100%;
        flex: unset;
        height: 360px;
        margin-top: 10px;
    }

    .discount-banner__card--back {
        right: 80px;
    }

    .discount-banner__card--front {
        right: 115px;
    }
}

@media (max-width: 767px) {
    .discount-banner {
        padding: 56px 0 60px;
    }

    .discount-banner__label {
        margin-bottom: 18px;
    }

    .discount-banner__label span {
        font-size: 13px;
    }

    .discount-banner__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .discount-banner__actions {
        margin-top: 28px;
        gap: 14px;
        flex-direction: column;
        align-items: stretch;
    }

    .discount-banner__btn {
        width: 100%;
        height: 58px;
        padding: 0 20px;
    }

    .discount-banner__visual {
        height: 260px;
    }

    .discount-banner__flowers {
        width: 150px;
        left: 8px;
        top: 82px;
    }

    .discount-banner__card--back {
        width: 170px;
        height: 170px;
        right: 36px;
        top: 16px;
        border-radius: 18px;
    }

    .discount-banner__card--front {
        width: 190px;
        height: 190px;
        right: 56px;
        top: 32px;
        border-radius: 18px;
    }

    .discount-banner__decor--left {
        width: 90px;
    }

    .discount-banner__decor--right {
        width: 85px;
        top: 10px;
    }
}

.gift-certificates {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background: #fcfbfa;
}

.gift-certificates__bg {
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/2026/04/bg-16.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

.gift-certificates::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(252, 251, 250, 0.72);
    z-index: 1;
    pointer-events: none;
}

.z-index {
        position: relative;
    z-index: 3;
}

.gift-certificates__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: start;
}

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

.gift-card {
    position: relative;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(2px);
    padding: 46px 42px 38px;
    min-height: 640px;
    box-sizing: border-box;
}

.gift-card__badge {
    position: absolute;
    top: 42px;
    right: 42px;
    min-width: 122px;
    height: 46px;
    padding: 0 18px;
    background: #dea096;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12% 50%);
}

.gift-card__price {
    margin-bottom: 22px;
}

.gift-card__price strong {
    display: block;
    font-size: 36px;
    line-height: 0.95;
    font-weight: 400;
    color: #2f2f35;
}

.gift-card__price span {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.2;
    color: #8c8b90;
}

.gift-card__desc {
    font-size: 18px;
    line-height: 1.65;
    color: #2f2f35;
    max-width: 290px;
    padding-bottom: 10px;
}

.gift-card__line {
    height: 1px;
    background: #dfdddd;
    margin: 6px 0 20px;
}

.gift-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.gift-card__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.35;
    color: #66656b;
}

.gift-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #de968d;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.gift-card__profit {
    font-size: 18px;
    line-height: 1.3;
    color: #9b9aa0;
    margin-top: auto;
    margin-bottom: 24px;
}

.gift-card__btn {
    margin-top: auto;
    width: 100%;
    height: 58px;
    border: 1px solid #e1a39a;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    color: #de968d;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.gift-card__btn:hover {
    background: #e1a39a;
    color: #fff;
}

.gift-certificates__content {
    position: relative;
    padding-top: 120px;
    min-height: 640px;
}

.gift-certificates__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gift-certificates__label img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.gift-certificates__label span {
    color: #7d2320;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.gift-certificates__title {
    margin: 0 0 22px;
    font-size: 44px;
    line-height: 0.95;
    font-weight: 400;
    color: #34343b;
    max-width: 560px;
}

.gift-certificates__text {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.7;
    color: #4c4c52;
    position: relative;
    z-index: 2;
}

.gift-certificates__photo {
    position: absolute;
    right: -10px;
    bottom: -133px;
    width: 390px;
    z-index: 1;
    pointer-events: none;
}

.gift-certificates__photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1350px) {
    .gift-certificates__title {
        font-size: 62px;
    }

    .gift-certificates__photo {
        width: 340px;
    }
}

@media (max-width: 1199px) {
    .gift-certificates__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gift-certificates__content {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 260px;
    }

    .gift-certificates__title {
        max-width: 100%;
    }

    .gift-certificates__photo {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 991px) {
    .gift-certificates {
        padding: 70px 0 80px;
    }

    .gift-certificates__cards {
        grid-template-columns: 1fr;
    }

    .gift-card {
        min-height: auto;
        padding: 36px 28px 30px;
    }

    .gift-card__badge {
        top: 28px;
        right: 28px;
    }

    .gift-certificates__title {
        font-size: 48px;
    }

    .gift-certificates__content {
        padding-bottom: 220px;
    }

    .gift-certificates__photo {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .gift-certificates {
        padding: 56px 0 64px;
    }

    .gift-card {
        padding: 28px 20px 24px;
    }

    .gift-card__badge {
        position: static;
        margin-bottom: 24px;
        clip-path: none;
        border-radius: 4px;
    }

    .gift-card__price strong {
        font-size: 46px;
    }

    .gift-card__price span,
    .gift-card__desc,
    .gift-card__list li,
    .gift-card__profit,
    .gift-certificates__text {
        font-size: 16px;
    }

    .gift-certificates__label span {
        font-size: 14px;
    }

    .gift-certificates__title {
        font-size: 38px;
        line-height: 1.05;
    }

    .gift-certificates__content {
        padding-bottom: 190px;
    }

    .gift-certificates__photo {
        width: 220px;
    }
}

.booking-banner {
    background: #47181f;
    padding: 86px 0 82px;
    overflow: hidden;
}

.booking-banner .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-banner__inner {
    display: grid;
    grid-template-columns: 1fr 610px;
    gap: 70px;
    align-items: center;
}

.booking-banner__left {
    color: #fff;
    padding-left: 18px;
}

.booking-banner__play-wrap {
    position: relative;
    width: 180px;
    height: 135px;
    margin-bottom: 26px;
}

.booking-banner__play {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    border: 3px solid rgba(227, 163, 154, 0.55);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.booking-banner__play::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 3px solid #f0b2a9;
}

.booking-banner__play::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #e2a198;
}

.booking-banner__play-icon {
    position: relative;
    z-index: 2;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #fff;
    margin-left: 6px;
}

.booking-banner__arrow {
    position: absolute;
    left: 126px;
    top: 82px;
}

.booking-banner__title {
    margin: 0 0 42px;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 400;
    color: #fff;
    max-width: 620px;
}

.booking-banner__features {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.booking-banner__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.booking-banner__feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 3px;
}

.booking-banner__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.booking-banner__feature-text strong {
    display: block;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.booking-banner__feature-text span {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    max-width: 450px;
}

.booking-banner__form-box {
    background: #fff;
    border-radius: 28px;
    padding: 38px 34px 34px;
    box-sizing: border-box;
}

.booking-banner__form {
    width: 100%;
}

.booking-banner__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
}

.booking-banner__field {
    display: flex;
    flex-direction: column;
}

.booking-banner__field--full {
    grid-column: 1 / -1;
}

.booking-banner__field label {
    font-size: 16px;
    line-height: 1.2;
    color: #4d5870;
    margin-bottom: 10px;
}

.booking-banner__field label span {
    color: #d57e73;
}

.booking-banner__field input,
.booking-banner__field select,
.booking-banner__field textarea {
    width: 100%;
    border: 1px solid #cfd5dd;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #374151;
    padding: 0 16px;
    background: #fff;
    outline: none;
}

.booking-banner__field input,
.booking-banner__field select {
    height: 54px;
}

.booking-banner__field textarea {
    height: 92px;
    padding: 14px 16px;
    resize: none;
}

.booking-banner__field input:focus,
.booking-banner__field select:focus,
.booking-banner__field textarea:focus {
    border-color: #dba097;
}

.booking-banner__agree {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 26px;
    cursor: pointer;
}

.booking-banner__agree input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.booking-banner__agree span {
    font-size: 16px;
    line-height: 1.35;
    color: #3f4655;
}

.booking-banner__submit {
    min-width: 188px;
    height: 52px;
    padding: 0 30px;
    border: none;
    background: #e8a39a;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.booking-banner__submit:hover {
    background: #d48f85;
}

@media (max-width: 1199px) {
    .booking-banner__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-banner__title {
        font-size: 58px;
        max-width: 100%;
    }

    .booking-banner__left {
        padding-left: 0;
    }

    .booking-banner__right {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .booking-banner {
        padding: 56px 0 60px;
    }

    .booking-banner__title {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 30px;
    }

    .booking-banner__play-wrap {
        width: 140px;
        height: 110px;
        margin-bottom: 18px;
    }

    .booking-banner__play {
        width: 92px;
        height: 92px;
    }

    .booking-banner__play::before {
        inset: 6px;
    }

    .booking-banner__play::after {
        inset: 12px;
    }

    .booking-banner__play-icon {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }

    .booking-banner__arrow {
        left: 92px;
        top: 58px;
        width: 52px;
        height: 52px;
    }

    .booking-banner__feature-text strong {
        font-size: 18px;
    }

    .booking-banner__feature-text span {
        font-size: 15px;
    }

    .booking-banner__form-box {
        border-radius: 20px;
        padding: 24px 18px;
    }

    .booking-banner__grid {
        grid-template-columns: 1fr;
    }

    .booking-banner__field--full {
        grid-column: auto;
    }

    .booking-banner__submit {
        width: 100%;
    }

    .booking-banner__agree span {
        font-size: 14px;
    }
}

.masters {
    padding: 90px 0 110px;
    background: #fcfbfa;
    overflow: hidden;
}

.masters .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.masters__head {
    text-align: center;
    margin-bottom: 65px;
}

.masters__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.masters__label img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.masters__label span {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7d2320;
    font-weight: 500;
}

.masters__title {
    margin: 0;
    font-size: 44px;
    line-height: 0.95;
    font-weight: 400;
    color: #34343b;
}

.masters__slider {
    position: relative;
    padding: 0 70px;
}

.masters__viewport {
    overflow: hidden;
}

.masters__track {
    display: flex;
    gap: 34px;
    transition: transform 0.55s ease;
    will-change: transform;
    align-items: flex-start;
}

.masters__item {
    flex: 0 0 calc((100% - 102px) / 4);
    position: relative;
    min-width: 0;
}

.masters__item--up {
    padding-top: 0;
}

.masters__item--down {
    padding-top: 84px;
}

.masters__card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #efc8c2;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    padding: 1px;
    box-sizing: border-box;
}

.masters__card-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    overflow: hidden;
}

.masters__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.masters__info {
    position: absolute;
    z-index: 2;
}

.masters__info--left {
    left: 18px;
    top: 8px;
}

.masters__info--center {
    left: 18px;
    top: calc(100% + 18px);
}

.masters__info--right {
    left: 18px;
    top: calc(100% + 18px);
}

.masters__name {
    font-size: 20px;
    line-height: 1.2;
    color: #34343b;
    margin-bottom: 6px;
}

.masters__role {
    font-size: 16px;
    line-height: 1.3;
    color: #e09b92;
    font-weight: 500;
}

.masters__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #f5efed;
    color: #e09b92;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    z-index: 5;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.masters__arrow svg {
    margin-top: 5px;
}



.masters__arrow--prev {
    left: 0;
}

.masters__arrow--next {
    right: 0;
}

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

    .masters__item {
        flex: 0 0 calc((100% - 34px) / 2);
    }
}

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

    .masters__head {
        margin-bottom: 42px;
    }

    .masters__title {
        font-size: 40px;
        line-height: 1.05;
    }

    .masters__label span {
        font-size: 14px;
    }

    .masters__slider {
        padding: 0 50px;
    }

    .masters__track {
        gap: 20px;
    }

    .masters__item {
        flex: 0 0 100%;
    }

    .masters__item--down,
    .masters__item--up {
        padding-top: 0;
    }

    .masters__info,
    .masters__info--left,
    .masters__info--center,
    .masters__info--right {
        position: static;
        margin-top: 16px;
        text-align: center;
    }

    .masters__arrow {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}

.faq-home {
    padding: 110px 0 100px;
    background: #5D0203;
    overflow: hidden;
}

.faq-home .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-home__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.faq-home__content {
    max-width: 650px;
}

.faq-home__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.faq-home__label img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.faq-home__label span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-home__title {
    margin: 0 0 42px;
    color: #fff;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 400;
}

.faq-home__accordion {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-home__item {
    background: #fff;
}

.faq-home__question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    color: #2f2f35;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.faq-home__item.is-active .faq-home__question {
    color: #e0a097;
}

.faq-home__icon {
    flex-shrink: 0;
    font-size: 36px;
    line-height: 1;
    color: inherit;
}

.faq-home__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 32px;
    color: #3e3e45;
    font-size: 18px;
    line-height: 1.7;
    max-width: 540px;
    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        padding 0.35s ease;
}

.faq-home__item.is-active .faq-home__answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 32px 28px;
}

.faq-home__visual {
    position: relative;
    min-height: 620px;
}

.faq-home__image {
    position: absolute;
    overflow: hidden;
}

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

.faq-home__image--back {
    width: 320px;
    height: 500px;
    left: 10px;
    top: 20px;
    z-index: 1;
}

.faq-home__image--front {
    width: 380px;
    height: 410px;
    right: 0;
    bottom: 10px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .faq-home__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-home__title {
        font-size: 58px;
    }

    .faq-home__visual {
        min-height: 520px;
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .faq-home {
        padding: 60px 0 70px;
    }

    .faq-home__title {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 28px;
    }

    .faq-home__label span {
        font-size: 14px;
    }

    .faq-home__accordion {
        gap: 16px;
    }

    .faq-home__question {
        padding: 20px 18px;
        font-size: 18px;
    }

    .faq-home__icon {
        font-size: 28px;
    }

    .faq-home__answer {
        padding: 0 18px 20px;
        font-size: 16px;
    }

    .faq-home__item.is-active .faq-home__answer {
        padding: 0 18px 20px;
    }

    .faq-home__visual {
        min-height: 360px;
    }

    .faq-home__image--back {
        width: 200px;
        height: 300px;
        left: 0;
        top: 0;
    }

    .faq-home__image--front {
        width: 240px;
        height: 270px;
        right: 0;
        bottom: 0;
    }
}

.spa-top {
    padding: 90px 0 40px;
    background: #fcfbfa;
    overflow: hidden;
}

.spa-top .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.spa-top__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.spa-top__intro {
    padding-top: 18px;
}

.spa-top__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.spa-top__label img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.spa-top__label span {
    color: #dea096;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.spa-top__title {
    margin: 0 0 20px;
    color: #34343b;
    font-size: 34px;
    line-height: 0.98;
    font-weight: 400;
}

.spa-top__text {
    max-width: 250px;
    font-size: 18px;
    line-height: 1.6;
    color: #47474f;
}

.spa-top__slider {
    min-width: 0;
}

.spa-top__viewport {
    overflow: hidden;
}

.spa-top__track {
    display: flex;
    gap: 30px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.spa-top__card {
    position: relative;
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    height: 205px;
    flex: 0 0 auto;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 24px 20px;
    box-sizing: border-box;
}

.spa-top__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.45s ease, transform 0.6s ease;
}

.spa-top__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 21, 30, 0.48);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.spa-top__card.is-active::before,
.spa-top__card.is-active::after,
.spa-top__card:hover::before,
.spa-top__card:hover::after {
    opacity: 1;
}

.spa-top__card.is-active::before,
.spa-top__card:hover::before {
    transform: scale(1);
}

.spa-top__card-icon,
.spa-top__card-title {
    position: relative;
    z-index: 2;
}

.spa-top__card-icon {
    margin-bottom: 26px;
}

.spa-top__card-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.spa-top__card-title {
    font-size: 24px;
    line-height: 1.2;
    color: #34343b;
    transition: color 0.35s ease;
    max-width: 190px;
}

.spa-top__card.is-active .spa-top__card-title,
.spa-top__card:hover .spa-top__card-title {
    color: #fff;
}

.spa-top__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.spa-top__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e4b0a8;
    opacity: 0.55;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.spa-top__dot.is-active {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 3px solid #dea096;
    box-sizing: border-box;
    transform: none;
}

@media (max-width: 1199px) {
    .spa-top__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spa-top__title {
        font-size: 52px;
    }

    .spa-top__text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .spa-top {
        padding: 60px 0 30px;
    }

    .spa-top__title {
        font-size: 38px;
        line-height: 1.05;
    }

    .spa-top__label span {
        font-size: 14px;
    }

    .spa-top__track {
        gap: 18px;
    }

    .spa-top__card {
        width: 100%;
        min-width: 100%;
        height: 185px;
        padding: 20px;
    }

    .spa-top__card-title {
        font-size: 20px;
    }
}

.spa-gallery {
    margin-top: 52px;
    overflow: hidden;
    position: relative;
}

.spa-gallery__viewport {
    overflow: hidden;
}

.spa-gallery__track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: spaGalleryScroll 26s linear infinite;
    will-change: transform;
}

.spa-gallery:hover .spa-gallery__track {
    animation-play-state: paused;
}

.spa-gallery__item {
    width: 285px;
    height: 250px;
    flex: 0 0 auto;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: zoom-in;
}

.spa-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, opacity 0.35s ease;
}

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

@keyframes spaGalleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.spa-gallery__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spa-gallery__modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.spa-gallery__modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.spa-gallery__modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    transition: transform 0.3s ease;
    width: min(92vw, 980px);
    max-height: 90vh;
}

.spa-gallery__modal.is-open .spa-gallery__modal-body {
    transform: translate(-50%, -50%) scale(1);
}

.spa-gallery__modal-image {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    background: #fff;
}

.spa-gallery__modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 767px) {
    .spa-gallery {
        margin-top: 36px;
    }

    .spa-gallery__track {
        gap: 18px;
    }

    .spa-gallery__item {
        width: 220px;
        height: 190px;
    }

    .spa-gallery__modal-body {
        width: min(94vw, 94vw);
    }
}

.contact-final {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #8b0000;
}

.contact-final .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.contact-final__map {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    z-index: 1;
}

.contact-final__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-final__inner {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.contact-final__info {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 300px;
    padding-left: 44px;
}

.contact-final__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.contact-final__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-final__title {
    margin: 0 0 28px;
    font-size: 34px;
    line-height: 0.95;
    font-weight: 400;
    color: #fff;
}

.contact-final__meta {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-final__meta-item strong {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.contact-final__meta-item span {
    display: block;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}

.contact-final__photo-wrap {
    position: absolute;
    left: 45%;
    bottom: 0;
    transform: translateX(-50%);
    width: 390px;
    height: 520px;
    z-index: 3;
    pointer-events: none;
}

.contact-final__photo-bg {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 430px;
    height: 430px;
    background: #20202a;
    border-radius: 50%;
    z-index: 1;
}

.contact-final__photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
}

@media (max-width: 1199px) {
    .contact-final {
        min-height: 560px;
    }

    .contact-final__inner {
        min-height: 560px;
    }

    .contact-final__map {
        width: 50%;
    }

    .contact-final__title {
        font-size: 52px;
    }

    .contact-final__photo-wrap {
        width: 320px;
        height: 430px;
        left: 29%;
    }

    .contact-final__photo-bg {
        width: 350px;
        height: 350px;
        bottom: -70px;
    }
}

@media (max-width: 991px) {
    .contact-final {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .contact-final__map {
        position: relative;
        width: 100%;
        height: 420px;
        order: 2;
    }

    .contact-final__inner {
        min-height: 520px;
        align-items: flex-start;
        padding: 60px 0 0;
    }

    .contact-final__info {
        padding-left: 0;
        max-width: 100%;
    }

    .contact-final__photo-wrap {
        left: auto;
        right: 10px;
        bottom: 0;
        transform: none;
        width: 260px;
        height: 360px;
    }

    .contact-final__photo-bg {
        width: 280px;
        height: 280px;
        bottom: -55px;
    }
}

@media (max-width: 767px) {
    .contact-final__inner {
        min-height: 480px;
        padding: 44px 0 0;
    }

    .contact-final__title {
        font-size: 40px;
        line-height: 1.05;
    }

    .contact-final__meta-item strong,
    .contact-final__meta-item span {
        font-size: 18px;
    }

    .contact-final__photo-wrap {
        width: 200px;
        height: 280px;
        right: -8px;
    }

    .contact-final__photo-bg {
        width: 210px;
        height: 210px;
        bottom: -35px;
    }

    .contact-final__map {
        height: 340px;
    }

    .contact-final .container {
        margin: 0;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-modal__content {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-modal__content iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.consultation-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.consultation-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.consultation-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(4px);
}

.consultation-popup__dialog {
    position: relative;
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 100px auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
    overflow: hidden;
}

.consultation-popup.is-open .consultation-popup__dialog {
    transform: translateY(0) scale(1);
}

.consultation-popup__content {
    padding: 42px 36px 36px;
}

.consultation-popup__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f6f3f2;
    color: #2f2f35;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.consultation-popup__close:hover {
    background: #eee7e5;
    transform: rotate(90deg);
}

.consultation-popup__subtitle {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8a39a;
}

.consultation-popup__title {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 400;
    color: #2f2f35;
}

.consultation-popup__text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.consultation-popup__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consultation-popup__field input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #e9d6d2;
    border-radius: 16px;
    background: #fff;
    font-size: 16px;
    color: #2f2f35;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.consultation-popup__field input:focus {
    border-color: #e8a39a;
    box-shadow: 0 0 0 4px rgba(232, 163, 154, 0.16);
}

.consultation-popup__field input::placeholder {
    color: #a7a0a0;
}

.consultation-popup__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
    cursor: pointer;
    position: relative;
}

.consultation-popup__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consultation-popup__checkmark {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 1.5px solid #dcb8b1;
    border-radius: 6px;
    margin-top: 1px;
    position: relative;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.consultation-popup__checkbox input:checked + .consultation-popup__checkmark {
    background: #e8a39a;
    border-color: #e8a39a;
}

.consultation-popup__checkbox input:checked + .consultation-popup__checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consultation-popup__checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.consultation-popup__checkbox-text a {
    color: #2f2f35;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consultation-popup__submit {
    width: 100%;
    height: 60px;
    margin-top: 8px;
    border: none;
    border-radius: 5px;
    background: #e8a39a;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 30px rgba(232, 163, 154, 0.28);
}

.consultation-popup__submit:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

body.consultation-popup-lock {
    overflow: hidden;
}

@media (max-width: 767px) {
    .consultation-popup__dialog {
        width: calc(100% - 20px);
        margin: 60px auto;
        border-radius: 22px;
    }

    .consultation-popup__content {
        padding: 34px 20px 24px;
    }

    .consultation-popup__title {
        font-size: 30px;
    }

    .consultation-popup__text {
        font-size: 15px;
    }

    .consultation-popup__field input,
    .consultation-popup__submit {
        height: 56px;
    }
}

.pt-pb-40 {
    padding-bottom: 40px;
    padding-top: 40px;
}