@font-face {
  font-family: 'Manrope'; /* set name */
  src: url(../fonts/manrope.woff2); /* url of the font */
}

@font-face {
  font-family: 'Prata'; /* set name */
  src: url(../fonts/prata.woff2); /* url of the font */
}

:root {
                --gold: #d2a45f;
                --gold-light: #edc98f;
                --gold-dark: #b5823f;

                --dark: #151310;
                --dark-soft: rgba(20, 18, 15, 0.9);

                --white: #ffffff;
                --text: #191919;
                --muted: #747474;

                --border-light: rgba(255, 255, 255, 0.18);
                --shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
            }

            * {
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                margin: 0;
                color: var(--text);
                background: #f6f3ee;
                font-family: "Manrope", sans-serif;
                overflow-x: hidden;
            }

            body.menu-open {
                overflow: hidden;
            }

            a {
                color: inherit;
                text-decoration: none;
            }

            button,
            input,
            select {
                font: inherit;
            }

            button,
            select,
            input {
                outline: none;
            }

            button {
                cursor: pointer;
            }

            .container {
                width: min(1460px, calc(100% - 64px));
                margin: 0 auto;
            }

            .btn {
                min-height: 58px;
                padding: 0 30px;
                border: 0;
                border-radius: 8px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;

                font-size: 14px;
                font-weight: 600;
                letter-spacing: 0.02em;

                transition:
                    transform 0.25s ease,
                    background 0.25s ease,
                    box-shadow 0.25s ease;
            }

            .btn:hover {
                transform: translateY(-3px);
            }

            .btn-gold {
                color: var(--white);
                background: linear-gradient(
                    135deg,
                    var(--gold-light),
                    var(--gold-dark)
                    );
                box-shadow: 0 14px 35px rgba(191, 139, 70, 0.28);
            }

            .btn-gold:hover {
                box-shadow: 0 20px 45px rgba(191, 139, 70, 0.4);
            }

            /* Header */

            .header {
                position: absolute;
                z-index: 30;
                top: 0;
                right: 0;
                left: 0;

                padding: 26px 0;
                color: var(--white);
            }

            .header-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 35px;
            }

            .logo {
                display: flex;
                align-items: center;
                gap: 16px;
                flex: 0 0 auto;
            }

            .logo-circle {
                width: 62px;
                height: 62px;

                border: 2px solid var(--gold);
                border-radius: 50%;

                display: grid;
                place-items: center;

                color: var(--white);
                font-family: "Prata", serif;
                font-size: 26px;
            }

            .logo-copy strong {
                display: block;
                font-family: "Prata", serif;
                font-size: 24px;
                font-weight: 400;
                letter-spacing: 0.05em;
                line-height: 1.1;
            }

            .logo-copy small {
                margin-top: 8px;
                display: block;

                font-size: 11px;
                letter-spacing: 0.35em;
                text-transform: uppercase;
            }

            .nav {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: clamp(18px, 2.4vw, 42px);
            }

            .nav a {
                position: relative;
                font-size: 13px;
                font-weight: 500;
                text-transform: uppercase;
                white-space: nowrap;
            }

            .nav a::after {
                position: absolute;
                right: 0;
                bottom: -9px;
                left: 0;

                height: 1px;
                content: "";

                background: var(--gold-light);
                transform: scaleX(0);
                transform-origin: right;
                transition: transform 0.25s ease;
            }

            .nav a:hover::after {
                transform: scaleX(1);
                transform-origin: left;
            }

            .header-actions {
                display: flex;
                align-items: center;
                gap: 25px;
                flex: 0 0 auto;
            }

            .header-book {
                min-height: 48px;
                padding: 0 26px;
            }

            .menu-button {
                width: 44px;
                height: 44px;
                padding: 0;
                border: 0;
                display: grid;
                place-items: center;
                background: transparent;
            }

            .menu-lines {
                width: 26px;
                display: grid;
                gap: 6px;
            }

            .menu-lines span {
                height: 2px;
                display: block;
                background: var(--white);
            }

            .menu-lines span:first-child {
                width: 26px;
            }

            .menu-lines span:last-child {
                width: 18px;
                margin-left: auto;
            }

            /* Hero */

            .hero {
                position: relative;
                min-height: 845px;
                color: var(--white);

                background:
                    linear-gradient(
                    90deg,
                    rgba(8, 7, 6, 0.92) 0%,
                    rgba(8, 7, 6, 0.72) 27%,
                    rgba(8, 7, 6, 0.28) 58%,
                    rgba(8, 7, 6, 0.08) 100%
                    ),
                    linear-gradient(
                    to top,
                    rgba(8, 7, 6, 0.46),
                    transparent 45%
                    ),
                    url("../hero.png")
                    center / cover no-repeat;

                display: flex;
                align-items: center;
                overflow: hidden;
            }

            .hero::after {
                position: absolute;
                right: 0;
                bottom: 0;
                left: 0;

                height: 170px;
                content: "";
                pointer-events: none;

                background: linear-gradient(
                    to top,
                    rgba(10, 9, 7, 0.45),
                    transparent
                    );
            }

            .hero-content {
                position: relative;
                z-index: 3;
                max-width: 800px;
                padding-top: 125px;
                padding-bottom: 115px;
            }

            .hero-title {
                margin: 0;

                font-family: "Prata", serif;
                font-size: clamp(66px, 6vw, 108px);
                font-weight: 400;
                line-height: 0.97;
                letter-spacing: -0.035em;
                text-transform: uppercase;
            }

            .hero-title span {
                color: var(--gold);
            }

            .hero-line {
                width: 104px;
                height: 3px;
                margin: 36px 0 30px;
                background: var(--gold);
            }

            .hero-description {
                max-width: 540px;
                margin: 0;

                font-family: "Prata", serif;
                font-size: 20px;
                line-height: 1.55;
            }

            .hero-features {
                margin-top: 34px;
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
            }

            .hero-feature {
                display: flex;
                align-items: center;
                gap: 13px;
            }

            .hero-feature-icon {
                width: 42px;
                height: 42px;

                display: grid;
                place-items: center;
                flex: 0 0 auto;

                color: var(--gold-light);
            }

            .hero-feature-icon svg {
                width: 38px;
                height: 38px;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.7;
            }

            .hero-feature span {
                max-width: 145px;
                font-size: 12px;
                font-weight: 600;
                line-height: 1.25;
                text-transform: uppercase;
            }

            .hero-actions {
                margin-top: 32px;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 24px;
            }

            .video-button {
                padding: 0;
                border: 0;

                display: inline-flex;
                align-items: center;
                gap: 12px;

                color: var(--white);
                background: transparent;

                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
            }

            .video-circle {
                width: 46px;
                height: 46px;

                border: 1px solid var(--white);
                border-radius: 50%;

                display: grid;
                place-items: center;

                transition:
                    color 0.25s ease,
                    border 0.25s ease,
                    transform 0.25s ease;
            }

            .video-circle::after {
                margin-left: 4px;
                content: "";

                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-left: 10px solid currentColor;
            }

            .video-button:hover .video-circle {
                color: var(--gold);
                border-color: var(--gold);
                transform: scale(1.08);
            }

            /* Booking bar */

            .booking-position {
                margin: 10px 0;
            }

            .booking-form {
                width: min(1050px, 100%);
                margin: 0 auto;
                padding: 18px 18px 18px 25px;

                border: 1px solid rgba(255, 255, 255, 0.14);
                border-radius: 12px;

                display: grid;
                grid-template-columns: 1fr 1fr 0.75fr auto;
                align-items: stretch;

                background: rgba(24, 22, 19, 0.92);
                box-shadow: var(--shadow);
                backdrop-filter: blur(20px);
            }

            .booking-field {
                position: relative;
                min-width: 0;
                padding: 0 24px;

                border-right: 1px solid rgba(255, 255, 255, 0.15);

                display: flex;
                align-items: center;
                gap: 15px;
            }

            .booking-field:first-child {
                padding-left: 0;
            }

            .booking-icon {
                width: 28px;
                height: 28px;
                flex: 0 0 auto;
                color: var(--white);
            }

            .booking-icon svg {
                width: 100%;
                height: 100%;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.7;
            }

            .booking-field-content {
                min-width: 0;
                flex: 1;
            }

            .booking-field label {
                margin-bottom: 6px;
                display: block;

                color: rgba(255, 255, 255, 0.55);
                font-size: 10px;
                font-weight: 600;
                text-transform: uppercase;
            }

            .booking-field input,
            .booking-field select {
                width: 100%;
                padding: 0;

                color: var(--white);
                border: 0;
                background: transparent;

                font-size: 14px;
            }

            .booking-field input::-webkit-calendar-picker-indicator {
                filter: invert(1);
                cursor: pointer;
            }

            .booking-field select {
                cursor: pointer;
            }

            .booking-field select option {
                color: #171717;
            }

            .booking-submit {
                min-width: 270px;
                margin-left: 20px;
            }

            /* Advantages */

            .advantages {
                position: relative;
                z-index: 2;
                padding: 38px 0;
                background: #f8f5f0;
            }

            .advantages-grid {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 28px;
            }

            .advantage {
                min-height: 108px;
                padding: 22px 20px;

                border: 1px solid rgba(30, 30, 30, 0.08);
                border-radius: 6px;

                display: flex;
                align-items: center;
                gap: 18px;

                background: rgba(255, 255, 255, 0.52);
                transition:
                    transform 0.25s ease,
                    box-shadow 0.25s ease,
                    background 0.25s ease;
            }

            .advantage:hover {
                background: var(--white);
                box-shadow: 0 18px 50px rgba(62, 48, 30, 0.1);
                transform: translateY(-5px);
            }

            .advantage-icon {
                width: 50px;
                height: 50px;
                flex: 0 0 auto;

                display: grid;
                place-items: center;

                color: var(--gold);
            }

            .advantage-icon svg {
                width: 44px;
                height: 44px;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.6;
            }

            .advantage strong {
                margin-bottom: 7px;
                display: block;

                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
            }

            .advantage p {
                margin: 0;
                color: #4e4e4e;
                font-size: 13px;
                line-height: 1.4;
            }

            /* Mobile menu */

            .mobile-menu {
                position: fixed;
                z-index: 99999;
                inset: 0;

                padding: 28px;

                display: flex;
                flex-direction: column;
                justify-content: space-between;

                color: var(--white);
                background:
                    linear-gradient(
                    rgba(15, 13, 10, 0.94),
                    rgba(15, 13, 10, 0.98)
                    ),
                    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80")
                    center / cover no-repeat;

                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);

                transition:
                    opacity 0.3s ease,
                    visibility 0.3s ease,
                    transform 0.3s ease;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .mobile-menu-top {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .mobile-close {
                width: 48px;
                height: 48px;

                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;

                color: var(--white);
                background: transparent;
                font-size: 28px;
            }

            .mobile-nav {
                display: grid;
                gap: 20px;
            }

            .mobile-nav a {
                font-family: "Prata", serif;
                font-size: clamp(29px, 8vw, 48px);
            }

            /* Responsive */

            @media (max-width: 1250px) {
                .nav {
                    display: none;
                }

                .advantages-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            @media (max-width: 1000px) {
                .hero {
                    min-height: 980px;
                    align-items: flex-start;
                    padding-top: 125px;
                }

                .hero-content {
                    padding-top: 80px;
                    padding-bottom: 310px;
                }

                .booking-position {
                    bottom: 35px;
                }

                .booking-form {
                    width: min(650px, 100%);
                    grid-template-columns: repeat(2, 1fr);
                    gap: 15px;
                }

                .booking-field {
                    min-height: 70px;
                    padding: 0 15px;
                    border: 1px solid rgba(255, 255, 255, 0.12);
                    border-radius: 8px;
                }

                .booking-field:first-child {
                    padding-left: 15px;
                }

                .booking-submit {
                    width: 100%;
                    min-width: 0;
                    margin: 0;
                    grid-column: 1 / -1;
                }

                .advantages-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 700px) {
                .container {
                    width: min(100% - 30px, 1460px);
                }

                .header {
                    padding: 17px 0;
                }

                .logo-circle {
                    width: 48px;
                    height: 48px;
                    font-size: 20px;
                }

                .logo-copy strong {
                    font-size: 17px;
                }

                .logo-copy small {
                    margin-top: 5px;
                    font-size: 8px;
                }

                .header-book {
                    display: none;
                }

                .hero {
                    min-height: 1040px;
                    background-position: 62% center;
                }

                .hero-content {
                    padding-top: 70px;
                    padding-bottom: 435px;
                }

                .hero-title {
                    font-size: clamp(49px, 14vw, 72px);
                }

                .hero-description {
                    font-size: 17px;
                }

                .hero-features {
                    gap: 20px;
                }

                .hero-feature {
                    width: calc(50% - 10px);
                }

                .hero-actions {
                    display: grid;
                }

                .hero-actions .btn {
                    width: 100%;
                }

                .video-button {
                    justify-content: center;
                }

                .booking-position {
                    bottom: 25px;
                }

                .booking-form {
                    grid-template-columns: 1fr;
                    padding: 14px;
                }

                .booking-submit {
                    grid-column: auto;
                }

                .advantages-grid {
                    grid-template-columns: 1fr;
                }
            }

            @media (max-width: 420px) {
                .logo-copy strong {
                    font-size: 15px;
                }

                .logo-copy small {
                    letter-spacing: 0.2em;
                }

                .hero {
                    min-height: 1090px;
                }

                .hero-feature {
                    width: 100%;
                }
            }
            /* Общие секции */

            .section {
                padding: 120px 0;
            }

            .section-dark {
                color: var(--white);
                background: #171511;
            }

            .section-light {
                background: #f8f5ef;
            }

            .section-white {
                background: #ffffff;
            }

            .section-heading {
                margin-bottom: 58px;
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                gap: 50px;
            }

            .section-heading-content {
                max-width: 850px;
            }

            .section-label {
                margin-bottom: 18px;
                display: inline-flex;
                align-items: center;
                gap: 14px;

                color: var(--gold-dark);
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 0.18em;
                text-transform: uppercase;
            }

            .section-label::before {
                width: 42px;
                height: 1px;
                content: "";
                background: currentColor;
            }

            .section-dark .section-label {
                color: var(--gold-light);
            }

            .section-title {
                margin: 0;

                font-family: "Prata", serif;
                font-size: clamp(42px, 5vw, 74px);
                font-weight: 400;
                line-height: 1.08;
                letter-spacing: -0.035em;
            }

            .section-description {
                max-width: 650px;
                margin: 24px 0 0;

                color: var(--muted);
                font-size: 17px;
                line-height: 1.75;
            }

            .section-dark .section-description {
                color: rgba(255, 255, 255, 0.62);
            }

            /* Об апартаментах */

            .about-grid {
                display: grid;
                grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
                align-items: center;
                gap: 90px;
            }

            .about-images {
                position: relative;
                min-height: 720px;
            }

            .about-image-main {
                width: calc(100% - 100px);
                height: 650px;

                border-radius: 8px;
                object-fit: cover;
                box-shadow: 0 30px 80px rgba(40, 31, 18, 0.18);
            }

            .about-image-small {
                position: absolute;
                right: 0;
                bottom: 0;

                width: 320px;
                height: 380px;

                border: 12px solid #f8f5ef;
                border-radius: 8px;
                object-fit: cover;
            }

            .about-rating {
                position: absolute;
                top: 55px;
                right: 36px;

                width: 155px;
                height: 155px;

                border-radius: 50%;

                display: grid;
                place-items: center;

                color: var(--white);
                background: rgba(22, 19, 15, 0.94);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
                text-align: center;
            }

            .about-rating strong {
                display: block;
                color: var(--gold-light);
                font-family: "Prata", serif;
                font-size: 38px;
                font-weight: 400;
            }

            .about-rating span {
                max-width: 100px;
                margin-top: 4px;
                display: block;

                font-size: 10px;
                line-height: 1.4;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }

            .about-text {
                color: var(--muted);
                font-size: 17px;
                line-height: 1.85;
            }

            .about-list {
                margin: 38px 0 0;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 14px 30px;
            }

            .about-list-item {
                padding: 17px 0;
                border-bottom: 1px solid rgba(30, 30, 30, 0.12);

                display: flex;
                align-items: center;
                gap: 13px;

                font-size: 14px;
                font-weight: 600;
            }

            .about-list-icon {
                width: 29px;
                height: 29px;

                border-radius: 50%;

                display: grid;
                place-items: center;
                flex: 0 0 auto;

                color: var(--white);
                background: var(--gold);
                font-size: 13px;
            }

            /* Характеристики */

            .specifications {
                margin-top: 65px;

                border-top: 1px solid rgba(30, 30, 30, 0.1);
                border-left: 1px solid rgba(30, 30, 30, 0.1);

                display: grid;
                grid-template-columns: repeat(4, 1fr);
            }

            .specification {
                min-height: 190px;
                padding: 35px 30px;

                border-right: 1px solid rgba(30, 30, 30, 0.1);
                border-bottom: 1px solid rgba(30, 30, 30, 0.1);

                display: flex;
                flex-direction: column;
                justify-content: space-between;

                transition:
                    color 0.25s ease,
                    background 0.25s ease,
                    transform 0.25s ease;
            }

            .specification:hover {
                z-index: 2;
                color: var(--white);
                background: #191713;
                transform: translateY(-6px);
            }

            .specification-number {
                color: var(--gold-dark);
                font-family: "Prata", serif;
                font-size: 44px;
                line-height: 1;
            }

            .specification:hover .specification-number {
                color: var(--gold-light);
            }

            .specification-title {
                margin-top: 26px;
                font-size: 14px;
                font-weight: 600;
            }

            /* Галерея */

            .gallery-grid {
                display: grid;
                grid-template-columns: 1.2fr 0.8fr 0.8fr;
                grid-template-rows: 330px 330px;
                gap: 16px;
            }

            .gallery-item {
                position: relative;
                border-radius: 8px;
                overflow: hidden;
                cursor: pointer;
            }

            .gallery-item:first-child {
                grid-row: 1 / 3;
            }

            .gallery-item:nth-child(4) {
                grid-column: 2 / 4;
            }

            .gallery-item img {
                width: 100%;
                height: 100%;

                display: block;
                object-fit: cover;

                transition: transform 0.7s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.055);
            }

            .gallery-item::after {
                position: absolute;
                inset: 0;
                content: "";

                background: linear-gradient(
                    to top,
                    rgba(9, 8, 7, 0.65),
                    transparent 55%
                    );
            }

            .gallery-caption {
                position: absolute;
                z-index: 2;
                right: 23px;
                bottom: 20px;
                left: 23px;

                display: flex;
                align-items: center;
                justify-content: space-between;

                color: var(--white);
                font-size: 13px;
                font-weight: 600;
            }

            /* Удобства */

            .amenities-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }

            .amenity {
                min-height: 245px;
                padding: 34px 28px;

                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 8px;

                transition:
                    background 0.25s ease,
                    border-color 0.25s ease,
                    transform 0.25s ease;
            }

            .amenity:hover {
                border-color: rgba(210, 164, 95, 0.5);
                background: rgba(255, 255, 255, 0.045);
                transform: translateY(-6px);
            }

            .amenity-icon {
                width: 56px;
                height: 56px;

                border: 1px solid rgba(210, 164, 95, 0.45);
                border-radius: 50%;

                display: grid;
                place-items: center;

                color: var(--gold-light);
                font-size: 25px;
            }

            .amenity h3 {
                margin: 42px 0 12px;

                font-family: "Prata", serif;
                font-size: 22px;
                font-weight: 400;
            }

            .amenity p {
                margin: 0;
                color: rgba(255, 255, 255, 0.55);
                font-size: 13px;
                line-height: 1.65;
            }

            /* Комплекс */

            .complex-grid {
                display: grid;
                grid-template-columns: minmax(400px, 0.85fr) minmax(0, 1.15fr);
                align-items: stretch;
            }

            .complex-image {
                min-height: 670px;
            }

            .complex-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .complex-content {
                padding: 80px;
                color: var(--white);
                background: #1b1814;
            }

            .complex-list {
                margin-top: 42px;
                display: grid;
                gap: 0;
            }

            .complex-item {
                padding: 22px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.12);

                display: flex;
                align-items: center;
                gap: 17px;
            }

            .complex-item-number {
                width: 38px;
                height: 38px;

                border: 1px solid rgba(210, 164, 95, 0.45);
                border-radius: 50%;

                display: grid;
                place-items: center;
                flex: 0 0 auto;

                color: var(--gold-light);
                font-size: 11px;
            }

            .complex-item strong {
                display: block;
                font-size: 14px;
            }

            .complex-item span {
                margin-top: 5px;
                display: block;

                color: rgba(255, 255, 255, 0.5);
                font-size: 12px;
            }

            /* Расположение */

            .location-grid {
                display: grid;
                grid-template-columns: 0.85fr 1.15fr;
                align-items: stretch;
                gap: 60px;
            }

            .location-list {
                margin-top: 42px;
            }

            .location-item {
                padding: 19px 0;
                border-bottom: 1px solid rgba(30, 30, 30, 0.12);

                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 25px;
            }

            .location-item span {
                color: var(--muted);
                font-size: 14px;
            }

            .location-item strong {
                color: var(--gold-dark);
                font-size: 14px;
            }

            .map-wrap {
                min-height: 570px;
                border-radius: 8px;
                overflow: hidden;
                background: #e9e3da;
            }

            .map-wrap iframe {
                width: 100%;
                height: 100%;
                min-height: 570px;
                border: 0;
            }

            /* Стоимость */

            .price-layout {
                display: grid;
                grid-template-columns: 0.9fr 1.1fr;
                align-items: center;
                gap: 90px;
            }

            .price-card {
                position: relative;
                padding: 55px;

                border-radius: 10px;

                color: var(--white);
                background:
                    linear-gradient(
                    140deg,
                    rgba(36, 31, 24, 0.98),
                    rgba(18, 16, 13, 0.98)
                    );

                box-shadow: 0 30px 90px rgba(40, 30, 17, 0.22);
                overflow: hidden;
            }

            .price-card::before {
                position: absolute;
                top: -170px;
                right: -160px;

                width: 390px;
                height: 390px;

                border: 1px solid rgba(210, 164, 95, 0.24);
                border-radius: 50%;

                content: "";
            }

            .price-card::after {
                position: absolute;
                top: -80px;
                right: -70px;

                width: 220px;
                height: 220px;

                border: 1px solid rgba(210, 164, 95, 0.24);
                border-radius: 50%;

                content: "";
            }

            .price-card-content {
                position: relative;
                z-index: 2;
            }

            .price-label {
                color: var(--gold-light);
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 0.16em;
                text-transform: uppercase;
            }

            .price-value {
                margin: 18px 0 22px;

                font-family: "Prata", serif;
                font-size: clamp(54px, 6vw, 80px);
                line-height: 1;
            }

            .price-value small {
                font-family: "Manrope", sans-serif;
                font-size: 16px;
            }

            .price-note {
                color: rgba(255, 255, 255, 0.52);
                font-size: 13px;
                line-height: 1.7;
            }

            .price-details {
                margin: 34px 0;
                padding: 25px 0;

                border-top: 1px solid rgba(255, 255, 255, 0.14);
                border-bottom: 1px solid rgba(255, 255, 255, 0.14);
            }

            .price-detail {
                padding: 9px 0;
                display: flex;
                justify-content: space-between;
                gap: 20px;

                font-size: 13px;
            }

            .price-detail span {
                color: rgba(255, 255, 255, 0.5);
            }

            /* Правила */

            .rules-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .rule {
                padding: 35px;

                border: 1px solid rgba(30, 30, 30, 0.1);
                border-radius: 8px;

                background: rgba(255, 255, 255, 0.55);
            }

            .rule-number {
                margin-bottom: 50px;
                color: var(--gold-dark);
                font-family: "Prata", serif;
                font-size: 34px;
            }

            .rule h3 {
                margin: 0 0 12px;
                font-family: "Prata", serif;
                font-size: 22px;
                font-weight: 400;
            }

            .rule p {
                margin: 0;
                color: var(--muted);
                font-size: 13px;
                line-height: 1.7;
            }

            /* Отзывы */

            .rating-summary {
                display: flex;
                align-items: center;
                gap: 17px;
            }

            .rating-summary-number {
                font-family: "Prata", serif;
                font-size: 55px;
            }

            .rating-stars {
                color: var(--gold);
                letter-spacing: 4px;
            }

            .rating-summary small {
                margin-top: 5px;
                display: block;
                color: var(--muted);
            }

            .reviews-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .review {
                padding: 38px;

                border: 1px solid rgba(30, 30, 30, 0.1);
                border-radius: 8px;

                background: #ffffff;
            }

            .review-stars {
                color: var(--gold);
                letter-spacing: 4px;
            }

            .review-text {
                min-height: 175px;
                margin: 27px 0 35px;

                font-family: "Prata", serif;
                font-size: 19px;
                line-height: 1.6;
            }

            .review-author {
                display: flex;
                align-items: center;
                gap: 13px;
            }

            .review-avatar {
                width: 46px;
                height: 46px;

                border-radius: 50%;

                display: grid;
                place-items: center;

                color: var(--white);
                background: #1b1814;
                font-weight: 700;
            }

            .review-author strong {
                display: block;
                font-size: 13px;
            }

            .review-author span {
                margin-top: 4px;
                display: block;
                color: var(--muted);
                font-size: 11px;
            }

            /* FAQ */

            .faq-layout {
                display: grid;
                grid-template-columns: 0.75fr 1.25fr;
                gap: 90px;
            }

            .faq-list {
                border-top: 1px solid rgba(30, 30, 30, 0.12);
            }

            .faq-item {
                border-bottom: 1px solid rgba(30, 30, 30, 0.12);
            }

            .faq-question {
                width: 100%;
                padding: 25px 0;

                border: 0;

                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 30px;

                color: var(--text);
                background: transparent;

                font-family: "Prata", serif;
                font-size: 20px;
                text-align: left;
            }

            .faq-plus {
                width: 38px;
                height: 38px;

                border: 1px solid rgba(30, 30, 30, 0.14);
                border-radius: 50%;

                display: grid;
                place-items: center;
                flex: 0 0 auto;

                color: var(--gold-dark);
                font-family: "Manrope", sans-serif;
                font-size: 22px;

                transition: transform 0.3s ease;
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;

                color: var(--muted);
                font-size: 14px;
                line-height: 1.75;

                transition:
                    max-height 0.35s ease,
                    padding 0.35s ease;
            }

            .faq-item.active .faq-answer {
                max-height: 250px;
                padding: 0 60px 25px 0;
            }

            .faq-item.active .faq-plus {
                transform: rotate(45deg);
            }

            /* Финальная форма */

            .final-booking {
                position: relative;
                padding: 100px 70px;

                border-radius: 12px;

                color: var(--white);
                background:
                    linear-gradient(
                    90deg,
                    rgba(15, 13, 10, 0.96),
                    rgba(15, 13, 10, 0.58)
                    ),
                    url("../booking-background.jpg") center / cover no-repeat;

                overflow: hidden;
            }

            .final-booking-content {
                position: relative;
                z-index: 2;
                max-width: 850px;
            }

            .final-booking h2 {
                margin: 0;

                font-family: "Prata", serif;
                font-size: clamp(44px, 6vw, 78px);
                font-weight: 400;
                line-height: 1.08;
            }

            .final-booking p {
                max-width: 620px;
                margin: 25px 0 38px;

                color: rgba(255, 255, 255, 0.64);
                font-size: 17px;
                line-height: 1.7;
            }

            .final-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 14px;
            }

            .btn-outline-light {
                color: var(--white);
                border: 1px solid rgba(255, 255, 255, 0.34);
                background: rgba(255, 255, 255, 0.08);
                backdrop-filter: blur(10px);
            }

            /* Контакты */

            .contacts-grid {
                display: grid;
                grid-template-columns: 0.8fr 1.2fr;
                gap: 80px;
            }

            .contact-list {
                margin-top: 45px;
                display: grid;
                gap: 0;
            }

            .contact-item {
                padding: 22px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            }

            .contact-item span {
                display: block;

                color: rgba(255, 255, 255, 0.42);
                font-size: 10px;
                letter-spacing: 0.12em;
                text-transform: uppercase;
            }

            .contact-item a,
            .contact-item strong {
                margin-top: 7px;
                display: block;

                color: var(--white);
                font-size: 17px;
            }

            .contact-form {
                padding: 45px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.055);
            }

            .contact-form-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .contact-field {
                display: grid;
                gap: 8px;
            }

            .contact-field-full {
                grid-column: 1 / -1;
            }

            .contact-field label {
                color: rgba(255, 255, 255, 0.5);
                font-size: 10px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
            }

            .contact-field input,
            .contact-field select,
            .contact-field textarea {
                width: 100%;
                padding: 16px 17px;

                color: var(--white);
                border: 1px solid rgba(255, 255, 255, 0.13);
                border-radius: 5px;
                outline: none;

                background: rgba(255, 255, 255, 0.055);
            }

            .contact-field textarea {
                min-height: 130px;
                resize: vertical;
            }

            .contact-field input:focus,
            .contact-field select:focus,
            .contact-field textarea:focus {
                border-color: var(--gold);
            }

            .contact-field select option {
                color: #171717;
            }

            /* Footer */

            .footer {
                padding: 75px 0 30px;
                color: rgba(255, 255, 255, 0.55);
                background: #0e0d0b;
            }

            .footer-grid {
                display: grid;
                grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
                gap: 60px;
            }

            .footer-description {
                max-width: 360px;
                margin: 26px 0 0;

                font-size: 13px;
                line-height: 1.75;
            }

            .footer h4 {
                margin: 0 0 23px;

                color: var(--white);
                font-size: 11px;
                letter-spacing: 0.15em;
                text-transform: uppercase;
            }

            .footer-links {
                display: grid;
                gap: 13px;
                font-size: 13px;
            }

            .footer-links a:hover {
                color: var(--gold-light);
            }

            .footer-bottom {
                margin-top: 65px;
                padding-top: 25px;

                border-top: 1px solid rgba(255, 255, 255, 0.09);

                display: flex;
                justify-content: space-between;
                gap: 30px;

                font-size: 11px;
            }

            /* Анимации */

            .reveal {
                opacity: 0;
                transform: translateY(35px);

                transition:
                    opacity 0.8s ease,
                    transform 0.8s ease;
            }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            /* Адаптивность */

            @media (max-width: 1100px) {
                .about-grid,
                .price-layout,
                .location-grid,
                .faq-layout,
                .contacts-grid {
                    gap: 55px;
                }

                .specifications,
                .amenities-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .complex-content {
                    padding: 55px;
                }

                .footer-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 900px) {
                .section {
                    padding: 90px 0;
                }

                .about-grid,
                .complex-grid,
                .location-grid,
                .price-layout,
                .faq-layout,
                .contacts-grid {
                    grid-template-columns: 1fr;
                }

                .section-heading {
                    align-items: flex-start;
                    flex-direction: column;
                }

                .gallery-grid {
                    grid-template-columns: repeat(2, 1fr);
                    grid-template-rows: 450px 280px 280px;
                }

                .gallery-item:first-child {
                    grid-column: 1 / -1;
                    grid-row: auto;
                }

                .gallery-item:nth-child(4) {
                    grid-column: 1 / -1;
                }

                .reviews-grid,
                .rules-grid {
                    grid-template-columns: 1fr;
                }

                .review-text {
                    min-height: auto;
                }
            }

            @media (max-width: 650px) {
                .section {
                    padding: 75px 0;
                }

                .section-title {
                    font-size: 40px;
                }

                .about-images {
                    min-height: 520px;
                }

                .about-image-main {
                    width: calc(100% - 45px);
                    height: 470px;
                }

                .about-image-small {
                    width: 190px;
                    height: 245px;
                    border-width: 7px;
                }

                .about-rating {
                    top: 25px;
                    right: 5px;
                    width: 110px;
                    height: 110px;
                }

                .about-rating strong {
                    font-size: 28px;
                }

                .about-rating span {
                    font-size: 8px;
                }

                .about-list,
                .specifications,
                .amenities-grid {
                    grid-template-columns: 1fr;
                }

                .gallery-grid {
                    display: grid;
                    grid-template-columns: 1fr;
                    grid-template-rows: none;
                }

                .gallery-item,
                .gallery-item:first-child,
                .gallery-item:nth-child(4) {
                    height: 350px;
                    grid-column: auto;
                    grid-row: auto;
                }

                .complex-image {
                    min-height: 420px;
                }

                .complex-content {
                    padding: 45px 25px;
                }

                .price-card {
                    padding: 40px 25px;
                }

                .final-booking {
                    padding: 65px 28px;
                }

                .final-actions {
                    display: grid;
                }

                .final-actions .btn {
                    width: 100%;
                }

                .contact-form {
                    padding: 30px 20px;
                }

                .contact-form-grid {
                    grid-template-columns: 1fr;
                }

                .contact-field-full {
                    grid-column: auto;
                }

                .footer-grid {
                    grid-template-columns: 1fr;
                }

                .footer-bottom {
                    flex-direction: column;
                }
            }
            .menu-button {
                display: none;
            }

            @media (max-width: 1250px) {
                .menu-button {
                    display: grid;
                }
            }