/* ===================================================
   HOTEL PAGE
=================================================== */

.hotel-hero{
    min-height:100vh;
}

.page-hero{
    position:relative;
    min-height:clamp(620px, 90vh, 940px);
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#111;
    color:#fff;
}

.page-hero > img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.2)),
               linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.68));
}

.page-hero-content{
    position:relative;
    z-index:2;
    width:min(88%, 1200px);
    margin:0 auto;
    padding:130px 0 80px;
}

.page-hero-content h1{
    max-width:900px;
    margin:22px 0 28px;
    font-size:clamp(54px, 7vw, 112px);
    line-height:.94;
    letter-spacing:-.055em;
    overflow-wrap:anywhere;
}

.page-hero-content p{
    max-width:650px;
    color:rgba(255,255,255,.82);
    font-size:20px;
    line-height:1.75;
}

.page-hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:42px;
}

.hotel-intro-page{
    background:#f5f1e8;
    padding:160px 0 100px;
}

.hotel-intro-inner{
    width:min(88%,1200px);
    margin:auto;
}

.hotel-intro-inner h2{
    max-width:900px;
    font-size:clamp(54px,6vw,105px);
    line-height:.95;
    letter-spacing:-.05em;
    margin:24px 0 34px;
    color:#111;
}

.hotel-intro-inner p{
    max-width:720px;
    font-size:20px;
    line-height:1.9;
    color:#666;
}

.hotel-intro-inner h1{
    max-width:900px;
    margin:24px 0 34px;
    color:#111;
    font-size:clamp(48px, 6vw, 96px);
    line-height:.98;
    letter-spacing:-.05em;
}

.rooms-page-section,
.hotel-services{
    width:min(92%, 1320px);
    margin:0 auto;
    padding:140px 0;
}

.rooms-page-intro h2,
.hotel-services > h2,
.hotel-cta h2{
    max-width:880px;
    margin:20px 0 0;
    font-size:clamp(48px, 6vw, 96px);
    line-height:.98;
    letter-spacing:-.05em;
}

.rooms-page-intro p{
    max-width:720px;
    margin-top:30px;
    color:#666;
    font-size:19px;
    line-height:1.85;
}

.hotel-services > h2{
    color:#111;
}

/* =========================
   ROOMS
========================= */

.actual-rooms-grid{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.actual-room{
    min-width:0;
    background:#111;
    color:#fff;
}

.actual-room--featured{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
}

.actual-room__visual{
    display:block;
    height:470px;
    overflow:hidden;
    background:#222;
}

.actual-room--featured .actual-room__visual{
    height:620px;
}

.actual-room__visual img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .9s ease;
}

.room-carousel{
    position:relative;
}

.screen-reader-text{
    position:absolute!important;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.room-carousel__track,
.room-carousel__slide{
    position:absolute;
    inset:0;
}

.room-carousel__slide{
    display:block;
    opacity:0;
    pointer-events:none;
    transition:opacity .55s ease;
}

.room-carousel__slide.is-active{
    opacity:1;
    pointer-events:auto;
}

.room-carousel__slide:nth-child(n+2) img{
    object-position:center 46%;
}

.room-carousel__control{
    position:absolute;
    z-index:3;
    bottom:28px;
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;
    background:rgba(17,17,17,.72);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    backdrop-filter:blur(8px);
    transition:background .25s ease, transform .25s ease;
}

.room-carousel__control:hover{
    background:#fff;
    color:#111;
    transform:translateY(-2px);
}

.room-carousel__control--prev{left:28px}
.room-carousel__control--next{left:86px}

.room-carousel__status{
    position:absolute;
    z-index:3;
    right:28px;
    bottom:36px;
    padding:7px 12px;
    border-radius:20px;
    background:rgba(17,17,17,.72);
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.12em;
    backdrop-filter:blur(8px);
}

.room-carousel__dots{
    position:absolute;
    z-index:3;
    left:50%;
    bottom:44px;
    display:flex;
    gap:7px;
    transform:translateX(-50%);
}

.room-carousel__dot{
    width:22px;
    height:2px;
    border:0;
    background:rgba(255,255,255,.45);
    transition:background .25s ease, width .25s ease;
}

.room-carousel__dot.is-active{
    width:34px;
    background:#fff;
}

.actual-room:hover .actual-room__visual img{
    transform:scale(1.025);
}

.actual-room__visual--portrait img{
    object-position:center 42%;
}

.actual-room__content{
    padding:38px;
}

.actual-room--featured .actual-room__content{
    padding:clamp(45px,6vw,82px);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.actual-room__content span{
    display:block;
    margin-bottom:17px;
    color:var(--color-gold-light);
    font-size:10px;
    font-weight:700;
    letter-spacing:.19em;
    text-transform:uppercase;
}

.actual-room__content h3{
    margin-bottom:20px;
    font-size:clamp(32px,3.5vw,52px);
    line-height:1.03;
}

.actual-room__content p{
    margin-bottom:28px;
    color:rgba(255,255,255,.65);
    font-size:15px;
    line-height:1.75;
}

.actual-room__features{
    margin:-7px 0 30px;
    padding:0;
    display:grid;
    gap:10px;
    list-style:none;
}

.actual-room__features li{
    position:relative;
    padding-left:19px;
    color:rgba(255,255,255,.82);
    font-size:13px;
    line-height:1.45;
}

.actual-room__features li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:var(--color-gold-light);
}

.rooms-availability-note{
    margin-top:34px;
    padding:28px 32px;
    display:grid;
    grid-template-columns:minmax(200px,.35fr) minmax(0,1fr);
    gap:35px;
    border:1px solid rgba(17,17,17,.16);
    background:#f5f1e8;
}

.rooms-availability-note strong{
    color:#72532b;
    font-size:11px;
    letter-spacing:.12em;
    line-height:1.55;
    text-transform:uppercase;
}

.rooms-availability-note p{
    color:#625f58;
    font-size:14px;
    line-height:1.7;
}

@media(max-width:900px){
    .actual-room--featured{
        grid-template-columns:1fr;
    }

    .actual-room--featured .actual-room__visual{
        height:auto;
        aspect-ratio:4 / 3;
    }
}

@media(max-width:640px){
    .actual-rooms-grid{
        margin-top:54px;
        grid-template-columns:1fr;
        gap:16px;
    }

    .actual-room--featured{
        grid-column:auto;
    }

    .actual-room__visual,
    .actual-room--featured .actual-room__visual{
        height:auto;
        aspect-ratio:4 / 3;
    }

    .actual-room__visual--portrait{
        aspect-ratio:3 / 4;
    }

    .actual-room__content,
    .actual-room--featured .actual-room__content{
        padding:30px 26px 34px;
    }

    .rooms-availability-note{
        grid-template-columns:1fr;
        gap:14px;
        padding:24px;
    }

    .room-carousel__control{
        bottom:18px;
        width:42px;
        height:42px;
    }

    .room-carousel__control--prev{left:18px}
    .room-carousel__control--next{left:68px}
    .room-carousel__status{right:18px;bottom:24px}
    .room-carousel__dots{display:none}
}

.rooms-page-grid{

    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:34px;

}

.room-page-card{

    overflow:hidden;

    background:#111;

    color:#fff;

    transition:.4s;

}

.room-page-card:hover{

    transform:translateY(-8px);

}

.room-page-card img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:1s;

}

.room-page-card:hover img{

    transform:scale(1.05);

}

.room-page-card-body{

    padding:36px;

}

.room-page-card-body span{

    color:var(--color-gold);

    letter-spacing:.18em;

    text-transform:uppercase;

    font-size:12px;

}

.room-page-card-body h3{

    font-size:42px;

    margin:18px 0;

}

.room-page-card-body p{

    color:#bdbdbd;

    line-height:1.8;

}

.room-page-card-body ul{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin:26px 0;

}

.room-page-card-body li{

    border:1px solid rgba(255,255,255,.15);

    padding:10px 16px;

    font-size:13px;

}

.room-book-link{

    color:var(--color-gold);

    text-transform:uppercase;

    letter-spacing:.18em;

    font-size:13px;

    font-weight:700;

}

/* =========================
   BOOKING
========================= */

.booking-section{

    background:#ece7dc;

    padding:170px 0;

}

.booking-layout{

    width:min(92%,1320px);

    margin:auto;

    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:80px;

}

.booking-copy h2{

    font-size:clamp(54px,6vw,100px);

    line-height:.95;

    margin:22px 0;

}

.booking-copy p{

    font-size:20px;

    line-height:1.9;

    color:#666;

}

.booking-form{

    background:#fff;

    padding:46px;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

.booking-form label{

    display:flex;

    flex-direction:column;

    gap:10px;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.15em;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

    background:#f7f3eb;

    border:1px solid #ddd;

    padding:16px;

    font-size:15px;

}

.booking-form textarea{

    resize:vertical;

}

.booking-form button{

    margin-top:28px;

    border:none;

    cursor:pointer;

}

.booking-direct{
    margin-top:28px;
}

.booking-direct a{
    color:var(--color-text);
    font-weight:700;
}

.form-notice{
    margin-bottom:24px;
    padding:15px 18px;
    border-radius:12px;
    font-size:14px;
}

.form-notice.success{
    background:#e6f3e8;
    color:#225c2c;
}

.form-notice.error{
    background:#f9e5e2;
    color:#7a2920;
}

.booking-form .privacy-check{
    margin-top:20px;
    flex-direction:row;
    align-items:flex-start;
    text-transform:none;
    letter-spacing:0;
    line-height:1.5;
}

.booking-form .privacy-check input{
    width:18px;
    height:18px;
    flex:0 0 18px;
    padding:0;
}

.booking-form .is-hidden{display:none}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .rooms-page-grid{

        grid-template-columns:1fr;

    }

    .booking-layout{

        grid-template-columns:1fr;

    }

    .form-row{

        grid-template-columns:1fr;

    }

}

/* ===================================================
   PREMIUM IMPROVEMENTS
=================================================== */

.premium-room-card{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.featured-room{
    transform:translateY(-24px);
}

.featured-room:hover{
    transform:translateY(-34px);
}

.room-card-footer{
    margin-top:32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:24px;
}

.room-card-footer strong{
    font-size:28px;
    color:#fff;
}

.room-book-link{
    padding:14px 22px;
    border:1px solid var(--color-gold);
    border-radius:999px;
    transition:.3s ease;
}

.room-book-link:hover{
    background:var(--color-gold);
    color:#111;
}

.services-heading{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
    align-items:end;
    gap:clamp(40px,7vw,110px);
}

.services-heading h2{
    max-width:820px;
    margin:20px 0 0;
    color:#111;
    font-size:clamp(48px,6vw,88px);
    line-height:.98;
    letter-spacing:-.05em;
}

.services-heading > p{
    margin:0 0 8px;
    color:#625f59;
    font-size:18px;
    line-height:1.75;
}

.premium-services .services-grid{
    margin-top:64px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.premium-services .service-card{
    background:#fff;
    border:1px solid rgba(25,35,27,.1);
    border-radius:4px;
    padding:38px 40px;
    min-height:250px;
    display:grid;
    grid-template-columns:58px 1fr;
    align-items:start;
    gap:28px;
    transition:.35s ease;
}

.premium-services .service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.premium-services .service-card__number{
    color:var(--color-gold);
    font-size:13px;
    letter-spacing:.2em;
    padding-top:7px;
}

.service-card h3{
    margin:0 0 18px;
    color:#17261c;
    font-family:var(--font-serif);
    font-size:clamp(28px,3vw,42px);
    font-weight:400;
    line-height:1.05;
}

.service-card p{
    max-width:520px;
    margin:0;
    color:#6a6965;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
}

.service-card--dark{
    background:#17261c !important;
    border-color:#17261c !important;
}

.service-card--dark h3,
.service-card--dark p{color:#fff;}
.service-card--dark p{opacity:.72;}

.service-card--accent{
    background:#d1ac6b !important;
    border-color:#d1ac6b !important;
}

.service-card--accent .service-card__number{color:#17261c;}
.service-card--accent p{color:#3c382f;}
.service-card--accent a{
    display:inline-block;
    margin-top:22px;
    color:#17261c;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.booking-form{
    border-radius:24px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    border-radius:12px;
    transition:.25s ease;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover{
    border-color:var(--color-gold);
}

.booking-form button{
    padding:18px 34px;
    border-radius:999px;
}

.premium-hotel-cta{
    background:url('../images/landscape-2.jpg') center/cover;
    position:relative;
    padding:180px 0;
    color:#fff;
    text-align:center;
}

.premium-hotel-cta h2{
    margin-left:auto;
    margin-right:auto;
}

.premium-hotel-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
}

.premium-hotel-cta>*{
    position:relative;
    z-index:2;
}

.premium-hotel-cta p{
    max-width:640px;
    margin:20px auto 40px;
    color:rgba(255,255,255,.8);
    font-size:20px;
    line-height:1.8;
}

.premium-hotel-cta .section-kicker{
    display:block;
}

.cta-actions{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

@media(max-width:900px){
    .featured-room{
        transform:none;
    }

    .room-card-footer{
        flex-direction:column;
        align-items:flex-start;
    }

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

    .services-heading{
        grid-template-columns:1fr;
        align-items:start;
        gap:30px;
    }

    .page-hero{
        min-height:720px;
    }

    .page-hero-content,
    .hotel-intro-inner{
        width:min(88%, 720px);
    }

    .hotel-intro-page,
    .rooms-page-section,
    .hotel-services,
    .booking-section{
        padding-top:100px;
        padding-bottom:100px;
    }

    .rooms-page-grid{
        margin-top:60px;
    }
}

@media(max-width:640px){
    .page-hero,
    .hotel-hero{
        min-height:100svh;
    }

    .page-hero > img{
        object-position:center;
    }

    .page-hero-content{
        width:88%;
        padding:110px 0 56px;
    }

    .page-hero-content h1{
        margin:16px 0 22px;
        font-size:clamp(42px, 13vw, 64px);
        line-height:.98;
    }

    .page-hero-content p,
    .hotel-intro-inner p,
    .booking-copy p{
        font-size:16px;
        line-height:1.7;
    }

    .page-hero-actions{
        width:100%;
        margin-top:30px;
        flex-direction:column;
        gap:12px;
    }

    .page-hero-actions .btn{
        width:100%;
        padding:15px 18px;
    }

    .hotel-intro-page,
    .rooms-page-section,
    .hotel-services,
    .booking-section{
        padding-top:76px;
        padding-bottom:76px;
    }

    .hotel-intro-inner,
    .rooms-page-section,
    .hotel-services,
    .booking-layout{
        width:88%;
    }

    .hotel-intro-inner h1,
    .hotel-intro-inner h2,
    .rooms-page-intro h2,
    .hotel-services > h2,
    .booking-copy h2,
    .hotel-cta h2{
        font-size:clamp(38px, 11vw, 54px);
        line-height:1;
        overflow-wrap:anywhere;
    }

    .rooms-page-grid{
        margin-top:44px;
        gap:24px;
    }

    .room-page-card img{
        height:300px;
    }

    .room-page-card-body{
        padding:26px 22px;
    }

    .room-page-card-body h3{
        font-size:34px;
    }

    .room-card-footer strong{
        font-size:23px;
    }

    .room-book-link{
        width:100%;
        padding:13px 16px;
        text-align:center;
        line-height:1.4;
    }

    .premium-services .services-grid{
        grid-template-columns:1fr;
        gap:14px;
        margin-top:42px;
    }

    .premium-services .service-card{
        min-height:0;
        padding:28px 24px;
        grid-template-columns:36px 1fr;
        gap:12px;
    }

    .services-heading > p{
        font-size:16px;
    }

    .service-card h3{
        font-size:30px;
    }

    .services-heading h2{
        font-size:clamp(38px,11vw,54px);
        line-height:1;
        overflow-wrap:anywhere;
    }

    .booking-layout{
        gap:46px;
    }

    .booking-form{
        width:100%;
        padding:26px 20px;
        border-radius:16px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea{
        width:100%;
        min-width:0;
    }

    .booking-form button{
        width:100%;
    }

    .premium-hotel-cta{
        padding:90px 6%;
    }

    .premium-hotel-cta p{
        font-size:16px;
        line-height:1.7;
    }
}
