/* =============================================
   HAUS EDELWEISS — Room Detail Page Styles
   ============================================= */

/* --- 1. ROOM HERO --- */
.room-hero {
  position: relative;
  z-index: 95;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.room-hero__bg {
  position: absolute;
  inset: 0;
}

.room-hero__bg > img,
.room-hero__bg > .room-hero__overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: room-hero-scale-in 1.8s var(--ease-out) forwards;
}

@keyframes room-hero-scale-in {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.room-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 45%);
}

/* Progressive blur — 4 stacked layers, strongest at top */
.room-hero__blur-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  z-index: 1;
  pointer-events: none;
}

.room-hero__blur-top > span {
  position: absolute;
  inset: 0;
}

.room-hero__blur-top > span:nth-child(1) {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 25%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 25%);
}

.room-hero__blur-top > span:nth-child(2) {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
}

.room-hero__blur-top > span:nth-child(3) {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
}

.room-hero__blur-top > span:nth-child(4) {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.room-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(119, 77, 36, 0.1);
  mix-blend-mode: soft-light;
}

/* Content: title + subtitle */
.room-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--container-px);
}

.room-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--color-cream);
  font-feature-settings: 'liga' 0;
}

.room-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-cream);
}

/* Bottom bar: meta | CTA | scroll indicator */
.room-hero__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 80px;
  margin-top: 54px;
}

/* Meta info (area, guests, bed) */
.room-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 0 48px;
  background-color: var(--color-cream);
}

.room-hero__meta-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-rust);
  white-space: nowrap;
  line-height: 1.41;
}

.room-hero__meta-dot {
  width: 3px;
  height: 3px;
  background-color: var(--color-rust);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Vertical divider between sections */
.room-hero__bar-divider {
  width: 1px;
  height: 100%;
  background-color: var(--color-cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-hero__bar-divider::after {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-sage) 0,
    var(--color-sage) 1px,
    transparent 1px,
    transparent 5px
  );
}

/* CTA button */
.room-hero__cta {
  height: 80px;
  padding: 0 24px;
  color: var(--color-rust);
  background-color: var(--color-cream);
}

.room-hero__cta .btn-secondary__text {
  font-size: 18px;
}

/* Notebook scalloped edge (right side of hero bar) —
   reuses notes-tile.svg + notes-edge.svg from booking widget, rotated -90° */
.room-hero__notebook {
  width: 48px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.room-hero__notebook-inner {
  position: absolute;
  width: 80px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: url('../../assets/images/notes-tile.svg') 17px top / 26px 48px repeat-x;
}

.room-hero__notebook-edge {
  display: block;
  height: 48px;
  width: 17px;
  flex-shrink: 0;
}

.room-hero__notebook-edge--end {
  transform: scaleX(-1);
}

/* Hero entrance — hide before GSAP runs */
.room-hero__title,
.room-hero__subtitle,
.room-hero__bar {
  opacity: 0;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .room-hero__bar {
    flex-wrap: wrap;
    height: auto;
    gap: 0;
  }

  .room-hero__meta {
    padding: 0 32px;
    height: 60px;
  }

  .room-hero__cta {
    height: 60px;
  }

  .room-hero__notebook {
    height: 60px;
  }
}

@media (max-width: 640px) {
  .room-hero__bar {
    flex-direction: column;
    width: 100%;
  }

  .room-hero__meta {
    width: 100%;
    justify-content: center;
    padding: 0 var(--container-px);
    height: 56px;
  }

  .room-hero__notebook {
    display: none;
  }

  .room-hero__bar-divider {
    width: 100%;
    height: 1px;
  }

  .room-hero__bar-divider::after {
    top: 0;
    bottom: 0;
    left: 2px;
    right: 2px;
    width: auto;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--color-sage) 0,
      var(--color-sage) 1px,
      transparent 1px,
      transparent 5px
    );
  }

  .room-hero__cta {
    width: 100%;
    justify-content: center;
    height: 56px;
    background-color: var(--color-cream);
  }
}


/* =============================================
   2. ROOM OVERVIEW
   ============================================= */
.room-overview {
  background-color: var(--color-cream);
  padding: 120px var(--container-px) 100px;
}

.room-overview__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.room-overview__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-rust);
  line-height: 1.41;
}

.room-overview__heading {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  line-height: 1.08;
  letter-spacing: -1.56px;
  color: var(--color-rust);
  max-width: 700px;
}

.room-overview__content {
  display: flex;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.room-overview__image {
  flex: 1;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--color-sand-medium);
}

.room-overview__image img,
.room-overview__image > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-overview__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-overview__details-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.room-overview__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: var(--weight-medium);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--color-rust);
}

.room-overview__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-wine);
  max-width: 480px;
}

.room-overview__details-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 64px;
}

.room-overview__plant-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-overview__plant-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--weight-medium);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--color-rust);
}

.room-overview__plant-latin {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-wine);
}

.room-overview__botanical {
  width: 100%;
  max-width: 319px;
  aspect-ratio: 319 / 256;
}

.room-overview__botanical img,
.room-overview__botanical > div {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =============================================
   3. FEATURES & AMENITIES
   ============================================= */
.room-features {
  background-color: #7C7E62;
  padding: 100px 0;
}

.room-features__inner {
  display: flex;
  gap: 80px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.room-features__left {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 160px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-features__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: 1.41;
}

.room-features__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: var(--weight-medium);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-cream);
}

.room-features__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.room-features__item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.room-features__item-image {
  width: 260px;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.room-features__item-image img,
.room-features__item-image > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-features__item-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.room-features__item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: var(--weight-medium);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-cream);
}

.room-features__item-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-cream);
  opacity: 0.85;
}


/* =============================================
   4. GALLERY SLIDER
   ============================================= */
.room-gallery {
  display: none;
  background-color: var(--color-cream);
  padding: 120px 0 80px;
}

.room-gallery__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 var(--container-px);
  margin-bottom: 64px;
}

.room-gallery__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-rust);
  line-height: 1.41;
}

.room-gallery__heading {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  line-height: 1.08;
  letter-spacing: -1.56px;
  color: var(--color-rust);
  max-width: 700px;
}

.room-gallery__slider-wrap {
  position: relative;
}

.room-gallery__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--container-px);
}

.room-gallery__slider::-webkit-scrollbar {
  display: none;
}

.room-gallery__slide {
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  background-color: var(--color-sand-medium);
}

.room-gallery__slide--wide {
  width: 640px;
  height: 520px;
}

.room-gallery__slide--narrow {
  width: 380px;
  height: 520px;
}

.room-gallery__slide img,
.room-gallery__slide > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  color: var(--color-wine);
  background-color: rgba(244, 241, 222, 0.8);
  padding: 8px 16px;
  backdrop-filter: blur(4px);
}

/* Nav arrows — btn-stamp style (matches our-story slider) */
.room-gallery__arrow.btn-stamp {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  z-index: var(--z-above);
}

.room-gallery__arrow--left {
  left: var(--container-px);
}

.room-gallery__arrow--right {
  right: var(--container-px);
}

.room-gallery__arrow-inner.btn-stamp__inner {
  width: 54px;
  height: 54px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-gallery__arrow-icon {
  width: 48px;
  height: 48px;
  display: block;
}

.room-gallery__arrow-icon--flip {
  transform: scaleX(-1);
}


/* =============================================
   5. FLOOR PLAN
   ============================================= */
.room-floorplan {
  position: relative;
  background-color: var(--color-cream);
  height: 100vh;
  display: flex;
  align-items: stretch;
  gap: 160px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.room-floorplan::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-color: var(--color-cream);
  z-index: -1;
}

.room-floorplan__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  padding: 96px 32px;
  flex-shrink: 0;
  width: 250px;
}

.room-floorplan__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.5rem);
  font-weight: var(--weight-medium);
  line-height: 1.24;
  color: var(--color-rust);
}

.room-floorplan__meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-rust);
  line-height: 1.41;
}

.room-floorplan__image-col {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.room-floorplan__image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* =============================================
   6. WHY BOOK DIRECT
   ============================================= */
.room-book-direct {
  background-color: #7C7E62;
  padding: 120px var(--container-px);
}

.room-book-direct__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.room-book-direct__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.room-book-direct__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: 1.41;
}

.room-book-direct__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.125rem);
  font-weight: var(--weight-medium);
  line-height: 1.16;
  letter-spacing: -1px;
  color: var(--color-cream);
  max-width: 600px;
}

.room-book-direct__cards {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.room-book-direct__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 300px;
}

.room-book-direct__icon {
  width: 72px;
  height: 72px;
}

.room-book-direct__icon img {
  width: 100%;
  height: 100%;
}

.room-book-direct__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-book-direct__card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--weight-medium);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--color-cream);
}

.room-book-direct__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-cream);
  opacity: 0.85;
}


/* =============================================
   7. FAQ ACCORDION
   ============================================= */
.room-faq {
  background-color: var(--color-cream);
  padding: 120px var(--container-px);
}

.room-faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.room-faq__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-rust);
  line-height: 1.41;
}

.room-faq__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  line-height: 1.08;
  letter-spacing: -1.56px;
  color: var(--color-rust);
}

.room-faq__title br {
  display: block;
}

.room-faq__list {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 64px;
}

.room-faq__item {
  border-top: 1px solid var(--color-sage);
}

.room-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.room-faq__question-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: var(--weight-medium);
  line-height: 1.24;
  letter-spacing: -0.5px;
  color: var(--color-rust);
}

/* Toggle icon — edelweiss-style SVG icons */
.room-faq__toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}

.room-faq__toggle-open,
.room-faq__toggle-close {
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.room-faq__toggle-open {
  opacity: 1;
  transform: rotate(0deg);
}

.room-faq__toggle-close {
  opacity: 0;
  transform: rotate(-45deg);
}

.room-faq__item.is-open .room-faq__toggle-open {
  opacity: 0;
  transform: rotate(45deg);
}

.room-faq__item.is-open .room-faq__toggle-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Answer area */
.room-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.room-faq__answer p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-wine);
  padding-bottom: 32px;
  max-width: 600px;
}


/* Star-border separators on the room page — cream background */
.page-room .star-border {
  background-color: #F4F1DE;
}


/* =============================================
   8. POLICIES + CTA
   ============================================= */
.room-policies {
  background-color: var(--color-cream);
  padding: 120px var(--container-px);
}

.room-policies__card-wrapper {
  max-width: 1148px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* Notebook scalloped edge — left side.
   Rotated 90deg strip: edge (17px) → tiles (N×26px) → edge (17px).
   Inner width = container height, set by JS via --notebook-h.
   Wrapper min-height snapped to 34 + 26N by JS. */
.room-policies__notebook {
  width: 48px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.room-policies__notebook-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--notebook-h, 800px);
  height: 48px;
  transform: translate(-50%, -50%) rotate(90deg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: url("data:image/svg+xml,%3Csvg width='26' height='48' viewBox='0 0 26 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='13' height='17.5' fill='%23FEFEFC'/%3E%3Crect x='0' y='30.5' width='13' height='17.5' fill='%23FEFEFC'/%3E%3Crect x='13' y='0' width='13' height='48' fill='%23FEFEFC'/%3E%3C/svg%3E") 17px top / 26px 48px repeat-x;
}

.room-policies__notebook-edge {
  display: block;
  height: 48px;
  width: 17px;
  flex-shrink: 0;
  background-color: #FEFEFC;
}

/* Dotted divider between notebook and card */
.room-policies__divider {
  width: 1px;
  flex-shrink: 0;
  position: relative;
  background-color: #FEFEFC;
}

.room-policies__divider::after {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-sage) 0,
    var(--color-sage) 1px,
    transparent 1px,
    transparent 5px
  );
}

.room-policies__card {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Tabs */
.room-policies__tabs {
  display: flex;
}

.room-policies__tab {
  padding: 24px 32px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--weight-medium);
  letter-spacing: -0.2px;
  color: var(--color-rust);
  background-color: #E9E6D1;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--duration-fast) ease;
}

.room-policies__tab.is-active {
  background-color: #FEFEFC;
}

/* Hide cancellation tab for now */
.room-policies__tab[aria-controls="tab-cancellation"] {
  display: none;
}

.room-policies__tab:not(.is-active):hover {
  background-color: #dfdcc7;
}

/* Content panels */
.room-policies__content {
  display: none;
  background-color: #FEFEFC;
  padding: 64px;
}

.room-policies__content.is-active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
}

.room-policies__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.room-policies__policy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.room-policies__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.room-policies__icon img {
  width: 100%;
  height: 100%;
}

.room-policies__policy-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: var(--weight-medium);
  line-height: 0.865;
  color: var(--color-rust);
}

.room-policies__policy-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-wine);
}

/* Note box */
.room-policies__note {
  background-color: #F9F7ED;
  padding: 40px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.room-policies__note-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--weight-medium);
  letter-spacing: -0.2px;
  color: var(--color-rust);
}

.room-policies__note-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.52;
  color: var(--color-wine);
  max-width: 656px;
}

/* Still-have-questions CTA — separate section */
.room-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 96px var(--container-px);
  background-color: var(--color-cream);
}

.room-questions__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.24px;
  color: var(--color-wine);
}


/* =============================================
   RESPONSIVE — SECTIONS 2-8
   ============================================= */

/* --- 1440px --- */
/* --- 1024px — tablet --- */
@media (max-width: 1024px) {
  /* Overview */
  .room-overview {
    padding: 80px var(--container-px) 80px;
  }

  .room-overview__heading {
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  }

  .room-overview__content {
    flex-direction: column;
    gap: 48px;
  }

  .room-overview__image {
    width: 100%;
    min-height: 400px;
  }

  .room-overview__details-bottom {
    margin-top: 48px;
  }

  /* Features */
  .room-features__inner {
    flex-direction: column;
    gap: 48px;
  }

  .room-features__left {
    width: 100%;
    position: static;
  }

  .room-features__item {
    gap: 32px;
  }

  .room-features__item-image {
    width: 220px;
    height: 150px;
  }

  /* Gallery */
  .room-gallery {
    padding: 80px 0 60px;
  }

  .room-gallery__slide--wide {
    width: 480px;
    height: 400px;
  }

  .room-gallery__slide--narrow {
    width: 300px;
    height: 400px;
  }

  /* Floor plan */
  .room-floorplan {
    flex-direction: column;
    justify-content: center;
    padding: 40px var(--container-px);
    gap: 180px;
  }

  .room-floorplan__info {
    flex-direction: column;
    padding: 0 0 12px;
    gap: 4px;
    width: auto;
  }

  .room-floorplan__title br {
    display: none;
  }

  .room-floorplan__image-col {
    flex: none;
    max-height: 60vh;
  }

  /* Book direct */
  .room-book-direct {
    padding: 80px var(--container-px);
  }

  .room-book-direct__cards {
    gap: 48px;
  }

  /* FAQ */
  .room-faq {
    padding: 80px var(--container-px);
  }

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

  /* Policies */
  .room-policies__grid {
    gap: 32px 40px;
  }

  .room-policies__content {
    padding: 40px;
  }
}

/* --- 640px — mobile --- */
@media (max-width: 640px) {
  /* Overview */
  .room-overview {
    padding: 60px var(--container-px);
  }

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

  .room-overview__heading {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .room-overview__image {
    min-height: 300px;
  }

  .room-overview__lead {
    font-size: 1.25rem;
  }

  .room-overview__details-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .room-overview__botanical {
    width: 100%;
    max-width: 319px;
    align-self: flex-end;
  }

  /* Features */
  .room-features {
    padding: 64px 0;
  }

  .room-features__item {
    flex-direction: column;
    gap: 20px;
  }

  .room-features__item-image {
    width: 100%;
    height: 200px;
  }

  .room-features__item-title {
    font-size: 1.375rem;
  }

  /* Gallery */
  .room-gallery {
    padding: 60px 0 48px;
  }

  .room-gallery__heading {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

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

  .room-gallery__slide--wide {
    width: 320px;
    height: 300px;
  }

  .room-gallery__slide--narrow {
    width: 240px;
    height: 300px;
  }

  .room-gallery__arrow.btn-stamp {
    padding: 4px;
  }

  .room-gallery__arrow-inner.btn-stamp__inner {
    width: 48px;
    height: 48px;
  }

  .room-gallery__arrow-icon {
    width: 40px;
    height: 40px;
  }

  /* Floor plan */
  .room-floorplan {
    flex-direction: column;
    justify-content: center;
    padding: 40px var(--container-px);
    gap: 80px;
  }

  .room-floorplan__info {
    flex-direction: column;
    padding: 0 0 12px;
    gap: 4px;
    width: auto;
  }

  .room-floorplan__title br {
    display: none;
  }

  .room-floorplan__image-col {
    flex: none;
    max-height: 60vh;
  }

  /* Book direct */
  .room-book-direct {
    padding: 64px var(--container-px);
  }

  .room-book-direct__inner {
    gap: 48px;
  }

  .room-book-direct__cards {
    flex-direction: column;
    gap: 40px;
  }

  .room-book-direct__heading {
    font-size: 1.75rem;
  }

  /* FAQ */
  .room-faq {
    padding: 60px var(--container-px);
  }

  .room-faq__list {
    padding: 0;
  }

  .room-faq__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .room-faq__question {
    padding: 24px 0;
  }

  .room-faq__question-text {
    font-size: 1.125rem;
  }

  /* Policies */
  .room-policies {
    padding: 48px var(--container-px) 80px;
  }

  .room-policies__notebook,
  .room-policies__divider {
    display: none;
  }

  .room-policies__content {
    padding: 32px 24px;
  }

  .room-policies__tab {
    font-size: 15px;
    padding: 18px 16px;
  }

  .room-policies__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .room-policies__note {
    padding: 24px 16px;
  }

  .room-questions {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
