@charset "utf-8";
/* CSS Document */

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

.room-hero {

    position: relative;

    min-height: 60vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #000;

}


.room-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/rooms-hero.webp") center center/cover no-repeat;

    transform:scale(1.03);

}


.room-hero__overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.30) 0%,
            rgba(0,0,0,.42) 45%,
            rgba(0,0,0,.60) 100%
        );

}


.room-hero__container{

    position:relative;

    z-index:2;

    width:min(92%,1200px);

    text-align:center;

    color:#fff;

    padding:130px 0 80px;

}


.room-hero__eyebrow{

    display:inline-flex;

    align-items:center;

    gap:.65rem;

    padding:.45rem 1rem;

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

    border-radius:999px;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,.08);

    font-size:.82rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:1.5rem;

}


.room-hero h1{

    font-size:clamp(58px, 6vw, 72px);
	font-family: var(--font-heading);

    line-height:1.08;

    font-weight:300;

    margin-bottom:1.25rem;

    color:#fff;

}



.room-hero h1 em{

    display: block;
    margin-top: 10px;
    color: #ead6ae;
    font-style: italic;
    font-weight: 400;

}


.room-hero p{

    max-width:760px;

    margin:0 auto 2.5rem;

    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.85;

}


.room-hero__facts{

    display:flex;

    justify-content:center;

    gap:2rem;

    flex-wrap:wrap;

    margin-bottom:2.2rem;

}


.room-hero__fact{

    min-width:180px;

    padding:1.1rem 1.4rem;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

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

}


.room-hero__fact strong{

    display:block;

    font-size:1.25rem;

    font-weight:600;

    color:#fff;

    margin-bottom:.35rem;

}


.room-hero__fact span{

    display:block;

    font-size:.9rem;

    color:rgba(255,255,255,.82);

}


.room-hero__button{

    display:inline-flex;

    align-items:center;

    gap:.8rem;

    padding:16px 34px;

    border-radius:999px;

    background:var(--accent);

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}


.room-hero__button svg{

    width:18px;

    height:18px;

    stroke:currentColor;

    stroke-width:2;

    fill:none;

}


.room-hero__button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(0,0,0,.20);

}

.room-hero__scroll{

    margin-top:55px;

    font-size:.85rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:rgba(255,255,255,.75);

}

@media (max-width:768px){

.room-hero{

    min-height:72vh;

}

.room-hero__container{

    padding:120px 20px 60px;

}

.room-hero h1{

    font-size:2.8rem;

}

.room-hero p{

    font-size:1rem;

    line-height:1.75;

}

.room-hero__facts{

    gap:1rem;

}

.room-hero__fact{

    min-width:140px;

    padding:.9rem 1rem;

}

.room-hero__button{

    display: none;
}

}

/* ==========================================
   ACCOMMODATION HIGHLIGHTS
========================================== */


.room-highlights{

    padding:40px 0;

    background:#fff;

}

.room-highlights__container{

    width:min(92%,1100px);

    margin:auto;

    display:grid;

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

    gap:30px;

}

.room-highlight{

    text-align:center;

}

.room-highlight strong{

    display:block;

    margin-top:12px;

    font-size:1rem;

}

.room-highlight span{

    color:#777;

}

@media(max-width:768px){

.room-highlights__container{

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

gap:25px;

}

}

/* ==========================================
   ACCOMMODATION COLLECTION
========================================== */

.room-selection{

    padding:120px 0;

    background:#fff;

}


.room-selection__container{

    width:min(92%,1200px);

    margin:auto;

}


.room-selection__header{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}


.room-selection__header .section-eyebrow{

    display:inline-block;

    margin-bottom:18px;

}


.room-selection__header h2{

  margin: 0;
  color: var(--bav-blue-deep);
  font-family: var(--font-heading);
  font-size: clamp(50px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;

}


.room-selection__header h2 em{

     display: block;

    margin-top: 8px;

    color: var(--bav-blue);

    font-weight: 400;

}


.room-selection__header p{

    max-width:720px;

    margin:30px auto;

    font-size:1.08rem;

    line-height:1.9;

    color:#666;

}

@media (max-width:768px){

.room-selection{

    padding:80px 0;

}

.room-selection__header h2{

    font-size:2.4rem;

}

.room-selection__header p{

    font-size:1rem;

    line-height:1.8;

}

}

/* ==========================================
   ROOM CARDS
========================================== */

.room-cards{

    padding:100px 0 100px;

}

.room-cards__container{

    width:min(92%,1200px);

    margin:auto;

    display:grid;

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

    gap:40px;

}

.room-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s;

}

.room-card:hover{

    transform:translateY(-8px);

}

.room-card__image{

    display:block;

    overflow:hidden;

}

.room-card img{

    width:100%;

    display:block;

    transition:.7s;

}

.room-card:hover img{

    transform:scale(1.05);

}

.room-card__content{

    padding:40px;

}

.room-card__label{

    display:inline-block;

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:.15em;

    font-size:.8rem;

    margin-bottom:15px;

}

.room-card h3{

    font-size:1.8rem;

    font-weight:300;

    margin-bottom:20px;

}

.room-card h3 em{

    display:block;

    font-family:"Cormorant Garamond",serif;

    color:var(--accent);

}

.room-card__facts{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.room-card__facts li{

    padding:12px 0;

    border-bottom:1px solid #eee;

}

.room-card__button{

    display:inline-flex;

    padding:15px 20px;

    border-radius:9px;

    background:var(--bav-blue-deep);

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.room-card--featured{

    border:2px solid rgba(var(--accent-rgb),.18);

}

.room-card__badge{

    position:absolute;

    top:25px;

    right:25px;

    background:var(--accent);

    color:#fff;

    padding:10px 18px;

    border-radius:999px;

    font-size:.75rem;

    letter-spacing:.08em;

    z-index:10;

}

.room-card__reasons{

display:flex;

flex-wrap:wrap;

gap:10px;

margin:20px 0;

}

.room-card__reasons span{

padding:7px 14px;

background:#f6f3ed;

border-radius:50px;

font-size:.82rem;

}

/* ==========================================
   ROOM CARDS - MOBILE
========================================== */

@media (max-width:768px){

.room-cards{
    padding:60px 0;
}

.room-cards__container{

    display:grid;
    grid-template-columns:1fr;

    gap:36px;

    width:min(92%,460px);

    margin:auto;

}

.room-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.room-card__image{

    display:block;

    overflow:hidden;

}

.room-card__image img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

}

.room-card__badge{

    top:18px;

    right:18px;

    padding:8px 16px;

    font-size:.75rem;

}

.room-card__content{

    padding:28px;

}

.room-card__label{

    font-size:.75rem;

    letter-spacing:.15em;

}

.room-card h3{

    font-size:2rem;

    line-height:1.2;

    margin:14px 0 20px;

}

.room-card h3 em{

    display:block;

    font-size:.82em;

}

.room-card__facts{

    display:grid;

    grid-template-columns:1fr;

    gap:10px;

    margin:22px 0;

}

.room-card__facts li{

    padding-bottom:10px;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.room-card p{

    font-size:.97rem;

    line-height:1.8;

    margin-bottom:28px;

}

.room-card__button{

	width:100%;

    justify-content:center;

    padding:16px;

    border-radius:12px;

}

}

/* ==========================================
   STAY GUIDE
========================================== */

.stay-guide{

    padding:120px 0;

    background:#faf8f4;

}

.stay-guide__container{

    width:min(92%,1200px);

    margin:auto;

}

.stay-guide__header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.stay-guide__header h2{

    margin: 0;
    color: var(--bav-blue-deep);
    font-family: var(--font-heading);
    font-size: clamp(50px, 5vw, 66px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.035em;

}

.stay-guide__header h2 em{

    display: block;

    margin-top: 8px;

    color: var(--bav-blue);

    font-weight: 400;

}

.stay-guide__header p{

    color:#666;

    line-height:1.9;

}

.stay-guide__grid{

    display:grid;

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

    gap:40px;

}

.stay-option{

    background:#fff;

    padding:50px;

    border-radius:28px;

    box-shadow:0 18px 50px rgba(0,0,0,.06);

}

.stay-option--featured{

    border:2px solid rgba(var(--accent-rgb),.18);

}

.stay-option__icon{

    font-size:2.6rem;

    display:block;

    margin-bottom:20px;

}

.stay-option h3{

    margin-bottom:18px;

    font-size:1.8rem;

    font-weight:400;

}

.stay-option p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;

}

.stay-option ul{

    list-style:none;

    padding:0;

    margin:0;

}

.stay-option li{

    position:relative;

    padding-left:28px;

    margin-bottom:16px;

}

.stay-option li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--accent);

    font-weight:700;

}

.stay-option__icon{
    width:72px;
    height:72px;
    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#f7f4ef;
    border:1px solid rgba(0,0,0,.06);
}

.stay-option__icon svg{
    width:34px;
    height:34px;

    stroke:#8d6b3f;
    stroke-width:1.8;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* =====================================================
   STAY GUIDE MOBILE
===================================================== */

@media (max-width:768px){

.stay-guide{

    padding:70px 0;

}

.stay-guide__container{

    width:min(92%,500px);

    margin:auto;

}

.stay-guide__header{

    margin:0 auto 40px;

}

.stay-guide__header h2{

    font-size:2.4rem;

    line-height:1.15;

}

.stay-guide__header p{

    font-size:.98rem;

    line-height:1.8;

}

.stay-guide__grid{

    display:grid;

    grid-template-columns:1fr;

    gap:24px;

}

.stay-option{

    width:100%;

    padding:30px 26px;

    border-radius:22px;

    box-sizing:border-box;

}

.stay-option__icon{

    width:64px;

    height:64px;

    margin:0 auto 20px;

}

.stay-option__icon svg{

    width:30px;

    height:30px;

}

.stay-option h3{

    font-size:1.65rem;

    text-align:center;

    margin-bottom:16px;

}

.stay-option p{

    font-size:.95rem;

    line-height:1.8;

    text-align:center;

    margin-bottom:24px;

}

.stay-option ul{

    margin-top:18px;

}

.stay-option li{

    font-size:.95rem;

    line-height:1.6;

    margin-bottom:14px;

    padding-left:26px;

}

}

/* ==========================================
   ROOM COMPARISON
========================================== */

.room-comparison{

    padding:120px 0;

    background:#fff;

}

.room-comparison__container{

    width:min(92%,1100px);

    margin:auto;

}

.room-comparison__header{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.room-comparison__header h2{

    margin: 0;
    color: var(--bav-blue-deep);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.035em;

}

.room-comparison__header h2 em{

    display: block;

    margin-top: 8px;

    color: var(--bav-blue);

    font-weight: 400;

}

.room-comparison__header p{

    color:#666;

    line-height:1.9;

}

.room-comparison__table{

    width:100%;

    border-collapse:collapse;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.room-comparison__table thead{

    background:var(--accent);

    color:#fff;

}

.room-comparison__table th{

    padding:22px;

    text-align:center;

    font-weight:600;

}

.room-comparison__table td{

    padding:20px;

    border-bottom:1px solid #eee;

    text-align:center;

}

.room-comparison__table td:first-child{

    text-align:left;

    font-weight:600;

    color:#333;

    width:34%;

}

.room-comparison__table tbody tr:nth-child(even){

    background:#fafafa;

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section{

    padding:120px 0;

    background:#faf8f4;

}


.faq-container{

    width:min(92%,900px);

    margin:auto;

}


/* HEADER */

.faq-header{

    text-align:center;

    margin-bottom:70px;

}

.faq-header h2{

    margin: 0;
    color: var(--bav-blue-deep);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.035em;

}

.faq-header h2 em{

    display: block;

    margin-top: 8px;

    color: var(--bav-blue);

    font-weight: 400;

}

.faq-header p{

    max-width:700px;

    margin:30px auto;

    color:#666;

    line-height:1.9;

}


/* FAQ LIST */

.faq-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}


/* ITEM */

.faq-item{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #ece7df;

    transition:.3s ease;

}


.faq-item:hover{

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}


.faq-item[open]{

    border-color:rgba(var(--accent-rgb),.20);

}


/* QUESTION */

.faq-item summary{

    list-style:none;

    cursor:pointer;

    position:relative;

    padding:24px 70px 24px 30px;

    font-size:1.08rem;

    font-weight:600;

    color:#222;

    transition:.3s;

}


.faq-item summary::-webkit-details-marker{

    display:none;

}


.faq-item summary:hover{

    color:var(--accent);

}


/* PLUS ICON */

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    width:36px;

    height:36px;

    border-radius:50%;

    background:#f4f1eb;

    color:#555;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.35rem;

    font-weight:300;

    transition:.35s;

}


.faq-item[open] summary::after{

    content:"–";

    background:var(--accent);

    color:#fff;

}


/* ANSWER */

.faq-content{

    padding:0 30px 28px;

    animation:faqFade .25s ease;

}


.faq-content p{

    margin:0;

    color:#666;

    line-height:1.9;

    font-size:1rem;

}


/* ANIMATION */

@keyframes faqFade{

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}