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

/* =====================================================
   STANDARD ROOM PAGE — HERO
===================================================== */

.room-hero {
    position: relative;

    min-height: 860px;
    height: 90vh;

    overflow: hidden;

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


/* =====================================================
   HERO IMAGE
===================================================== */

.room-hero-media {
    position: absolute;
    inset: 0;
}

.room-hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation: roomHeroReveal 1.2s ease both;
}

@keyframes roomHeroReveal {

    from {
        opacity: 0;
        transform: scale(1.025);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =====================================================
   HERO OVERLAY
===================================================== */

.room-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 39, 68, 0.88) 0%,
            rgba(18, 39, 68, 0.65) 38%,
            rgba(18, 39, 68, 0.18) 72%,
            rgba(18, 39, 68, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(18, 39, 68, 0.55) 0%,
            transparent 45%
        );
}


/* =====================================================
   HERO CONTENT
===================================================== */

.room-hero-container {
    position: relative;
    z-index: 3;

    width: min(calc(100% - 64px), 1320px);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.room-hero-content {
    max-width: 680px;

    padding-top: 60px;
    padding-bottom: 120px;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.room-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 30px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.room-breadcrumb a {
    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    transition: color 0.25s ease;
}

.room-breadcrumb a:hover {
    color: var(--bav-white);
}

.room-breadcrumb span {
    color: rgba(255, 255, 255, 0.36);
}

.room-breadcrumb span[aria-current="page"] {
    color: #ead6ae;
}


/* =====================================================
   ROOM BADGE
===================================================== */

.room-hero-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;
    padding: 8px 13px;

    color: #ead6ae;

    border:
        1px solid rgba(234, 214, 174, 0.48);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =====================================================
   HEADING
===================================================== */

.room-hero h1 {
    margin: 0;

    color: var(--bav-white);

    font-family: var(--font-heading);
    font-size: clamp(72px, 8vw, 112px);
    font-weight: 400;

    line-height: 0.88;
    letter-spacing: -0.045em;
}


/* =====================================================
   LEAD
===================================================== */

.room-hero-lead {
    margin: 27px 0 0;

    color: var(--bav-white);

    font-family: var(--font-heading);
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 400;

    line-height: 1.2;
}

.room-hero-lead em {
    color: #ead6ae;

    font-weight: 400;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.room-hero-description {
    max-width: 540px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   HERO CTA
===================================================== */

.room-hero-actions {
    margin-top: 32px;
}

.room-hero-primary {
    min-height: 54px;

    padding: 0 27px;

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

    gap: 15px;

    color: var(--bav-blue-deep);
    background: #ead6ae;

    border: 1px solid #ead6ae;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.room-hero-primary svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.room-hero-primary:hover {
    background: var(--bav-white);

    transform: translateY(-2px);
}

.room-hero-primary:hover svg {
    transform: translateX(4px);
}


/* =====================================================
   QUICK FACTS
===================================================== */

.room-quick-facts {
    position: absolute;
    z-index: 5;

    left: 50%;
    bottom: 0;

    width: min(calc(100% - 64px), 1320px);
    min-height: 105px;

    transform: translateX(-50%);

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr))
        1.15fr;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);
}

.room-fact {
    padding: 25px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid rgba(49, 91, 154, 0.14);
}

.room-fact-label {
    margin-bottom: 7px;

    color: var(--bav-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.room-fact strong {
    color: var(--bav-blue-deep);

    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
}


/* Explore */

.room-fact-explore {
    padding: 25px 30px;

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

    gap: 20px;

    color: var(--bav-white);
    background: var(--bav-blue);

    text-decoration: none;

    transition: background 0.3s ease;
}

.room-fact-explore span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.room-fact-explore svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.room-fact-explore:hover {
    background: var(--bav-blue-dark);
}

.room-fact-explore:hover svg {
    transform: translateY(4px);
}

@media (max-width: 992px) {

    .room-hero {
        min-height: 800px;
    }

    .room-hero-container {
        width: calc(100% - 48px);
    }

    .room-hero h1 {
        font-size: clamp(68px, 10vw, 90px);
    }

    .room-quick-facts {
        width: calc(100% - 48px);

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

    .room-fact-explore {
        display: none;
    }

}

@media (max-width: 767px) {

    .room-hero {
        min-height: 760px;
        height: 100svh;
    }


    .room-hero-media img {
        object-position: 58% center;
    }


    .room-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(18, 39, 68, 0.96) 0%,
                rgba(18, 39, 68, 0.72) 55%,
                rgba(18, 39, 68, 0.22) 100%
            );
    }


    .room-hero-container {
        width: calc(100% - 40px);

        align-items: flex-end;
    }


    .room-hero-content {
        max-width: 100%;

        padding:
            0
            0
            175px;
    }


    .room-breadcrumb {
        margin-bottom: 22px;
    }


    .room-hero-badge {
        margin-bottom: 17px;
    }


    .room-hero h1 {
        font-size: clamp(58px, 17vw, 78px);

        line-height: 0.9;
    }


    .room-hero-lead {
        margin-top: 20px;

        font-size: 25px;
    }


    .room-hero-description {
        margin-top: 16px;

        font-size: 13px;
        line-height: 1.7;
    }


    .room-hero-actions {
        margin-top: 25px;
    }


    .room-hero-primary {
        width: 100%;
    }


    /* Quick Facts */

    .room-quick-facts {
        width: 100%;
        min-height: 105px;

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


    .room-fact {
        padding: 18px 10px;

        text-align: center;
    }


    .room-fact:last-of-type {
        border-right: 0;
    }


    .room-fact-label {
        font-size: 7px;
    }


    .room-fact strong {
        font-size: 16px;
        line-height: 1.2;
    }


    .room-fact-explore {
        display: none;
    }

}

/* =====================================================
ROOM INTRO
===================================================== */

.room-intro{
    padding:120px 0;
    background:#f7f4ee;
}

.room-intro__container{

    width:min(1280px,calc(100% - 60px));
    margin:auto;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:90px;

    align-items:start;

}

.room-intro__content{

    max-width:520px;

}

.section-eyebrow{

    display:inline-block;
    margin-bottom:18px;

    font-size:11px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:#9b7444;

}

.room-intro h2{

    margin:0;

    font-family:var(--font-heading);

    font-size:clamp(46px,5vw,56px);

    line-height:1;

}

.room-intro h2 em{

    display:block;

    color:#9b7444;
    font-style:normal;

}

.room-intro__text{

    margin-top:34px;

}

.room-intro__text p{

    margin:0;

    font-size:17px;

    line-height:1.9;

    color:#6b675f;

}

.room-intro__text p+p{

    margin-top:18px;

}

.room-intro__actions{

    margin-top:42px;

}

.room-intro__button{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:18px 32px;

    background:#1f3857;

    color:#fff;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.14em;

    font-size:11px;

    font-weight:700;

    transition:.35s;

}

.room-intro__button:hover{

    background:#315b9a;

}

.room-intro__button svg{

    width:18px;

    stroke:currentColor;

    stroke-width:1.7;

    fill:none;

}

.room-intro__visual{

    position:relative;

}

.room-intro__image-wrap{

    margin:0;

    overflow:hidden;

}

.room-intro__image-wrap img{

    width:100%;

    display:block;

    aspect-ratio:4/3;

    object-fit:cover;

}

@media(max-width:900px){

.room-intro{

padding:90px 0;

}

.room-intro__container{

grid-template-columns:1fr;

gap:50px;

}

.room-intro__content{

max-width:100%;

}

}

/* ==================================================
   ROOM HIGHLIGHTS
================================================== */

.room-highlights {
  padding: clamp(90px, 10vw, 150px) 0;
  background: #f5f1e9;
}

.room-highlights__container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

/* Header */

.room-highlights__header {
  max-width: 720px;
  margin-bottom: clamp(55px, 7vw, 90px);
}

.room-highlights__eyebrow {
  display: block;
  margin-bottom: 18px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #8b6f47;
}

.room-highlights__header h2 {
  max-width: 680px;
  margin: 0 0 24px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;

  color: #25231f;
}

.room-highlights__header p {
  max-width: 620px;
  margin: 0;

  font-size: 1.05rem;
  line-height: 1.8;

  color: #68635b;
}

/* Grid */

.room-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(37, 35, 31, 0.18);
}

/* Individual highlight */

.room-highlight {
  position: relative;
  padding: 42px 40px 10px 0;
}

.room-highlight:not(:first-child) {
  padding-left: 40px;
  border-left: 1px solid rgba(37, 35, 31, 0.18);
}

.room-highlight__number {
  display: block;
  margin-bottom: 42px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;

  color: #9b8464;
}

.room-highlight h3 {
  margin: 0 0 18px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;

  color: #25231f;
}

.room-highlight p {
  max-width: 330px;
  margin: 0;

  font-size: 0.96rem;
  line-height: 1.75;

  color: #706b63;
}

/* Tablet */

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

  .room-highlight,
  .room-highlight:not(:first-child) {
    padding: 36px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.18);
  }

  .room-highlight__number {
    margin-bottom: 24px;
  }

  .room-highlight p {
    max-width: 600px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .room-highlights {
    padding: 80px 0;
  }

  .room-highlights__container {
    width: min(100% - 36px, 1280px);
  }

  .room-highlights__header {
    margin-bottom: 48px;
  }

  .room-highlights__header h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .room-highlight {
    padding: 32px 0;
  }
}

/* ==================================================
   ROOM AMENITIES
================================================== */

.room-amenities {
  padding: clamp(100px, 11vw, 160px) 0;
  background: #25231f;
  color: #fff;
}

.room-amenities__container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 9vw, 140px);
}

/* LEFT */

.room-amenities__intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.room-amenities__eyebrow {
  display: block;
  margin-bottom: 22px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #c6a97a;
}

.room-amenities__intro h2 {
  margin: 0 0 28px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;

  color: #f8f5ef;
}

.room-amenities__intro p {
  max-width: 410px;
  margin: 0;

  font-size: 1rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.62);
}

/* RIGHT */

.room-amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-item {
  min-height: 105px;
  padding: 28px 20px 28px 0;

  display: flex;
  align-items: center;
  gap: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-item:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-item svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;

  fill: none;
  stroke: #c6a97a;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-item span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;

  color: #f5f1e9;
}

/* GOOD TO KNOW */

.room-amenities__note {
  margin-top: 52px;
  padding-top: 28px;

  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;

  border-top: 1px solid rgba(198, 169, 122, 0.45);
}

.room-amenities__note > span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #c6a97a;
}

.room-amenities__note p {
  max-width: 540px;
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.58);
}

/* TABLET */

@media (max-width: 900px) {

  .room-amenities__container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .room-amenities__intro {
    position: static;
  }

  .room-amenities__intro p {
    max-width: 600px;
  }
}

/* MOBILE */

@media (max-width: 600px) {

  .room-amenities {
    padding: 85px 0;
  }

  .room-amenities__container {
    width: min(100% - 36px, 1280px);
    gap: 55px;
  }

  .room-amenities__intro h2 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .room-amenities__grid {
    grid-template-columns: 1fr;
  }

  .amenity-item,
  .amenity-item:nth-child(even) {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }

  .amenity-item span {
    font-size: 1.25rem;
  }

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

/* ==================================================
   ROOM GALLERY
================================================== */

.room-gallery {
  padding: clamp(100px, 11vw, 160px) 0;
  background: #f8f6f1;
}

.room-gallery__container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

/* HEADER */

.room-gallery__header {
  margin-bottom: clamp(50px, 6vw, 80px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 60px;
}

.room-gallery__eyebrow {
  display: block;
  margin-bottom: 18px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #8b6f47;
}

.room-gallery__header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;

  color: #25231f;
}

.room-gallery__header p {
  margin: 0 0 6px;

  font-size: 1rem;
  line-height: 1.8;

  color: #6d685f;
}

/* GALLERY GRID */

.room-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.room-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;

  background: #ddd7cc;
}

.room-gallery__item--main {
  grid-row: 1 / 3;
}

.room-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.room-gallery__item:hover img {
  transform: scale(1.035);
}

/* SUBTLE OVERLAY */

.room-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.2),
    transparent 45%
  );

  pointer-events: none;
}

/* ZOOM BUTTON */

.room-gallery__zoom {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.room-gallery__zoom svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: #25231f;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-gallery__item:hover .room-gallery__zoom {
  transform: scale(1.08);
  background: #fff;
}

/* VIEW GALLERY LABEL */

.room-gallery__more {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 4px;

  color: #fff;
}

.room-gallery__more strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.room-gallery__more small {
  font-size: 0.75rem;
  letter-spacing: 0.05em;

  color: rgba(255, 255, 255, 0.78);
}

/* TABLET */

@media (max-width: 900px) {

  .room-gallery__header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .room-gallery__header p {
    max-width: 600px;
  }

  .room-gallery__grid {
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: repeat(2, 240px);
  }
}

/* MOBILE */

@media (max-width: 650px) {

  .room-gallery {
    padding: 85px 0;
  }

  .room-gallery__container {
    width: min(100% - 36px, 1280px);
  }

  .room-gallery__header {
    margin-bottom: 42px;
  }

  .room-gallery__header h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .room-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 360px 180px;
    gap: 8px;
  }

  .room-gallery__item--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .room-gallery__zoom {
    right: 16px;
    bottom: 16px;

    width: 46px;
    height: 46px;
  }

  .room-gallery__more {
    left: 18px;
    bottom: 18px;
  }

  .room-gallery__more strong {
    font-size: 1.35rem;
  }
}

/* =====================================================
   STANDARD ROOM — GOOD TO KNOW
===================================================== */

.room-good-to-know {
    position: relative;
    padding: 140px 0;
    background: #f6f2e9;
    overflow: hidden;
}


.room-good-to-know__container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 130px;
    align-items: start;
}


/* =====================================================
   LEFT INTRO
===================================================== */

.room-good-to-know__intro {
    position: sticky;
    top: 140px;
}


.room-good-to-know__eyebrow {
    display: block;

    margin-bottom: 24px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #9a7135;
}


.room-good-to-know__intro h2 {
    max-width: 520px;
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;

    color: #29251f;
}


.room-good-to-know__intro h2 em {
    display: block;

    font-weight: 400;

    color: #9a7135;
}


.room-good-to-know__intro > p {
    max-width: 510px;

    margin: 34px 0 0;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;

    color: #6f685e;
}


/* =====================================================
   INTRO MESSAGE
===================================================== */

.room-good-to-know__message {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;

    max-width: 500px;

    margin-top: 52px;
    padding-top: 30px;

    border-top: 1px solid rgba(41, 37, 31, 0.14);
}


.room-good-to-know__line {
    display: block;

    width: 42px;
    height: 1px;

    margin-top: 12px;

    background: #9a7135;
}


.room-good-to-know__message p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;

    color: #514b42;
}


/* =====================================================
   RIGHT DETAILS
===================================================== */

.room-good-to-know__details {
    border-top: 1px solid rgba(41, 37, 31, 0.18);
}


/* =====================================================
   DETAIL ITEM
===================================================== */

.stay-detail {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid rgba(41, 37, 31, 0.14);
}


.stay-detail__number {
    padding-top: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;

    color: #a87c3d;
}


.stay-detail__content {
    display: grid;
    grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}


.stay-detail__content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;

    color: #29251f;
}


.stay-detail__content p {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: #70695f;
}


/* =====================================================
   BOTTOM NOTE
===================================================== */

.room-good-to-know__note {
    display: flex;
    gap: 18px;
    align-items: flex-start;

    margin-top: 34px;
    padding: 24px 26px;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid rgba(41, 37, 31, 0.1);
}


.room-good-to-know__note svg {
    flex: 0 0 21px;

    width: 21px;
    height: 21px;

    margin-top: 2px;

    fill: none;
    stroke: #9a7135;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.room-good-to-know__note p {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.7;

    color: #6b645a;
}


.room-good-to-know__note strong {
    font-weight: 600;

    color: #39342d;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .room-good-to-know {
        padding: 110px 0;
    }


    .room-good-to-know__container {
        width: min(100% - 60px, 1100px);

        grid-template-columns: 1fr;
        gap: 70px;
    }


    .room-good-to-know__intro {
        position: static;
    }


    .room-good-to-know__intro > p {
        max-width: 650px;
    }


    .room-good-to-know__message {
        max-width: 650px;
    }

}


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

@media (max-width: 700px) {

    .room-good-to-know {
        padding: 80px 0;
    }


    .room-good-to-know__container {
        width: calc(100% - 40px);
        gap: 55px;
    }


    .room-good-to-know__eyebrow {
        margin-bottom: 18px;
    }


    .room-good-to-know__intro h2 {
        font-size: clamp(42px, 13vw, 58px);
    }


    .room-good-to-know__intro > p {
        margin-top: 26px;

        font-size: 15px;
        line-height: 1.8;
    }


    .room-good-to-know__message {
        grid-template-columns: 28px 1fr;
        gap: 14px;

        margin-top: 38px;
        padding-top: 24px;
    }


    .room-good-to-know__line {
        width: 28px;
    }


    .room-good-to-know__message p {
        font-size: 19px;
    }


    .stay-detail {
        grid-template-columns: 42px 1fr;
        gap: 12px;

        padding: 30px 0;
    }


    .stay-detail__content {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .stay-detail__content h3 {
        font-size: 25px;
    }


    .stay-detail__content p {
        font-size: 13px;
        line-height: 1.75;
    }


    .room-good-to-know__note {
        margin-top: 28px;
        padding: 20px;
    }

}

/* =====================================================
   EXPLORE OUR OTHER STAY
===================================================== */

.other-stay {
    position: relative;

    padding: 145px 0 160px;

    background: #ffffff;

    overflow: hidden;
}


.other-stay__container {
    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.other-stay__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 430px);

    gap: 80px;

    align-items: end;

    margin-bottom: 75px;
}


.other-stay__eyebrow {
    display: block;

    margin-bottom: 20px;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: #9a7135;
}


.other-stay__header h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 5.5vw, 82px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.04em;

    color: #29251f;
}


.other-stay__header h2 em {
    display: block;

    font-weight: 400;

    color: #9a7135;
}


.other-stay__header > p {
    margin: 0 0 7px;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.85;

    color: #70695f;
}


/* =====================================================
   FEATURE LAYOUT
===================================================== */

.other-stay__feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(380px, 0.75fr);

    min-height: 680px;

    background: #f4f0e8;
}


/* =====================================================
   IMAGE
===================================================== */

.other-stay__visual {
    position: relative;

    display: block;

    min-height: 680px;

    overflow: hidden;

    background: #ddd6ca;
}


.other-stay__visual img {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1s cubic-bezier(.2, .65, .3, 1);
}


.other-stay__visual:hover img {
    transform: scale(1.035);
}


/* IMAGE OVERLAY */

.other-stay__image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(21, 18, 14, 0.38) 0%,
            rgba(21, 18, 14, 0.05) 45%,
            transparent 70%
        );

    pointer-events: none;
}


/* =====================================================
   BADGE
===================================================== */

.other-stay__badge {
    position: absolute;

    top: 28px;
    left: 28px;

    z-index: 3;

    padding: 10px 15px;

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #302a23;

    background: #ead9b8;
}


/* =====================================================
   NUMBER
===================================================== */

.other-stay__number {
    position: absolute;

    left: 30px;
    bottom: 29px;

    z-index: 3;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
    font-style: italic;

    color: rgba(255, 255, 255, 0.92);
}


/* =====================================================
   IMAGE ARROW
===================================================== */

.other-stay__image-arrow {
    position: absolute;

    right: 28px;
    bottom: 28px;

    z-index: 3;

    width: 60px;
    height: 60px;

    display: flex;

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

    background: #ffffff;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.other-stay__image-arrow svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #302a23;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.other-stay__visual:hover
.other-stay__image-arrow {
    background: #9a7135;

    transform: translate(4px, -4px);
}


.other-stay__visual:hover
.other-stay__image-arrow svg {
    stroke: #ffffff;
}


/* =====================================================
   CONTENT PANEL
===================================================== */

.other-stay__content {
    padding: clamp(55px, 6vw, 85px);

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* LABEL */

.other-stay__label {
    display: block;

    margin-bottom: 22px;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: #9a7135;
}


/* TITLE */

.other-stay__content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(44px, 4.5vw, 66px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.035em;

    color: #29251f;
}


.other-stay__content h3 em {
    display: block;

    font-weight: 400;

    color: #9a7135;
}


/* DESCRIPTION */

.other-stay__description {
    margin: 28px 0 0;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.85;

    color: #6e675d;
}


/* =====================================================
   QUICK FACTS
===================================================== */

.other-stay__facts {
    margin-top: 38px;

    border-top:
        1px solid rgba(41, 37, 31, 0.15);
}


.other-stay__fact {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(41, 37, 31, 0.12);
}


.other-stay__fact span {
    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: #8a8277;
}


.other-stay__fact strong {
    font-family: "Cormorant Garamond", serif;

    font-size: 20px;
    font-weight: 600;

    text-align: right;

    color: #302b24;
}


/* =====================================================
   CTA
===================================================== */

.other-stay__cta {
    min-height: 56px;

    margin-top: 38px;

    padding: 0 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    text-decoration: none;

    color: #ffffff;

    background: #315b9a;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.other-stay__cta svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.other-stay__cta:hover {
    background: #234778;

    transform: translateY(-2px);
}


.other-stay__cta:hover svg {
    transform: translateX(5px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .other-stay {
        padding: 110px 0 125px;
    }


    .other-stay__container {
        width: min(100% - 60px, 1100px);
    }


    .other-stay__header {
        gap: 50px;

        margin-bottom: 60px;
    }


    .other-stay__feature {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(340px, 0.9fr);

        min-height: 600px;
    }


    .other-stay__visual {
        min-height: 600px;
    }


    .other-stay__content {
        padding: 50px;
    }

}


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

@media (max-width: 750px) {

    .other-stay {
        padding: 85px 0 95px;
    }


    .other-stay__container {
        width: calc(100% - 40px);
    }


    .other-stay__header {
        grid-template-columns: 1fr;

        gap: 26px;

        margin-bottom: 48px;
    }


    .other-stay__header h2 {
        font-size: clamp(44px, 13vw, 60px);
    }


    .other-stay__feature {
        grid-template-columns: 1fr;

        min-height: 0;
    }


    .other-stay__visual {
        min-height: 0;

        aspect-ratio: 4 / 5;
    }


    .other-stay__content {
        padding: 42px 28px 38px;
    }


    .other-stay__content h3 {
        font-size: clamp(42px, 12vw, 56px);
    }


    .other-stay__description {
        margin-top: 23px;
    }


    .other-stay__facts {
        margin-top: 30px;
    }


    .other-stay__fact {
        padding: 15px 0;
    }


    .other-stay__fact strong {
        font-size: 18px;
    }


    .other-stay__cta {
        margin-top: 30px;
    }

}

/* =====================================================
   STANDARD ROOM — FAQ
===================================================== */

.room-faq {
    position: relative;

    padding: 145px 0 155px;

    background: #f6f2e9;

    overflow: hidden;
}


.room-faq__container {
    width: min(1320px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 130px;

    align-items: start;
}


/* =====================================================
   LEFT INTRO
===================================================== */

.room-faq__intro {
    position: sticky;

    top: 140px;
}


.room-faq__eyebrow {
    display: block;

    margin-bottom: 22px;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: #315b9a;
}


.room-faq__intro h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 5.2vw, 76px);

    font-weight: 500;

    line-height: 0.96;

    letter-spacing: -0.04em;

    color: #29251f;
}


.room-faq__intro h2 em {
    display: block;

    font-weight: 400;

    color: #9a7135;
}


.room-faq__intro > p {
    max-width: 470px;

    margin: 30px 0 0;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.85;

    color: #70695f;
}


/* =====================================================
   FAQ LIST
===================================================== */

.room-faq__list {
    border-top:
        1px solid rgba(41, 37, 31, 0.18);
}


.room-faq__item {
    border-bottom:
        1px solid rgba(41, 37, 31, 0.16);
}


.room-faq__item h3 {
    margin: 0;
}


/* =====================================================
   QUESTION
===================================================== */

.room-faq__question {
    width: 100%;

    padding: 31px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    border: 0;

    background: transparent;

    color: #29251f;

    text-align: left;

    cursor: pointer;
}


.room-faq__question-content {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 22px;

    align-items: center;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2vw, 28px);

    font-weight: 600;

    line-height: 1.25;
}


.room-faq__number {
    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;

    color: #9a7135;
}


/* =====================================================
   PLUS / MINUS ICON
===================================================== */

.room-faq__icon {
    position: relative;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(49, 91, 154, 0.3);

    border-radius: 50%;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.room-faq__icon::before,
.room-faq__icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 13px;
    height: 1px;

    background: #315b9a;

    transform:
        translate(-50%, -50%);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.room-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


.room-faq__question[aria-expanded="true"]
.room-faq__icon {
    background: #315b9a;

    border-color: #315b9a;
}


.room-faq__question[aria-expanded="true"]
.room-faq__icon::before {
    background: #ffffff;
}


.room-faq__question[aria-expanded="true"]
.room-faq__icon::after {
    background: #ffffff;

    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/* =====================================================
   ANSWER
===================================================== */

.room-faq__answer {
    overflow: hidden;
}


.room-faq__answer-inner {
    padding:
        0
        85px
        31px
        70px;
}


.room-faq__answer p {
    max-width: 620px;

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.85;

    color: #70695f;
}


/* =====================================================
   HOVER
===================================================== */

@media (hover: hover) {

    .room-faq__question:hover {
        color: #315b9a;
    }


    .room-faq__question:hover
    .room-faq__icon {
        border-color: #315b9a;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .room-faq {
        padding: 110px 0 120px;
    }


    .room-faq__container {
        width: min(100% - 60px, 1100px);

        grid-template-columns: 1fr;

        gap: 65px;
    }


    .room-faq__intro {
        position: static;
    }


    .room-faq__intro > p {
        max-width: 620px;
    }

}


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

@media (max-width: 700px) {

    .room-faq {
        padding: 85px 0 90px;
    }


    .room-faq__container {
        width: calc(100% - 40px);

        gap: 50px;
    }


    .room-faq__intro h2 {
        font-size: clamp(44px, 13vw, 60px);
    }


    .room-faq__question {
        padding: 25px 0;

        gap: 18px;
    }


    .room-faq__question-content {
        grid-template-columns: 32px 1fr;

        gap: 10px;

        font-size: 21px;
    }


    .room-faq__icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }


    .room-faq__answer-inner {
        padding:
            0
            48px
            26px
            42px;
    }


    .room-faq__answer p {
        font-size: 13px;

        line-height: 1.8;
    }

}