/**** HEADER ****/
.mobileMenu{
    display: none;
    align-items: center;
}
.mobileBurgerBtn{
    position: relative;
    z-index: 1001;
    cursor:pointer;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.burgerIcon{
    width:35px;
    height:35px;
}

.burgerIcon line{
    fill:none;
    stroke:#000;
    stroke-width:2;
    stroke-linecap:round;
    transform-origin:center;
    transition:
        transform .35s ease,
        opacity .25s ease,
        stroke .25s ease;
}

.mobileBurgerBtn.active .burgerIcon line{
    stroke:#fff;
}

.mobileBurgerBtn.active .top{
    transform:translateY(6px) rotate(45deg);
}

.mobileBurgerBtn.active .middle{
    opacity:0;
}

.mobileBurgerBtn.active .bottom{
    transform:translateY(-6px) rotate(-45deg);
}

.mobileContacts{
    padding-left: 10px;
    margin-top: auto;
    display:flex;
    flex-direction:column;
    gap:28px;
    color:#fff;
}

.mobileAddress{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.mobileAddress svg{
    width:24px;
    height:24px;
    stroke:var(--bz-color-accent);
    flex-shrink:0;
    margin-top:3px;
}

.mobileAddress a{
    color:#fff;
    text-decoration:none;
    line-height:1.6;
    font-size:17px;
}

.mobilePhones{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.mobilePhones a{
    color:#fff;
    font-size:22px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.mobilePhones a:hover{
    color:var(--bz-color-accent);
}

.headerBookingBtn__Mobile{
    margin-top:45px;
}

.mobileMenuOpen {
    overflow: hidden;
}

.mobileDropMenu {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #000000ab;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:130px 24px 60px;
    pointer-events:none;
}

.mobileDropMenu.active{
    display: flex;
    flex-direction: column;
    padding: 130px 10px 100px 10px;
    justify-content: space-between;
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}
.headerMenu__Mobile>*,
.mobileContacts,
.headerBookingBtn__Mobile{
    opacity:0;
    transform:translateY(20px);
    transition:.45s ease;
}

.mobileDropMenu.active .headerMenu__Mobile>*,
.mobileDropMenu.active .mobileContacts,
.mobileDropMenu.active .headerBookingBtn__Mobile{
    opacity:1;
    transform:translateY(0);
}

.mobileDropMenu.active .headerMenu__Mobile>*:nth-child(1){transition-delay:.05s;}
.mobileDropMenu.active .headerMenu__Mobile>*:nth-child(2){transition-delay:.1s;}
.mobileDropMenu.active .headerMenu__Mobile>*:nth-child(3){transition-delay:.15s;}
.mobileDropMenu.active .headerMenu__Mobile>*:nth-child(4){transition-delay:.2s;}
.mobileDropMenu.active .mobileContacts{transition-delay:.3s;}
.mobileDropMenu.active .headerBookingBtn__Mobile{transition-delay:.4s;}

.headerMenu__Mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.headerMenu__Mobile *, .headerBookingBtn__Mobile {
    color: var(--bz-color-white);
    font-size: 24px;
    padding-left: 10px;
}

.headerBookingBtn__Mobile {
    text-align: center;
    background: var(--bz-color-accent);
    border-radius: 100px;
    padding: 10px;
}


.header {
    position: relative;
    width: 100%;
    height: 120px;
    background: var(--bz-color-white);
    z-index: 999;
}
.headerBlock {
    /*width: 1620px;*/
    width: 1406px;
    height: 120px;
    margin: 0 auto;
}
.headerLocked {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.headerLogotype {
    display: flex;
    align-items: center;
    width: 206px;
    height: 120px;
    padding: 0 55px 0 0;
    z-index: 1000;
}
.headerLogotype img {
    width: 100%;
}
.headerDateAndWeather {
    width: 206px;
    height: 120px;
    padding: 0 0 0 55px;
}
.headerContact {
    display: flex;
    justify-content: space-between;
    width: var(--bz-max-width);
    height: 60px;
}
.headerContactAddress {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--bz-color-black);
}
.headerContactCall {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.headerContactCall a {
    font-weight: 500;
    transition: var(--bz-02-seconds);
}
.headerContactCall a:hover {
    color: var(--bz-color-accent);
}
.headerContactCall svg {
    width: 20px;
    height: 20px;
}
.burgerMenuSocial svg {
    width: 30px;
    height: 30px;
}
.headerContactCall button, .burgerMenuSocial button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.burgerMenuSocial {
    display: flex;
    gap: 10px;
}
.headerDate {
    display: flex;
    align-items: center;
    font-size: 14px;
    height: 60px;
}
.headerWeather {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 60px;
    padding: 10px 0;
}
.headerWeatherText {
    font-size: 16px;
    margin: 0 10px 0 0;
    font-weight: 500;
    color: var(--bz-color-black);
}
.headerWeatherText span {
    color: var(--bz-color-extra-accent);
}
.headerFixed {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    /*border-bottom: 1px solid var(--bz-color-lgray);*/
}
.headerFixed.active {
  position: fixed;
  z-index: 1;
  top:0;
  backdrop-filter: blur(8px) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
}

.headerFidexMenu {
    display: flex;
    align-items: center;
    width: var(--bz-max-width);
    height: 60px;
    margin: 0 auto;
}
.headerBookingBtn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--bz-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    background: var(--bz-color-accent);
    height: var(--bz-button-height);
    border-radius: var(--bz-border-radius);
    transition: var(--bz-02-seconds);
}
.headerBookingBtn:hover {
    background: var(--bz-color-accent-hover);
    color: var(--bz-color-white);
}
.headerMenu {
    gap: 50px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0 55px 0 0;
}
.headerMenuLink {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--bz-color-black);
    transition: var(--bz-02-seconds);
    padding: 10px;
}
.headerMenuLink:hover {
    color: var(--bz-color-accent);
}



/**** BANNER ****/
.mainBannerBlock {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--bz-color-lgray);
}
.mainBannerImage {
    width: 100%;
    height: 100%;
}
.mainBannerImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mainBookingBlock {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.mainBooking {
    margin: 0 auto;
    width: var(--bz-max-width);
    height: 90px;
    padding: 20px;
    background: rgba(255, 255, 255, .5);
}
.mainBookingForm {
    display: flex;
}
.mainBookingInputBlock {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 20px 0 0;
    border: 1px solid var(--bz-color-lgray);
    background: var(--bz-color-white);
    height: 50px;
    border-radius: var(--bz-border-radius);
}
.mainBookingInputArea {
    display: flex;
    flex-direction: column;
    flex: auto;
    width: 30%;
    padding: 7px 12px;
    cursor: pointer;
}
.mainBookingInputArea:nth-child(2) {
    border-right: 1px solid var(--bz-color-lgray);
}
.mainBookingInputArea:nth-child(3) {
    border-right: 1px solid var(--bz-color-lgray);
}
.mainBookingLabel {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: var(--bz-color-black);
}
.mainBookingInput {
    font-size: 16px;
    line-height: 18px;
    border: none;
    outline: none;
    font-weight: 500;
    color: var(--bz-color-extra-accent);
    cursor: pointer;
}
.mainBookingBtn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--bz-color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    background: var(--bz-color-accent);
    height: 50px;
    border-radius: var(--bz-border-radius);
    cursor: pointer;
    transition: var(--bz-02-seconds);
}
.mainBookingBtn:hover {
    background: var(--bz-color-accent-hover);
}
.mainBookingMenu {
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 60px;
    width: 100%;
    height: 350px;
}
.mainBookingCalendar {
    display: flex;
    flex: auto;
    width: 66%;
    height: 350px;
    background: var(--bz-color-white);
    border: 1px solid var(--bz-color-lgray);
    border-radius: var(--bz-border-radius);
    opacity: 0;
}
.mainBookingCalendar.active {
    opacity: 1;
}
.mainBookingGuest {
    display: flex;
    flex-direction: column;
    flex: auto;
    width: 33%;
    padding: 20px 15px;
    background: var(--bz-color-white);
    border: 1px solid var(--bz-color-lgray);
    border-radius: var(--bz-border-radius);
    opacity: 0;
}
.mainBookingGuest.active {
    opacity: 1;
}
.mainBookingGuestHead {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
.mainBookingGuestDesc {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--bz-color-extra-accent);
    margin: 15px 0 5px 0;
}
.mainBookingGuestCount {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--bz-button-height);
    border: 1px solid var(--bz-color-lgray);
    border-radius: var(--bz-border-radius);
}
.guestInputCount {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
}
.mainBookingGuestButtonPrev {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    left: 4px;
    border-radius: 8px;
    background: var(--bz-color-accent);
    cursor: pointer;
}
.mainBookingGuestButtonPrev.disable {
    background: var(--bz-color-extra-accent);
}
.mainBookingGuestButtonPrev svg {
    color: var(--bz-color-white);
}
.mainBookingGuestButtonNext {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 4px;
    border-radius: 8px;
    background: var(--bz-color-accent);
    cursor: pointer;
}
.mainBookingGuestButtonNext svg {
    color: var(--bz-color-white);
}
.guestButtonCount {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--bz-color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--bz-color-accent);
    height: var(--bz-button-height);
    border-radius: var(--bz-border-radius);
    cursor: pointer;
    margin: 15px 0 0 0;
    transition: var(--bz-02-seconds);
}

.mainAboutBlock {
    text-align: center;
    margin: 50px auto;
    width: var(--bz-max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mainAboutTitle {
    font-weight: 500;
}

.mainAboutDescription {
    font-size: 18px;
    line-height: 1.4;
}

.mainLineImageBlock {
    width: 100%;
    /*height: 250px;*/
    height: 160px;
}

.mainLineImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainRoomsBlock, .mainServicesBlock, .mainContactsBlock, .mainSpecialOffersBlock {
    width: var(--bz-max-width);
    margin: 50px auto;
}

.mainRoomsTop, .mainServicesTop, .mainSpecialOffersTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mainRoomsTitle, .mainServicesTitle, .mainSpecialOffersTitle, .mainContactsTitle {
    font-weight: 600;
    font-size: 32px;
}

.mainRoomsShowAll, .mainServicesShowAll, .mainSpecialOffersShowAll {
    font-weight: 500;
}

.mainRooms, .mainServeces, .mainSpecialOffers {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.mainService {
    width: 18%;
}

.mainRoom, .mainSpecialOffer {
    width: 31%;
}


.mainRoomImage, .mainServiceImage {
    width: 100%;
    border-radius: var(--bz-border-radius);
}

.mainRoomTitle {
    width: 90%;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.mainRoomBottom {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mainRoomPrice {
    font-size: 18px;
    font-weight: 500;
}

.mainRoomBooking {
    background: var(--bz-color-accent);
    color: var(--bz-color-white);
    border: none;
    border-radius: var(--bz-border-radius);
    padding: 12px 22px;
    font-size: 14px;
}

.mainRoomBooking:hover {
    background: var(--bz-color-accent-hover);
    color: var(--bz-color-white);
}

.mainServiceTitle {
    font-size: 18px;
    font-weight: 500;
}

.mainContactsBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mainContactsTitle {
    width: 100%;
    margin-bottom: 30px;
}

.mainContacts {
    width: 35%;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.mainContactMap {
    width: 60%;
}

.mainContactMap iframe {
    border: none;
    border-radius: var(--bz-border-radius);
}

.mainContactAddress, .mainContactPhone, .mainContactEmail {
    display: flex;
    gap: 10px;
}

.mainContactPhone, .mainContactEmail {
    align-items: center;
}

.mainContactAddressText, .mainContactPhoneText, .mainContactEmailText {
    font-size: 18px;
}

footer {
    width: 100%;
    background: var(--bz-color-accent);
    padding: 50px 0;
}

.footerBlock {
    width: var(--bz-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footerLeftBlock {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footerLeftBlockLogo {
    width: 150px;
}

.footerRightBlock {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}

.footerRightBlockTop {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footerRightBlockTop a, .footerPolicy, .footerLeftBlockText {
    color: var(--bz-color-white);
    width: max-content;
    max-width: 100%;
}

.footerRightBlockTop a:hover, .footerPolicy:hover {
    color: var(--bz-color-lgray);
}
/* сделать подчеркивание при наведении!!!! */
.footerRightBlockTop a:hover .footerRightBlockTop a::before, .footerPolicy:hover .footerPolicy::before {
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: var(--bz-color-accent-hover) solid 1px;
}







.policy-page {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.policy-section {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.policy-section h2 {
    font-size: clamp(1.2rem, 1vw, 3rem);
    line-height: .95;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #111;
}

.policy-section p {
    font-size: 1.08rem;
    line-height: 1.95;
    color: #3f3f3f;
    margin-bottom: 1.5rem;
}

/**** СТРАНИЦА О ГОСТИНИЦЕ ****/

.about-page {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-bottom: 140px;
}

/* ================= SECTION ================= */

.about-section {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    border-bottom:
        1px solid rgba(0,0,0,.07);
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: clamp(1.2rem, 2vw, 3rem);

    line-height: .95;
    /*letter-spacing: -3px;*/
    font-weight: 700;

    margin-bottom: 2.5rem;

    color: #111;
}

.about-section p {
    font-size: 1.08rem;

    line-height: 1.95;

    color: #3f3f3f;

    margin-bottom: 1.5rem;
}

.about-section strong {
    color: #111;
    font-weight: 700;
}

/* ================= DISTANCE GRID ================= */

.distance-grid {
    display: grid;
    width: 100%;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    margin:
        3rem 0;
}

.distance-card {
    padding:
        36px 10px
        36px 0;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    border-bottom:
        1px solid rgba(0,0,0,.08);
}

.distance-card:nth-child(odd) {
    padding-right: 32px;
}

.distance-card:nth-child(even) {
    padding-left: 32px;

    border-left:
        1px solid rgba(0,0,0,.08);
}

.distance-card:last-child { 
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none; 
}



.distance-card span {
    display: block;

    font-size: clamp(2.4rem, 5vw, 3.2rem);

    font-weight: 700;

    letter-spacing: -3px;

    margin-bottom: .7rem;

    color: #111;
}

.distance-card small {
    display: block;

    max-width: 240px;

    font-size: .98rem;

    line-height: 1.7;

    color: #666;
}

/* ================= FEATURES ================= */

.features-list {
    width: 100%;
    list-style: none;
    margin: 2.5rem 0;
    display: grid;
    /*grid-template-rows: auto auto;*/
    /*grid-auto-flow: column;*/
    gap: 0 100px;
}

.features-list li {
    display: flex;
    position: relative;
    text-align: left;
    padding: 1.3rem 0 1.3rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    color: #333;
    line-height: 1.7;
    align-items: center;
    justify-content: flex-start;
}

.features-list li::before {
    content: '';

    position: absolute;

    left: 0;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--bz-color-accent);

    transform: translateY(-50%);
}

/* ================= INFO PANEL ================= */

.info-panel {
    margin-top: 3.5rem;
    text-align: left;
    padding:
        42px 46px;

    background:
        #f7f8f5;

    border-radius: 28px;
}

.info-panel h3 {
    font-size: 1.6rem;

    line-height: 1.2;

    margin-bottom: 2rem;

    font-weight: 700;

    color: #111;
}

.info-panel ul {
    margin-left: 1.2rem;
}

.info-panel li {
    margin-bottom: 1rem;

    line-height: 1.8;

    color: #444;
}

/* ================= BUTTON ================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 54px;

    padding:
        0 28px;

    margin-top: 2rem;

    border-radius: 999px;

    background: var(--bz-color-accent);

    color: white;

    font-size: .96rem;
    font-weight: 600;

    transition:
        background .2s ease,
        opacity .2s ease;
}

.btn:hover {
    background: var(--bz-color-accent-hover);

    color: white;
}

/* ================= CONTACT ================= */ 
.contact-block {
    text-align: left; 
    position: relative; 
    margin-top: 60px; 
    padding: 60px; 
    border-radius: 36px; 
    overflow: hidden; 
    background: linear-gradient( 135deg, #0e1d15, #163126 ); 
    color: rgba(255,255,255,.92); 
    box-shadow: 0 20px 70px rgba(0,0,0,.12); 
} 

.light-beam {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    /* Мягкий золотисто-зеленый рассветный блик */
    background: radial-gradient(circle at 30% 30%, rgb(255 234 165 / 28%) 0%, rgb(47 206 55 / 28%) 40%, #00000000 70%);
    filter: blur(86px);
    mix-blend-mode: screen;
    pointer-events: none; /* Чтобы луч не мешал выделять текст и кликать по ссылкам */
    animation: sun-glare 12s ease-in-out infinite alternate;
}

/* Медленная, «живая» анимация движения солнца */
@keyframes sun-glare {
    0% {
        transform: translate(-40%, -40%) scale(1);
    }
    50% {
        transform: translate(25%, 45%) scale(1.1);
    }
    100% {
        transform: translate(45%, -25%) scale(0.95);
    }
}

/*.contact-block::before { */
/*    content: ''; */
/*    position: absolute; */
/*    width: 400px; */
/*    height: 400px; */
/*    border-radius: 50%; */
/*    background: radial-gradient( rgba(0,152,70,.35), transparent 70% ); */
/*    top: -120px; right: -120px; */
/*} */

.contact-block h3 { 
    position: relative; 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 800; 
    line-height: 1.05; 
    margin-bottom: 2rem; 
    letter-spacing: -1px; 
}
.contact-block p, .contact-block address { 
    position: relative; 
    font-size: 1.05rem; 
    line-height: 1.9; 
    color: rgba(255,255,255,.82); 
} 
.contact-block a { color: #7ff0b3; } 
.contact-block strong { color: white; }

/* ================= MOBILE ================= */





/**** СТРАНИЦА КОНТАКТЫ ****/
.contacts-page {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    padding-bottom: 120px;
}

.contacts-title {
    text-align: center;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 700;

    letter-spacing: -3px;

    margin:
        60px 0
        40px;
}

.contacts-map {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 32px;

    background: #f3f5f2;

    border:
        1px solid rgba(0,0,0,.06);

    margin-bottom: 40px;
}

.contacts-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.contact-card {
    padding: 34px;

    background: white;

    border-radius: 24px;

    border:
        1px solid rgba(0,0,0,.07);

    transition:
        border-color .2s ease;
       
}

.contact-card:hover {
    border-color: var(--bz-color-accent);
}

.contact-card h3 {
    font-size: 1rem;

    text-transform: uppercase;

    letter-spacing: .08em;

    color: var(--bz-color-accent);

    margin-bottom: 20px;
}

.contact-card p {
    font-size: 1.2rem;

    font-weight: 600;

    line-height: 1.6;

    color: #111;

    margin-bottom: 10px;
}

.contact-card span {
    color: #666;

    font-size: .95rem;

    line-height: 1.6;
}

.contact-card a {
    color: #111;
}

.contacts-note {
    margin-top: 40px;

    padding: 40px;

    border-radius: 28px;

    background: #f7f8f5;

    text-align: center;
}

.contacts-note p {
    max-width: 800px;

    margin: 0 auto;

    line-height: 1.9;

    color: #555;
}



/**** СТРАНИЦА С КОМНАТАМИ ****/

.rooms-page {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    padding: 60px 0 120px;
}

/* HERO */

.rooms-hero {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.rooms-hero p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* GRID */

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* CARD */

.room-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;

    padding: 20px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 28px;

    background: #fff;
}


/* IMAGE */

.room-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-price {
    position: absolute;
    bottom: 12px;
    left: 12px;

    background: rgba(0,152,70,.6);
    color: #fff;

    padding: 8px 12px;
    border-radius: 999px;

    font-weight: 600;
    font-size: .95rem;
}

/* CONTENT */

.room-content {
    display: flex;
    flex-direction: column;
}

.room-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 15px;

    color: #666;
    font-size: .95rem;
}

.room-desc {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ACTIONS */

.room-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: var(--bz-color-accent);
    color: #fff;

    padding: 12px 18px;
    border-radius: 999px;

    font-weight: 600;
    text-decoration: none;

    transition: .2s;
}

.btn-primary:hover {
    background: var(--bz-color-accent-hover);
    color: var(--bz-color-white);
}

.btn-secondary {
    border: 1px solid rgba(0,0,0,.2);
    color: #111;

    padding: 12px 18px;
    border-radius: 999px;

    text-decoration: none;
}

.btn-secondary:hover {
    background: #f5f5f5;
}




.room-page {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    padding: 60px 0 120px;
}

.room-gallery-main {
    height: 600px;
    overflow: hidden;
    border-radius: 28px;
    cursor: zoom-in;
}

.room-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-gallery-list {
    display: flex;
    gap: 15px;
    margin-top: 15px;

    overflow-x: auto;
    scrollbar-width: thin;

    padding: 7px;
}

.room-gallery-list::-webkit-scrollbar {
    height: 8px;
}

.room-gallery-list::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.2);
    border-radius: 20px;
}

.room-single { 
    margin-top: 40px; 
} 

.room-single-top { 
    display: flex; justify-content: 
    space-between; 
    gap: 30px; 
    margin-bottom: 30px; 
} 

.room-single h1 { 
    font-size: 3rem; 
    font-weight: 800; 
    letter-spacing: -2px; 
} 

.room-single-meta { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-top: 15px; 
    color: #666;
} 

.room-single-price { 
    font-size: 2rem; 
    font-weight: 700; 
    white-space: nowrap; 
} 

.room-single-description { 
    line-height: 1.9; 
    color: #444; 
} 

.room-amenities { 
    margin-top: 40px; 
} 

.room-amenities ul { 
    margin-top: 20px; 
    columns: 2; 
} 

.room-amenities li { 
    margin-bottom: 10px; 
} 

.room-booking { 
    margin-top: 50px; 
}

.room-thumb {
    flex: 0 0 auto;

    width: 160px;
    height: 110px;

    object-fit: cover;

    border-radius: 14px;

    cursor: pointer;

    transition: .2s;
}

.room-thumb:hover {
    opacity: .8;
    transform: translateY(-2px);
}

.room-thumb.active {
    outline: 3px solid var(--bz-color-accent);
}

.image-modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.95);

    z-index: 99999;

    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    max-width: 95vw;
    max-height: 95vh;

    object-fit: contain;
}

.image-modal-close {
    position: absolute;

    top: 20px;
    right: 30px;

    color: #fff;

    font-size: 50px;
    line-height: 1;

    cursor: pointer;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }