/* =========================================================
   DREAM STAY HOTEL Р Р†Р вЂљРІР‚Сњ COLOR PALETTE
   Primary Dark Blue : #1a2a5e
   Primary Mid Blue  : #1e3a8a
   Accent Gold       : #c9a84c
   Light Blue BG     : #eef3fb
   ========================================================= */

/* Р В РІР‚ВР В Р’В°Р В Р’В·Р В РЎвЂўР В Р вЂ Р РЋРІР‚в„–Р В Р’Вµ Р РЋР С“Р РЋРІР‚С™Р В РЎвЂР В Р’В»Р В РЎвЂ Р В РЎвЂ Р РЋР С“Р В Р’В±Р РЋР вЂљР В РЎвЂўР РЋР С“ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: #eef3fb;
    color: #1a2a5e;
    line-height: 1.65;
    font-size: 18px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2a5e;
}
.full-width { width: 100%; margin-top: 20px; }

/* Р В РЎв„ўР В Р вЂ¦Р В РЎвЂўР В РЎвЂ”Р В РЎвЂќР В РЎвЂ */
button { font-family: inherit; cursor: pointer; border: none; transition: all 0.3s ease; }
.btn-primary {
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    color: #1a2a5e;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #b8952f, #c9a84c);
    box-shadow: 0 6px 20px rgba(201,168,76,0.5);
    transform: translateY(-1px);
}
.btn-secondary {
    background-color: transparent;
    color: #1a2a5e;
    padding: 10px 20px;
    border: 1.5px solid #1a2a5e;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 2px;
}
.btn-secondary:hover {
    background-color: #1a2a5e;
    color: #fff;
}


/* =========================================================
   DREAM STAY: Р В РЎСџР В РІР‚СћР В Р’В Р В РІР‚в„ўР В Р’В«Р В РІвЂћСћ Р В Р’В­Р В РЎв„ўР В Р’В Р В РЎвЂ™Р В РЎСљ (HERO FULLSCREEN)
   ========================================================= */

/* =========================================================
   HERO вЂ” MODERN FULLSCREEN (Photo + Clean Navbar)
   ========================================================= */

/* Р¤РѕРЅРѕРІРѕРµ С„РѕС‚Рѕ */
.hero-bg-photo {
    position: absolute;
    inset: 0;
    background: url('/static/img/oneimp.webp') center center / cover no-repeat;
    z-index: 0;
    transform: scale(1.03);
    animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.03); }
    to   { transform: scale(1); }
}

/* РўС‘РјРЅС‹Р№ РѕРІРµСЂР»РµР№ РґР»СЏ С‡РёС‚Р°РµРјРѕСЃС‚Рё С‚РµРєСЃС‚Р° */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* =========================================================
   NAVBAR вЂ” РїСЂРѕР·СЂР°С‡РЅС‹Р№, Р»РѕРіРѕС‚РёРї РїРѕ С†РµРЅС‚СЂСѓ
   ========================================================= */
.site-nav {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 380px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 40px;
    z-index: 20;
    background: none;
    pointer-events: none;
}

/* Ненавязчивая шапка-полоска только сверху */
.site-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 72px;
    background: rgba(20, 22, 30, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: -1;
    pointer-events: none;
}

.nav-left, .nav-right {
    position: absolute;
    top: 0;
    flex: 1;
    height: 72px;
    display: flex;
    align-items: center;
    padding-top: 0;
    z-index: 1;
}
.nav-left { left: 40px; }
.nav-right { right: 40px; justify-content: flex-end; }
.nav-menu-btn,
.nav-logo-link,
.nav-book-btn { pointer-events: auto; }

/* РљРЅРѕРїРєР° РјРµРЅСЋ */
.nav-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 10px 12px;
    transition: opacity 0.2s;
}
.nav-menu-btn:hover { opacity: 0.7; }
.nav-menu-btn > span:not(.nav-menu-label) {
    display: block;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}
.nav-menu-btn span:nth-child(1) { width: 46px; }
.nav-menu-btn span:nth-child(2) { width: 32px; }
.nav-menu-btn span:nth-child(3) { width: 46px; }
.nav-menu-btn:hover span:nth-child(2) { width: 46px; }
.nav-menu-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}

/* Р›РѕРіРѕС‚РёРї вЂ” РїРѕ С†РµРЅС‚СЂСѓ navbar */
.nav-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 40px 0;
}
.nav-logo-link {
    display: block;
    line-height: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.nav-logo-link:hover { opacity: 0.85; transform: scale(1.02); }

/* РљР»СЋС‡РµРІРѕР№ С‚СЂСЋРє: mix-blend-mode + invert РґРµР»Р°СЋС‚ PNG-Р»РѕРіРѕ Р±РµР»С‹Рј РЅР° С‚С‘РјРЅРѕРј С„РѕРЅРµ */
.nav-logo-img {
    height: 350px;
    width: auto;
    display: block;
    filter: none;
    transition: filter 0.4s;
}
/* РџСЂРё СЃРєСЂРѕР»Р»Рµ С€Р°РїРєРё вЂ” СЃРґРµР»Р°РµРј Р»РѕРіРѕ РІРёРґРёРјС‹Рј РЅР° СЃРІРµС‚Р»РѕРј С„РѕРЅРµ (JavaScript РґРѕР±Р°РІРёС‚ РєР»Р°СЃСЃ) */
.site-nav.scrolled .nav-logo-img {
    filter: none;
}

/* РљРЅРѕРїРєР° "Р—Р°Р±СЂРѕРЅРёСЂРѕРІР°С‚СЊ" */
.nav-book-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 10px 24px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}
.nav-book-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: #c9a84c;
    color: #c9a84c;
}

/* =========================================================
   HERO CONTENT вЂ” С†РµРЅС‚СЂР°Р»СЊРЅС‹Р№ С‚РµРєСЃС‚
   ========================================================= */
.hero-content {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: max-content;
    max-width: 600px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    animation: heroContentIn 1.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroContentIn {
    from { opacity: 0; transform: translateX(-50%) translateY(25px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-headline {
    font-family: 'Prata', Georgia, serif;
    font-style: italic;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.12;
    background: linear-gradient(110deg,
        #1a2a5e 0%,
        #2d4b85 38%,
        #c9a84c 60%,
        #f1cf72 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 28px;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.18);
    filter: drop-shadow(0 3px 12px rgba(0,0,0,0.65)) drop-shadow(0 1px 3px rgba(0,0,0,0.9));
}
.hero-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,134,10,0.9), transparent);
    margin: 0 auto 28px;
}
.hero-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #c8860a 0%, #f5d06e 50%, #c8860a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-decoration: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(200,134,10,0.6);
    transition: border-color 0.3s, gap 0.3s, filter 0.3s;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}
.hero-explore-btn:hover {
    color: #a0722a;
    border-color: #f5d06e;
    gap: 20px;
    filter: drop-shadow(0 2px 8px rgba(200,134,10,0.7));
}

/* =========================================================
   РџРђРќР•Р›Р¬ Р‘Р РћРќРР РћР’РђРќРРЇ вЂ” РїСЂР°РІС‹Р№ РІРµСЂС…РЅРёР№ СѓРіРѕР»
   ========================================================= */
/* =========================================================
   ROOM SWITCHER — MIDNIGHT GALLERY
   ========================================================= */
.hero-bg-photo {
    transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1), filter 0.48s ease;
    will-change: opacity;
}
.hero-bg-photo.is-changing {
    opacity: 0.76;
    filter: saturate(0.9) brightness(0.92);
}

.room-switcher {
    position: absolute;
    top: 104px;
    left: 28px;
    z-index: 15;
    width: 316px;
    padding: 24px 26px 20px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(53, 63, 83, 0.84) 0%, rgba(30, 39, 59, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    box-shadow: 0 24px 70px rgba(4, 9, 20, 0.22), inset 0 1px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px) saturate(108%);
    -webkit-backdrop-filter: blur(14px) saturate(108%);
    transform-origin: 0 50%;
    will-change: transform, opacity, filter, clip-path;
    animation: roomSwitcherIn 1.05s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes roomSwitcherIn {
    0% {
        opacity: 0;
        filter: blur(8px);
        clip-path: inset(0 22% 0 0 round 2px);
        transform: perspective(900px) translate3d(-54px, 24px, 0) scale(0.95) rotateY(7deg);
    }
    68% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(900px) translate3d(4px, -2px, 0) scale(1.006) rotateY(-0.6deg);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(900px) translate3d(0, 0, 0) scale(1) rotateY(0);
    }
}

.room-switcher::after,
.booking-panel-fixed::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 44%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 195, 112, 0.82), transparent);
    content: '';
    opacity: 0;
    pointer-events: none;
    transform: translateX(-110%);
    animation: panelAccentReveal 0.9s 1.06s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.room-switcher-top,
.room-switcher-heading,
.room-switch-btn,
.room-switch-book,
.booking-panel-fixed .guarantee,
.booking-panel-fixed .panel-title,
.booking-panel-fixed .input-group,
.booking-panel-fixed .btn-search {
    animation: panelContentRise 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.room-switcher-top { animation-delay: 0.72s; }
.room-switcher-heading { animation-delay: 0.79s; }
.room-switch-btn:nth-child(1) { animation-delay: 0.86s; }
.room-switch-btn:nth-child(2) { animation-delay: 0.92s; }
.room-switch-btn:nth-child(3) { animation-delay: 0.98s; }
.room-switch-book { animation-delay: 1.04s; }

@keyframes panelContentRise {
    from {
        opacity: 0;
        transform: translateY(13px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panelAccentReveal {
    0% {
        opacity: 0;
        transform: translateX(-110%);
    }
    45% { opacity: 0.8; }
    100% {
        opacity: 0.45;
        transform: translateX(230%);
    }
}

.room-switcher-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 18px;
}
.room-switcher-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}
.room-switcher-logo {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    object-fit: contain;
    margin: -14px -8px -14px -16px;
    filter: brightness(0) invert(1);
    clip-path: inset(0 0 35% 0);
    -webkit-clip-path: inset(0 0 35% 0);
    opacity: 0.88;
}
.room-switcher-brand span,
.room-switcher-brand small {
    display: block;
    white-space: nowrap;
}
.room-switcher-brand span {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.8px;
}
.room-switcher-brand small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.38);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.room-switcher-counter {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.46);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.room-switcher-heading {
    margin: 20px 0 0;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.34);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.room-switcher-list { display: grid; }
.room-switch-btn {
    position: relative;
    width: 100%;
    min-height: 52px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.42);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    text-align: left;
    transition: color 0.3s ease, padding 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-switch-btn:last-child { border-bottom: 0; }
.room-switch-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 0;
    background: #c9a84c;
    transform: translateY(-50%);
    transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-switch-btn:hover { color: rgba(255, 255, 255, 0.76); }
.room-switch-btn.active {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 12px;
    color: #fff;
}
.room-switch-btn.active::before { height: 36px; }
.room-switch-btn:focus-visible {
    outline: 1px solid rgba(201, 168, 76, 0.85);
    outline-offset: 4px;
}
.room-switch-index {
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.room-switch-btn.active .room-switch-index { color: #c9a84c; }
.room-switch-copy {
    min-width: 0;
    display: block;
}
.room-switch-btn.active .room-switch-copy {
    animation: roomCopyReveal 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes roomCopyReveal {
    from { opacity: 0.62; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.room-switch-copy strong,
.room-switch-copy small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.room-switch-copy strong {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.7px;
    transition: font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
}
.room-switch-btn:hover .room-switch-copy strong { transform: translateX(3px); }
.room-switch-btn.active .room-switch-copy strong {
    font-size: 27px;
    transform: none;
}
.room-switch-copy small {
    max-height: 0;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.46);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.35px;
    opacity: 0;
    transform: translateY(4px);
    transition: max-height 0.32s ease, margin 0.32s ease, opacity 0.3s ease, transform 0.38s ease;
}
.room-switch-btn.active .room-switch-copy small {
    max-height: 18px;
    margin-top: 7px;
    opacity: 1;
    transform: translateY(0);
}
.room-switch-arrow {
    color: #c9a84c;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-switch-btn:hover .room-switch-arrow,
.room-switch-btn.active .room-switch-arrow {
    opacity: 1;
    transform: translateX(0);
}

.room-switch-book {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 14px 16px;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 2px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.room-switch-book:hover,
.room-switch-book:focus-visible {
    color: #111827;
    background: #f7f5f0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}
.room-switch-book:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.62);
    outline-offset: 3px;
}
.booking-panel-fixed {
    position: absolute;
    top: 104px;
    right: 28px;
    z-index: 15;
    width: 390px;
    padding: 26px 28px 28px;
    overflow: hidden;
    background:
        linear-gradient(215deg, rgba(53, 63, 83, 0.84) 0%, rgba(30, 39, 59, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    box-shadow: 0 24px 70px rgba(4, 9, 20, 0.22), inset 0 1px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px) saturate(108%);
    -webkit-backdrop-filter: blur(14px) saturate(108%);
    transform-origin: 100% 50%;
    will-change: transform, opacity, filter, clip-path;
    animation: panelSlideIn 1.05s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes panelSlideIn {
    0% {
        opacity: 0;
        filter: blur(8px);
        clip-path: inset(0 0 0 22% round 2px);
        transform: perspective(900px) translate3d(54px, 24px, 0) scale(0.95) rotateY(-7deg);
    }
    68% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(900px) translate3d(-4px, -2px, 0) scale(1.006) rotateY(0.6deg);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(900px) translate3d(0, 0, 0) scale(1) rotateY(0);
    }
}

.booking-panel-fixed::after {
    right: 0;
    left: auto;
    transform: translateX(110%);
    animation-name: panelAccentRevealRight;
    animation-delay: 1.14s;
}

.booking-panel-fixed .guarantee { animation-delay: 0.8s; }
.booking-panel-fixed .panel-title { animation-delay: 0.87s; }
.booking-panel-fixed .input-group:nth-child(1) { animation-delay: 0.94s; }
.booking-panel-fixed .input-group:nth-child(2) { animation-delay: 1s; }
.booking-panel-fixed .input-group:nth-child(3) { animation-delay: 1.06s; }
.booking-panel-fixed .btn-search { animation-delay: 1.12s; }

@keyframes panelAccentRevealRight {
    0% {
        opacity: 0;
        transform: translateX(110%);
    }
    45% { opacity: 0.8; }
    100% {
        opacity: 0.45;
        transform: translateX(-230%);
    }
}

@keyframes roomSwitcherMobileIn {
    0% {
        opacity: 0;
        filter: blur(7px);
        clip-path: inset(24% 0 0 0 round 2px);
        transform: perspective(800px) translate3d(0, 42px, 0) scale(0.96) rotateX(-4deg);
    }
    70% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(800px) translate3d(0, -3px, 0) scale(1.004) rotateX(0.4deg);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 2px);
        transform: perspective(800px) translate3d(0, 0, 0) scale(1) rotateX(0);
    }
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: rgba(201, 168, 76, 0.82);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.panel-title {
    margin-bottom: 4px;
    padding-bottom: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-booking-form {
    display: flex;
    flex-direction: column;
}
.input-group {
    padding: 13px 2px 12px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    transition: border-color 0.3s ease;
}
.input-group:focus-within { border-bottom-color: rgba(201, 168, 76, 0.65); }
.input-group label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.37);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.input-group input,
.input-group select {
    width: 100%;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
}
.input-group select option { color: #fff; background-color: #10182b; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.45); }

.btn-search {
    margin-top: 18px;
    padding: 15px 18px;
    color: #10182b;
    background: #eee8db;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 1px;
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.btn-search:hover {
    background: #fff;
    transform: translateY(-1px);
}
.btn-search:focus-visible {
    outline: 1px solid rgba(201, 168, 76, 0.9);
    outline-offset: 4px;
}
.mouse::before {
    content: '';
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px;
    background-color: #c9a84c;
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}
@keyframes scrollBounce { 0%,100%{opacity:1} 50%{opacity:0.5} }
@keyframes scrollDot { 0%{top:6px;opacity:1} 100%{top:18px;opacity:0} }

/* Р В РЎвЂєР В Р вЂ Р В Р’ВµР РЋР вЂљР В Р’В»Р В Р’ВµР В РІвЂћвЂ“ Р В РЎВР В Р’ВµР В Р вЂ¦Р РЋР вЂ№ */
body.menu-open { overflow: hidden; }

.menu-overlay-fullscreen {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.20), rgba(15, 15, 25, 0.25));
    -webkit-backdrop-filter: blur(24px) saturate(120%) brightness(0.88);
    backdrop-filter: blur(24px) saturate(120%) brightness(0.88);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: scale(1.025);
    transition:
        opacity 0.5s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.7s;
}

.menu-overlay-fullscreen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

.menu-overlay-fullscreen.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition-delay: 0s;
}

.menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay-fullscreen.active .menu-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.close-btn {
    position: absolute;
    left: 28px;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: color 0.25s ease;
}

.close-icon {
    position: relative;
    width: 27px;
    height: 27px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 2px;
    width: 23px;
    height: 1px;
    background: currentColor;
}

.close-icon::before { transform: rotate(45deg); }
.close-icon::after { transform: rotate(-45deg); }
.close-btn:hover { color: #fff; }
.close-btn:hover .close-icon { transform: rotate(90deg); }
.close-btn:focus-visible,
.menu-overlay-fullscreen .nav-links a:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.9);
    outline-offset: 7px;
}

.menu-content {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: min(720px, calc(100% - 48px));
    margin: auto 0;
    padding: 108px 0 84px;
}

.menu-kicker {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.menu-overlay-fullscreen.active .menu-kicker {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
}

.menu-overlay-fullscreen .nav-links {
    list-style: none;
    width: 100%;
    text-align: left;
}

.menu-overlay-fullscreen .nav-links li {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    transition:
        opacity 0.35s ease,
        filter 0.55s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay-fullscreen.active .nav-links li {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.menu-overlay-fullscreen.active .nav-links li:nth-child(1) { transition-delay: 0.18s; }
.menu-overlay-fullscreen.active .nav-links li:nth-child(2) { transition-delay: 0.25s; }
.menu-overlay-fullscreen.active .nav-links li:nth-child(3) { transition-delay: 0.32s; }
.menu-overlay-fullscreen.active .nav-links li:nth-child(4) { transition-delay: 0.39s; }
.menu-overlay-fullscreen.active .nav-links li:nth-child(5) { transition-delay: 0.46s; }

.menu-overlay-fullscreen .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 11px 8px 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4.2vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3px;
    transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay-fullscreen .nav-links a::after {
    content: '→';
    position: absolute;
    right: 8px;
    color: rgba(255, 255, 255, 0);
    font-size: 22px;
    font-weight: 300;
    transform: translateX(-12px);
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay-fullscreen .nav-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.menu-overlay-fullscreen .nav-links a:hover::after {
    color: rgba(255, 255, 255, 0.75);
    transform: translateX(0);
}

@media (max-width: 600px) {
    .menu-header { height: 66px; }
    .close-btn { left: 12px; padding: 0 10px; }
    .menu-content { width: calc(100% - 44px); }
    .menu-kicker {
        margin-bottom: 20px;
        font-size: 9px;
        letter-spacing: 3px;
    }
    .menu-overlay-fullscreen .nav-links a {
        gap: 15px;
        padding: 14px 4px;
        font-size: clamp(24px, 8vw, 36px);
        letter-spacing: 1.5px;
    }
    .menu-overlay-fullscreen .nav-links a::after { display: none; }
}

@media (max-height: 620px) {
    .menu-content { padding-top: 88px; padding-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .menu-overlay-fullscreen,
    .menu-header,
    .menu-kicker,
    .menu-overlay-fullscreen .nav-links li {
        transition-duration: 0.01ms;
        transition-delay: 0s !important;
    }
}


/* =========================================================
   Р В РЎвЂєР В Р Р‹Р В РЎС›Р В РЎвЂ™Р В РІР‚С”Р В Р’В¬Р В РЎСљР В Р’В«Р В РІР‚Сћ Р В РІР‚ВР В РІР‚С”Р В РЎвЂєР В РЎв„ўР В Р’В (Р В РЎСљР В РЎвЂР В Р’В¶Р В Р’Вµ Hero)
   ========================================================= */

/* Р В РІР‚ВР В Р’В»Р В РЎвЂўР В РЎвЂќ 3: Р В РЎв„ўР В Р’В°Р РЋРІР‚С™Р В Р’В°Р В Р’В»Р В РЎвЂўР В РЎвЂ“ */
.catalog { padding: 100px 0; background-color: #fff; }
.tabs { display: flex; justify-content: center; margin-bottom: 40px; gap: 12px; flex-wrap: wrap; }
.tab-btn {
    background: none; border: 1.5px solid #c5d3e8;
    padding: 10px 22px; color: #1a2a5e;
    font-family: inherit; font-size: 13px; font-weight: 600;
    border-radius: 2px; letter-spacing: 0.5px;
    transition: all 0.25s;
}
.tab-btn.active, .tab-btn:hover {
    background-color: #1a2a5e; color: #fff; border-color: #1a2a5e;
}
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.room-card {
    background-color: #fff;
    border: 1px solid #e4ecf7;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 35px rgba(26,42,94,0.12); }
.room-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #c5d3e8, #e4ecf7);
    display: flex; align-items: center; justify-content: center;
    color: #6b89b8; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px;
}
.room-info { padding: 25px; }
.room-info h3 { font-size: 16px; margin-bottom: 8px; color: #1a2a5e; line-height: 1.3; font-weight: 600; }
.room-info .price { font-size: 17px; font-weight: 700; color: #c9a84c; margin-bottom: 20px; }
.room-actions { display: flex; gap: 10px; }
.room-actions button { flex: 1; font-size: 12px; padding: 10px 5px; }

/* Блок 5 и 6: дополнительные услуги — Pearl Luxury */
.additional {
    position: relative;
    overflow: hidden;
    padding: 128px 0 140px;
    background:
        radial-gradient(circle at 8% 18%, rgba(191, 153, 82, 0.16), transparent 32%),
        radial-gradient(circle at 92% 85%, rgba(92, 118, 149, 0.1), transparent 34%),
        linear-gradient(145deg, #fbfaf6 0%, #f2ede4 54%, #f8f5ee 100%);
    color: #17273c;
}
.additional::before {
    content: '';
    position: absolute;
    top: -280px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(177, 137, 65, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 0 68px rgba(202, 169, 104, 0.055),
        0 0 0 138px rgba(202, 169, 104, 0.035);
    pointer-events: none;
}
.additional::after {
    content: 'DS';
    position: absolute;
    bottom: -148px;
    left: -42px;
    color: rgba(24, 42, 64, 0.035);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 410px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -28px;
    pointer-events: none;
}
.additional .container {
    position: relative;
    z-index: 1;
}
.additional-heading {
    margin-bottom: 64px;
}
.additional-heading h2 {
    max-width: 980px;
    margin: 0;
    color: #17273c;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 0.94;
    text-align: left;
}
.additional-heading h2 em {
    color: #a77d38;
    font-weight: 400;
}
.additional-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.luxury-panel {
    position: relative;
    min-width: 0;
    padding: 42px 42px 36px;
    border: 1px solid rgba(177, 137, 65, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.72));
    box-shadow: 0 24px 60px rgba(29, 45, 64, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.luxury-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 42px;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, #d9bb7c, rgba(217, 187, 124, 0));
}
.additional-panel-heading {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
}
.additional-panel-number {
    display: none;
}
.additional-panel-kicker {
    display: block;
    margin-bottom: 3px;
    color: rgba(145, 105, 42, 0.78);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.2px;
    line-height: 1.5;
    text-transform: uppercase;
}
.additional-panel-heading h3 {
    margin: 0;
    color: #17273c;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.08;
}
.additional-panel-mark {
    display: none;
}
.amenities-list ul {
    margin: 27px 0 0;
    list-style: none;
}
.amenities-list li {
    display: grid;
    grid-template-columns: auto minmax(20px, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 19px 0;
    border-top: 1px solid rgba(29, 48, 70, 0.1);
    color: #17273c;
}
.additional-item-index {
    display: none;
}
.additional-item-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}
.additional-item-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(167, 125, 56, 0.22), transparent);
}
.additional-item-price,
.paid-service-card .price {
    color: #9a6e28;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.additional-item-price small,
.paid-service-card .price small {
    color: rgba(130, 91, 31, 0.78);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.paid-services-list {
    display: grid;
    gap: 12px;
    margin-top: 27px;
}
.paid-service-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 126px;
    margin: 0;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(177, 137, 65, 0.22);
    border-radius: 0;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 233, 0.58));
    box-shadow: 0 10px 28px rgba(29, 45, 64, 0.055);
    transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}
.paid-service-card::after {
    content: '';
    position: absolute;
    right: -58px;
    bottom: -76px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(167, 125, 56, 0.12);
    border-radius: 50%;
}
.paid-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 125, 56, 0.44);
    background-color: rgba(255, 255, 255, 0.82);
}
.paid-service-card h4 {
    margin: 0 0 5px;
    color: #17273c;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}
.paid-service-card p {
    margin: 0;
    color: rgba(23, 39, 60, 0.5);
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.5;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .additional { padding: 96px 0 104px; }
    .additional-heading { margin-bottom: 46px; }
    .additional-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .additional { padding: 76px 0 82px; }
    .additional::after {
        bottom: -60px;
        font-size: 210px;
    }
    .additional-heading { margin-bottom: 36px; }
    .additional-heading h2 {
        font-size: clamp(38px, 11.6vw, 48px);
        letter-spacing: -0.8px;
        line-height: 0.98;
    }
    .luxury-panel { padding: 28px 22px 22px; }
    .luxury-panel::before { left: 22px; }
    .additional-panel-heading {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 12px;
    }
    .additional-panel-number { font-size: 38px; }
    .additional-panel-heading h3 { font-size: 25px; }
    .additional-panel-mark {
        width: 28px;
        height: 28px;
    }
    .amenities-list li {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 17px 0;
    }
    .additional-item-line { display: none; }
    .additional-item-name { font-size: 18px; }
    .additional-item-price,
    .paid-service-card .price { font-size: 16px; }
    .additional-item-price small,
    .paid-service-card .price small { font-size: 7px; }
    .paid-service-card {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 8px;
        min-height: 0;
        padding: 20px 16px;
    }
    .paid-service-card .price {
        grid-column: 2;
        margin-top: 8px;
    }
    .paid-service-card h4 { font-size: 21px; }
}

/* Р В РІР‚ВР В Р’В»Р В РЎвЂўР В РЎвЂќ 7: Р В РЎв„ўР В РЎвЂўР В Р вЂ¦Р РЋРІР‚С™Р В Р’В°Р В РЎвЂќР РЋРІР‚С™Р РЋРІР‚в„– */
.contacts { padding: 100px 0; background-color: #fff; }
.contacts-wrapper {
    display: flex;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(26,42,94,0.1);
    border-radius: 4px; overflow: hidden;
    border: 1px solid #e4ecf7;
}
.map-placeholder {
    position: relative; flex: 1; overflow: hidden;
    background: linear-gradient(135deg, #edf0eb, #f7f5ef);
    display: flex; align-items: center; justify-content: center;
    color: #6b89b8; min-height: 400px; font-size: 15px;
}
.map-placeholder iframe {
    position: absolute; left: 0; right: 0; top: -64px; bottom: 0;
    width: 100%; height: calc(100% + 64px);
    min-height: 464px; border: 0;
}
.contact-info { flex: 1; padding: 50px; }
.contact-info h3 { font-size: 24px; margin-bottom: 20px; font-family: 'Cormorant Garamond', Georgia, serif; color: #1a2a5e; }
.contact-info p { margin-bottom: 15px; font-size: 15px; color: #3a5a8a; }
.contact-info .contact-address {
    max-width: 430px; font-size: 19px; line-height: 1.6;
    font-weight: 500; color: #1a2a5e;
}
.contact-address strong { font-weight: 700; }
.phones-list { display: flex; flex-direction: column; margin-top: 20px; gap: 10px; }
.phones-list a { color: #1a2a5e; font-weight: 700; font-size: 18px; text-decoration: none; transition: color 0.2s; }
.phones-list a:hover { color: #c9a84c; }

/* Р В РЎСџР В РЎвЂўР В РўвЂР В Р вЂ Р В Р’В°Р В Р’В» */
.footer {
    background: linear-gradient(135deg, #1e3f7e 0%, #2a52a0 100%);
    color: rgba(255,255,255,0.45);
    padding: 30px 0;
    border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #c9a84c; font-size: 18px; letter-spacing: 2px;
}
.footer-legal a {
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 13px; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55); text-decoration: none;
    transition: color 0.25s ease;
}
.footer-legal a:hover, .footer-legal a:focus-visible { color: #c9a84c; }
@media (max-width: 640px) {
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}


/* =========================================================
   Р В РЎС™Р В РЎвЂєР В РІР‚СњР В РЎвЂ™Р В РІР‚С”Р В Р’В¬Р В РЎСљР В Р’В«Р В РІР‚Сћ Р В РЎвЂєР В РЎв„ўР В РЎСљР В РЎвЂ™
   ========================================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 20, 60, 0.75);
    z-index: 4000;
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.modal-overlay.active { display: flex; }
.modal-box {
    background-color: #fff; width: 90%; max-width: 600px; padding: 40px; position: relative;
    box-shadow: 0 25px 60px rgba(26,42,94,0.3);
    /* dvh: на телефонах адресная строка не срезает окно */
    max-height: min(90dvh, 800px); overflow-y: auto; display: none;
    border-top: 3px solid #c9a84c;
    border-radius: 2px;
}

/* Форма бронирования длиннее экрана, поэтому у неё своя раскладка:
   заголовок и кнопка отправки закреплены, прокручиваются только поля.
   Иначе крестик закрытия уезжал вверх вместе с содержимым. */
#bookingModal.modal-box {
    display: none;
    padding: 0;
    overflow: hidden;
}

#bookingModal {
    flex-direction: column;
}

#bookingModal #bookingForm {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.modal-head {
    flex-shrink: 0;
    padding: 34px 40px 0;
}

.modal-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0 40px 6px;
    scrollbar-width: thin;
    scrollbar-color: #dce4f0 transparent;
}

.modal-scroll::-webkit-scrollbar { width: 6px; }
.modal-scroll::-webkit-scrollbar-thumb { background: #dce4f0; }

.modal-foot {
    flex-shrink: 0;
    padding: 16px 40px 28px;
    border-top: 1px solid #dce4f0;
    background: #fff;
}

.modal-foot .checkbox-group { margin-bottom: 14px; }

/* Знак на экране «Заявка отправлена»: тонкий круг с золотой галочкой
   вместо цветного эмодзи */
.success-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    place-items: center;
    border: 1px solid rgba(201,168,76,0.48);
    border-radius: 50%;
    color: #c9a84c;
    font-size: 30px;
    line-height: 1;
}

@media (max-width: 620px) {
    .modal-head { padding: 28px 22px 0; }
    .modal-scroll { padding: 0 22px 6px; }
    .modal-foot { padding: 14px 22px 22px; }
}
.close-modal {
    position: absolute; top: 20px; right: 20px; font-size: 28px;
    color: #aaa; cursor: pointer; transition: color 0.2s;
}
.close-modal:hover { color: #1a2a5e; }
.amenities-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 14px 0 20px;
}
.amenities-icons span {
    font-family: 'Golos Text', 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #667694;
}
.amenities-icons span + span {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #dce4f0;
}

.modal-slider {
    height: 250px;
    background: linear-gradient(135deg, #c5d3e8, #e4ecf7);
    display: flex; align-items: center; justify-content: center;
    color: #6b89b8; margin-bottom: 20px;
}
#modalRoomTitle { text-align: left; margin-bottom: 10px; font-size: 24px; font-family: 'Cormorant Garamond', Georgia, serif; color: #1a2a5e; }
.room-desc { font-size: 14px; color: #5a7aaa; margin-bottom: 20px; }
.amenities-icons { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 14px; color: #3a5a8a; }
.prices-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.prices-table th, .prices-table td { border-bottom: 1px solid #e4ecf7; padding: 10px; text-align: left; }
.prices-table th { font-weight: 600; color: #6b89b8; font-size: 13px; }
.prices-table td { font-weight: 700; color: #1a2a5e; }
.modal-title-left { text-align: left; margin-bottom: 30px; font-size: 28px; font-family: 'Cormorant Garamond', Georgia, serif; color: #1a2a5e; }
.form-row { display: flex; gap: 20px; margin-bottom: 15px; }
.form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 15px; }
.form-group label {
    font-size: 11px; font-weight: 700; color: #6b89b8;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1.2px;
}
.form-group input, .form-group select {
    padding: 12px; border: 1.5px solid #c5d3e8;
    font-family: inherit; font-size: 14px; outline: none;
    border-radius: 2px; color: #1a2a5e;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: #1a2a5e; }
.checkbox-group { flex-direction: row; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; accent-color: #1a2a5e; }
.checkbox-group label {
    text-transform: none; font-weight: 400; font-size: 12px;
    color: #5a7aaa; cursor: pointer; margin-bottom: 0;
}

/* Р В РЎвЂ™Р В РўвЂР В Р’В°Р В РЎвЂ”Р РЋРІР‚С™Р В РЎвЂР В Р вЂ Р В Р вЂ¦Р В РЎвЂўР РЋР С“Р РЋРІР‚С™Р РЋР Р‰ */
@media (max-width: 900px) {
    .top-info { display: none; }
    .booking-panel-fixed { display: none; }
    .left-nav { display: none; }
    .hero-fullscreen h1 { font-size: 40px; }
    .contacts-wrapper { flex-direction: column; }
    .map-placeholder { min-height: 300px; }
    .map-placeholder iframe { min-height: 364px; }
}
@media (max-width: 600px) {
    .nav-left { left: 16px; }
    .nav-right { right: 16px; }
    .form-row { flex-direction: column; gap: 0; }
    .modal-box { padding: 25px; }
    .contact-info .contact-address { font-size: 17px; }
}
/* Адаптация Midnight Gallery */
@media (max-width: 1360px) and (min-width: 901px) {
    .room-switcher {
        left: 20px;
        width: 286px;
        padding: 22px 22px 18px;
    }
    .booking-panel-fixed {
        right: 20px;
        width: 360px;
        padding: 24px 26px 26px;
    }
    .hero-content { max-width: 470px; }
    .hero-headline { font-size: 50px; }
}

@media (max-width: 1280px) and (min-width: 901px) {
    .booking-panel-fixed { display: none; }
    .hero-content {
        left: 62%;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .hero-fullscreen {
        height: 100svh;
        min-height: 680px;
    }
    .hero-content {
        top: 27%;
        bottom: auto;
        left: 50%;
        width: calc(100% - 40px);
        max-width: 620px;
    }
    .room-switcher {
        top: auto;
        right: 20px;
        bottom: 18px;
        left: 20px;
        width: auto;
        padding: 14px 18px 12px;
        background:
            linear-gradient(145deg, rgba(53, 63, 83, 0.88) 0%, rgba(30, 39, 59, 0.9) 100%);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(14px) saturate(110%);
        -webkit-backdrop-filter: blur(14px) saturate(110%);
        transform-origin: 50% 100%;
        animation-name: roomSwitcherMobileIn;
    }
    .room-switcher-top { display: none; }
    .room-switcher-heading {
        margin: 0 0 7px;
        padding: 0 0 8px;
    }
    .room-switcher-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .room-switch-btn {
        min-height: 54px;
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 8px;
        padding: 11px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.075);
        border-bottom: 0;
    }
    .room-switch-btn:last-child { border-right: 0; }
    .room-switch-btn::before {
        top: auto;
        bottom: 0;
        left: 14px;
        width: 0;
        height: 1px;
        transform: none;
        transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .room-switch-btn.active {
        padding: 11px 14px;
    }
    .room-switch-btn.active::before {
        width: calc(100% - 28px);
        height: 1px;
    }
    .room-switch-copy strong,
    .room-switch-btn.active .room-switch-copy strong { font-size: 17px; }
    .room-switch-btn.active .room-switch-copy small {
        max-height: 15px;
        margin-top: 4px;
    }
    .room-switch-arrow { display: none; }
    .room-switch-book {
        margin-top: 8px;
        padding: 11px 14px;
    }
    .scroll-indicator { display: none; }
}

@media (max-width: 600px) {
    .site-nav { padding: 0 12px; }
    .nav-left {
        left: 12px;
        width: 74px;
    }
    .nav-right {
        right: 12px;
        width: 128px;
    }
    .nav-logo-img { height: 190px; }
    .hero-content {
        top: 25%;
        width: calc(100% - 28px);
    }
    .hero-headline {
        max-width: 330px;
        margin-right: auto;
        margin-bottom: 20px;
        margin-left: auto;
        font-size: clamp(29px, 8vw, 34px);
    }
    .hero-divider { margin-bottom: 20px; }
    .room-switcher {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 10px 12px 9px;
    }
    .room-switcher-heading { display: none; }
    .room-switcher-list {
        grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    }
    .room-switch-btn {
        min-height: 48px;
        grid-template-columns: 16px minmax(0, 1fr);
        gap: 5px;
        padding: 9px 7px;
    }
    .room-switch-btn::before { left: 7px; }
    .room-switch-btn.active { padding: 9px 7px; }
    .room-switch-btn.active::before { width: calc(100% - 14px); }
    .room-switch-index { font-size: 7px; }
    .room-switch-copy strong,
    .room-switch-btn.active .room-switch-copy strong { font-size: 14px; }
    .room-switch-copy small { font-size: 7px; }
    .room-switch-btn.active .room-switch-copy small {
        max-height: 12px;
        margin-top: 3px;
    }
    .room-switch-book {
        margin-top: 7px;
        padding: 10px 12px;
        font-size: 7.5px;
        letter-spacing: 1.4px;
    }
    .nav-book-btn {
        width: 128px;
        padding: 9px 8px;
        overflow: hidden;
        font-size: 10px;
        letter-spacing: 1px;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .room-switch-btn {
        grid-template-columns: minmax(0, 1fr);
        padding-right: 5px;
        padding-left: 5px;
    }
    .room-switch-index { display: none; }
    .room-switch-copy strong,
    .room-switch-btn.active .room-switch-copy strong { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
    .room-switcher,
    .booking-panel-fixed,
    .room-switcher::after,
    .booking-panel-fixed::after,
    .room-switcher-top,
    .room-switcher-heading,
    .room-switch-btn,
    .room-switch-book,
    .booking-panel-fixed .guarantee,
    .booking-panel-fixed .panel-title,
    .booking-panel-fixed .input-group,
    .booking-panel-fixed .btn-search,
    .hero-bg-photo { animation: none; transition: none; }
}
