   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --main_b: linear-gradient(180deg, #1e1e1e99 0 8%, #5c5b5b99 100%);
            --main_text: #fff;

            /* Акцентный цвет сайта — поменяйте его, чтобы перекрасить весь сайт */
            --accent: #c9a96e;
            /* Производные оттенки акцента: рассчитываются из --accent, тон сохраняется */
            --accent-light:    oklch(from var(--accent) calc(l + 0.035) c h);
            --accent-lighter:  oklch(from var(--accent) calc(l + 0.08) c h);
            --accent-lightest: oklch(from var(--accent) calc(l + 0.15) c h);
            --accent-dark:     oklch(from var(--accent) calc(l - 0.045) c h);
            --accent-darker:   oklch(from var(--accent) calc(l - 0.095) c h);
            --accent-deep:     oklch(from var(--accent) calc(l - 0.165) c h);
        }
        html {
            overflow-x: clip;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fcfcf9;
            color: #1f1f1f;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: clip;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===== HEADER — на всю ширину ===== */
        .logo {
            width: 85px;
        }
        .logobl {
            display: flex;
            flex-direction: row;
            align-items: center;
            font-size: 25px;
            color: #fff;
            height: 45px;
        }
        .navbar {
            width: 100%;
            background: var(--main_b);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 60;
            transition: box-shadow 0.25s;
        }
        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 26px;
            padding-top: 18px;
            padding-bottom: 16px;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            padding: 12px 10px;
            background: transparent;
            border: 1px solid #e5dfd3;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            border-radius: 3px;
            background: #1a1a1a;
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1), opacity 0.25s;
        }
        .nav-toggle:hover {
            background: #f6f2ea;
            border-color: #d6cdbb;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.9rem;
            letter-spacing: -0.02em;
            color: var(--main_text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo i {
            color: var(--accent);
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            font-weight: 500;
            color: var(--main_text);
        }
        .nav-links a {
            text-decoration: none;
            color: inherit;
            font-size: 0.95rem;
            transition: color 0.2s;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.25s ease;
        }
        .nav-links a:hover {
            color: var(--accent-dark);
        }
        .nav-links a:hover:after {
            width: 100%;
        }

        .header-cta {
            background: var(--accent);
            color: white;
            border: none;
            padding: 14px 34px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
            letter-spacing: 0.3px;
        }
        .header-cta i {
            margin-right: 8px;
        }
        .header-cta:hover {
            background: var(--accent-dark);
            color: #1a1a1a;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 25%, transparent);
        }

        /* ===== HERO — на всю ширину, фото на фоне ===== */
        .hero {
            position: relative;
            left: 50%;
            display: flex;
            align-items: center;
            width: 100vw;
            min-height: 50vh;
            transform: translateX(-50%);
            padding: 30px 0 100px;
            overflow: hidden;
            background: #0d0c09;
        }
        .hero-media {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        .hero-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(1100px 560px at 50% 46%, rgb(8 7 5 / 3%), rgb(8 7 5 / 9%) 58%, #00000000 80%), radial-gradient(900px 420px at 50% 16%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 65%), linear-gradient(100deg, rgb(8 7 5 / 25%) 4%, rgba(8, 7, 5, 0.54) 40%, rgba(8, 7, 5, 0.32) 70%, rgba(8, 7, 5, 0.48) 100%), linear-gradient(0deg, rgb(8 7 5 / 14%) 0%, rgba(8, 7, 5, 0.24) 28%, rgba(8, 7, 5, 0.32) 62%, rgb(8 7 5 / 23%) 100%);
        }
        /* Один фон на весь hero */
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 18px;
            color: var(--accent-light);
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.42em;
            text-transform: uppercase;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
            margin-bottom: 28px;
        }
        .hero-eyebrow::before {
            content: '';
            width: 58px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-light));
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: clamp(3rem, 6.2vw, 6.4rem);
            line-height: 1.02;
            letter-spacing: -0.025em;
            color: #f9f5ec;
            filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
            margin-bottom: 28px;
        }
        .hero-title span {
            background: linear-gradient(96deg, var(--accent-lightest) 0%, var(--accent) 55%, var(--accent-darker) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .hero-title em {
            font-style: italic;
            font-weight: 400;
            white-space: nowrap;
            position: relative;
        }
        .hero-title em::after {
            content: '';
            position: absolute;
            left: 4%;
            right: 4%;
            bottom: 4px;
            height: 10px;
            background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 42%, transparent), transparent 72%);
            pointer-events: none;
        }

        .hero-sub {
            max-width: 580px;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 300;
            font-size: 1.16rem;
            line-height: 1.8;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
            margin-bottom: 42px;
        }
        .hero-sub strong { color: #f9f5ec; font-weight: 500; }

        .btn-primary {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent) 55%, var(--accent-darker) 100%);
            color: #171310;
            padding: 19px 46px;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.98rem;
            letter-spacing: 0.04em;
            cursor: pointer;
            box-shadow: 0 20px 48px -14px color-mix(in srgb, var(--accent) 50%, transparent);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1), box-shadow 0.3s;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.5) 50%, transparent 75%);
            transform: translateX(-130%);
        }
        .btn-primary:hover::after {
            transform: translateX(130%);
            transition: transform 0.75s ease;
        }
        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 64px -16px rgba(224, 197, 131, 0.6);
        }
        .btn-primary i { transition: transform 0.3s ease; }
        .btn-primary:hover i { transform: translateX(6px); }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(249, 245, 236, 0.32);
            color: #f9f5ec;
            padding: 18px 42px;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.98rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            border-color: var(--accent-light);
            color: var(--accent-lighter);
            background: color-mix(in srgb, var(--accent) 12%, transparent);
            transform: translateY(-4px);
            box-shadow: 0 20px 46px -18px rgba(0, 0, 0, 0.5);
        }

        .hero-meta {
            margin-top: 44px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px 34px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.02em;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
        }
        .hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
        .hero-meta i { color: var(--accent-lighter); font-size: 0.82rem; }
        .hero-meta span + span { position: relative; }
        .hero-meta span + span::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--accent-light);
            opacity: 0.7;
        }

        .hero-scroll {
            position: absolute;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 9px;
            color: rgba(249, 245, 236, 0.5);
            font-size: 0.62rem;
            font-weight: 500;
            letter-spacing: 0.36em;
            text-transform: uppercase;
            pointer-events: none;
        }
        .hero-scroll i {
            color: var(--accent-light);
            font-size: 0.82rem;
            animation: scrollBob 1.8s ease-in-out infinite;
        }
        @keyframes scrollBob {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50%      { transform: translateY(9px); opacity: 0.4; }
        }

        /* Появление текста сверху */
        .hero-inner > * {
            opacity: 0;
            animation: heroIn 1.05s cubic-bezier(0.16, 0.84, 0.3, 1) both;
        }
        .hero-eyebrow { animation-delay: 0.1s; }
        .hero-title   { animation-delay: 0.32s; }
        .hero-sub     { animation-delay: 0.56s; }
        .hero-meta    { animation-delay: 1.06s; }
        @keyframes heroIn {
            0%   { opacity: 0; transform: translateY(-58px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-inner > * { animation: none; opacity: 1; }
            .hero-bg, .hero-scroll i { animation: none; }
        }

        /* ===== FEATURES ===== */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            padding: 40px 0 60px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: #ffffff;
            padding: 20px 26px;
            border-radius: 60px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.02);
            transition: all 0.25s;
            border: 1px solid #0000001c;
        }
        .feature-item:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
            transform: translateY(-4px);
            border-color: #f0ece4;
        }
        .feature-item i {
            font-size: 2rem;
            color: var(--accent);
            width: 44px;
            text-align: center;
            flex-shrink: 0;
        }
        .feature-item > div {
            flex: 1;
            min-width: 0;
        }
        .feature-item h4 {
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        /* Название категории — строго в одну строку, лишнее обрезается */
        .feature-item p {
            color: #6a6a6a;
            font-size: 0.8rem;
            font-weight: 300;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ===== SERVICES: услуги отеля — плитки только с иконками ===== */
        #services {
            scroll-margin-top: 90px;
        }
        .services-block {
            background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
            border: 1px solid #f0ece4;
            border-radius: 40px;
            padding: 56px;
            margin: 0 0 80px;
            box-shadow: 0 6px 40px rgba(0, 0, 0, 0.01);
        }
        .services-head {
            margin-bottom: 30px;
        }
        .services-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 8px 18px;
            border-radius: 60px;
            background: color-mix(in srgb, var(--accent) 10%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
            color: var(--accent-deep);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .services-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .services-title span {
            color: var(--accent-dark);
        }
        .services-sub {
            max-width: 640px;
            color: #5a5a5a;
            font-weight: 300;
            font-size: 1rem;
        }
        /* Плитки: одинаковые, ровные, в несколько колонок */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 12px 18px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .service-chip {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            padding: 12px 16px;
            background: #ffffff;
            border: 1px solid #f0ece4;
            border-radius: 18px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }
        .service-chip:hover {
            border-color: color-mix(in srgb, var(--accent) 50%, transparent);
            box-shadow: 0 18px 34px -22px rgba(24, 20, 14, 0.45);
            transform: translateY(-2px);
        }
        .service-chip-icon {
            flex: 0 0 auto;
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-lighter) 32%, transparent), color-mix(in srgb, var(--accent) 14%, transparent));
            color: var(--accent-darker);
            font-size: 0.92rem;
            transition: background 0.25s ease, color 0.25s ease;
        }
        .service-chip:hover .service-chip-icon {
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            color: #ffffff;
        }
        .service-chip-name {
            min-width: 0;
            font-size: 0.88rem;
            font-weight: 500;
            line-height: 1.35;
            color: #4b463d;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Плитки услуг — адаптив */
        @media (max-width: 780px) {
            .services-block {
                padding: 36px 24px;
                border-radius: 30px;
                margin-bottom: 60px;
            }
            .services-title {
                font-size: 1.8rem;
            }
            .services-list {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 10px 14px;
            }
        }
        @media (max-width: 480px) {
            .services-block {
                padding: 28px 18px 32px;
                border-radius: 24px;
                margin-bottom: 48px;
            }
            .services-head {
                margin-bottom: 20px;
            }
            .services-title {
                font-size: 1.55rem;
            }
            .services-sub {
                font-size: 0.92rem;
            }
            .services-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .service-chip {
                padding: 10px 14px;
                border-radius: 16px;
            }
            .service-chip-icon {
                width: 34px;
                height: 34px;
                font-size: 0.85rem;
            }
            .service-chip-name {
                font-size: 0.84rem;
            }
        }

        /* ===== ROOMS ===== */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }
        .section-sub {
            color: #5a5a5a;
            font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 48px;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px 30px;
            padding-bottom: 60px;
        }

        .room-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.15, 0.9, 0.25, 1);
                border: 1px solid rgb(0 0 0 / 15%);
        }
        .room-card:hover {
            box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.10);
            border-color: #eae6dc;
        }

        /* Медиа-область карточки номера со слайдером фото */
        .room-media {
            position: relative;
            flex: 0 0 auto;
            height: 250px;
            overflow: hidden;
            background: #ddd6c8;
        }
        .room-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.30) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .room-slider {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        .room-slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .room-slide {
            flex: 0 0 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.4s ease;
            position: absolute;
            inset: 0;
        }
        .room-slide.active {
            opacity: 1;
            position: relative;
        }
        .room-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .room-card:hover .room-slide.active img {
            transform: scale(1.04);
        }
        .room-slider:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: -3px;
        }

        /* Стрелки слайдера — появляются при наведении на карточку */
        .room-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.45);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            opacity: 0;
            transition: all 0.3s;
        }
        .room-card:hover .room-slider-arrow {
            opacity: 1;
        }
        .room-slider-arrow:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #1a1a1a;
        }
        .room-slider-prev { left: 12px; }
        .room-slider-next { right: 12px; }

        /* Полоски — количество фото, при наведении меняется фото */
        .room-slider-dots {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 5px;
            display: flex;
            gap: 8px;
            z-index: 3;
        }
        .room-slider-dot {
            flex: 1;
            max-width: 100%;
            height: 34px;
            padding: 0;
            border: 0;
            border-radius: 2px;
            background: transparent;
            border-bottom: 4px solid rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: border-color 0.3s ease;
        }
        .room-slider-dot.active,
        .room-slider-dot:hover {
            border-bottom-color: var(--accent);
        }

        .room-info {
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
            padding: 28px 28px 32px;
        }
        /* Название номера — строго в одну строку, лишнее обрезается */
        .room-info h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.4rem;
            margin-bottom: 4px;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        /* Описание номера — максимум 2 строки, остальное скрыто */
        .room-info .room-desc {
            color: #4f4f4f;
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.55;
            margin-bottom: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Характеристики номера — вертикальный список: иконка, параметр, значение */
        .room-specs {
            display: flex;
            flex-direction: column;
            margin: 0 0 20px;
            padding: 0;
            list-style: none;
        }
        .room-specs li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-top: 1px solid #f2eee6;
        }
        .room-specs li:first-child {
            padding-top: 0;
            border-top: 0;
        }
        .room-specs li:last-child {
            padding-bottom: 0;
        }
        /* Иконка параметра — одинаковая для всех строк, ровная колонка */
        .room-spec-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 22px;
            width: 22px;
            height: 22px;
            border-radius: 7px;
            background: color-mix(in srgb, var(--accent) 16%, transparent);
            color: var(--accent-dark);
            font-size: 10px;
            line-height: 1;
        }
        .room-card:hover .room-spec-icon {
            background: color-mix(in srgb, var(--accent) 30%, transparent);
        }
        .room-spec-body {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            flex: 1 1 auto;
            min-width: 0;
            line-height: 1.25;
        }
        .room-spec-body b {
            font-size: 0.76rem;
            font-weight: 500;
            color: #8d8577;
        }
        .room-spec-body span {
            font-size: 0.92rem;
            font-weight: 600;
            color: #1f1f1f;
            white-space: nowrap;
        }

        /* Цена и кнопка — всегда внизу карточки, на одном уровне с соседними */
        .room-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-top: auto;
            border-top: 1px solid #f0ede7;
            padding-top: 20px;
        }
        /* Цена — акцентным цветом, чтобы читалась первой */
        .room-price {
            color: var(--accent-dark);
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .room-price small {
            font-weight: 300;
            font-size: 0.8rem;
            color: #9a9384;
        }
        .room-btn {
            display: inline-block;
            background: transparent;
            border: 1px solid #ddd6c8;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
            color: #1f1f1f;
            font-size: 0.9rem;
            text-decoration: none;
            text-align: center;
            white-space: nowrap;
        }
        .room-btn:hover {
            background: #1a1a1a;
            color: white;
            border-color: #1a1a1a;
        }

        /* ===== ABOUT: коллаж фото + SEO-описание ===== */
        .about-block {
            padding-bottom: 80px;
            scroll-margin-top: 90px;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1.06fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Мозаика фото: 1 крупное + 4 малых */
        .about-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-auto-rows: 152px;
            gap: 14px;
        }
        .about-photo {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #e8e2d8;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
            transition: box-shadow 0.35s ease;
        }
        .about-photo-main {
            grid-column: span 2;
            grid-row: span 2;
        }
        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.75s cubic-bezier(0.2, 0.9, 0.4, 1);
        }
        .about-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(24, 20, 14, 0) 45%, rgba(24, 20, 14, 0.38) 100%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .about-photo:hover {
            box-shadow: 0 20px 46px -18px rgba(24, 20, 14, 0.45);
        }
        .about-photo:hover img {
            transform: scale(1.06);
        }
        .about-photo:hover::after {
            opacity: 1;
        }

        /* Бейдж рейтинга на главном фото */
        .about-photo-badge {
            position: absolute;
            left: 20px;
            bottom: 20px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.93);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
            box-shadow: 0 18px 40px -20px rgba(24, 20, 14, 0.6);
        }
        .about-photo-badge strong {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem;
            font-weight: 600;
            line-height: 1;
            color: #1f1f1f;
        }
        .about-photo-badge span {
            font-size: 0.66rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.3;
            color: #7a7468;
        }
        .about-photo-badge i {
            color: var(--accent);
            margin-right: 4px;
        }

        /* Правая колонка: описание отеля */
        .about-content {
            position: relative;
        }
        .about-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-darker);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .about-eyebrow i {
            font-size: 0.85rem;
            color: var(--accent);
        }
        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem;
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }
        .about-title span {
            display: block;
            margin-top: 4px;
            font-size: 1.35rem;
            font-weight: 400;
            font-style: italic;
            color: var(--accent);
        }

        .about-text {
            color: #5a5a5a;
            font-weight: 300;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 26px;
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
        }
        .about-text-inner {
            position: relative;
            max-height: 168px;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .about-text-inner::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 74px;
            background: linear-gradient(180deg, rgba(252, 252, 249, 0) 0%, #fcfcf9 100%);
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .about-text.expanded .about-text-inner {
            max-height: 2600px;
        }
        .about-text.expanded .about-text-inner::after {
            opacity: 0;
        }
        .about-text p {
            margin-bottom: 12px;
        }
        .about-text p:last-child {
            margin-bottom: 0;
        }
        .about-text b,
        .about-text strong {
            color: #1f1f1f;
            font-weight: 600;
        }
        .about-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 10px 22px;
            background: color-mix(in srgb, var(--accent) 10%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
            border-radius: 60px;
            color: var(--accent-deep);
            font-family: inherit;
            font-size: 0.86rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .about-more-btn:hover {
            background: color-mix(in srgb, var(--accent) 18%, transparent);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 16px 34px -20px color-mix(in srgb, var(--accent) 80%, transparent);
        }
        .about-more-btn i {
            font-size: 0.72rem;
            transition: transform 0.3s ease;
        }
        .about-text.expanded .about-more-btn i {
            transform: rotate(180deg);
        }

        /* Плашки с фактами об отеле */
        .about-facts {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin: 0 0 30px;
            padding: 0;
            list-style: none;
        }
        .about-facts li {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            background: #ffffff;
            border: 1px solid #f0ece4;
            border-radius: 20px;
            padding: 14px 18px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }
        .about-facts li:hover {
            border-color: color-mix(in srgb, var(--accent) 45%, transparent);
            box-shadow: 0 18px 38px -22px rgba(24, 20, 14, 0.4);
            transform: translateY(-3px);
        }
        .about-facts i {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 13px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-lighter) 30%, transparent), color-mix(in srgb, var(--accent) 14%, transparent));
            color: var(--accent-darker);
            font-size: 0.95rem;
        }
        .about-facts span {
            min-width: 0;
            font-size: 0.86rem;
            font-weight: 300;
            color: #6a6a6a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .about-facts b {
            display: block;
            margin-bottom: 2px;
            font-size: 0.66rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-darker);
        }

        /* Кнопки блока */
        .about-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 34px;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }
        .about-btn i {
            font-size: 0.88rem;
            transition: transform 0.3s ease;
        }
        .about-btn:hover i {
            transform: translateX(5px);
        }
        .about-btn-gold {
            background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent) 55%, var(--accent-darker) 100%);
            color: #171310;
            box-shadow: 0 20px 46px -18px color-mix(in srgb, var(--accent) 55%, transparent);
        }
        .about-btn-gold:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 58px -20px color-mix(in srgb, var(--accent) 70%, transparent);
        }
        .about-btn-ghost {
            background: #ffffff;
            border: 1px solid #e6e0d4;
            color: #1f1f1f;
        }
        .about-btn-ghost:hover {
            border-color: var(--accent);
            color: var(--accent-darker);
            transform: translateY(-4px);
            box-shadow: 0 20px 44px -22px rgba(24, 20, 14, 0.4);
        }

        /* Якорь для кнопки «Выбрать номер» */
        #rooms {
            scroll-margin-top: 90px;
        }

        /* ===== REVIEWS: карусель отзывов (несколько отзывов, как в default) ===== */
        #reviews {
            scroll-margin-top: 90px;
        }
        .reviews-block {
            background: #ffffff;
            border: 1px solid #f0ece4;
            border-radius: 40px;
            padding: 56px;
            margin: 0 0 80px;
            box-shadow: 0 6px 40px rgba(0, 0, 0, 0.01);
        }
        .reviews-head {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 26px;
            margin-bottom: 34px;
        }
        .reviews-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 7px 18px;
            border-radius: 40px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-lighter) 28%, transparent), color-mix(in srgb, var(--accent) 14%, transparent));
            border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
            color: var(--accent-deep);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .reviews-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #1a1a1a;
        }
        .reviews-title span {
            color: var(--accent-dark);
        }
        .reviews-summary {
            text-align: right;
        }
        .reviews-summary-value {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            line-height: 1;
            color: var(--accent);
        }
        .reviews-summary-stars {
            display: block;
            margin: 8px 0 6px;
            color: var(--accent);
            font-size: 0.85rem;
            letter-spacing: 4px;
        }
        .reviews-summary-note {
            color: #7a7a7a;
            font-weight: 300;
            font-size: 0.85rem;
        }
        .reviews-empty {
            color: #5a5a5a;
            font-weight: 300;
        }

        /* Слайдер: сколько отзывов видно задаёт --reviews-per (1–3, JS + фолбэк в media) */
        .reviews-slider {
            --reviews-per: 3;
            --reviews-gap: 24px;
            position: relative;
        }
        .reviews-slider:focus-visible {
            outline: 2px solid color-mix(in srgb, var(--accent) 65%, transparent);
            outline-offset: 6px;
            border-radius: 30px;
        }
        .reviews-viewport {
            /* вертикальные отступы + компенсирующие margin: тень и подъём карточек не обрезаются */
            overflow: hidden;
            padding: 10px 0 30px;
            margin: -10px 0 -30px;
        }
        .reviews-track {
            display: flex;
            gap: var(--reviews-gap);
            transition: transform 0.5s cubic-bezier(0.15, 0.9, 0.25, 1);
            will-change: transform;
        }
        .review-card {
            flex: 0 0 calc((100% - (var(--reviews-per) - 1) * var(--reviews-gap)) / var(--reviews-per));
            display: flex;
            flex-direction: column;
            min-width: 0;
            background: #fdfcf9;
            border: 1px solid #f0ece4;
            border-radius: 26px;
            padding: 26px 26px 28px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .review-card:hover {
            border-color: color-mix(in srgb, var(--accent) 45%, transparent);
            box-shadow: 0 24px 48px -28px rgba(24, 20, 14, 0.45);
            transform: translateY(-3px);
        }
        .review-stars {
            display: flex;
            gap: 4px;
            color: var(--accent);
            font-size: 0.85rem;
            margin-bottom: 16px;
        }
        .review-text {
            flex: 1 1 auto;
            font-family: 'Playfair Display', serif;
            font-size: 1.06rem;
            font-style: italic;
            line-height: 1.6;
            color: #33302b;
            margin-bottom: 22px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: auto;
        }
        .review-avatar {
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-lighter) 40%, transparent), color-mix(in srgb, var(--accent) 20%, transparent));
            color: var(--accent-deep);
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
        }
        .review-author strong {
            display: block;
            font-size: 0.98rem;
            font-weight: 600;
        }
        .review-author span {
            color: #6a6a6a;
            font-weight: 300;
            font-size: 0.84rem;
        }

        /* Управление каруселью: стрелки + точки */
        .reviews-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-top: 28px;
        }
        .reviews-arrow {
            flex: 0 0 auto;
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #e6e0d4;
            border-radius: 50%;
            color: #5b5346;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }
        .reviews-arrow:hover {
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            border-color: transparent;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .reviews-dots {
            display: flex;
            align-items: center;
            gap: 9px;
        }
        .reviews-dot {
            width: 8px;
            height: 8px;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: #e0d8c8;
            cursor: pointer;
            transition: width 0.3s ease, background 0.3s ease;
        }
        .reviews-dot.active {
            width: 24px;
            border-radius: 6px;
            background: var(--accent);
        }
        .reviews-dot:hover:not(.active) {
            background: #cfc4ae;
        }

        /* Адаптив карусели отзывов */
        @media (max-width: 1200px) {
            .reviews-slider {
                --reviews-per: 2;
            }
        }
        @media (max-width: 780px) {
            .reviews-block {
                padding: 36px 24px;
                border-radius: 30px;
                margin-bottom: 60px;
            }
            .reviews-head {
                margin-bottom: 26px;
            }
            .reviews-title {
                font-size: 1.8rem;
            }
            .reviews-summary {
                text-align: left;
            }
            .reviews-slider {
                --reviews-per: 1;
                --reviews-gap: 16px;
            }
            .review-card {
                padding: 22px 20px 24px;
                border-radius: 22px;
            }
            .review-text {
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .reviews-block {
                padding: 28px 18px 32px;
                border-radius: 24px;
                margin-bottom: 48px;
            }
            .reviews-title {
                font-size: 1.55rem;
            }
            .reviews-summary-value {
                font-size: 2.2rem;
            }
            .reviews-controls {
                gap: 12px;
            }
            .reviews-arrow {
                width: 40px;
                height: 40px;
            }
        }

        /* ===== FOOTER: тёмный, во всю ширину сайта ===== */
        .site-footer {
            position: relative;
            width: 100%;
            margin-top: 48px;
            padding: 70px 0 26px;
            background: radial-gradient(120% 140% at 12% 0%, #262219 0%, #17140e 46%, #0c0b08 100%);
            color: #cfc9bd;
            overflow: hidden;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-lightest) 50%, var(--accent) 100%);
        }
        .site-footer .container {
            position: relative;
            z-index: 2;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 48px;
            padding-bottom: 46px;
        }

        /* Бренд отеля */
        .footer-logo {
            font-size: 1.7rem;
            color: #ffffff;
        }
        .footer-logo i {
            color: var(--accent);
        }
        .footer-brand-text {
            margin-top: 16px;
            max-width: 320px;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.75;
            color: #a49d90;
        }
        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 22px;
        }
        .footer-socials a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
            background: rgba(255, 255, 255, 0.03);
            color: #cfc9bd;
            font-size: 1.05rem;
            transition: all 0.25s ease;
        }
        .footer-socials a:hover {
            background: linear-gradient(120deg, var(--accent-light) 0%, var(--accent-dark) 100%);
            border-color: transparent;
            color: #1a1508;
            transform: translateY(-3px);
            box-shadow: 0 12px 26px -12px color-mix(in srgb, var(--accent) 60%, transparent);
        }

        /* Колонки футера */
        .footer-col-title {
            position: relative;
            padding-bottom: 14px;
            margin-bottom: 22px;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
        }
        .footer-col-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 34px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
        }
        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links-list a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 0.95rem;
            font-weight: 300;
            color: #a49d90;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .footer-links-list a i {
            font-size: 0.6rem;
            color: var(--accent);
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }
        .footer-links-list a:hover {
            color: #ffffff;
            transform: translateX(3px);
        }
        .footer-links-list a:hover i {
            opacity: 1;
        }

        /* Контакты */
        .footer-contacts {
            display: flex;
            flex-direction: column;
        }
        .footer-contact-row {
            display: flex;
            flex-direction: column;
            gap: 3px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.6;
            color: #a49d90;
        }
        .footer-contact-row strong {
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
        }
        .footer-contact-row a {
            color: #ffffff;
            text-decoration: none;
            word-break: break-word;
            transition: color 0.2s ease;
        }
        .footer-contact-row a:hover {
            color: var(--accent);
        }
        .footer-book-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            align-self: flex-start;
            margin-top: 6px;
            padding: 13px 26px;
            border-radius: 14px;
            background: linear-gradient(120deg, var(--accent-light) 0%, var(--accent-dark) 100%);
            color: #1a1508;
            font-size: 0.92rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 24px -14px color-mix(in srgb, var(--accent) 70%, transparent);
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
        }
        .footer-book-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
            box-shadow: 0 16px 30px -14px color-mix(in srgb, var(--accent) 80%, transparent);
        }

        /* Нижняя часть футера */
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 24px;
            padding-top: 26px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.88rem;
            font-weight: 300;
            color: #8f887b;
        }
        .footer-disclaimer {
            margin: 14px auto 0;
            max-width: 900px;
            font-size: 0.68rem;
            line-height: 1.65;
            text-align: center;
            color: #7c7466;
        }
        .footer-platform {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.7rem;
            color: #6f695e;
        }
        .footer-platform a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-platform a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        /* ===== BOOKING BAR ===== */
        .booking-bar {
            position: relative;
            left: 50%;
            width: 100vw;
            transform: translateX(-50%);
            background: var(--main_b);
            border-top: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
            border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
            padding: 16px 0 18px;
        }
        .booking-bar .booking-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .booking-note {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px 8px;
            margin: 0 0 14px;
            font-size: 0.84rem;
            color: #ffffff;
        }
        .booking-note i {
            font-size: 0.72rem;
            color: var(--accent);
        }
        .booking-note strong {
            font-weight: 700;
            color: #ffffff;
        }
        .booking-fields {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
            gap: 14px;
            align-items: end;
        }
        .booking-field {
            display: flex;
            flex-direction: column;
            gap: 7px;
            min-width: 0;
        }
        .booking-field-label {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: #ffffff;
        }
        .booking-field input,
        .booking-field select {
            display: block;
            width: 100%;
            height: 56px;
            padding: 0 14px;
            border: 1px solid var(--accent-lightest);
            border-radius: 14px;
            background: #ffffff;
            font: inherit;
            font-size: 0.98rem;
            color: #2a2013;
            outline: none;
            box-shadow: 0 1px 2px rgba(58, 42, 10, 0.06);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .booking-field input:focus,
        .booking-field select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
        }
        .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0.55;
            cursor: pointer;
        }
        .booking-field select {
            cursor: pointer;
        }
        .booking-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 56px;
            padding: 0 22px;
            border: none;
            border-radius: 14px;
            background: linear-gradient(120deg, var(--accent-light) 0%, var(--accent-dark) 100%);
            color: #e1e1e1;
            font-weight: 800;
            font-size: 0.97rem;
            white-space: nowrap;
            cursor: pointer;
            box-shadow: 0 6px 16px -6px rgba(122, 95, 44, 0.45);
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
        }
        .booking-btn:hover {
            filter: brightness(1.07);
            transform: translateY(-1px);
            box-shadow: 0 14px 28px -14px rgba(122, 95, 44, 0.55);
        }
        .booking-btn i {
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }
        .booking-btn:hover i {
            transform: translateX(3px);
        }
        @media (max-width: 920px) {
            .booking-fields {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 560px) {
            .booking-bar {
                padding: 14px 0 16px;
            }
            .booking-fields {
                grid-template-columns: 1fr;
            }
            .booking-btn {
                width: 100%;
            }
        }

        /* ===== Адаптив ===== */
        @media (max-width: 1024px) {
            .hero {
                min-height: 0;
                padding: 110px 0 150px;
            }
            .hero-bg {
                object-position: 70% center;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }
            .about-photos {
                grid-auto-rows: 190px;
                max-width: 620px;
                width: 100%;
                margin: 0 auto;
            }
            .about-title {
                font-size: 2rem;
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }
        @media (max-width: 780px) {
            .nav-container {
                flex-wrap: wrap;
                gap: 14px;
                padding-top: 12px;
                padding-bottom: 12px;
            }
            .nav-toggle {
                display: inline-flex;
            }
            .nav-links,
            .header-cta {
                display: none;
            }
            .navbar.open .nav-links,
            .navbar.open .header-cta {
                display: flex;
            }
            .navbar.open .nav-links {
                order: 3;
                flex-direction: column;
                width: 100%;
                gap: 0;
                margin-top: 8px;
                padding-top: 8px;
                border-top: 1px solid rgba(0, 0, 0, 0.06);
            }
            .navbar.open .nav-links a {
                display: block;
                width: 100%;
                padding: 13px 2px;
                font-size: 1.02rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            .navbar.open .header-cta {
                order: 4;
                width: 100%;
                align-items: center;
                justify-content: center;
                margin-top: 6px;
            }
            .navbar.open .nav-toggle span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .navbar.open .nav-toggle span:nth-child(2) {
                opacity: 0;
            }
            .navbar.open .nav-toggle span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
            .hero-title {
                font-size: clamp(2.7rem, 8vw, 3.1rem);
            }
            .hero-eyebrow {
                letter-spacing: 0.3em;
                font-size: 0.68rem;
            }
            .hero-sub {
                font-size: 1.05rem;
            }
            .about-photos {
                grid-auto-rows: 168px;
            }
            .about-title {
                font-size: 1.85rem;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 18px;
            }
            .hero-title {
                font-size: 2.35rem;
            }
            .hero-meta {
                gap: 12px 22px;
                font-size: 0.82rem;
            }
            .hero-scroll {
                display: none;
            }
            .header-cta {
                padding: 12px 24px;
                font-size: 0.85rem;
            }
            .btn-primary, .btn-outline {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
            .about-block {
                padding-bottom: 60px;
            }
            .about-photos {
                grid-auto-rows: 126px;
                gap: 10px;
            }
            .about-photo {
                border-radius: 18px;
            }
            .about-photo-badge {
                left: 12px;
                bottom: 12px;
                gap: 8px;
                padding: 9px 14px;
            }
            .about-photo-badge strong {
                font-size: 1.35rem;
            }
            .about-facts {
                grid-template-columns: 1fr;
            }
            .about-btn {
                width: 100%;
                justify-content: center;
            }
            .room-media {
                height: 210px;
            }
            .room-info {
                padding: 24px 20px 26px;
            }
            .room-specs {
                margin-bottom: 16px;
            }
            .room-specs li {
                padding: 7px 0;
            }
            .room-spec-icon {
                flex-basis: 20px;
                width: 20px;
                height: 20px;
                font-size: 9px;
            }
            .room-spec-body b {
                font-size: 0.72rem;
            }
            .room-spec-body span {
                font-size: 0.88rem;
            }
            .room-meta {
                flex-wrap: wrap;
            }
            .room-price {
                font-size: 1.2rem;
            }
            .nav-toggle {
                width: 42px;
                height: 42px;
                padding: 10px 9px;
            }
            .logo {
                font-size: 1.55rem;
            }
        }
/* ===== ФОТОГАЛЕРЕЯ — страница «Фото» (ofsite1) ===== */
        .gallery-block {
            max-width: 1280px;
            margin: 0 auto;
            padding: 86px 32px 10px;
            scroll-margin-top: 90px;
        }
        .gallery-head {
            max-width: 720px;
            margin-bottom: 44px;
        }
        .gallery-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 8px 18px;
            border-radius: 60px;
            background: color-mix(in srgb, var(--accent) 10%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
            color: var(--accent-deep);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .gallery-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.7rem, 3.4vw, 2.4rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 10px;
        }
        .gallery-title span {
            color: var(--accent-dark);
        }
        .gallery-sub {
            max-width: 640px;
            color: #5a5a5a;
            font-weight: 300;
            font-size: 1rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .gallery-item {
            position: relative;
            margin: 0;
            border-radius: 24px;
            overflow: hidden;
            background: #ece7dd;
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            transition: transform 0.4s cubic-bezier(0.15, 0.9, 0.25, 1), box-shadow 0.4s cubic-bezier(0.15, 0.9, 0.25, 1);
        }
        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 54px -24px rgba(20, 16, 10, 0.35);
        }
        .gallery-item:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        .gallery-item-media {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }
        .gallery-item-media img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover .gallery-item-media img {
            transform: scale(1.05);
        }
        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 18px;
            background: linear-gradient(180deg, rgba(8, 7, 5, 0) 40%, rgba(8, 7, 5, 0.55) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .gallery-item:hover .gallery-item-overlay,
        .gallery-item:focus-visible .gallery-item-overlay {
            opacity: 1;
        }
        .gallery-item-num {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: #f9f5ec;
            letter-spacing: 0.08em;
        }
        .gallery-item-zoom {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--accent);
            color: #1a1a1a;
            font-size: 0.95rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }
        .gallery-count {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 14px;
            margin: 40px auto 0;
            padding: 22px 34px;
            border-radius: 60px;
            background: #ffffff;
            border: 1px solid #f0ece4;
        }
        .gallery-count-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent-dark);
            line-height: 1;
        }
        .gallery-count-text {
            color: #5a5a5a;
            font-weight: 300;
            font-size: 0.95rem;
        }
        .gallery-empty {
            text-align: center;
            padding: 90px 32px;
            background: #ffffff;
            border: 1px solid #f0ece4;
            border-radius: 40px;
        }
        .gallery-empty-icon {
            width: 84px;
            height: 84px;
            margin: 0 auto 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-dark);
            background: color-mix(in srgb, var(--accent) 12%, transparent);
            border-radius: 50%;
        }
        .gallery-empty h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .gallery-empty p {
            color: #5a5a5a;
            font-weight: 300;
            margin-bottom: 26px;
        }
/* ===== CTA-панель — призыв к бронированию ===== */
        .cta-panel {
            position: relative;
            max-width: 1216px;
            margin: 26px auto 80px;
            padding: 72px 48px;
            text-align: center;
            border-radius: 40px;
            color: #f9f5ec;
            background: linear-gradient(120deg, #1c1a15 0%, #2a261e 55%, #1a1812 100%);
            overflow: hidden;
        }
        .cta-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(700px 300px at 50% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
            pointer-events: none;
        }
        .cta-panel-icon {
            position: relative;
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--accent-light);
            background: color-mix(in srgb, var(--accent) 16%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
            border-radius: 50%;
        }
        .cta-panel-title {
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .cta-panel-title span {
            color: var(--accent-light);
        }
        .cta-panel-text {
            position: relative;
            max-width: 560px;
            margin: 0 auto 32px;
            color: rgba(249, 245, 236, 0.75);
            font-weight: 300;
        }

        /* ===== LIGHTBOX — полноэкранный просмотр фото ===== */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(10, 9, 7, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            /* Гарантия: закрытый лайтбокс НЕ должен перехватывать клики,
               даже если opacity/visibility по какой-то причине не применились */
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .lightbox.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        body.lightbox-open {
            overflow: hidden;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 22px;
            z-index: 3;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.06);
            color: #f9f5ec;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
        }
        .lightbox-close:hover {
            background: var(--accent);
            color: #1a1a1a;
            transform: rotate(90deg);
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.06);
            color: #f9f5ec;
            font-size: 1.1rem;
            margin: 0;
            padding: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
        }
        .lightbox-nav:hover {
            background: var(--accent);
            color: #1a1a1a;
        }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-info {
            position: absolute;
            top: 26px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            pointer-events: none;
        }
        .lightbox-counter {
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: var(--accent-light);
        }
        .lightbox-counter-total {
            color: rgba(249, 245, 236, 0.5);
        }
        .lightbox-counter-divider {
            color: rgba(249, 245, 236, 0.45);
        }
        .lightbox-info .lightbox-title {
            color: rgba(249, 245, 236, 0.85);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
        }
.lightbox-slides {
            position: relative;
            width: min(1120px, calc(100vw - 140px));
            height: 74vh;
        }
        .lightbox-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .lightbox-slide.active {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            user-select: none;
            -webkit-user-drag: none;
        }
        .lightbox-thumbs {
            position: absolute;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            gap: 8px;
            max-width: 90vw;
            overflow-x: auto;
            padding: 8px;
            scrollbar-width: thin;
        }
        .lightbox-thumb {
            flex: 0 0 auto;
            width: 64px;
            height: 46px;
            padding: 0;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid transparent;
            background: transparent;
            cursor: pointer;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }
        .lightbox-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .lightbox-thumb:hover {
            transform: translateY(-2px);
        }
        .lightbox-thumb.active {
            border-color: var(--accent);
        }

        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .gallery-block {
                padding: 60px 20px 6px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cta-panel {
                margin: 20px auto 56px;
                padding: 48px 22px;
                border-radius: 28px;
            }
            .lightbox-slides {
                width: calc(100vw - 64px);
                height: 60vh;
            }
            .lightbox-nav {
                width: 44px;
                height: 44px;
            }
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
            .lightbox-info {
                top: 60px;
            }
        }

        /* ===== КОНТАКТЫ — страница «Контакты» (ofsite1) ===== */
        .contacts-hero {
            min-height: 48vh;
            padding: 96px 0 128px;
        }
        /* Кнопка в hero страницы контактов (отдельный класс,
           чтобы не перехватывалась обработчиком «видео-тура» в hotel.js) */
        .contacts-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            margin-top: 34px;
            padding: 17px 40px;
            border-radius: 60px;
            border: 1px solid rgba(249, 245, 236, 0.32);
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            color: #f9f5ec;
            font-size: 0.98rem;
            font-weight: 500;
            animation-delay: 1.25s;
            transition: all 0.3s ease;
        }
        .contacts-hero-btn:hover {
            border-color: var(--accent-light);
            color: var(--accent-lighter);
            background: color-mix(in srgb, var(--accent) 12%, transparent);
            transform: translateY(-4px);
            box-shadow: 0 20px 46px -18px rgba(0, 0, 0, 0.5);
        }

        /* ===== ПОЛНОШИРИННАЯ КАРТА GOOGLE ===== */
        .contacts-map {
            position: relative;
            left: 50%;
            width: 100vw;
            height: 560px;
            margin: 0;
            transform: translateX(-50%);
            background: #ece7dd;
            overflow: hidden;
            scroll-margin-top: 80px;
        }
        .contacts-map-frame {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .contacts-map::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
        }
        .contacts-map-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            pointer-events: none;
        }
        .contacts-map-overlay-inner {
            width: 100%;
            max-width: 1280px;
            padding: 0 32px 36px;
        }
        .contacts-map-card {
            pointer-events: auto;
            max-width: 440px;
            padding: 26px 28px;
            border-radius: 26px;
            border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
            background: rgba(255, 255, 255, 0.94);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            box-shadow: 0 26px 60px -26px rgba(20, 16, 10, 0.5);
        }
        .contacts-map-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--accent-deep);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .contacts-map-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.15rem, 2vw, 1.5rem);
            font-weight: 600;
            letter-spacing: -0.015em;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .contacts-map-coords {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #6b6357;
            font-size: 0.88rem;
            letter-spacing: 0.02em;
        }
        .contacts-map-coords i { color: var(--accent); }
        .contacts-map-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 18px;
            margin-top: 20px;
        }
        .contacts-map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-deep);
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.25s ease;
        }
        .contacts-map-link:hover { color: var(--accent-dark); }
        .contacts-map-link i { font-size: 0.78rem; }

        /* ===== КОНТАКТЫ: карточки ===== */
        .contacts-block {
            max-width: 1280px;
            margin: 0 auto;
            padding: 86px 32px 6px;
            scroll-margin-top: 90px;
        }
        .contacts-head {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .contacts-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 8px 18px;
            border-radius: 60px;
            background: color-mix(in srgb, var(--accent) 10%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
            color: var(--accent-deep);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .contacts-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.7rem, 3.4vw, 2.4rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 10px;
        }
        .contacts-title span { color: var(--accent-dark); }
        .contacts-sub {
            max-width: 640px;
            color: #5a5a5a;
            font-weight: 300;
            font-size: 1rem;
        }
        .contacts-cards {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
        }
        .contacts-card {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 30px 26px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            transition: transform 0.4s cubic-bezier(0.15, 0.9, 0.25, 1), box-shadow 0.4s cubic-bezier(0.15, 0.9, 0.25, 1), border-color 0.4s ease;
        }
        .contacts-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 26px;
            width: 42px;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent-light), var(--accent-dark));
        }
        .contacts-card:hover {
            transform: translateY(-6px);
            border-color: color-mix(in srgb, var(--accent) 34%, transparent);
            box-shadow: 0 22px 48px -22px rgba(0, 0, 0, 0.22);
        }
        .contacts-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin: 8px 0 6px;
            border-radius: 16px;
            color: var(--accent-deep);
            font-size: 1.1rem;
            background: color-mix(in srgb, var(--accent) 14%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
        }
        .contacts-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }
        .contacts-card p {
            color: #5a5a5a;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.6;
        }
        .contacts-card-value {
            color: #1f1f1f;
            font-size: 1.02rem;
            font-weight: 600;
            word-break: break-word;
            transition: color 0.25s ease;
        }
        a.contacts-card-value:hover { color: var(--accent-deep); }
        .contacts-card-note {
            margin-top: auto;
            padding-top: 8px;
            color: #8a8378;
            font-size: 0.82rem;
            font-weight: 300;
        }
        .contacts-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
            color: var(--accent-deep);
            font-size: 0.86rem;
            font-weight: 500;
            transition: color 0.25s ease;
        }
        .contacts-card-link:hover { color: var(--accent-dark); }

        /* ===== КОНТАКТЫ: как добраться + быстрая связь ===== */
        .contacts-route {
            max-width: 1280px;
            margin: 0 auto;
            padding: 76px 32px 20px;
            scroll-margin-top: 90px;
        }
        .contacts-route-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
            gap: 26px;
        }
        .contacts-route-main {
            padding: 40px 38px;
            border-radius: 32px;
            background: linear-gradient(140deg, #ffffff 0%, #f7f3ea 100%);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .contacts-route-text {
            max-width: 620px;
            margin: 12px 0 26px;
            color: #5a5a5a;
            font-weight: 300;
            line-height: 1.75;
        }
        .contacts-route-text b { color: #1f1f1f; font-weight: 600; }
        .contacts-route-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px 20px;
            margin-bottom: 28px;
            list-style: none;
        }
        .contacts-route-item {
            display: flex;
            gap: 14px;
            padding: 16px 18px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.35s cubic-bezier(0.15, 0.9, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
        }
        .contacts-route-item:hover {
            transform: translateY(-4px);
            border-color: color-mix(in srgb, var(--accent) 38%, transparent);
            box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.24);
        }
        .contacts-route-icon {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            color: var(--accent-deep);
            background: color-mix(in srgb, var(--accent) 14%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
        }
        .contacts-route-body {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .contacts-route-body b {
            font-size: 0.95rem;
            font-weight: 600;
        }
        .contacts-route-body span {
            color: #6b6357;
            font-size: 0.86rem;
            font-weight: 300;
            line-height: 1.55;
        }
        .contacts-route-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px 20px;
        }
        .contacts-route-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #1f1f1f;
            font-weight: 600;
            transition: color 0.25s ease;
        }
        .contacts-route-phone i { color: var(--accent); }
        .contacts-route-phone:hover { color: var(--accent-deep); }

        .contacts-quick {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 40px 34px;
            border-radius: 32px;
            color: #f9f5ec;
            background: linear-gradient(150deg, #1c1a15 0%, #2a261e 55%, #1a1812 100%);
            box-shadow: 0 26px 60px -30px rgba(20, 16, 10, 0.5);
        }
        .contacts-quick-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--accent-light);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .contacts-quick-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 2.4vw, 1.9rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 22px;
        }
        .contacts-quick-title span { color: var(--accent-light); }
        .contacts-quick-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            width: 100%;
            margin-bottom: 28px;
            list-style: none;
        }
        .contacts-quick-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .contacts-quick-icon {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            color: var(--accent-light);
            background: color-mix(in srgb, var(--accent) 15%, transparent);
            border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
        }
        .contacts-quick-label {
            display: block;
            margin-bottom: 2px;
            color: rgba(249, 245, 236, 0.55);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .contacts-quick-value {
            display: block;
            color: #f9f5ec;
            font-size: 0.98rem;
            font-weight: 500;
            line-height: 1.5;
        }
        a.contacts-quick-value { transition: color 0.25s ease; }
        a.contacts-quick-value:hover { color: var(--accent-light); }
        .contacts-quick .booking-btn { width: 100%; }
        .contacts-quick-note {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-top: 18px;
            color: rgba(249, 245, 236, 0.6);
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.6;
        }
        .contacts-quick-note i {
            margin-top: 3px;
            color: var(--accent-light);
        }

        /* ===== КОНТАКТЫ: кнопки в CTA-панели ===== */
        .contacts-cta-actions {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 14px 20px;
        }
        .contacts-cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #f9f5ec;
            font-weight: 600;
            transition: color 0.25s ease;
        }
        .contacts-cta-phone i { color: var(--accent-light); }
        .contacts-cta-phone:hover { color: var(--accent-light); }

        /* ===== КОНТАКТЫ: адаптив ===== */
        @media (max-width: 1024px) {
            .contacts-hero {
                padding: 88px 0 108px;
            }
            .contacts-map {
                height: 480px;
            }
            .contacts-block {
                padding: 68px 24px 6px;
            }
            .contacts-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .contacts-route {
                padding: 60px 24px 16px;
            }
            .contacts-route-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }
        @media (max-width: 640px) {
            .contacts-hero {
                min-height: 0;
                padding: 74px 0 92px;
            }
            .contacts-hero-btn {
                margin-top: 26px;
                padding: 15px 30px;
            }
            /* Карта остаётся на всю ширину, а карточка адреса встаёт под ней */
            .contacts-map {
                height: auto;
            }
            .contacts-map-frame {
                height: 340px;
            }
            .contacts-map-overlay {
                position: static;
                inset: auto;
                display: block;
                pointer-events: auto;
            }
            .contacts-map-overlay-inner {
                padding: 24px 20px 26px;
            }
            .contacts-map-card {
                max-width: none;
                padding: 0;
                border: 0;
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
            }
            .contacts-map-actions {
                align-items: stretch;
            }
            .contacts-map-actions .booking-btn {
                width: 100%;
            }
            .contacts-block {
                padding: 58px 20px 4px;
            }
            .contacts-cards {
                grid-template-columns: minmax(0, 1fr);
                gap: 14px;
            }
            .contacts-card {
                padding: 26px 22px;
            }
            .contacts-route {
                padding: 52px 20px 12px;
            }
            .contacts-route-main {
                padding: 30px 22px;
                border-radius: 26px;
            }
            .contacts-route-list {
                grid-template-columns: minmax(0, 1fr);
            }
            .contacts-route-actions .booking-btn {
                width: 100%;
            }
            .contacts-quick {
                padding: 32px 22px;
                border-radius: 26px;
            }
            .contacts-cta-actions .booking-btn {
                width: 100%;
            }
        }

