/* ========================================
   MISSING / LEGACY-ALIGNED CLASSES
   ======================================== */

/* Buttons */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Accommodation / Rooms */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--white);
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}
.room-card:first-child {
  border-top: 1px solid rgba(184, 150, 110, 0.15);
}
.room-card-reverse .room-image {
  order: 2;
}
.room-card-reverse .room-info {
  order: 1;
}
.room-image {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.room-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}
.room-info {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.room-name {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--charcoal);
}
.room-detail {
  max-width: 720px;
}
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.room-features li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.room-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}
.room-gallery img:hover {
  transform: scale(1.02);
}

/* Contact / Footer helpers */
.contact-form-wrap {}
.contact-info-wrap {}
.facility-card {}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}
.location-block {}
.location-teaser {}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: inherit;
}
.suites-section {}
.welcome-text {}

/* Gallery helper */
.gallery-group-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin: 36px 0 14px;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 999px; }

/* Mobile room tweaks */
@media (max-width: 1024px) {
  .room-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .room-image {
    min-height: 340px;
  }
  .room-image img {
    min-height: 340px;
  }
  .room-info {
    padding: 40px 32px;
  }
  .room-card-reverse .room-image {
    order: 0;
  }
  .room-card-reverse .room-info {
    order: 0;
  }
}
@media (max-width: 768px) {
  .room-image {
    min-height: 260px;
  }
  .room-image img {
    min-height: 260px;
  }
  .room-info {
    padding: 32px 24px;
  }
  .room-name {
    font-size: 30px;
  }
  .room-features {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }
  .room-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .room-gallery img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .room-gallery {
    grid-template-columns: 1fr;
  }
  .room-gallery img {
    height: 220px;
  }
}
