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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #faf9f8;
            color: #1e1e2a;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

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

        /* ========== НАВИГАЦИЯ ========== */
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 16px 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, #9b2e2e, #5a1e1e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .logo p {
            font-size: 0.7rem;
            color: #7e6b5c;
            font-weight: 500;
        }

        /* Десктопное меню */
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c2c2c;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #b6482c;
        }

        .btn-book {
            background: #b6482c;
            color: white !important;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(182, 72, 44, 0.2);
        }

        .btn-book:hover {
            background: #8f3a22;
            transform: scale(0.97);
        }

        /* Кнопка гамбургера (скрыта на десктопе) */
        .burger-menu {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #b6482c;
            z-index: 1001;
        }

        /* Мобильное меню (выдвижное) */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 1002;
            padding: 80px 24px 40px;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            color: #2c2c2c;
            padding: 12px 0;
            border-bottom: 1px solid #f0eae4;
            transition: 0.2s;
        }

        .mobile-nav a:hover {
            color: #b6482c;
            padding-left: 8px;
        }

        .mobile-btn-book {
            background: #b6482c;
            color: white !important;
            text-align: center;
            border-radius: 40px;
            padding: 14px !important;
            margin-top: 20px;
            border-bottom: none !important;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* ========== HERO ========== */
        .hero {
            background: linear-gradient(105deg, #f0ebe4 0%, #ffffff 100%);
            padding: 60px 0 50px;
            border-bottom: 1px solid #eae3db;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1.2;
        }

        .hero-badge {
            background: #e9dfd7;
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #7a3e2a;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #201e1c;
        }

        .hero-text p {
            font-size: 1.05rem;
            color: #3e3a35;
            margin-bottom: 28px;
        }

        .address-block {
            background: white;
            padding: 18px 24px;
            border-radius: 28px;
            box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.06);
            display: inline-flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 10px;
        }

        .address-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
        }

        .address-item i {
            font-size: 1.3rem;
            color: #b6482c;
        }

        .hero-map {
            flex: 0.9;
            background: #dfd6cd;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            min-height: 260px;
        }

        .map-placeholder {
            background: #bdb2a5;
            height: 100%;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            background-size: cover;
            background-position: center;
            font-weight: 500;
        }

        .map-placeholder span {
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
        }

        /* ========== СЕКЦИИ ========== */
        .section {
            padding: 70px 0;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #b6482c;
            margin-top: 12px;
            border-radius: 3px;
        }

        .history-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }

        .history-text {
            flex: 1.5;
        }

        .history-text p {
            margin-bottom: 18px;
            color: #2d2a27;
        }

        .info-cards {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .card-sm {
            background: white;
            border-radius: 28px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
            border: 1px solid #f0eae4;
        }

        .card-sm i {
            font-size: 1.8rem;
            color: #b6482c;
            margin-bottom: 12px;
        }

        .card-sm h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .amenities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .amenity-item {
            background: white;
            border-radius: 24px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #f2ece6;
        }

        .amenity-item i {
            font-size: 2rem;
            color: #9b4b34;
            margin-bottom: 12px;
        }

        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }

        .photo-card {
            border-radius: 28px;
            overflow: hidden;
            height: 240px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .photo-card:hover {
            transform: scale(0.98);
        }

        .btn-outline {
            border: 1.5px solid #b6482c;
            background: transparent;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            color: #b6482c;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
            margin-right: 15px;
            margin-top: 12px;
        }

        .btn-outline:hover {
            background: #b6482c;
            color: white;
        }

        .btn-primary {
            background: #b6482c;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
        }

        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-map {
            flex: 1;
            background: #ddd2c7;
            border-radius: 28px;
            padding: 20px;
            text-align: center;
        }

        .footer {
            background: #171614;
            color: #cccbc8;
            padding: 10px 0 5px;
            margin-top: 5px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-copy {
            text-align: center;
            margin-top: 5px;
            font-size: 0.8rem;
            border-top: 1px solid #2e2b28;
            padding-top: 5px;
        }

        /* ========== МОБИЛЬНЫЕ СТИЛИ ========== */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            /* Скрываем десктопное меню, показываем бургер */
            .nav-links {
                display: none;
            }

            .burger-menu {
                display: block;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                max-width: 100%;
                font-size: 0.95rem;
            }

            .address-block {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            /* КАРТА ПЕРЕНОСИТСЯ НА СЛЕДУЮЩУЮ СТРОКУ */
            .hero-grid {
                flex-direction: column;
            }

            .hero-map {
                width: 100%;
                order: 2;
            }

            .hero-text {
                order: 1;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .btn-outline, .btn-primary {
                display: inline-block;
                margin: 8px 8px 0 0;
                padding: 10px 20px;
                font-size: 0.85rem;
            }

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

            .contact-wrapper {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.7rem;
            }

            .address-item {
                font-size: 0.8rem;
            }
        }