/* Thribeka Hotel – Public homepage (warm cream theme, tan-gold accents) */
body.home-body {
  background: #F0EBE3;
}
.home-page {
  --home-bg: #F0EBE3;
  --home-bg-card: #FDFAF6;
  --home-bg-elevated: #E8E2D9;
  --home-text: #2C2620;
  --home-text-muted: #78716C;
  --home-gold: #C4A87C;
  --home-gold-soft: rgba(196, 168, 124, 0.15);
  --home-border: rgba(44, 38, 32, 0.08);
  --home-font-heading: "Cormorant Garamond", Georgia, serif;
  --home-font-sans: "DM Sans", system-ui, sans-serif;
  min-height: 100vh;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-font-sans);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--home-font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ----- Header / Nav ----- */
.home-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 0;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff !important;
  text-decoration: none;
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.home-logo:hover {
  color: var(--home-gold) !important;
}

.home-footer .home-logo {
  color: #f5f0e8 !important;
}

.home-logo-img {
  /* width: 5rem; */
  height: auto;
  max-height: 5.5rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.home-logo--small .home-logo-img {
  width: 3.5rem;
  max-height: 2.5rem;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-nav-links a {
  color: #f5f0e8;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s, background 0.2s;
}

.home-nav-links a:hover {
  color: var(--home-gold);
}

.home-nav-links a.active {
  color: var(--home-gold);
  font-weight: 600;
}

.home-nav-toggler {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f5f0e8;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .home-nav-links {
    display: none;
  }
  .home-nav-toggler {
    display: flex;
  }
}

/* ----- Buttons ----- */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.home-btn--nav,
.home-btn--primary {
  background: var(--home-gold);
  color: #fff;
}

.home-btn--nav:hover,
.home-btn--primary:hover {
  background: #B89A6E;
  color: #fff;
}

.home-btn--outline {
  background: transparent;
  color: var(--home-text);
  border: 2px solid var(--home-gold);
}

.home-btn--outline:hover {
  background: var(--home-gold-soft);
  color: var(--home-gold);
}

/* ----- Hero ----- */
.home-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}

.home-hero--contact {
  min-height: 50vh;
  padding: 6rem 0 3rem;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../hero-bg.jpg") center/cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 40%, rgba(44,38,32,0.35) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.home-hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.home-booking-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(37, 32, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  max-width: 840px;
}

.home-booking-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 1.1rem;
  flex: 1;
  min-width: 0;
  color: #a89f91;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}

.home-booking-item--input {
  cursor: pointer;
}

.home-booking-item i {
  color: var(--home-gold);
  font-size: 1rem;
  position: absolute;
  top: 0.75rem;
  left: 1.1rem;
}

.home-booking-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  padding-left: 1.5rem;
  font-weight: 600;
}

.home-booking-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 1.5rem;
  width: 100%;
  cursor: pointer;
  font-family: var(--home-font-body);
}

.home-booking-input::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.home-booking-input option {
  color: #1a1612;
}

.home-booking-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.home-booking-strip .home-btn--primary {
  flex-shrink: 0;
  margin-left: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-booking-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .home-booking-divider { display: none; }
  .home-booking-item { padding: 0.5rem 0; }
  .home-booking-item i { top: 0.55rem; left: 0; }
  .home-booking-item__label { padding-left: 1.4rem; }
  .home-booking-input { padding-left: 1.4rem; }
  .home-booking-strip .home-btn--primary {
    margin-left: 0;
  }
}

/* ----- Section common ----- */
.home-section {
  padding: 4rem 0;
}

.home-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--home-text);
  margin-bottom: 1rem;
}

.home-section-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--home-text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* ----- Facility cards ----- */
.home-facility-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-facility-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.home-facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(44, 38, 32, 0.12);
}

.home-facility-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.home-facility-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-facility-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--home-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--home-text-muted);
  opacity: 0.6;
}

.home-facility-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--home-bg-card) 0%, transparent 50%);
}

.home-facility-card__body {
  padding: 1.5rem;
}

.home-facility-card__title {
  font-size: 1.35rem;
  color: var(--home-text);
  margin-bottom: 0.5rem;
}

.home-facility-card__desc {
  font-size: 0.9375rem;
  color: var(--home-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.home-facility-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--home-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.home-facility-card__link:hover {
  color: #B89A6E;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .home-facility-cards {
    grid-template-columns: 1fr;
  }
}

/* ----- Rooms grid (room card + experience card) ----- */
.home-rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.home-rooms-grid__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-room-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.home-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(44, 38, 32, 0.12);
}

.home-room-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.home-room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-room-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--home-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--home-text-muted);
  opacity: 0.6;
}

.home-room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--home-bg-card) 0%, transparent 50%);
}

.home-room-card__body {
  padding: 1.5rem;
}

.home-room-card__title {
  font-size: 1.5rem;
  color: var(--home-text);
  margin-bottom: 0.5rem;
}

.home-room-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.home-room-card__rating .stars {
  color: var(--home-gold);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.home-room-card__rating span:last-child {
  font-weight: 600;
  color: var(--home-text-muted);
  font-size: 0.9375rem;
}

.home-room-card__desc {
  font-size: 0.875rem;
  color: var(--home-text-muted);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.home-room-card__amenities {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--home-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.home-room-card__amenities:hover {
  gap: 0.5rem;
  color: #B89A6E;
}

/* Experience / testimonial card */
.home-experience-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  min-height: 380px;
}

.home-experience-card__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800") center/cover no-repeat;
  opacity: 0.12;
}

.home-experience-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-experience-card__title {
  font-size: 1.5rem;
  color: var(--home-text);
  margin: 1rem 0 0.75rem;
}

.home-experience-card__text {
  font-size: 0.9375rem;
  color: var(--home-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.home-testimonial__avatars {
  display: flex;
  gap: -0.5rem;
  margin-bottom: 0.5rem;
}

.home-testimonial__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--home-gold);
  border: 2px solid var(--home-bg-card);
  margin-left: -0.5rem;
}

.home-testimonial__avatar:first-child {
  margin-left: 0;
}

.home-testimonial__stars {
  color: var(--home-gold);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.home-testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--home-text-muted);
  font-style: italic;
  margin: 0 0 1.25rem;
  padding: 0;
}

.home-experience-card .home-btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 992px) {
  .home-rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Footer (shared: home + contact) ----- */
.home-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom, #524034 0%, #63493a 50%, #524034 100%);
  color: #f5f0e8;
}

.home-footer__main {
  padding: 3rem 0 2rem;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  text-align: center;
}

.home-footer__col {
  text-align: left;
}

.home-footer__col--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-footer__heading {
  font-family: var(--home-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #f5f0e8;
  margin: 0 0 0.75rem;
}

.home-footer__text {
  margin: 0;
  font-size: 0.9375rem;
  color: #a89f91;
  line-height: 1.5;
}

.home-footer__logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.home-footer__logo-img {
  width: 3.5rem;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
}

.home-footer__brand {
  font-family: var(--home-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #f5f0e8;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}

.home-footer__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.home-footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #a89f91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.home-footer__social-link:hover {
  color: var(--home-gold);
  border-color: var(--home-gold);
  background: rgba(196, 168, 124, 0.15);
}

.home-footer__bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: #a89f91;
}

@media (max-width: 992px) {
  .home-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-footer__col {
    text-align: center;
  }
  .home-footer__bottom-inner {
    justify-content: center;
  }
}

/* ----- Booking status badge ----- */
.booking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.booking-status-badge--confirmed {
  background: rgba(34, 197, 94, 0.15);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.booking-status-badge--pending {
  background: rgba(234, 179, 8, 0.15);
  color: #854d0e;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.booking-status-badge--cancelled,
.booking-status-badge--failed {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ----- Contact page ----- */
.contact-messages {
  padding: 1rem 1.5rem 0;
}

.contact-message {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.home-hero--contact .home-hero-content {
  max-width: 640px;
}

.home-hero-subtitle {
  font-family: var(--home-font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
}

.home-hero-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-section {
  padding: 4rem 0;
  background: #f5f0e9;
  color: #1a1612;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-heading {
  font-family: var(--home-font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1612;
  margin: 0 0 0.25rem;
}

.contact-subheading {
  font-size: 0.9375rem;
  color: #57534e;
  margin: 0 0 1.5rem;
}

.contact-form__row {
  margin-bottom: 1.25rem;
}

.contact-form__row--half {
  display: inline-block;
  width: calc(50% - 0.5rem);
  vertical-align: top;
}

.contact-form__row--half:first-of-type {
  margin-right: 0.5rem;
}

.contact-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #44403c;
  margin-bottom: 0.35rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--home-font-sans);
  border: 1px solid #d6d3d1;
  border-radius: 0.5rem;
  background: #fff;
  color: #1a1612;
  transition: border-color 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--home-gold);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-form__note {
  font-size: 0.8125rem;
  color: #57534e;
  margin: 0;
}

.contact-info__list {
  margin-bottom: 1.25rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--home-gold-soft);
  color: var(--home-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #57534e;
  margin: 0 0 0.2rem;
}

.contact-info__value {
  font-size: 0.9375rem;
  color: #1a1612;
  margin: 0;
}

.contact-info__value a {
  color: #1a1612;
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--home-gold);
  text-decoration: underline;
}

.contact-info__note {
  font-size: 0.875rem;
  color: #57534e;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form__row--half {
    width: 100%;
    margin-right: 0;
  }
}

/* Map section */
.contact-map-section {
  padding: 0;
}

.contact-map-wrap {
  position: relative;
  height: 450px;
  width: 100%;
}

.contact-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-card {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  max-width: 280px;
  z-index: 1;
}

.contact-map-card__title {
  font-family: var(--home-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1612;
  margin: 0 0 0.5rem;
}

.contact-map-card__address {
  font-size: 0.8125rem;
  color: #57534e;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.contact-map-card__rating {
  font-size: 0.8125rem;
  color: var(--home-gold);
  margin: 0 0 0.5rem;
}

.contact-map-card__link {
  display: inline-block;
  font-size: 0.8125rem;
  color: #2563eb;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.contact-map-card__link:hover {
  text-decoration: underline;
}

.contact-map-card__btn {
  display: inline-block;
  color: #1a1612 !important;
  border-color: #1a1612;
}

.contact-map-card__btn:hover {
  background: rgba(26, 22, 18, 0.08) !important;
  color: #1a1612 !important;
}

@media (max-width: 576px) {
  .contact-map-card {
    position: static;
    transform: none;
    margin: 1rem;
    max-width: none;
  }
  .contact-map-wrap {
    height: 400px;
  }
}

/* ----- Availability banner ----- */
.availability-banner {
  background: var(--home-gold);
  padding: 0.75rem 0;
}

.availability-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.availability-banner__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2C2620;
  font-size: 0.9rem;
  font-weight: 500;
}

.availability-banner__info i {
  font-size: 1.1rem;
  color: #2C2620;
}

.availability-banner__reset {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2C2620;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

/* ----- Rooms & Suites page ----- */
.rooms-intro {
  padding-bottom: 1rem;
}

.rooms-category__heading {
  font-family: var(--home-font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--home-text);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* Room cards grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rooms-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.rooms-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 38, 32, 0.1);
}

.rooms-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.rooms-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.rooms-card:hover .rooms-card__image img {
  transform: scale(1.04);
}

.rooms-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--home-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--home-text-muted);
  opacity: 0.5;
}

.rooms-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--home-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.rooms-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rooms-card__title {
  font-family: var(--home-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 0.5rem;
}

.rooms-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.rooms-card__stars {
  color: var(--home-gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.rooms-card__capacity {
  font-size: 0.8125rem;
  color: var(--home-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.rooms-card__desc {
  font-size: 0.875rem;
  color: var(--home-text-muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex: 1;
}

.rooms-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.rooms-card__price {
  font-family: var(--home-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-text);
}

.rooms-card__price-unit {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--home-text-muted);
  margin-left: 0.15rem;
}

.rooms-card__btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  border-width: 1.5px;
  white-space: nowrap;
}

/* Suites grid */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.suites-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.suites-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 38, 32, 0.1);
}

.suites-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.suites-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.suites-card:hover .suites-card__image img {
  transform: scale(1.04);
}

.suites-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.suites-card__title {
  font-family: var(--home-font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 0.6rem;
}

.suites-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.suites-card__meta .rooms-card__price {
  font-size: 1.15rem;
}

@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .suites-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Room detail page ----- */
.room-detail-page .home-header {
  position: relative;
}

.room-detail-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}

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

.room-detail-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-hero__placeholder {
  width: 100%;
  height: 100%;
  background: var(--home-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--home-text-muted);
  opacity: 0.5;
}

.room-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 38, 32, 0.85) 0%, transparent 50%);
}

.room-detail-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.room-detail-hero__title {
  font-family: var(--home-font-heading);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  max-width: 14em;
}

.room-detail-hero__stars {
  color: var(--home-gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.room-detail-hero__meta {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.room-detail-hero__sep {
  margin: 0 0.5rem;
  opacity: 0.7;
}

.room-detail-breadcrumb {
  padding: 0.75rem 1rem;
  background: var(--home-bg-card);
  border-bottom: 1px solid var(--home-border);
}

.room-detail-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--home-text-muted);
}

.room-detail-breadcrumb__list li:not(:last-child)::after {
  content: " / ";
  margin-left: 0.35rem;
  color: var(--home-text-muted);
}

.room-detail-breadcrumb__list a {
  color: var(--home-text);
  text-decoration: none;
}

.room-detail-breadcrumb__list a:hover {
  color: var(--home-gold);
}

.room-detail-messages {
  padding: 1rem 1rem 0;
}

.room-detail-main {
  padding: 2rem 0 4rem;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.room-detail-content {
  min-width: 0;
}

.room-detail-section {
  margin-bottom: 2rem;
}

.room-detail-heading {
  font-family: var(--home-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 1rem;
}

.room-detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--home-text-muted);
}

.room-detail-description p {
  margin: 0 0 0.75rem;
}

.room-detail-description p:last-child {
  margin-bottom: 0;
}

.room-detail-image-wrap {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--home-bg-elevated);
}

.room-detail-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.room-detail-overview {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--home-text-muted);
}

.room-detail-overview li {
  margin-bottom: 0.5rem;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.room-detail-gallery__item {
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--home-bg-elevated);
  aspect-ratio: 4/3;
}

.room-detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-sidebar {
  position: sticky;
  top: 1.5rem;
}

.room-detail-reserve {
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.room-detail-reserve__title {
  font-family: var(--home-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 0.25rem;
}

.room-detail-reserve__price {
  font-size: 1rem;
  color: var(--home-text-muted);
  margin: 0 0 1.25rem;
}

.room-detail-reserve__price span {
  font-weight: 500;
  color: var(--home-text);
}

.room-detail-form__row {
  margin-bottom: 1rem;
}

.room-detail-form__row--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.room-detail-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-text);
  margin-bottom: 0.35rem;
}

.room-detail-form__input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.9375rem;
  font-family: var(--home-font-sans);
  border: 1px solid var(--home-border);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--home-text);
  box-sizing: border-box;
}

.room-detail-form__input:focus {
  outline: none;
  border-color: var(--home-gold);
}

.room-detail-form__textarea {
  min-height: 80px;
  resize: vertical;
}

.room-detail-reserve__total {
  margin: 1.25rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--home-border);
}

.room-detail-reserve__total-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 0.25rem;
}

.room-detail-reserve__total-value {
  font-family: var(--home-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--home-text);
  margin: 0;
}

.room-detail-reserve__btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}

.room-detail-reserve__contact {
  font-size: 0.875rem;
  color: var(--home-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-detail-reserve__contact a {
  color: var(--home-text);
  text-decoration: none;
}

.room-detail-reserve__contact a:hover {
  color: var(--home-gold);
}

@media (max-width: 992px) {
  .room-detail-grid {
    grid-template-columns: 1fr;
  }
  .room-detail-sidebar {
    position: static;
  }
}

/* ----- Gallery page ----- */
.gallery-main {
  padding: 2rem 0 4rem;
}

.gallery-section {
  margin-bottom: 3rem;
}

.gallery-section:last-child {
  margin-bottom: 0;
}

.gallery-section__title {
  font-family: var(--home-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--home-text);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--home-bg-elevated);
  aspect-ratio: 4/3;
}

.gallery-item__link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item__link:hover img {
  transform: scale(1.05);
}
