/* ─── Rooms Intro ─────────────────────────────────────────────────────────── */
.rooms-intro {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--textlt);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── Amenities Band ──────────────────────────────────────────────────────── */
.amenities-band {
  background: var(--deep);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200,150,62,.2);
}
.amenities-band-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.ab-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--sand);
  opacity: .85;
}
.ab-icon { font-size: 1rem; }

/* ─── Room Section ────────────────────────────────────────────────────────── */
.room-section { padding: 5rem 0; background: var(--cream); }
.room-section-alt { background: var(--sand); }
.room-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.room-layout-reverse { direction: rtl; }
.room-layout-reverse > * { direction: ltr; }

/* Images */
.room-img-main {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,15,7,.18);
  margin-bottom: 1rem;
}
.room-img-main svg { width: 100%; height: 100%; }
.room-img-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.room-thumb { aspect-ratio: 3/2; overflow: hidden; }
.room-thumb svg { width: 100%; height: 100%; }

/* Info */
.room-number {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.room-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.1;
}
.room-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-top: .2rem;
  margin-bottom: .2rem;
}
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 1rem 0 1.25rem; }
.room-desc {
  font-size: .95rem;
  color: var(--textlt);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Specs */
.room-specs { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.spec-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(200,150,62,.18);
}
.spec-icon { font-size: 1rem; }
.spec-label { font-weight: 600; color: var(--deep); min-width: 80px; }
.spec-val { color: var(--textlt); }

/* Amenities Grid */
.room-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
}
.room-amenity {
  font-size: .85rem;
  color: var(--textlt);
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ─── Rooms CTA ───────────────────────────────────────────────────────────── */
.rooms-cta {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.rooms-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e0f07, #5c2d1a);
}
.rooms-cta-inner { position: relative; z-index: 2; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .room-layout { grid-template-columns: 1fr; gap: 3rem; }
  .room-layout-reverse { direction: ltr; }
  .amenities-band-grid { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .room-amenities-grid { grid-template-columns: 1fr; }
  .amenities-band-grid { flex-direction: column; align-items: center; gap: .75rem; }
}

/* Real photo support */
.room-img-main img { width:100%;height:100%;object-fit:cover;display:block; }
.room-thumb img { width:100%;height:100%;object-fit:cover;display:block; }
