﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #F8F7FF;
            color: #1E1B2E;
            line-height: 1.5;
            overflow-x: hidden;
        }
        body.preloader-active {
            overflow: hidden;
        }
        body.modal-open {
            overflow: hidden;
        }

        .site-preloader {
            position: fixed;
            inset: 0;
            z-index: 1600;
            display: grid;
            place-items: center;
            padding: 24px;
            background:
                radial-gradient(circle at 18% 18%, rgba(167, 139, 250, 0.18), transparent 26%),
                radial-gradient(circle at 82% 16%, rgba(196, 181, 253, 0.2), transparent 24%),
                linear-gradient(180deg, #FEFDFF 0%, #F6F2FF 100%);
            opacity: 1;
            visibility: visible;
            transition: opacity 0.55s ease, visibility 0.55s ease;
        }
        .site-preloader.is-hiding {
            opacity: 0;
            visibility: hidden;
        }
        .site-preloader-inner {
            display: grid;
            justify-items: center;
            gap: 18px;
            text-align: center;
        }
        .preloader-emblem {
            --leaf-radius: 48px;
            position: relative;
            width: 156px;
            height: 156px;
            display: grid;
            place-items: center;
        }
        .preloader-emblem::before {
            content: "";
            position: absolute;
            inset: 24px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.015) 64%, transparent 74%);
            filter: blur(2px);
        }
        .preloader-emblem-ring {
            position: absolute;
            inset: 18px;
            border-radius: 50%;
            border: 1px solid rgba(124, 58, 237, 0.2);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
            animation: preloaderRingPulse 2.6s ease-in-out infinite;
        }
        .preloader-leaf-cluster {
            position: absolute;
            inset: 0;
            animation: preloaderClusterFloat 3.8s ease-in-out 1.1s infinite;
        }
        .preloader-leaf {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 16px;
            height: 36px;
            border-radius: 76% 24% 72% 28% / 78% 20% 80% 22%;
            background: linear-gradient(180deg, #C5B5FB 0%, #9D7CF6 34%, #7C3AED 100%);
            box-shadow: 0 8px 18px rgba(124, 58, 237, 0.16);
            transform: translate(-50%, -50%) rotate(var(--leaf-angle)) translateY(0) scale(0.2);
            opacity: 0;
            animation:
                preloaderLeafAssemble 0.95s cubic-bezier(0.24, 0.84, 0.28, 1) var(--leaf-delay) forwards,
                preloaderLeafGlow 2.8s ease-in-out calc(var(--leaf-delay) + 1.15s) infinite;
        }
        .preloader-leaf::after {
            content: "";
            position: absolute;
            top: 5px;
            bottom: 5px;
            left: 50%;
            width: 1.5px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.48);
            transform: translateX(-50%) rotate(16deg);
        }
        .preloader-core {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(145deg, #A78BFA, #7C3AED);
            box-shadow:
                0 0 0 9px rgba(124, 58, 237, 0.06),
                0 8px 18px rgba(124, 58, 237, 0.14);
        }
        .preloader-wordmark {
            position: relative;
            display: inline-grid;
            place-items: center;
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.6rem, 6vw, 4.2rem);
            font-weight: 700;
            line-height: 0.96;
            letter-spacing: 0.02em;
        }
        .preloader-wordmark-base,
        .preloader-wordmark-fill {
            grid-area: 1 / 1;
            display: block;
            white-space: nowrap;
        }
        .preloader-wordmark-base {
            color: rgba(36, 27, 57, 0.16);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
        }
        .preloader-wordmark-fill {
            color: transparent;
            background: linear-gradient(90deg, #7C3AED 0%, #A78BFA 55%, #7C3AED 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            clip-path: inset(0 100% 0 0);
            text-shadow: none;
            animation: preloaderWordFill 1.2s ease 0.42s forwards;
        }
        .preloader-tagline {
            margin: 0;
            color: #6F5E97;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        :root {
            --primary: #7C3AED;
            --primary-light: #A78BFA;
            --primary-soft: #EDE9FE;
            --bg-white: #FFFFFF;
            --border-light: #E2D9F5;
            --section-line: rgba(30, 27, 46, 0.14);
            --shadow-sm: 0 6px 14px rgba(124, 58, 237, 0.06);
            --shadow-md: 0 12px 24px rgba(124, 58, 237, 0.1);
            --shadow-hover: 0 20px 32px rgba(124, 58, 237, 0.14);
            --radius-card: 24px;
            --radius-btn: 40px;
            --transition: all 0.2s ease;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes softPulse {
            0%, 100% {
                box-shadow: 0 22px 50px rgba(30, 27, 46, 0.13);
            }
            50% {
                box-shadow: 0 28px 64px rgba(124, 58, 237, 0.22);
            }
        }

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

        @keyframes preloaderLeafAssemble {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) rotate(var(--leaf-angle)) translateY(0) scale(0.16);
                filter: blur(10px);
            }
            38% {
                opacity: 1;
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) rotate(var(--leaf-angle)) translateY(calc(var(--leaf-radius) * -1)) scale(1);
                filter: blur(0);
            }
        }

        @keyframes preloaderLeafGlow {
            0%, 100% {
                box-shadow: 0 8px 18px rgba(124, 58, 237, 0.16);
            }
            50% {
                box-shadow: 0 10px 22px rgba(124, 58, 237, 0.24);
            }
        }

        @keyframes preloaderRingPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.92;
            }
            50% {
                transform: scale(1.02);
                opacity: 1;
            }
        }

        @keyframes preloaderClusterFloat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.03);
            }
        }

        @keyframes preloaderWordFill {
            0%, 14% {
                clip-path: inset(0 100% 0 0);
            }
            100% {
                clip-path: inset(0 0 0 0);
            }
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            gap: 8px;
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 8px 18px rgba(124, 58, 237, 0.25);
        }
        .btn-primary:hover {
            background: #6D28D9;
            transform: translateY(-2px);
            box-shadow: 0 14px 26px rgba(124, 58, 237, 0.35);
        }

        .btn-outline {
            border: 1.5px solid var(--border-light);
            background: white;
            color: #1E1B2E;
        }
        .btn-outline:hover {
            border-color: var(--primary);
            background: var(--primary-soft);
            color: var(--primary);
        }

        /* Header */
        .header {
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(124, 58, 237, 0.05);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: #1E1B2E;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        .logo span { color: var(--primary); }

        .nav {
            display: flex;
            gap: 26px;
            align-items: center;
        }
        .nav a {
            text-decoration: none;
            color: #2E2A3D;
            font-weight: 500;
            white-space: nowrap;
        }
        .nav a:hover,
        .nav a[aria-current="page"] {
            color: var(--primary);
        }

        .nav-phone {
            font-weight: 600;
            color: var(--primary) !important;
        }

        .burger {
            display: none;
            width: 44px;
            height: 44px;
            border: 1.5px solid var(--border-light);
            border-radius: 14px;
            background: white;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            transition: var(--transition);
        }

        .burger span {
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background: #1E1B2E;
            transition: var(--transition);
        }

        .burger.active {
            border-color: var(--primary);
            background: var(--primary-soft);
        }

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

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

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

        /* Hero */
        .hero {
            position: relative;
            min-height: 680px;
            padding: 88px 0 96px;
            display: flex;
            align-items: center;
            background:
                linear-gradient(90deg, rgba(30, 27, 46, 0.78), rgba(30, 27, 46, 0.42) 48%, rgba(30, 27, 46, 0.16)),
                url('assets/hero-lavanda-pool.png') center/cover fixed;
            overflow: hidden;
        }
        .hero-grid {
            width: 100%;
            max-width: 760px;
        }
        .hero-title {
            font-size: 3.8rem;
            line-height: 1.1;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: #F1ECFF;
            margin-bottom: 32px;
            max-width: 620px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        /* Поисковый виджет */
        .search-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-radius: 32px;
            padding: 28px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .search-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
        }

        .field {
            flex: 1 1 180px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }
        .field label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #4C3B6B;
        }

        /* Улучшенный календарь */
        .field input[type="date"] {
            padding: 14px 16px 14px 44px;
            border: 1.5px solid var(--border-light);
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%237C3AED" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>') no-repeat 14px center;
            background-size: 20px;
            color: #1E1B2E;
            transition: var(--transition);
            appearance: none;
            -webkit-appearance: none;
            position: relative;
        }

        .field input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0;
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            cursor: pointer;
        }

        .field input[type="date"]:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
            background-color: #FDFBFF;
        }

        .field select {
            padding: 14px 16px;
            border: 1.5px solid var(--border-light);
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background: white;
            transition: var(--transition);
        }
        .field select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
        }

        .search-btn { width: 100%; padding: 18px; font-size: 1.1rem; }

        /* Секция номеров */
        .results-section {
            padding: 60px 0;
            background: white;
            border-radius: 48px 48px 0 0;
        }

        .results-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        /* === УЛУЧШЕННЫЕ ФИЛЬТРЫ === */
        .filters {
            background: #FCFAFF;
            border-radius: 32px;
            padding: 32px 24px;
            border: 1px solid rgba(124, 58, 237, 0.08);
            box-shadow: var(--shadow-sm);
            height: fit-content;
        }

        .filters h3 {
            font-size: 1.8rem;
            margin-bottom: 28px;
            color: #1E1B2E;
        }

        .filter-group {
            margin-bottom: 36px;
        }

        .filter-group h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #2E1D4A;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-group h4 i {
            color: var(--primary);
            font-size: 1.1rem;
            width: 20px;
        }

        /* Чекбоксы как приятные пилюли */
        .filter-option {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            cursor: pointer;
            font-weight: 500;
            color: #3A2C5A;
            transition: var(--transition);
            padding: 4px 0;
            border-radius: 40px;
        }

        .filter-option:hover {
            background: var(--primary-soft);
            padding-left: 12px;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            appearance: none;
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border: 2px solid #CBBFF0;
            border-radius: 8px;
            margin-right: 14px;
            position: relative;
            cursor: pointer;
            transition: all 0.15s;
            background: white;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
        }

        .filter-option input[type="radio"] {
            border-radius: 50%;
        }

        .filter-option input:checked {
            background: var(--primary);
            border-color: var(--primary);
        }

        .filter-option input[type="checkbox"]:checked::after {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .filter-option input[type="radio"]:checked::after {
            content: "";
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .filter-option input:focus-visible {
            outline: 2px solid var(--primary-light);
            outline-offset: 2px;
        }

        /* кнопка Применить */
        .filters .btn-outline {
            width: 100%;
            padding: 14px;
            font-weight: 600;
            border-radius: 40px;
            margin-top: 10px;
            background: white;
            box-shadow: var(--shadow-sm);
        }

        /* Карточки */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .room-card {
            background: white;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }
        .room-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }

        .room-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .room-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(30, 27, 46, 0.04), rgba(30, 27, 46, 0.32));
            pointer-events: none;
        }
        .room-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background: white;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            color: #1E1B2E;
            z-index: 1;
        }
        .room-preview-chip {
            position: absolute;
            right: 16px;
            bottom: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(8px);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1;
        }
        .room-preview-chip:hover {
            background: rgba(255, 255, 255, 0.28);
            transform: translateY(-2px);
        }
        .room-content { padding: 24px 20px 20px; }
        .room-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .room-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin: 16px 0;
            color: #4C3B6B;
            font-size: 0.9rem;
        }
        .room-features i { color: var(--primary); margin-right: 6px; }
        .room-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E1B2E;
            margin: 16px 0 20px;
        }
        .room-price small { font-size: 1rem; font-weight: 400; color: #7C6F9A; }
        .room-actions {
            display: flex;
            gap: 12px;
        }
        .room-view-btn,
        .book-btn {
            flex: 1 1 0;
            justify-content: center;
            padding: 14px;
        }
        .room-card.is-hidden {
            display: none;
        }
        .no-results {
            display: none;
            grid-column: 1 / -1;
            padding: 28px;
            border: 1px solid var(--border-light);
            border-radius: 22px;
            background: #FCFAFF;
            color: #4C3B6B;
            font-weight: 600;
            text-align: center;
        }
        .no-results.is-visible {
            display: block;
        }

        /* Отзывы */
        .testimonials { padding: 60px 0 80px; background: #F8F7FF; }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
        }

        /* Home page */
        .home-hero {
            min-height: 680px;
            display: flex;
            align-items: flex-end;
            padding: 110px 0 96px;
            background:
                linear-gradient(90deg, rgba(30, 27, 46, 0.78), rgba(30, 27, 46, 0.36) 56%, rgba(30, 27, 46, 0.12)),
                url('assets/home-hero-nature-lake.jpg') center/cover fixed;
        }

        .home-hero-content {
            max-width: 760px;
            color: white;
            animation: fadeUp 0.8s ease both;
        }

        .eyebrow {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary-light);
            margin-bottom: 12px;
        }

        .home-title {
            font-size: 5.2rem;
            line-height: 0.95;
            color: white;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
            margin-bottom: 24px;
        }

        .home-subtitle {
            max-width: 640px;
            color: #F1ECFF;
            font-size: 1.22rem;
            margin-bottom: 30px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .home-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .home-section {
            position: relative;
            padding: 72px 0;
            background: white;
            border-top: 1px solid var(--section-line);
        }

        .home-section::before,
        .map-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: min(1120px, calc(100% - 48px));
            height: 3px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0.55;
        }

        .section-heading {
            max-width: 720px;
            margin-bottom: 30px;
        }

        .section-heading .eyebrow,
        .home-contact-band .eyebrow {
            color: var(--primary);
        }

        .home-services {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .service-card {
            display: block;
            min-height: 260px;
            padding: 28px;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            background: #FCFAFF;
            color: #1E1B2E;
            text-decoration: none;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: transparent;
            box-shadow: var(--shadow-hover);
        }

        .service-card:hover .service-icon,
        .space-card:hover .service-icon {
            animation: iconFloat 1.4s ease-in-out infinite;
        }

        .service-icon {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 22px;
        }

        .service-card h3 {
            font-size: 1.65rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #4C3B6B;
        }

        .home-contact-band {
            padding: 58px 0;
            background: #F8F7FF;
        }

        .contact-band-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .contact-band-inner h2 {
            margin-bottom: 12px;
        }

        .about-section {
            background: white;
        }

        .about-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 52px;
            align-items: start;
        }

        .about-text {
            display: grid;
            gap: 18px;
            color: #4C3B6B;
            font-size: 1.08rem;
            padding: 28px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            border-radius: 24px;
            background: #FCFAFF;
            box-shadow: 0 10px 22px rgba(30, 27, 46, 0.06);
        }

        .spaces-section {
            background:
                linear-gradient(180deg, #F8F7FF 0%, #FFFFFF 100%);
        }

        .spaces-panel {
            position: relative;
        }

        .spaces-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 18px;
        }

        .space-card {
            position: relative;
            min-height: 280px;
            padding: 24px;
            border-radius: var(--radius-card);
            border: 2px solid rgba(30, 27, 46, 0.2);
            background: white;
            color: #1E1B2E;
            text-decoration: none;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.12);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
            overflow: hidden;
        }

        .space-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .space-card::after {
            content: "";
            position: absolute;
            inset: 8px;
            border: 1px solid rgba(124, 58, 237, 0.16);
            border-radius: 18px;
            pointer-events: none;
        }

        .space-card:nth-child(2),
        .service-card:nth-child(2),
        .advantage-item:nth-child(2) {
            animation-delay: 0.08s;
        }

        .space-card:nth-child(3),
        .service-card:nth-child(3),
        .advantage-item:nth-child(3) {
            animation-delay: 0.16s;
        }

        .space-card:nth-child(4),
        .advantage-item:nth-child(4) {
            animation-delay: 0.24s;
        }

        .space-card:nth-child(5) {
            animation-delay: 0.32s;
        }

        .space-card:hover {
            transform: translateY(-10px) scale(1.015);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.2);
            border-color: rgba(124, 58, 237, 0.65);
        }

        .space-card h3 {
            font-size: 1.45rem;
            margin-bottom: 12px;
        }

        .space-card p {
            color: #4C3B6B;
            font-size: 0.96rem;
        }

        .video-section {
            background: #FFFFFF;
        }

        .video-frame {
            border-radius: 28px;
            overflow: hidden;
            border: 2px solid rgba(30, 27, 46, 0.16);
            background: #1E1B2E;
            box-shadow: 0 18px 36px rgba(30, 27, 46, 0.16);
        }

        .video-frame video,
        .video-frame img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background: #1E1B2E;
        }

        .video-note {
            padding: 14px 18px 18px;
            color: #DDD6FE;
            font-size: 0.92rem;
        }

        .advantages-section {
            background:
                linear-gradient(180deg, #FCFAFF 0%, #F8F7FF 100%);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .advantage-item {
            padding: 24px;
            border-radius: 22px;
            background: linear-gradient(180deg, #FFFFFF 0%, #FCFAFF 100%);
            color: #1E1B2E;
            border: 1px solid rgba(30, 27, 46, 0.16);
            box-shadow: 0 10px 22px rgba(30, 27, 46, 0.07);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .advantage-item:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 58, 237, 0.28);
            box-shadow: 0 18px 32px rgba(124, 58, 237, 0.14);
        }

        .advantage-item i {
            color: var(--primary);
            font-size: 1.35rem;
            margin-bottom: 18px;
        }

        .advantage-item h3 {
            font-size: 1.35rem;
            margin-bottom: 10px;
            color: #241B39;
        }

        .advantage-item p {
            color: #4F3D73;
        }

        .map-section {
            position: relative;
            padding: 72px 0;
            background: white;
            border-top: 1px solid var(--section-line);
        }

        .map-frame {
            border-radius: 28px;
            overflow: hidden;
            min-height: 420px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            box-shadow: 0 18px 36px rgba(30, 27, 46, 0.14);
            background: #F8F7FF;
        }

        .map-frame iframe {
            display: block;
            width: 100%;
            height: 420px;
            border: 0;
        }

        .payment-section {
            min-height: 680px;
            padding: 90px 0;
            background:
                linear-gradient(135deg, rgba(248, 247, 255, 0.96), rgba(237, 233, 254, 0.92)),
                url('assets/home-hero-nature-lake.jpg') center/cover fixed;
        }

        .payment-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
            gap: 42px;
            align-items: center;
        }

        .payment-copy h1 {
            font-size: 3.4rem;
            line-height: 1.05;
            margin-bottom: 18px;
        }

        .payment-copy p:not(.eyebrow) {
            max-width: 620px;
            color: #4C3B6B;
            font-size: 1.1rem;
        }

        .payment-card {
            padding: 32px;
            border-radius: 28px;
            border: 1px solid rgba(30, 27, 46, 0.14);
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 24px 54px rgba(30, 27, 46, 0.16);
            backdrop-filter: blur(10px);
        }

        .payment-card h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .payment-summary {
            display: grid;
            gap: 12px;
            margin-bottom: 22px;
        }

        .payment-summary div {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(124, 58, 237, 0.12);
        }

        .payment-summary dt {
            color: #6B5B95;
            font-weight: 600;
        }

        .payment-summary dd {
            color: #1E1B2E;
            font-weight: 700;
            text-align: right;
        }

        .payment-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 24px 0;
            padding: 18px;
            border-radius: 18px;
            background: var(--primary-soft);
            color: #1E1B2E;
            font-weight: 700;
        }

        .payment-total strong {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .payment-button {
            width: 100%;
            min-height: 54px;
        }
        .payment-button:disabled,
        .payment-button:disabled:hover {
            background: #D7D0EA;
            color: #75678F;
            box-shadow: none;
            transform: none;
            cursor: not-allowed;
        }
        .payment-consent-panel,
        .payment-terms-note {
            margin-bottom: 14px;
            padding: 14px 16px;
            border-radius: 18px;
            border: 1px solid rgba(124, 58, 237, 0.14);
            background: #FCFAFF;
        }
        .payment-consent-heading,
        .payment-terms-title {
            margin-bottom: 8px;
            color: #241B39;
            font-size: 0.95rem;
            font-weight: 700;
        }
        .payment-consent-list {
            display: grid;
            gap: 10px;
        }
        .payment-consent-item {
            display: grid;
            grid-template-columns: 20px 1fr;
            gap: 12px;
            align-items: center;
        }
        .payment-consent-item input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #CBBFF0;
            border-radius: 7px;
            margin: 0;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }
        .payment-consent-item input[type="checkbox"]:checked {
            background: var(--primary);
            border-color: var(--primary);
        }
        .payment-consent-item input[type="checkbox"]:checked::after {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .payment-consent-item input[type="checkbox"]:focus-visible {
            outline: 2px solid var(--primary-light);
            outline-offset: 2px;
        }
        .payment-consent-item label {
            color: #3F315E;
            font-size: 0.94rem;
            line-height: 1.45;
            cursor: pointer;
        }
        .payment-consent-link {
            margin-top: 10px;
            padding: 0;
            border: none;
            background: none;
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
            font: inherit;
            font-size: 0.92rem;
            font-weight: 600;
        }
        .payment-consent-link:hover {
            color: #6D28D9;
        }
        .payment-terms-list {
            display: grid;
            gap: 6px;
            padding-left: 16px;
            color: #4C3B6B;
            font-size: 0.92rem;
            line-height: 1.45;
        }
        .payment-terms-list a {
            color: var(--primary);
            font-weight: 600;
        }
        .payment-consent-note {
            margin-top: 8px;
            line-height: 1.45;
        }

        .error-hero {
            min-height: calc(100vh - 118px);
            padding: 88px 0 84px;
            background:
                radial-gradient(circle at 12% 14%, rgba(167, 139, 250, 0.22), transparent 30%),
                radial-gradient(circle at 88% 18%, rgba(196, 181, 253, 0.18), transparent 26%),
                linear-gradient(180deg, #F8F7FF 0%, #FFFFFF 100%);
        }

        .error-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
            gap: 28px;
            align-items: center;
        }

        .error-art-panel {
            position: relative;
            padding: 28px;
            border-radius: 34px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 233, 254, 0.82));
            box-shadow: 0 24px 48px rgba(30, 27, 46, 0.12);
            overflow: hidden;
        }

        .error-art-panel::before {
            content: "";
            position: absolute;
            inset: auto -110px -120px auto;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(167, 139, 250, 0.28), transparent 70%);
        }

        .error-botanic-code {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: auto;
        }

        .error-code-text {
            font-family: 'Playfair Display', serif;
            font-size: 284px;
            font-weight: 700;
            letter-spacing: -0.08em;
            stroke: rgba(255, 255, 255, 0.92);
            stroke-width: 12px;
            paint-order: stroke fill;
        }

        .error-hint {
            position: relative;
            z-index: 1;
            margin-top: 18px;
            color: #4C3B6B;
            font-size: 1.05rem;
        }

        .error-copy-card {
            padding: 34px;
            border-radius: 32px;
            background:
                radial-gradient(circle at 82% 10%, rgba(167, 139, 250, 0.16), transparent 24%),
                linear-gradient(135deg, #1E1B2E 0%, #352A55 100%);
            color: white;
            box-shadow: 0 24px 52px rgba(30, 27, 46, 0.2);
        }

        .error-copy-card .eyebrow {
            color: #C4B5FD;
        }

        .error-copy-card h1 {
            font-size: 3.5rem;
            line-height: 1.02;
            margin-bottom: 18px;
            color: white;
        }

        .error-copy-card > p:not(.eyebrow) {
            color: #EDE9FE;
            font-size: 1.08rem;
        }

        .error-reasons {
            display: grid;
            gap: 14px;
            margin: 28px 0 32px;
        }

        .error-reason {
            display: grid;
            grid-template-columns: 44px 1fr;
            gap: 14px;
            align-items: start;
            padding: 16px 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .error-reason i {
            display: inline-grid;
            place-items: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.12);
            color: #C4B5FD;
        }

        .error-reason span {
            color: #EDE9FE;
        }

        .error-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .error-outline {
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .error-outline:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.18);
            color: white;
        }

        .error-shortcuts {
            background: white;
        }

        .error-shortcut-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .error-shortcut-card {
            display: block;
            min-height: 245px;
            padding: 28px;
            border-radius: 28px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            background: #FCFAFF;
            color: #1E1B2E;
            text-decoration: none;
            box-shadow: 0 12px 24px rgba(30, 27, 46, 0.08);
            transition: var(--transition);
        }

        .error-shortcut-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.14);
        }

        .error-shortcut-card h3 {
            font-size: 1.55rem;
            margin-bottom: 12px;
        }

        .error-shortcut-card p {
            color: #4C3B6B;
        }

        .contacts-hero {
            min-height: 680px;
            display: flex;
            align-items: flex-end;
            padding: 110px 0 96px;
            background:
                linear-gradient(90deg, rgba(30, 27, 46, 0.78), rgba(30, 27, 46, 0.36) 58%, rgba(30, 27, 46, 0.12)),
                url('assets/home-hero-lavanda-banner.png') center/cover fixed;
        }

        .contacts-hero-content {
            max-width: 780px;
            color: white;
            animation: fadeUp 0.8s ease both;
        }

        .contacts-hero h1 {
            font-size: 4.8rem;
            line-height: 0.98;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
        }

        .contacts-hero p:not(.eyebrow) {
            max-width: 660px;
            color: #F1ECFF;
            font-size: 1.18rem;
            margin-bottom: 30px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .contacts-hero-link {
            border-color: rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.14);
            color: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(10px);
        }

        .contacts-hero-link:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.24);
            color: white;
            transform: translateY(-2px);
        }

        .contacts-overview {
            background: white;
        }

        .contacts-overview-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 52px;
        }

        .contacts-summary {
            display: grid;
            gap: 22px;
            padding: 30px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            border-radius: 28px;
            background: #FCFAFF;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.08);
        }

        .contacts-summary p {
            color: #4C3B6B;
            font-size: 1.08rem;
        }

        .contacts-summary-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .contacts-cards {
            background: linear-gradient(180deg, #F8F7FF, #FFFFFF);
        }

        .contact-method-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .contact-method-card {
            min-height: 265px;
            padding: 26px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            border-radius: 24px;
            background: white;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.1);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .contact-method-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.18);
        }

        .contact-method-card i {
            display: inline-grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-method-card h3 {
            font-size: 1.48rem;
            margin-bottom: 12px;
        }

        .contact-method-card p {
            color: #4C3B6B;
            margin-bottom: 18px;
        }

        .contact-method-card a,
        .contact-method-card span {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        .contacts-topics {
            background: white;
        }

        .contacts-topic-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .contacts-topic-card {
            display: block;
            min-height: 250px;
            padding: 28px;
            border-radius: 28px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            background: #FCFAFF;
            color: #1E1B2E;
            text-decoration: none;
            box-shadow: 0 12px 24px rgba(30, 27, 46, 0.08);
            transition: var(--transition);
        }

        .contacts-topic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.14);
        }

        .contacts-topic-card h3 {
            font-size: 1.55rem;
            margin-bottom: 12px;
        }

        .contacts-topic-card p {
            color: #4C3B6B;
        }

        .contacts-route {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 86% 16%, rgba(167, 139, 250, 0.28), transparent 30%),
                linear-gradient(135deg, #1E1B2E 0%, #352A55 100%);
            color: white;
        }

        .contacts-route-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
            gap: 24px;
            align-items: stretch;
        }

        .contacts-route-panel {
            padding: 34px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(12px);
        }

        .contacts-route .eyebrow {
            color: #C4B5FD;
        }

        .contacts-route h2 {
            color: white;
        }

        .contacts-route-list {
            display: grid;
            gap: 14px;
        }

        .contacts-route-step {
            display: grid;
            grid-template-columns: 74px 1fr;
            gap: 18px;
            padding: 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contacts-route-step span {
            font-family: 'Playfair Display', serif;
            color: #C4B5FD;
            font-size: 2.4rem;
            line-height: 1;
        }

        .contacts-route-step h3 {
            color: white;
            font-size: 1.45rem;
            margin-bottom: 8px;
        }

        .contacts-route-step p {
            color: #EDE9FE;
        }

        .contacts-route-note {
            padding: 32px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.94);
            color: #1E1B2E;
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
        }

        .contacts-route-note-badge {
            display: grid;
            grid-template-columns: 54px 1fr;
            gap: 14px;
            align-items: center;
            margin-bottom: 20px;
            padding: 16px 18px;
            border-radius: 22px;
            background: linear-gradient(135deg, #FCFAFF, #F3EEFF);
            border: 1px solid rgba(124, 58, 237, 0.12);
        }

        .contacts-route-note-badge span {
            display: inline-grid;
            place-items: center;
            width: 54px;
            height: 54px;
            border-radius: 18px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.15rem;
        }

        .contacts-route-note-badge p {
            margin: 0;
            color: #4C3B6B;
            font-weight: 600;
        }

        .contacts-route-note h3 {
            font-size: 1.65rem;
            margin-bottom: 18px;
        }

        .contacts-route-note-intro {
            margin: 0 0 18px;
            color: #4C3B6B;
        }

        .contacts-route-note ul {
            display: grid;
            gap: 12px;
            list-style: none;
        }

        .contacts-route-note li {
            display: flex;
            gap: 12px;
            color: #4C3B6B;
        }

        .contacts-route-note li::before {
            content: "";
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            margin-top: 7px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.13);
        }

        .contacts-route-note-tip {
            margin: 20px 0 0;
            padding-top: 18px;
            border-top: 1px solid rgba(30, 27, 46, 0.08);
            color: #4C3B6B;
            font-weight: 600;
        }

        .pool-hero {
            min-height: 680px;
            display: flex;
            align-items: flex-end;
            padding: 110px 0 96px;
            background:
                linear-gradient(90deg, rgba(22, 42, 58, 0.78), rgba(22, 42, 58, 0.36) 58%, rgba(22, 42, 58, 0.08)),
                url('assets/pool-hero-main.jpeg') center/cover fixed;
        }

        .pool-hero-content {
            max-width: 780px;
            color: white;
            animation: fadeUp 0.8s ease both;
        }

        .pool-hero h1 {
            font-size: 4.8rem;
            line-height: 0.98;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
        }

        .pool-hero p:not(.eyebrow) {
            max-width: 660px;
            color: #F1ECFF;
            font-size: 1.18rem;
            margin-bottom: 30px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .pool-hero-link {
            border-color: rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.14);
            color: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(10px);
        }

        .pool-hero-link:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.24);
            color: white;
            transform: translateY(-2px);
        }

        .pool-intro {
            background: white;
        }

        .pool-intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 52px;
        }

        .pool-comfort {
            background:
                radial-gradient(circle at 12% 4%, rgba(167, 139, 250, 0.22), transparent 30%),
                linear-gradient(180deg, #F8F7FF, #FFFFFF);
        }

        .pool-card-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .pool-card {
            min-height: 260px;
            padding: 26px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.1);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .pool-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.18);
        }

        .pool-card i {
            display: inline-grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .pool-card h3 {
            font-size: 1.48rem;
            margin-bottom: 12px;
        }

        .pool-card p {
            color: #4C3B6B;
        }

        .pool-audience {
            background:
                radial-gradient(circle at 88% 12%, rgba(167, 139, 250, 0.18), transparent 34%),
                #FFFFFF;
        }

        .pool-audience-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .pool-audience-card {
            min-height: 240px;
            padding: 26px;
            border-radius: 26px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            background: #FCFAFF;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.08);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .pool-audience-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.14);
        }

        .pool-audience-card span {
            display: inline-grid;
            place-items: center;
            width: 50px;
            height: 50px;
            margin-bottom: 22px;
            border-radius: 18px;
            background: var(--primary-soft);
            color: var(--primary);
        }

        .pool-audience-card h3 {
            font-size: 1.48rem;
            margin-bottom: 12px;
        }

        .pool-audience-card p {
            color: #4C3B6B;
        }

        .pool-formats {
            background: white;
        }

        .pool-format-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .pool-format-card {
            position: relative;
            min-height: 300px;
            padding: 30px;
            border-radius: 30px;
            background:
                linear-gradient(160deg, rgba(30, 27, 46, 0.42), rgba(30, 27, 46, 0.78)),
                url('assets/home-hero-pool-view.png') center/cover;
            color: white;
            overflow: hidden;
            box-shadow: 0 18px 38px rgba(30, 27, 46, 0.18);
            animation: fadeUp 0.7s ease both;
        }

        .pool-format-card:nth-child(2) {
            background:
                linear-gradient(160deg, rgba(30, 27, 46, 0.38), rgba(30, 27, 46, 0.74)),
                url('assets/home-hero-lavanda-banner.png') center/cover;
        }

        .pool-format-card:nth-child(3) {
            background:
                linear-gradient(160deg, rgba(30, 27, 46, 0.36), rgba(30, 27, 46, 0.76)),
                url('assets/hero-lavanda-pool.png') center/cover;
        }

        .pool-format-card span {
            display: inline-block;
            margin-bottom: 86px;
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: #C4B5FD;
            line-height: 1;
        }

        .pool-format-card h3 {
            color: white;
            font-size: 1.7rem;
            margin-bottom: 10px;
        }

        .pool-format-card p {
            color: #F1ECFF;
            text-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .pool-combo {
            background:
                linear-gradient(180deg, #F8F7FF 0%, #FFFFFF 100%);
        }

        .pool-combo-grid {
            display: grid;
            grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
            gap: 34px;
            align-items: center;
        }

        .pool-combo-photo {
            min-height: 520px;
            border-radius: 34px;
            background:
                linear-gradient(180deg, rgba(30, 27, 46, 0.08), rgba(30, 27, 46, 0.18)),
                url('assets/home-hero-pool-view.png') center/cover;
            box-shadow: 0 22px 46px rgba(30, 27, 46, 0.16);
        }

        .pool-combo-list {
            display: grid;
            gap: 16px;
        }

        .pool-combo-item {
            display: grid;
            grid-template-columns: 54px 1fr;
            gap: 16px;
            padding: 22px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            border-radius: 24px;
            background: white;
            color: #1E1B2E;
            text-decoration: none;
            box-shadow: 0 12px 24px rgba(30, 27, 46, 0.08);
        }

        .pool-combo-item i {
            display: inline-grid;
            place-items: center;
            width: 54px;
            height: 54px;
            border-radius: 18px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.18rem;
        }

        .pool-combo-item h3 {
            font-size: 1.42rem;
            margin-bottom: 8px;
        }

        .pool-combo-item p {
            color: #4C3B6B;
        }

        .pool-day {
            background: white;
        }

        .pool-day-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .pool-day-step {
            position: relative;
            min-height: 250px;
            padding: 28px;
            border-radius: 28px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 233, 254, 0.72));
            border: 1px solid rgba(124, 58, 237, 0.22);
            box-shadow: 0 14px 30px rgba(30, 27, 46, 0.08);
            overflow: hidden;
        }

        .pool-day-step::after {
            content: "";
            position: absolute;
            right: -44px;
            bottom: -44px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.12);
        }

        .pool-day-step span {
            position: relative;
            z-index: 1;
            display: inline-block;
            margin-bottom: 38px;
            font-family: 'Playfair Display', serif;
            font-size: 2.1rem;
            color: var(--primary);
            line-height: 1;
        }

        .pool-day-step h3 {
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .pool-day-step p {
            position: relative;
            z-index: 1;
            color: #4C3B6B;
        }

        .pool-rules {
            background:
                radial-gradient(circle at 86% 16%, rgba(167, 139, 250, 0.28), transparent 30%),
                linear-gradient(135deg, #1E1B2E 0%, #17384A 100%);
            color: white;
            overflow: hidden;
        }

        .pool-rules-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
            gap: 32px;
            align-items: center;
        }

        .pool-rules h2 {
            color: white;
        }

        .pool-rules p:not(.eyebrow) {
            max-width: 620px;
            color: #EDE9FE;
            font-size: 1.08rem;
            margin-bottom: 24px;
        }

        .pool-rules .eyebrow {
            color: #C4B5FD;
        }

        .pool-checklist {
            padding: 32px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.94);
            color: #1E1B2E;
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
        }

        .pool-checklist h3 {
            font-size: 1.65rem;
            margin-bottom: 18px;
        }

        .pool-checklist ul {
            display: grid;
            gap: 14px;
            list-style: none;
        }

        .pool-checklist li {
            display: flex;
            gap: 12px;
            color: #4C3B6B;
        }

        .pool-checklist li::before {
            content: "";
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            margin-top: 7px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.13);
        }

        .pool-gallery {
            background: linear-gradient(180deg, #F8F7FF, white);
        }

        .banquet-hero {
            min-height: 680px;
            display: flex;
            align-items: flex-end;
            padding: 110px 0 96px;
            background:
                linear-gradient(90deg, rgba(30, 27, 46, 0.78), rgba(30, 27, 46, 0.36) 58%, rgba(30, 27, 46, 0.12)),
                url('assets/banquet-hero-hall.jpg') center/cover fixed;
        }

        .banquet-hero-content {
            max-width: 780px;
            color: white;
            animation: fadeUp 0.8s ease both;
        }

        .banquet-hero h1 {
            font-size: 4.8rem;
            line-height: 0.98;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
        }

        .banquet-hero p:not(.eyebrow) {
            max-width: 660px;
            color: #F1ECFF;
            font-size: 1.18rem;
            margin-bottom: 30px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .banquet-hero-link {
            border-color: rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.14);
            color: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(10px);
        }

        .banquet-hero-link:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.24);
            color: white;
            transform: translateY(-2px);
        }

        .banquet-about {
            background: white;
        }

        .banquet-about-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 52px;
        }

        .banquet-features {
            background: #F8F7FF;
        }

        .banquet-feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .banquet-feature {
            min-height: 250px;
            padding: 26px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            border-radius: 24px;
            background: white;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.1);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .banquet-feature:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.18);
        }

        .banquet-feature i {
            color: var(--primary);
            font-size: 1.55rem;
            margin-bottom: 20px;
        }

        .banquet-feature h3 {
            font-size: 1.48rem;
            margin-bottom: 12px;
        }

        .banquet-feature p {
            color: #4C3B6B;
        }

        .banquet-details {
            position: relative;
            overflow: hidden;
            background: white;
        }

        .banquet-details::before {
            content: "";
            position: absolute;
            right: -160px;
            top: 40px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 68%);
            pointer-events: none;
        }

        .banquet-benefit-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .banquet-benefit-card {
            position: relative;
            min-height: 250px;
            padding: 28px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            border-radius: 28px;
            background: linear-gradient(145deg, #FFFFFF, #F8F7FF);
            box-shadow: 0 14px 30px rgba(30, 27, 46, 0.08);
            overflow: hidden;
            animation: fadeUp 0.7s ease both;
        }

        .banquet-benefit-card::after {
            content: "";
            position: absolute;
            right: -42px;
            bottom: -42px;
            width: 118px;
            height: 118px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.09);
        }

        .banquet-benefit-card i {
            position: relative;
            z-index: 1;
            display: inline-grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 22px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .banquet-benefit-card h3 {
            position: relative;
            z-index: 1;
            font-size: 1.48rem;
            margin-bottom: 12px;
        }

        .banquet-benefit-card p {
            position: relative;
            z-index: 1;
            color: #4C3B6B;
        }

        .banquet-planning {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 84% 8%, rgba(167, 139, 250, 0.34), transparent 34%),
                linear-gradient(135deg, #1E1B2E 0%, #352A55 100%);
            color: white;
        }

        .banquet-planning .section-heading {
            position: relative;
            z-index: 1;
        }

        .banquet-planning .section-heading .eyebrow {
            color: #C4B5FD;
        }

        .banquet-planning h2 {
            color: white;
        }

        .banquet-process-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
            gap: 24px;
            align-items: stretch;
        }

        .banquet-steps {
            display: grid;
            gap: 14px;
        }

        .banquet-step {
            display: grid;
            grid-template-columns: 74px 1fr;
            gap: 18px;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(12px);
        }

        .banquet-step span {
            font-family: 'Playfair Display', serif;
            color: #C4B5FD;
            font-size: 2.4rem;
            line-height: 1;
        }

        .banquet-step h3 {
            color: white;
            font-size: 1.45rem;
            margin-bottom: 8px;
        }

        .banquet-step p {
            color: #EDE9FE;
        }

        .banquet-checklist {
            padding: 32px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.94);
            color: #1E1B2E;
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
        }

        .banquet-checklist h3 {
            font-size: 1.65rem;
            margin-bottom: 18px;
        }

        .banquet-checklist ul {
            display: grid;
            gap: 12px;
            margin: 0 0 22px;
            list-style: none;
        }

        .banquet-checklist li {
            display: flex;
            gap: 12px;
            color: #4C3B6B;
        }

        .banquet-checklist li::before {
            content: "";
            flex: 0 0 auto;
            width: 10px;
            height: 10px;
            margin-top: 7px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
        }

        .banquet-checklist p {
            color: #4C3B6B;
            font-weight: 500;
        }

        .banquet-formats {
            background: white;
        }

        .formats-list {
            display: grid;
            gap: 16px;
        }

        .format-row {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 22px;
            padding: 24px;
            border: 1px solid rgba(30, 27, 46, 0.12);
            border-radius: 22px;
            background: #FCFAFF;
            box-shadow: 0 10px 22px rgba(30, 27, 46, 0.06);
        }

        .format-row span {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: var(--primary);
            line-height: 1;
        }

        .format-row h3 {
            font-size: 1.55rem;
            margin-bottom: 8px;
        }

        .format-row p {
            color: #4C3B6B;
        }

        .banquet-gallery {
            background: linear-gradient(180deg, #F8F7FF, white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            grid-template-rows: repeat(2, 250px);
            gap: 18px;
        }

        .gallery-tile {
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            border: 2px solid rgba(30, 27, 46, 0.14);
            box-shadow: 0 14px 28px rgba(30, 27, 46, 0.12);
            overflow: hidden;
        }

        .gallery-main {
            grid-row: span 2;
        }

        .gazebo-hero {
            position: relative;
            overflow: hidden;
            min-height: 680px;
            display: flex;
            align-items: flex-end;
            padding: 110px 0 96px;
            background:
                linear-gradient(90deg, rgba(30, 27, 46, 0.78), rgba(30, 27, 46, 0.36) 58%, rgba(30, 27, 46, 0.12)),
                url('assets/home-hero-nature-lake.jpg') center/cover fixed;
        }

        .gazebo-hero-content {
            max-width: 780px;
            color: white;
            animation: fadeUp 0.8s ease both;
        }

        .gazebo-hero h1 {
            font-size: 4.8rem;
            line-height: 0.98;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
        }

        .gazebo-hero p:not(.eyebrow) {
            max-width: 680px;
            color: #F2F1F8;
            font-size: 1.18rem;
            margin-bottom: 30px;
            text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
        }

        .gazebo-hero-link {
            border-color: rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.14);
            color: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(10px);
        }

        .gazebo-hero-link:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.24);
            color: white;
            transform: translateY(-2px);
        }

        .gazebo-intro {
            background: white;
        }

        .gazebo-intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 52px;
            align-items: start;
        }

        .gazebo-formats {
            background: white;
        }

        .gazebo-format-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .gazebo-format-card {
            display: flex;
            flex-direction: column;
            min-height: 290px;
            overflow: hidden;
            border-radius: 24px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            background: white;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.1);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .gazebo-format-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.18);
        }

        .gazebo-format-media {
            min-height: 210px;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .gazebo-format-media--compact {
            background-image:
                linear-gradient(180deg, rgba(30, 27, 46, 0.08), rgba(30, 27, 46, 0.18)),
                url('assets/home-hero-nature-lake.jpg');
        }

        .gazebo-format-media--family {
            background-image:
                linear-gradient(180deg, rgba(30, 27, 46, 0.08), rgba(30, 27, 46, 0.18)),
                url('assets/home-hero-lavanda-banner.png');
        }

        .gazebo-format-media--party {
            background-image:
                linear-gradient(180deg, rgba(30, 27, 46, 0.08), rgba(30, 27, 46, 0.18)),
                url('assets/home-hero-pool-view.png');
        }

        .gazebo-format-media--warm {
            background-image:
                linear-gradient(180deg, rgba(30, 27, 46, 0.08), rgba(30, 27, 46, 0.18)),
                url('assets/hero-lavanda-pool.png');
        }

        .gazebo-format-body {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            padding: 24px 28px 28px;
        }

        .gazebo-format-head {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .gazebo-format-head h3 {
            font-size: 1.48rem;
            margin: 0;
        }

        .gazebo-format-capacity {
            flex-shrink: 0;
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(124, 58, 237, 0.1);
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .gazebo-format-card p {
            color: #4C3B6B;
            margin-bottom: 16px;
        }

        .gazebo-format-list {
            display: grid;
            gap: 10px;
            margin: 0 0 22px;
            padding-left: 18px;
            color: #3F315E;
        }

        .gazebo-format-list li::marker {
            color: var(--primary);
        }

        .gazebo-format-link {
            margin-top: auto;
            align-self: flex-start;
        }

        .gazebo-comfort {
            background:
                radial-gradient(circle at 12% 4%, rgba(167, 139, 250, 0.22), transparent 30%),
                linear-gradient(180deg, #F8F7FF, #FFFFFF);
        }

        .gazebo-benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .gazebo-benefit-card {
            min-height: 220px;
            padding: 26px;
            border-radius: 24px;
            border: 2px solid rgba(30, 27, 46, 0.14);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.1);
            transition: var(--transition);
            animation: fadeUp 0.7s ease both;
        }

        .gazebo-benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.45);
            box-shadow: 0 22px 40px rgba(124, 58, 237, 0.18);
        }

        .gazebo-benefit-card i {
            display: inline-grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 18px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.18rem;
        }

        .gazebo-benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .gazebo-benefit-card p {
            color: #4C3B6B;
        }

        .gazebo-scenarios {
            background: white;
        }

        .gazebo-scenario-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .gazebo-scenario-card {
            position: relative;
            min-height: 228px;
            padding: 26px;
            border-radius: 28px;
            border: 1px solid rgba(124, 58, 237, 0.22);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 233, 254, 0.72));
            box-shadow: 0 14px 30px rgba(30, 27, 46, 0.08);
            overflow: hidden;
            animation: fadeUp 0.7s ease both;
        }

        .gazebo-scenario-card::after {
            content: "";
            position: absolute;
            right: -44px;
            bottom: -44px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.12);
        }

        .gazebo-scenario-card span {
            position: relative;
            z-index: 1;
            display: block;
            margin-bottom: 18px;
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem;
            line-height: 1;
            color: var(--primary);
        }

        .gazebo-scenario-card h3 {
            position: relative;
            z-index: 1;
            font-size: 1.38rem;
            margin-bottom: 10px;
        }

        .gazebo-scenario-card p {
            position: relative;
            z-index: 1;
            color: #4C3B6B;
        }

        .gazebo-booking {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 84% 8%, rgba(167, 139, 250, 0.34), transparent 34%),
                linear-gradient(135deg, #1E1B2E 0%, #352A55 100%);
            color: white;
        }

        .gazebo-booking .eyebrow {
            color: #DDD6FE;
        }

        .gazebo-booking h2 {
            color: white;
        }

        .gazebo-booking-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
            gap: 24px;
            align-items: stretch;
        }

        .gazebo-booking-panel,
        .gazebo-booking-note {
            padding: 34px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(12px);
        }

        .gazebo-booking-steps {
            display: grid;
            gap: 14px;
            margin-top: 28px;
        }

        .gazebo-booking-step {
            display: grid;
            grid-template-columns: 74px 1fr;
            gap: 18px;
            padding: 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .gazebo-booking-step span {
            font-family: 'Playfair Display', serif;
            color: #DDD6FE;
            font-size: 2.4rem;
            line-height: 1;
        }

        .gazebo-booking-step h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: white;
        }

        .gazebo-booking-step p {
            color: #F2EEFF;
        }

        .gazebo-booking-note {
            display: grid;
            align-content: start;
            gap: 18px;
        }

        .gazebo-booking-badge {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 16px;
            align-items: start;
            padding: 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .gazebo-booking-badge span {
            display: inline-grid;
            place-items: center;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.12);
            color: #DDD6FE;
            font-size: 1.15rem;
        }

        .gazebo-booking-badge p,
        .gazebo-booking-note ul {
            color: #F2EEFF;
        }

        .gazebo-booking-note h3 {
            color: white;
            font-size: 1.52rem;
        }

        .gazebo-booking-note ul {
            display: grid;
            gap: 10px;
            margin: 0;
            padding-left: 18px;
        }

        .gazebo-booking-note li::marker {
            color: #C4B5FD;
        }

        .gazebo-booking-note .btn {
            width: 100%;
            min-height: 54px;
        }

        /* Footer */
        .footer {
            background: #1E1B2E;
            color: #B8ADD2;
            padding: 48px 0 32px;
            border-radius: 40px 40px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer h4 {
            color: white;
            margin-bottom: 14px;
        }
        .footer-logo {
            color: white;
            margin-bottom: 10px;
        }
        .footer-legal {
            margin: 10px 0 14px;
            color: #DDD6FE;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-policy-row {
            margin-top: 10px;
        }
        .footer-policy-link {
            padding: 0;
            border: none;
            background: none;
            color: #DDD6FE;
            text-decoration: underline;
            cursor: pointer;
            font: inherit;
        }
        .footer-policy-link:hover {
            color: white;
        }
        body.cookie-banner-visible {
            padding-bottom: 132px;
        }
        .cookie-consent {
            position: fixed;
            left: 24px;
            right: 24px;
            bottom: 24px;
            z-index: 920;
            opacity: 0;
            transform: translateY(18px);
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }
        .cookie-consent.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .cookie-consent-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 22px;
            padding: 20px 22px;
            border-radius: 28px;
            background: rgba(30, 27, 46, 0.92);
            color: white;
            border: 1px solid rgba(237, 233, 254, 0.18);
            backdrop-filter: blur(14px);
            box-shadow: 0 18px 46px rgba(30, 27, 46, 0.28);
        }
        .cookie-consent-copy {
            max-width: 760px;
            display: grid;
            gap: 8px;
        }
        .cookie-consent-copy p {
            margin: 0;
            color: #F5F3FF;
            line-height: 1.65;
        }
        .cookie-consent-title {
            color: white !important;
            font-size: 1.05rem;
            font-weight: 700;
        }
        .cookie-consent-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            flex: 0 0 auto;
        }
        .cookie-consent-details {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: white;
        }
        .cookie-consent-details:hover {
            border-color: rgba(255, 255, 255, 0.36);
            background: rgba(255, 255, 255, 0.14);
            color: white;
        }
        .cookie-consent-accept {
            min-width: 138px;
        }
        .footer-menu {
            display: grid;
            gap: 10px;
        }
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }
        .social-link {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(221, 214, 254, 0.28);
            background: rgba(255, 255, 255, 0.06);
            color: #DDD6FE;
            font-size: 1.15rem;
            transition: var(--transition);
        }
        .social-link:hover {
            color: white;
            transform: translateY(-2px);
            border-color: transparent;
        }
        .social-instagram:hover {
            background: #E4405F;
        }
        .social-vk:hover {
            background: #0077FF;
        }
        .social-tiktok:hover {
            background: #111111;
        }
        .footer a { color: #DDD6FE; text-decoration: none; }
        .footer a:hover { color: white; }

        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(30, 27, 46, 0.5);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal.active { display: flex; }
        .modal-content {
            background: white;
            max-width: 520px;
            width: 90%;
            padding: 40px;
            border-radius: 48px;
            box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
            position: relative;
        }
        .modal-close {
            position: absolute;
            top: 24px; right: 28px;
            font-size: 28px;
            cursor: pointer;
            color: #7C6F9A;
            border: none;
            background: none;
        }
        .modal h3 { font-size: 2.2rem; margin-bottom: 24px; }
        .room-gallery-content {
            max-width: 1120px;
            width: min(1120px, 94vw);
            padding: 28px;
        }
        .room-gallery-close {
            top: 18px;
            right: 18px;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: rgba(248, 247, 255, 0.94);
            color: #5B4A80;
            line-height: 1;
            z-index: 3;
        }
        .room-gallery-close:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }
        .room-gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.78fr);
            gap: 24px;
            align-items: stretch;
        }
        .room-gallery-visual,
        .room-gallery-panel {
            min-width: 0;
        }
        .room-gallery-stage {
            position: relative;
            min-height: 520px;
            border-radius: 34px;
            overflow: hidden;
            background: #EDE9FE;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
        }
        .room-gallery-stage-media {
            position: absolute;
            inset: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }
        .room-gallery-stage::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 38%;
            background: linear-gradient(180deg, rgba(30, 27, 46, 0), rgba(30, 27, 46, 0.42));
            pointer-events: none;
        }
        .room-gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border: none;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            color: #3D2E60;
            cursor: pointer;
            z-index: 2;
            box-shadow: 0 12px 26px rgba(30, 27, 46, 0.14);
            transition: var(--transition);
        }
        .room-gallery-nav:hover:not(:disabled) {
            background: white;
            color: var(--primary);
            transform: translateY(-50%) scale(1.04);
        }
        .room-gallery-nav:disabled {
            opacity: 0.45;
            cursor: default;
        }
        .room-gallery-prev { left: 18px; }
        .room-gallery-next { right: 18px; }
        .room-gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 14px;
        }
        .room-gallery-thumb {
            height: 92px;
            border-radius: 20px;
            border: 1.5px solid transparent;
            background-color: #F4F0FF;
            background-repeat: no-repeat;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
        }
        .room-gallery-thumb:hover,
        .room-gallery-thumb.active {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(124, 58, 237, 0.18);
        }
        .room-gallery-panel {
            display: flex;
            flex-direction: column;
            padding: 20px 8px 8px;
        }
        .room-gallery-panel h3 {
            padding-right: 0;
        }
        .room-gallery-kicker {
            margin-bottom: 12px;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .room-gallery-status {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
        }
        .room-gallery-counter,
        .room-gallery-price {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: 999px;
            background: #F8F7FF;
            color: #4C3B6B;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .room-gallery-price {
            color: var(--primary);
        }
        .room-gallery-subtitle {
            color: #4C3B6B;
            line-height: 1.7;
            margin: -10px 0 20px;
        }
        .room-gallery-meta,
        .room-gallery-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .room-gallery-meta {
            margin-bottom: 14px;
        }
        .room-gallery-meta span,
        .room-gallery-highlights span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 42px;
            padding: 10px 14px;
            border-radius: 16px;
            font-weight: 600;
        }
        .room-gallery-meta span {
            background: #F8F7FF;
            color: #3D2E60;
        }
        .room-gallery-highlights {
            margin-bottom: 22px;
        }
        .room-gallery-highlights span {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .room-gallery-highlights i {
            font-size: 0.85rem;
        }
        .room-gallery-caption-card {
            padding: 18px 20px;
            border-radius: 22px;
            background: linear-gradient(180deg, #FBFAFF 0%, #F4F0FF 100%);
            border: 1px solid rgba(124, 58, 237, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }
        .room-gallery-caption-label {
            display: inline-block;
            margin-bottom: 8px;
            color: #7C6F9A;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .room-gallery-caption {
            color: #3F315E;
            line-height: 1.7;
        }
        .room-gallery-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: auto;
            padding-top: 22px;
        }
        .room-gallery-back,
        .room-gallery-choose {
            min-width: 0;
            width: 100%;
            white-space: normal;
            text-align: center;
            line-height: 1.35;
        }
        .room-gallery-back {
            border-color: rgba(30, 27, 46, 0.44);
            background: white;
            color: #1E1B2E;
            box-shadow: inset 0 0 0 1px rgba(30, 27, 46, 0.14);
        }
        .room-gallery-back:hover {
            border-color: var(--primary);
            background: var(--primary-soft);
            color: var(--primary);
        }
        .privacy-modal-content {
            max-width: 760px;
            max-height: min(86vh, 900px);
            overflow-y: auto;
            padding: 0;
        }
        .privacy-modal-header {
            position: sticky;
            top: 0;
            z-index: 2;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            padding: 26px 34px 18px;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(30, 27, 46, 0.08);
        }
        .privacy-modal-header h3 {
            margin: 0;
            padding-right: 0;
        }
        .privacy-modal-close {
            position: static;
            flex: 0 0 auto;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            color: #6B5B95;
            background: #F8F7FF;
            line-height: 1;
        }
        .privacy-modal-close:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }
        .privacy-policy-copy {
            display: grid;
            gap: 18px;
            padding: 22px 34px 30px;
            color: #4C3B6B;
            line-height: 1.65;
        }
        .privacy-policy-copy section {
            display: grid;
            gap: 10px;
        }
        .privacy-policy-copy h4 {
            color: #1E1B2E;
            font-size: 1.12rem;
            margin: 0;
        }
        .privacy-policy-copy p {
            margin: 0;
        }
        .privacy-policy-copy ul {
            margin: 0;
            padding-left: 22px;
            display: grid;
            gap: 8px;
        }
        .privacy-policy-copy a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }
        .privacy-policy-copy a:hover {
            text-decoration: underline;
        }
        .form-group { margin-bottom: 20px; }
        .modal-date-row {
            display: flex;
            gap: 12px;
        }
        .form-group input, .form-group select {
            width: 100%;
            padding: 16px;
            border-radius: 20px;
            border: 1.5px solid var(--border-light);
            min-width: 0;
        }

        /* Адаптивность */
        @media (max-width: 1100px) {
            .container {
                padding: 0 24px;
            }

            .nav {
                gap: 16px;
            }

            .hero-title {
                font-size: 3.2rem;
            }

            .home-title {
                font-size: 4.4rem;
            }

            .home-services {
                gap: 18px;
            }

            .spaces-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .advantages-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .results-layout {
                grid-template-columns: 260px 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 900px) {
            h2 {
                font-size: 2.35rem;
            }

            .header {
                padding: 14px 0;
            }

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

            .hero {
                min-height: auto;
                padding: 80px 0 88px;
                background-attachment: scroll;
                background-position: center;
            }

            .hero-grid { max-width: 100%; }

            .hero-title {
                font-size: 3rem;
                max-width: 680px;
            }

            .hero-subtitle {
                max-width: 560px;
            }

            .home-hero {
                min-height: 620px;
                padding: 90px 0 78px;
                background-attachment: scroll;
            }

            .home-title {
                font-size: 3.8rem;
            }

            .home-services {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: auto;
            }

            .contact-band-inner {
                align-items: flex-start;
                flex-direction: column;
            }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .payment-layout {
                grid-template-columns: 1fr;
            }

            .payment-copy h1 {
                font-size: 2.8rem;
            }

            .preloader-emblem {
                --leaf-radius: 42px;
                width: 142px;
                height: 142px;
            }

            .preloader-wordmark {
                font-size: clamp(2.4rem, 9vw, 3.6rem);
            }

            .error-layout {
                grid-template-columns: 1fr;
            }

            .error-shortcut-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .error-code-text {
                font-size: 244px;
            }

            .error-copy-card h1 {
                font-size: 3rem;
            }

            .contacts-hero h1 {
                font-size: 3.7rem;
            }

            .contacts-overview-grid,
            .contacts-route-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-method-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contacts-topic-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gazebo-hero h1 {
                font-size: 3.7rem;
            }

            .gazebo-intro-grid,
            .gazebo-booking-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .gazebo-format-grid,
            .gazebo-benefit-grid,
            .gazebo-scenario-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pool-hero h1 {
                font-size: 3.7rem;
            }

            .pool-intro-grid,
            .pool-rules-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .pool-card-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pool-audience-grid,
            .pool-day-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pool-format-grid {
                grid-template-columns: 1fr;
            }

            .pool-combo-grid {
                grid-template-columns: 1fr;
            }

            .pool-combo-photo {
                min-height: 380px;
            }

            .pool-format-card {
                min-height: 260px;
            }

            .pool-format-card span {
                margin-bottom: 64px;
            }

            .banquet-hero h1 {
                font-size: 3.7rem;
            }

            .banquet-about-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .banquet-feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .banquet-benefit-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .banquet-process-grid {
                grid-template-columns: 1fr;
            }

            .spaces-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .results-layout { grid-template-columns: 1fr; }

            .filters {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 20px;
                padding: 24px;
            }

            .filters h3,
            .filters .btn-outline {
                grid-column: 1 / -1;
            }

            .filter-group {
                margin-bottom: 0;
            }

            .testimonial-grid { grid-template-columns: 1fr; }

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

            .nav {
                order: 4;
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 10px;
                border: 1px solid rgba(124, 58, 237, 0.12);
                border-radius: 22px;
                background: rgba(255, 255, 255, 0.96);
                box-shadow: var(--shadow-md);
            }

            .nav.open {
                display: flex;
            }

            .nav a {
                padding: 12px 14px;
                border-radius: 14px;
                background: rgba(124, 58, 237, 0.08);
                font-size: 0.96rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid > div:first-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 700px) {
            body {
                -webkit-text-size-adjust: 100%;
            }

            .container {
                padding: 0 16px;
            }

            .header {
                position: sticky;
                padding: 10px 0;
                background: rgba(255, 255, 255, 0.92);
            }

            .header .container {
                gap: 12px;
            }

            .logo {
                font-size: 1.65rem;
            }

            /* Блок больше не растягивается на весь экран и не прижимает
               содержимое к низу: раньше это работало для крупного заголовка,
               а теперь под ним стоит форма бронирования, и она уезжала
               за нижний край. Высота — по содержимому. */
            .hero {
                min-height: auto;
                padding: 28px 0 32px;
                align-items: center;
                background:
                    linear-gradient(180deg, rgba(30, 27, 46, 0.72), rgba(30, 27, 46, 0.5)),
                    url('assets/hero-lavanda-pool.png') center/cover scroll;
            }

            .hero-title {
                font-size: 2.45rem;
                line-height: 1.08;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .home-hero {
                min-height: calc(100svh - 72px);
                padding: 54px 0 50px;
                align-items: flex-end;
                background:
                    linear-gradient(180deg, rgba(30, 27, 46, 0.72), rgba(30, 27, 46, 0.48)),
                    url('assets/home-hero-nature-lake.jpg') center/cover scroll;
            }

            .home-title {
                font-size: 3rem;
            }

            .home-subtitle {
                font-size: 1rem;
            }

            .home-actions {
                flex-direction: column;
            }

            .home-actions .btn,
            .contact-band-inner .btn {
                width: 100%;
                min-height: 52px;
            }

            .home-section {
                padding: 48px 0;
            }

            .service-card {
                padding: 24px;
                border-radius: 22px;
            }

            .spaces-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .space-card {
                min-height: auto;
                padding: 24px;
                border-radius: 22px;
            }

            .video-frame,
            .map-frame {
                border-radius: 22px;
            }

            .map-section {
                padding: 48px 0;
            }

            .map-frame,
            .map-frame iframe {
                min-height: 340px;
                height: 340px;
            }

            .home-contact-band {
                padding: 44px 0;
            }

            .payment-section {
                padding: 54px 0;
                background-attachment: scroll;
            }

            .payment-card {
                padding: 24px;
                border-radius: 22px;
            }

            .payment-consent-panel,
            .payment-terms-note {
                margin-bottom: 12px;
                padding: 14px;
                border-radius: 16px;
            }

            .error-hero {
                min-height: auto;
                padding: 54px 0 50px;
            }

            .error-art-panel,
            .error-copy-card {
                padding: 24px;
                border-radius: 24px;
            }

            .error-code-text {
                font-size: 176px;
                stroke-width: 8px;
            }

            .error-copy-card h1 {
                font-size: 2.5rem;
            }

            .error-shortcut-grid {
                grid-template-columns: 1fr;
            }

            .error-shortcut-card {
                min-height: auto;
                padding: 24px;
            }

            .error-reason {
                grid-template-columns: 1fr;
            }

            .contacts-hero {
                min-height: calc(100svh - 72px);
                padding: 54px 0 50px;
                align-items: flex-end;
                background:
                    linear-gradient(180deg, rgba(30, 27, 46, 0.74), rgba(30, 27, 46, 0.5)),
                    url('assets/home-hero-lavanda-banner.png') center/cover scroll;
            }

            .contacts-hero h1 {
                font-size: 2.8rem;
            }

            .contacts-hero p:not(.eyebrow) {
                font-size: 1rem;
            }

            .contact-method-grid {
                grid-template-columns: 1fr;
            }

            .contact-method-card,
            .contacts-summary,
            .contacts-route-panel,
            .contacts-route-note {
                padding: 24px;
            }

            .contacts-route-step {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .contacts-topic-grid {
                grid-template-columns: 1fr;
            }

            .gazebo-hero {
                min-height: calc(100svh - 72px);
                padding: 54px 0 50px;
                align-items: flex-end;
                background:
                    linear-gradient(180deg, rgba(30, 27, 46, 0.74), rgba(30, 27, 46, 0.5)),
                    url('assets/home-hero-nature-lake.jpg') center/cover scroll;
            }

            .gazebo-hero h1 {
                font-size: 2.8rem;
            }

            .gazebo-hero p:not(.eyebrow) {
                font-size: 1rem;
            }

            .gazebo-format-grid,
            .gazebo-benefit-grid,
            .gazebo-scenario-grid {
                grid-template-columns: 1fr;
            }

            .gazebo-benefit-card,
            .gazebo-scenario-card,
            .gazebo-booking-panel,
            .gazebo-booking-note {
                min-height: auto;
                padding: 24px;
                border-radius: 24px;
            }

            .gazebo-format-card {
                min-height: auto;
                padding: 0;
                border-radius: 24px;
            }

            .gazebo-format-media {
                min-height: 190px;
            }

            .gazebo-format-body {
                padding: 22px 24px 24px;
            }

            .gazebo-format-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .gazebo-format-link {
                width: 100%;
                justify-content: center;
            }

            .gazebo-booking-step {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .gazebo-booking-badge {
                grid-template-columns: 1fr;
            }

            .pool-hero {
                min-height: calc(100svh - 72px);
                padding: 54px 0 50px;
                align-items: flex-end;
                background:
                    linear-gradient(180deg, rgba(22, 42, 58, 0.74), rgba(22, 42, 58, 0.5)),
                    url('assets/pool-hero-main.jpeg') center/cover scroll;
            }

            .pool-hero h1 {
                font-size: 2.8rem;
            }

            .pool-hero p:not(.eyebrow) {
                font-size: 1rem;
            }

            .pool-card-grid {
                grid-template-columns: 1fr;
            }

            .pool-audience-grid,
            .pool-day-grid {
                grid-template-columns: 1fr;
            }

            .pool-card {
                min-height: auto;
                padding: 24px;
            }

            .pool-audience-card,
            .pool-day-step {
                min-height: auto;
                padding: 24px;
            }

            .pool-combo-photo {
                min-height: 300px;
                border-radius: 24px;
            }

            .pool-combo-item {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .pool-checklist {
                padding: 24px;
                border-radius: 24px;
            }

            .banquet-hero {
                min-height: calc(100svh - 72px);
                padding: 54px 0 50px;
                align-items: flex-end;
                background:
                    linear-gradient(180deg, rgba(30, 27, 46, 0.74), rgba(30, 27, 46, 0.5)),
                    url('assets/banquet-hero-hall.jpg') center/cover scroll;
            }

            .banquet-hero h1 {
                font-size: 2.8rem;
            }

            .banquet-hero p:not(.eyebrow) {
                font-size: 1rem;
            }

            .banquet-feature-grid,
            .banquet-benefit-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .banquet-feature {
                min-height: auto;
                padding: 24px;
            }

            .banquet-benefit-card {
                min-height: auto;
                padding: 24px;
            }

            .banquet-step {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .banquet-checklist {
                padding: 24px;
                border-radius: 24px;
            }

            .gallery-grid {
                grid-template-rows: none;
            }

            .gallery-tile,
            .gallery-main {
                min-height: 240px;
                grid-row: auto;
            }

            .search-card {
                border-radius: 24px;
                padding: 20px;
            }

            .search-fields {
                flex-direction: column;
            }

            .field {
                flex-basis: auto;
            }

            .field input[type="date"],
            .field select,
            .form-group input,
            .form-group select {
                min-height: 50px;
                font-size: 16px;
            }

            .search-btn,
            .book-btn {
                min-height: 52px;
            }

            .results-section {
                padding: 38px 0;
                border-radius: 32px 32px 0 0;
            }

            .filters {
                grid-template-columns: 1fr;
                border-radius: 24px;
                padding: 20px;
                gap: 18px;
            }

            .filters h3 {
                margin-bottom: 0;
            }

            .filter-group h4 {
                margin-bottom: 14px;
            }

            .filter-option {
                min-height: 40px;
                margin-bottom: 10px;
            }

            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .room-img {
                height: 210px;
            }

            .site-preloader {
                padding: 20px;
            }

            .site-preloader-inner {
                gap: 20px;
            }

            .preloader-emblem {
                --leaf-radius: 36px;
                width: 126px;
                height: 126px;
            }

            .preloader-emblem-ring {
                inset: 15px;
            }

            .preloader-leaf {
                width: 14px;
                height: 32px;
            }

            .preloader-core {
                width: 10px;
                height: 10px;
                box-shadow:
                    0 0 0 7px rgba(124, 58, 237, 0.06),
                    0 7px 16px rgba(124, 58, 237, 0.14);
            }

            .preloader-wordmark {
                font-size: clamp(2rem, 11vw, 3rem);
                letter-spacing: 0.015em;
            }

            .preloader-tagline {
                font-size: 0.68rem;
                letter-spacing: 0.16em;
            }

            .room-features {
                gap: 10px 14px;
                margin: 14px 0;
            }

            .room-actions {
                flex-direction: column;
            }

            .testimonial-card {
                padding: 24px;
                border-radius: 22px;
            }

            .footer {
                border-radius: 28px 28px 0 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            body.cookie-banner-visible {
                padding-bottom: 196px;
            }

            .cookie-consent {
                left: 12px;
                right: 12px;
                bottom: 12px;
            }

            .cookie-consent-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 18px;
                border-radius: 24px;
            }

            .cookie-consent-actions {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }

            .modal {
                align-items: flex-end;
                padding: 10px;
            }

            .modal-content {
                width: 100%;
                max-height: calc(100svh - 20px);
                overflow-y: auto;
                padding: 30px 22px 24px;
                border-radius: 28px;
            }

            .room-gallery-modal {
                align-items: stretch;
                padding: 0;
            }

            .room-gallery-content {
                width: 100%;
                max-width: none;
                height: 100svh;
                max-height: 100svh;
                padding: 0;
                border-radius: 0;
                overflow: hidden;
            }

            .room-gallery-layout {
                display: flex;
                flex-direction: column;
                height: 100%;
                gap: 0;
            }

            .room-gallery-visual {
                flex: 0 0 auto;
                padding: 18px 18px 12px;
                background: white;
            }

            .room-gallery-panel {
                flex: 1 1 auto;
                overflow-y: auto;
                padding: 10px 18px 22px;
            }

            .room-gallery-stage {
                min-height: 0;
                height: clamp(248px, 42svh, 340px);
                border-radius: 24px;
            }

            .room-gallery-thumbs {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px;
            }

            .room-gallery-thumb {
                height: 76px;
                border-radius: 16px;
            }

            .room-gallery-nav {
                width: 42px;
                height: 42px;
            }

            .room-gallery-status {
                flex-direction: column;
                align-items: stretch;
            }

            .room-gallery-actions {
                align-items: stretch;
            }

            .room-gallery-actions {
                grid-template-columns: 1fr;
            }

            .room-gallery-counter,
            .room-gallery-price {
                justify-content: center;
            }

            .room-gallery-caption-card {
                margin-top: 2px;
            }

            .modal h3 {
                font-size: 1.85rem;
                padding-right: 34px;
            }

            .privacy-modal-content {
                padding: 0;
            }

            .privacy-modal-header {
                padding: 22px 22px 16px;
            }

            .privacy-policy-copy {
                padding: 20px 22px 24px;
            }

            .modal-date-row {
                flex-direction: column;
            }
        }

        @media (max-width: 420px) {
            h2 {
                font-size: 2rem;
            }

            .btn {
                white-space: normal;
                text-align: center;
            }

            .hero-title {
                font-size: 2.05rem;
            }

            .preloader-emblem {
                --leaf-radius: 32px;
                width: 112px;
                height: 112px;
            }

            .preloader-leaf {
                width: 12px;
                height: 28px;
            }

            .preloader-wordmark {
                font-size: clamp(1.7rem, 12vw, 2.45rem);
            }

            .preloader-tagline {
                max-width: 190px;
                line-height: 1.5;
            }

            .home-title {
                font-size: 2.45rem;
            }

            .section-heading h2,
            .contact-band-inner h2 {
                font-size: 2rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .payment-copy h1 {
                font-size: 2.25rem;
            }

            .error-code-text {
                font-size: 132px;
                stroke-width: 6px;
            }

            .error-copy-card h1 {
                font-size: 2.15rem;
            }

            .contacts-hero h1 {
                font-size: 2.25rem;
            }

            .payment-summary div {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
            }

            .payment-summary dd {
                text-align: left;
            }

            .payment-consent-item {
                grid-template-columns: 18px 1fr;
                gap: 10px;
                align-items: start;
            }

            .payment-consent-item input[type="checkbox"] {
                width: 18px;
                height: 18px;
                border-radius: 6px;
            }

            .payment-consent-item label,
            .payment-terms-list,
            .payment-consent-link {
                font-size: 0.88rem;
            }

            .payment-consent-heading,
            .payment-terms-title {
                font-size: 0.9rem;
            }

            .payment-consent-note {
                font-size: 0.76rem;
            }

            .banquet-hero h1 {
                font-size: 2.25rem;
            }

            .format-row {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .hero-subtitle {
                margin-bottom: 22px;
            }

            .search-card {
                padding: 16px;
                border-radius: 20px;
            }

            .search-btn {
                padding: 15px;
            }

            .room-content {
                padding: 20px 16px 18px;
            }

            .room-title {
                font-size: 1.42rem;
            }

            .room-price {
                font-size: 1.55rem;
            }

            .room-tag {
                max-width: calc(100% - 32px);
                white-space: normal;
            }

            body.cookie-banner-visible {
                padding-bottom: 226px;
            }

            .cookie-consent-inner {
                padding: 16px;
                border-radius: 20px;
            }

            .cookie-consent-actions {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 28px 18px 22px;
                border-radius: 24px;
            }

            .room-gallery-content {
                height: 100svh;
                padding: 0;
                border-radius: 0;
            }

            .room-gallery-close {
                top: 12px;
                right: 12px;
                width: 42px;
                height: 42px;
            }

            .room-gallery-stage {
                height: clamp(220px, 36svh, 280px);
            }

            .room-gallery-thumbs {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .room-gallery-thumb {
                height: 64px;
            }

            .room-gallery-visual {
                padding: 14px 14px 10px;
            }

            .room-gallery-panel {
                padding: 8px 14px 18px;
            }

            .room-gallery-panel h3 {
                font-size: 1.7rem;
                line-height: 1.08;
            }

            .room-gallery-meta span,
            .room-gallery-highlights span {
                width: 100%;
                justify-content: flex-start;
            }

            .room-gallery-caption-card {
                padding: 16px;
                border-radius: 18px;
            }

            .privacy-modal-content {
                padding: 0;
            }

            .privacy-modal-header {
                padding: 20px 18px 14px;
            }

            .privacy-policy-copy {
                padding: 18px 18px 22px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 1.85rem;
            }

            .home-title {
                font-size: 2.15rem;
            }

            .hero-subtitle,
            .field label,
            .small-note {
                font-size: 0.9rem;
            }

            .filters,
            .search-card {
                padding: 14px;
            }

            .room-img {
                height: 190px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* мелкие правки */
        .small-note {
            font-size: 0.8rem;
            color: #6B5B95;
            margin-top: 8px;
        }
        .price-total {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 20px 0;
        }
