/* ================= БАЗОВЫЕ НАСТРОЙКИ И ШРИФТЫ ================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
    --color-text: #1a1a1a;
    --color-text-light: #444444;
    --color-border: #eaeaea;
    --bg-light: #faf9f7;
    --color-blue-grey: #5c6b77;
    --accent: #c59f6f;
}

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

body {
    font-family: 'Cormorant Garamond', 'Didot', serif;
    background-color: var(--bg-light);
    color: var(--color-text);
    font-size: 18px; 
    overscroll-behavior-y: none; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* Блокировка прокрутки основного контента при открытом меню */
body.menu-lock {
    overflow: hidden !important;
    height: 100vh;
}

/* Скрываем мобильную панель и мобильное меню на экранах компьютеров по умолчанию */
.mobile-bottom-bar,
.mobile-fullscreen-menu,
.mobile-top-bar {
    display: none !important;
}

/* ================= 1. ГЛАВНЫЙ ЭКРАН (HERO) ================= */
.hero-header { position: relative; width: 100%; height: 100vh; min-height: 500px; display: flex; overflow: hidden; background-color: #000; }
.hero-half { flex: 1; height: 100%; position: relative; overflow: hidden; }
.hero-left { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.bg-image { width: 100%; height: 120%; top: -10%; position: absolute; background-size: cover; background-position: center; filter: brightness(0.85); transition: none !important; }

/* Flex-сетка для идеального центрирования контента */
.hero-ui { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; 
    pointer-events: none; display: flex; justify-content: center; align-items: center;
}

.top-monogram { 
    position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; pointer-events: auto; 
}
.os-logo-circle { font-size: 20px; font-weight: 500; color: white; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.brand-logo-text { font-family: Arial, sans-serif; font-size: 11px; font-weight: bold; letter-spacing: 5px; color: rgba(255, 255, 255, 0.9); text-transform: uppercase; }

/* Конверсионный блок абсолютно отцентрован */
.center-text { 
    width: 90%; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; 
    pointer-events: auto; background: rgba(0, 0, 0, 0.45); padding: 50px 70px; border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); 
}
.hero-main-title { font-size: clamp(2.3rem, 4vw, 4rem); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); text-align: center; line-height: 1.15; }
.hero-price { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: #dcb37e; }
.hero-explanation { font-size: clamp(1rem, 1.5vw, 1.4rem); font-style: italic; color: rgba(255, 255, 255, 0.95); max-width: 650px; text-align: center; line-height: 1.6; }

.hero-action-btn { margin-top: 15px; padding: 16px 45px; background-color: var(--accent); border: 1px solid var(--accent); color: #fff; font-family: Arial, sans-serif; font-size: 11px; font-weight: bold; letter-spacing: 3px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.hero-action-btn:hover { background-color: transparent; border-color: #fff; }

.bottom-destinations { 
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    font-family: Arial, sans-serif; font-size: 11px; color: #fff; letter-spacing: 4px; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}
.content-below { position: relative; z-index: 20; background-color: var(--bg-light); box-shadow: 0 -10px 30px rgba(0,0,0,0.1); }

/* ================= 2. НАВИГАЦИЯ (ДЕСКТОП) ================= */
.top-nav { 
    position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; 
    align-items: center; padding: 18px 40px; background-color: rgba(250, 249, 247, 0.98); 
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); 
    z-index: 1000; transition: transform 0.4s ease; transform: translateY(-100%); 
}
.top-nav.nav-visible { transform: translateY(0) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.top-nav.nav-hidden { transform: translateY(-100%) !important; }

body.internal-page { padding-top: 70px; }
body.internal-page .top-nav { transform: translateY(0) !important; }

.nav-empty-left { flex: 1; }
.nav-links { flex: 8; display: flex; justify-content: center; gap: 2vw; }
.nav-links a { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-light); font-family: Arial, sans-serif; transition: color 0.3s ease; }
.nav-links a:hover { color: #000; }
.nav-socials { flex: 1; display: flex; justify-content: flex-end; gap: 15px; font-size: 12px; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-light); }

/* ================= 3. ВСТУПЛЕНИЕ И СЛАЙДЕР ================= */
.intro-top-text-block { text-align: center; max-width: 850px; margin: 0 auto 60px; padding: 80px 20px 0; position: relative; z-index: 2; }
.intro-top-title { font-size: clamp(32px, 4vw, 46px); font-style: italic; color: var(--color-blue-grey); line-height: 1.25; margin-bottom: 20px; }
.intro-top-desc { font-size: clamp(16px, 2vw, 19px); color: #333; line-height: 1.8; max-width: 720px; margin: 0 auto 35px; }

.editorial-intro { position: relative; padding-bottom: 120px; }
.cloud-background { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background-size: cover; background-position: center; background-color: #e6e3dd; z-index: 0; }

.intro-slider-container { 
    position: relative; max-width: 1150px; width: 100%; margin: 0 auto; 
    aspect-ratio: 16 / 9; height: auto; z-index: 2; overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-radius: 8px; 
}
.intro-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

.swiper-button-prev-custom, .swiper-button-next-custom { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; z-index: 10; transition: background-color 0.3s, transform 0.3s; }
.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover { background-color: rgba(197, 159, 111, 0.8); transform: translateY(-50%) scale(1.05); }
.swiper-button-prev-custom { left: 30px; } .swiper-button-next-custom { right: 30px; }
.intro-swiper-pagination { position: absolute; bottom: 25px !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 10; display: flex; gap: 10px; }
.intro-swiper-pagination .swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 10px; height: 10px; transition: 0.3s; border-radius: 50%; }
.intro-swiper-pagination .swiper-pagination-bullet-active { background: var(--accent) !important; opacity: 1 !important; transform: scale(1.2); }

.intro-text-block { position: relative; z-index: 2; max-width: 750px; margin: 40px auto 0; text-align: center; padding: 0 20px; }
.intro-heading { font-size: clamp(30px, 3.5vw, 44px); font-style: italic; color: var(--color-blue-grey); line-height: 1.2; margin-bottom: 25px; }
.intro-subheading { font-family: Arial, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 4px; color: #555; margin-bottom: 30px; }

/* ================= 4. О СЕБЕ ================= */
.about-section { padding: 100px 0; background-color: #fff; }
.about-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.about-images { flex: 1; display: flex; justify-content: center; }
.about-img-large { width: 100%; max-width: 500px; height: auto; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-text { flex: 1.2; }
.about-title { font-size: clamp(36px, 4vw, 46px); font-style: italic; color: var(--color-blue-grey); margin-bottom: 25px; }
.about-paragraph { font-size: clamp(16px, 2vw, 19px); color: #444; line-height: 1.8; margin-bottom: 30px; } 

.about-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.about-btn { padding: 15px 35px; font-family: Arial, sans-serif; font-size: 11px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: 0.3s; border: 1px solid var(--accent); background: transparent; color: var(--accent); white-space: nowrap; text-align: center;}
.about-btn:hover, .about-btn-solid { background-color: var(--accent); color: #fff; }
.about-btn-solid:hover { background-color: transparent; color: var(--accent); }

/* ================= 5. ФОРМАТЫ СЪЕМКИ ================= */
.formats-section { padding: 100px 0; background-color: var(--bg-light); }
.formats-header { text-align: center; max-width: 800px; margin: 0 auto 60px; padding: 0 20px;}
.formats-title { font-size: clamp(36px, 4vw, 46px); color: var(--color-blue-grey); margin-bottom: 15px; }
.formats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto 50px; padding: 0 20px; }
.format-card { background: #fff; border: 1px solid #e5dfd9; border-radius: 12px; padding: 45px 50px; display: flex; flex-direction: column; gap: 15px; min-height: 290px; transition: 0.4s ease; }
.format-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.format-num { font-size: 36px; color: var(--accent); line-height: 1; }
.format-card-divider { width: 30px; height: 1px; background: var(--accent); border: none; opacity: 0.5; }
.format-title { font-size: 28px; color: var(--color-text); line-height: 1.2; }
.format-desc { font-size: 16px; color: #666; line-height: 1.5; }
.format-price-gold { font-size: 22px; color: var(--accent); margin-top: auto; font-weight: 500; }
.format-price-text { font-family: Arial, sans-serif; font-size: 11px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-top: auto; line-height: 1.4; }
.formats-actions { display: flex; justify-content: center; padding: 0 20px;}
.formats-cta-btn { background-color: #b89f7a; color: #fff; border: none; padding: 16px 50px; font-family: Arial, sans-serif; font-size: 11px; font-weight: bold; letter-spacing: 3px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 25px rgba(0,0,0,0.15); width: 100%; max-width: 300px;}
.formats-cta-btn:hover { background-color: #a38a6a; transform: translateY(-2px); }

/* ================= 6. ЦИТАТА И ССЫЛКИ ================= */
.quote-section { padding: 20px 0 120px; background-color: #fff; text-align: center; }
.quote-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.quote-icon { font-size: 80px; color: #b8c4cb; line-height: 1; margin-bottom: -10px; }
.quote-text { font-size: clamp(26px, 3vw, 36px); font-style: italic; color: var(--color-blue-grey); line-height: 1.3; margin-bottom: 25px; }
.quote-paragraph { font-size: 17px; color: #555; line-height: 2; margin-bottom: 35px; }

.dual-links-section { padding: 150px 0; background-size: cover; background-position: center; background-color: #f4f2ec; }
.dual-links-container { display: flex; justify-content: center; gap: 30px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.dual-link-card { position: relative; display: block; width: 40%; overflow: hidden; border-radius: 8px; }
.dual-link-img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: 0.9s ease; filter: brightness(0.9); }
.dual-link-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(28px, 4vw, 42px); font-style: italic; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.5); pointer-events: none; text-align: center; width: 90%;}
.dual-link-card:hover .dual-link-img { transform: scale(1.05); filter: brightness(0.8); }

/* ================= 7. CTA И ПАРАЛЛАКС ================= */
.parallax-divider { position: relative; width: 100%; height: 80vh; background-size: cover; background-position: center; background-attachment: fixed; z-index: 1; }
.cta-section { position: relative; width: 100%; height: 600px; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; background-attachment: fixed; }
.cta-overlay-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.2); }
.cta-glass-box { position: relative; z-index: 2; padding: 80px 100px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: 0.5s ease; border-radius: 12px; }
.cta-glass-box:hover { transform: scale(1.02); background: rgba(255, 255, 255, 0.15); }
.cta-heading { font-size: clamp(40px, 6vw, 80px); font-style: italic; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.3); margin-bottom: 35px; }
.cta-btn { font-family: Arial, sans-serif; font-size: 13px; font-weight: bold; letter-spacing: 5px; text-transform: uppercase; color: #fff; border-bottom: 2px solid #fff; padding-bottom: 6px; transition: 0.3s; display: inline-block;}

/* ================= 8. ПОДВАЛ ================= */
.site-footer { background-size: cover; background-position: center; background-color: #f4f2ec; padding: 80px 0 60px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-logo-img { max-height: 70px; margin: 0 auto 20px; display: block; }
.footer-destinations { font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 4px; color: #555; text-align: center; margin-bottom: 50px; }
.footer-middle { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto 80px; padding: 0 20px;}
.footer-col-text { font-size: 14px; color: #444; line-height: 2; } 
.left-text { text-align: right; }
.footer-insta { display: flex; gap: 15px; }
.footer-insta img { width: 120px; height: 120px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s; border-radius: 8px;}
.footer-nav-bottom ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 30px; padding: 0 20px;}
.footer-nav-bottom a { font-family: Arial, sans-serif; font-size: 12px; font-weight: bold; letter-spacing: 3px; color: #555; text-transform: uppercase; transition: 0.3s; }

/* ================= 9. МОДАЛЬНОЕ ОКНО И КНОПКИ ================= */
.booking-modal { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px); z-index: 9999; display: flex; justify-content: center; align-items: center; 
    opacity: 0; visibility: hidden; transition: 0.3s ease; padding: 20px;
}
.booking-modal.is-open { opacity: 1; visibility: visible; }
.booking-modal__window { 
    background: #fff; width: 100%; max-width: 480px; padding: 40px; border-radius: 16px; 
    position: relative; transform: translateY(20px); transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); max-height: 95vh; overflow-y: auto;
}
.booking-modal.is-open .booking-modal__window { transform: translateY(0); }
.booking-modal__close { 
    position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 11px; 
    font-family: Arial, sans-serif; text-transform: uppercase; cursor: pointer; color: #999; letter-spacing: 1px; transition: color 0.3s;
}
.booking-modal__close:hover { color: #1a1a1a; }

.os-price-modal__brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--color-border); }
.os-price-modal__brand-mark { font-size: 14px; font-weight: 500; color: var(--accent); border: 1px solid var(--accent); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.os-price-modal__brand-name { font-family: Arial, sans-serif; font-size: 10px; font-weight: bold; letter-spacing: 3px; color: var(--color-text); }
.os-price-modal__title { font-size: clamp(26px, 4vw, 32px); color: var(--color-blue-grey); text-align: center; margin-bottom: 10px; font-style: italic; font-weight: 400; }
.os-price-modal__price { text-align: center; margin-bottom: 15px; color: var(--accent); font-size: 26px; font-weight: 400; }
.os-price-modal__price-small { font-size: 16px; color: #777; margin-right: 4px; }
.os-price-modal__divider { display: flex; justify-content: center; margin: 15px 0 20px; }
.os-price-modal__divider span { width: 40px; height: 1px; background-color: var(--accent); opacity: 0.4; }
.os-price-modal__text { font-size: 16px; text-align: center; margin-bottom: 25px; color: #555; line-height: 1.5; }

.booking-form__label { display: flex; flex-direction: column; font-family: Arial, sans-serif; font-size: 11px; text-transform: uppercase; color: #666; margin-bottom: 20px; letter-spacing: 1px; }
.booking-form__input { padding: 10px 0; border: none; border-bottom: 1px solid #ddd; font-family: 'Cormorant Garamond', serif; font-size: 18px; outline: none; margin-top: 5px; transition: 0.3s; background: transparent; border-radius: 0; width: 100%; }
.booking-form__input:focus { border-bottom-color: var(--accent); }
.os-price-modal__date-wrap { display: block; position: relative; width: 100%; }

.booking-form__submit { margin-top: 10px; width: 100%; padding: 16px; background: var(--accent); color: #fff; border: none; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: bold; cursor: pointer; border-radius: 4px; transition: 0.3s; }
.booking-form__submit:hover { background: #a38a6a; }

.booking-form__success { display: none; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #2e7d32; text-align: center; margin-top: 15px; font-style: italic; line-height: 1.4; }
.booking-form.is-sent .booking-form__success { display: block; }
.booking-form.is-sent .booking-form__label, .booking-form.is-sent .booking-form__submit { display: none !important; }

.os-price-modal__benefits { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; border-top: 1px solid var(--color-border); padding-top: 25px; }
.os-price-modal__benefit { display: flex; align-items: center; gap: 15px; font-size: 15px; color: var(--color-text-light); }
.os-price-modal__benefit svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.os-price-modal__benefit span { line-height: 1.2; }

/* Левая плавающая кнопка (Узнать стоимость) — активна только на десктопах */
.appeal-btn {
    position: fixed; bottom: 40px; left: 40px; z-index: 9900; display: flex; align-items: center; gap: 12px; 
    background: var(--color-blue-grey); color: #fff; padding: 14px 26px; border-radius: 50px; 
    text-transform: uppercase; font-size: 11px; font-family: Arial, sans-serif; font-weight: bold; letter-spacing: 1px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: 0.3s ease; border: none; cursor: pointer;
    white-space: nowrap; 
}
.appeal-btn:hover { background: #4a545e; transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.25); }
.appeal-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

/* Правая плавающая кнопка звонка — активна только на десктопах */
.floating-call-btn {
    position: fixed; bottom: 30px; right: 130px; z-index: 9900; display: flex; align-items: center; gap: 12px;
    background-color: #c59f6f; color: #ffffff !important; padding: 14px 26px; border-radius: 50px;
    font-family: Arial, sans-serif; font-size: 13px; font-weight: bold; letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(197, 159, 111, 0.4); transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
    text-decoration: none; cursor: pointer;
    white-space: nowrap; 
}
.floating-call-btn:hover { background-color: #b89f7a; box-shadow: 0 15px 35px rgba(197, 159, 111, 0.5); transform: translateY(-5px); }
.floating-call-btn svg { transition: transform 0.3s ease; flex-shrink: 0; }
.floating-call-btn:hover svg { transform: rotate(15deg) scale(1.1); }

/* ==================== 10. МОБИЛЬНЫЕ УСТРОЙСТВА (ПОЛНЫЙ АДАПТИВ) ==================== */
@media (max-width: 900px) {
    
    /* Отступ страницы снизу для комфортного скролла */
    body {
        padding-bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    }

    /* Уменьшаем верхние отступы блоков на мобильных */
    .about-section, .formats-section, .editorial-intro, .quote-section { padding-top: 60px; }
    .editorial-intro { padding-bottom: 60px; }
    .dual-links-section { padding: 80px 0; }
    .site-footer { padding: 60px 0 40px; }
    
    /* Десктопные плавающие кнопки заменяются на bottom bar, поэтому скрываем их */
    .appeal-btn, .floating-call-btn {
        display: none !important;
    }

    /* 10.1 МОБИЛЬНАЯ ШАПКА (STICKY HEADER) */
    .top-nav { 
        position: fixed; top: 0; left: 0; width: 100%; max-width: none; height: 60px; 
        display: flex !important; flex-direction: row; justify-content: space-between; align-items: center;
        padding: 15px 20px; background-color: rgba(18, 18, 18, 0.96); 
        border-bottom: 1px solid rgba(197, 159, 111, 0.2); z-index: 10001; /* Поверх полноэкранного меню */
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* Скрываем десктопные элементы навигации */
    .nav-empty-left, .nav-links, .nav-socials { 
        display: none !important; 
    }
    
    /* Золотистый телефон слева */
    .mobile-header-phone {
        display: flex !important;
        align-items: center;
        gap: 8px;
        color: #c59f6f;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        pointer-events: auto;
    }
    .mobile-header-phone svg {
        stroke: #c59f6f;
    }

    /* Золотистый анимированный бургер справа */
    .menu-burger { 
        display: flex !important; 
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
        pointer-events: auto;
        position: static;
        transform: none;
    }
    .menu-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #c59f6f; /* Золотистый цвет полосок хедера */
        transition: all 0.3s ease;
    }

    /* Анимация перехода бургера в золотистый крестик X */
    .menu-burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-burger.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Скрываем логотип-дубликат OS на мобильном экране Hero по макету */
    .hero-ui .top-monogram { 
        display: none !important; 
    } 

    /* 10.2 МОБИЛЬНОЕ ПОЛНОЭКРАННОЕ МЕНЮ (OVERLAY) */
    .mobile-fullscreen-menu {
        display: flex !important; /* Показываем оверлей на мобильных */
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100dvh;
        min-height: 100svh;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 10000; /* Под шапкой, но поверх остального */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile-fullscreen-menu.is-open {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mobile-menu-content {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 20px 40px;
        height: 100%;
        justify-content: space-between;
    }
    .mobile-menu-logo {
        margin-top: 20px;
        color: #c59f6f;
        text-align: center;
        width: 100%;
    }
    .monogram-svg {
        width: 90px;
        height: 90px;
    }
    .monogram-svg__text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 300;
        fill: #c59f6f;
        text-anchor: middle;
    }
    .monogram-svg__subtext {
        font-family: Arial, sans-serif;
        font-size: 7px;
        font-weight: bold;
        letter-spacing: 2px;
        fill: rgba(197, 159, 111, 0.8);
        text-anchor: middle;
    }
    .mobile-menu-divider {
        width: 40px;
        height: 1px;
        background-color: rgba(197, 159, 111, 0.3);
        margin: 15px 0;
    }
    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .mobile-menu-links li {
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(197, 159, 111, 0.15);
    }
    .mobile-menu-links li:last-child {
        border-bottom: none;
    }
    .mobile-menu-links a {
        display: block;
        padding: 15px 0;
        font-family: 'Cormorant Garamond', serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s;
    }
    .mobile-menu-links a:hover {
        color: #c59f6f;
    }
    .mobile-menu-socials {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    .social-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(197, 159, 111, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c59f6f;
        transition: 0.3s;
    }
    .social-circle:hover {
        background-color: #c59f6f;
        color: #fff;
        border-color: #c59f6f;
    }
    .vk-text {
        font-family: Arial, sans-serif;
        font-size: 11px;
        font-weight: bold;
    }

    /* 10.3 МОБИЛЬНАЯ НИЖНЯЯ ПАНЕЛЬ (TAB BAR) */
    .mobile-bottom-bar {
        display: grid !important; /* Показываем панель на мобильных */
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-height: calc(88px + env(safe-area-inset-bottom));
        background:
            linear-gradient(180deg, rgba(48, 42, 35, 0.98), rgba(25, 23, 20, 0.98)),
            rgba(36, 34, 32, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(197, 159, 111, 0.46);
        z-index: 1001;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        box-shadow: 0 -14px 30px rgba(0,0,0,0.32);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    
    .tab-item {
        position: relative;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.92);
        font-family: Arial, sans-serif;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 8px 0;
        transition: 0.3s;
    }
    .tab-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 1px;
        height: 50px;
        transform: translateY(-50%);
        background: rgba(197, 159, 111, 0.28);
    }
    .tab-item svg {
        width: 27px;
        height: 27px;
        color: #f0d59a;
        stroke: currentColor;
        fill: none;
        filter: drop-shadow(0 2px 5px rgba(0,0,0,0.25));
    }
    .tab-item span {
        display: block;
        max-width: 100%;
        padding: 0 4px;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.2px;
        text-align: center;
        line-height: 1.15;
        color: rgba(255,255,255,0.9);
        text-transform: none;
    }
    .tab-item:first-child span { color: #d9b978; font-weight: 500; }
    .tab-item:first-child svg {
        width: 34px;
        height: 34px;
        padding: 5px;
        color: #d9b978;
        border: 1px solid rgba(217, 185, 120, 0.82);
        border-radius: 8px;
        background: rgba(217, 185, 120, 0.06);
    }
    .tab-item[href^="https://wa.me"] svg { fill: #f0d59a; stroke: none; }

    /* Прочие элементы адаптива */
    .hero-header { flex-direction: column; }
    .hero-half { width: 100%; height: 50%; }
    .hero-left { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .center-text { padding: 30px 20px; width: 95%; margin-top: 20px;}
    
    .about-container { flex-direction: column; text-align: center; gap: 40px; }
    .about-images { width: 100%; height: auto; min-height: 400px; display: flex; justify-content: center; align-items: center; position: relative; }
    .about-img-large { position: relative; left: auto; right: auto; top: auto; width: 90%; height: auto; aspect-ratio: 4/5; }
    .about-actions { flex-direction: column; gap: 10px; width: 100%; }
    .about-btn { width: 100%; white-space: normal; }

    .footer-middle {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

@media (max-height: 600px) {
    .top-monogram, .bottom-destinations { display: none !important; }
    .center-text { padding: 20px; margin-top: 50px; }
}

/* ================= 11. АДАПТИВНОСТЬ СЛАЙДЕРА (МЕНЕЕ 768px) ================= */
@media (max-width: 768px) {
    .intro-slider-container {
        height: auto !important;
        min-height: unset !important;
        aspect-ratio: 9 / 16 !important;
    }
    .intro-slide {
        aspect-ratio: 9 / 16;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .swiper-button-prev-custom, .swiper-button-next-custom { display: none; }
}

/* ================= 12. МИКРО-АДАПТИВНОСТЬ (<= 480px) ================= */
@media (max-width: 480px) {
    .center-text { padding: 20px 15px; }
    .hero-main-title { font-size: 28px; }
    .hero-price { font-size: 24px; }
    .hero-explanation { font-size: 15px; }
    
    .intro-top-title, .about-title, .formats-title { font-size: 32px; }
    .intro-heading { font-size: 28px; }
    
    .format-card { padding: 25px 20px; }
    .format-title { font-size: 24px; }
    
    .quote-text { font-size: 22px; }
    
    .booking-modal__window { padding: 30px 20px; }
    .os-price-modal__title { font-size: 26px; margin-bottom: 5px; }
    .os-price-modal__price { font-size: 22px; }
    .booking-form__input { font-size: 16px; }
}