/* ===== SUITES PAGES ===== */
.suites-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 110px 40px 82px;
}

.suites-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, .18), rgba(13, 13, 13, .72)),
    linear-gradient(90deg, rgba(13, 13, 13, .7), rgba(13, 13, 13, .16));
}

.suites-hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.suites-hero h1 {
  max-width: 760px;
  line-height: .95;
}

.suites-search-bar {
  max-width: 1200px;
  margin: -48px auto 58px;
  padding: 18px;
  background: rgba(248, 245, 239, .96);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 5;
}

.search-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 190px;
  gap: 14px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.search-field label {
  font-size: 10px;
  color: var(--text2);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.search-field input,
.search-field select {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(13, 13, 13, .08);
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
}

.search-field input:focus,
.search-field select:focus {
  outline: 1px solid rgba(201, 168, 76, .5);
  border-color: rgba(201, 168, 76, .55);
}

.search-btn {
  min-height: 46px;
  border: none;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.suites-grid-section {
  background: var(--white);
  padding: 16px 20px 100px;
}

.suites-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.suite-page-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, .08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .035);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.suite-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .1);
}

.suite-page-img {
  aspect-ratio: 4 / 3;
  background: var(--light);
  overflow: hidden;
}

.suite-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.suite-page-card:hover .suite-page-img img {
  transform: scale(1.045);
}

.suite-page-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.suite-page-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 12px;
}

.suite-page-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}

.suite-page-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
  white-space: nowrap;
}

.suite-page-price small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text2);
  text-align: right;
}

.suite-page-desc {
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--text2);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.suite-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 22px;
}

.suite-feature-tag {
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 999px;
  background: var(--gold-pale);
  color: #9a7b25;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 6px 11px;
}

.suite-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.suite-card-actions .btn-book,
.suite-card-actions .suite-details-link {
  justify-content: center;
  min-height: 46px;
}

.suite-details-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 13, 13, .1);
  border-radius: var(--radius);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: all .25s ease;
}

.suite-details-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== DETAIL PAGE ===== */
.suite-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  max-width: 1200px;
  margin: 64px auto 88px;
  padding: 0 20px;
}

.suite-detail-main {
  min-width: 0;
}

.detail-gallery {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  box-shadow: 0 22px 62px rgba(0, 0, 0, .12);
}

.gallery-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(13, 13, 13, .62);
  color: var(--white);
  font-size: 24px;
  transform: translateY(-50%);
  transition: all .25s ease;
}

.gallery-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-btn.prev { left: 16px; }
.gallery-btn.next { right: 16px; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb {
  width: 96px;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--light);
  cursor: pointer;
  opacity: .72;
  transition: all .25s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-info-header {
  margin-top: 36px;
}

.suite-info-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
}

.suite-info-type {
  display: inline-flex;
  margin-top: 12px;
  background: rgba(201, 168, 76, .12);
  color: #927221;
  border-radius: var(--radius);
  padding: 5px 9px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.suite-specs-card {
  margin: 26px 0 32px;
  padding: 22px;
  background: var(--light);
  border: 1px solid rgba(13, 13, 13, .04);
  border-radius: var(--radius);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.spec-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--text2);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.spec-item strong {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.suite-info-desc {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.85;
  margin: 30px 0;
}

.suite-info-desc h3,
.amenities-detail-title {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
}

.bed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  color: var(--text2);
  font-size: 14px;
}

.bed-list li {
  border: 1px solid rgba(13, 13, 13, .06);
  border-radius: 999px;
  background: var(--light);
  padding: 9px 15px;
}

.amenities-detail-title {
  border-top: 1px solid rgba(13, 13, 13, .08);
  padding-top: 30px;
}

.amenities-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.amenity-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  background: var(--light);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 14px;
  padding: 12px 14px;
}

.booking-sidebar-card {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .24);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
  padding: 28px;
}

.booking-card-price {
  margin-bottom: 22px;
}

.booking-card-price .regular {
  display: block;
  margin-bottom: 8px;
  color: var(--text2);
  font-size: 13px;
}

.booking-card-price .amount {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.booking-card-price .amount strong {
  color: var(--gold);
  font-weight: 500;
}

.booking-card-price s {
  margin-left: 8px;
  color: var(--text2);
  font-size: 1.05rem;
}

.booking-card-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-card-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking-card-group label {
  color: var(--text2);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-card-group input,
.booking-card-group select {
  min-height: 46px;
  border: 1px solid rgba(13, 13, 13, .07);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 13px;
}

.booking-summary {
  display: none;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
  padding: 16px;
  background: var(--light);
  border: 1px solid rgba(13, 13, 13, .06);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 13px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.booking-summary-row strong {
  color: var(--dark);
}

.booking-summary-row.total {
  border-top: 1px solid rgba(13, 13, 13, .06);
  padding-top: 9px;
}

.booking-summary-row.total strong {
  color: var(--gold);
  font-size: 15px;
}

.booking-card-btn {
  min-height: 48px;
  border: none;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.booking-card-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.related-section {
  background: var(--light);
  padding: 84px 20px;
  border-top: 1px solid rgba(13, 13, 13, .05);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 42px auto 0;
}

.related-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, .06);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--light);
}

.related-body {
  padding: 20px;
}

.related-price {
  color: var(--text2);
  font-size: 13px;
}

.related-price strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.related-name {
  margin: 8px 0;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .search-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-btn {
    grid-column: span 2;
  }

  .suites-page-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suite-detail-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .suites-hero {
    min-height: 280px;
    padding: 86px 20px 58px;
  }

  .suites-hero h1 {
    font-size: 2.6rem !important;
  }

  .suites-search-bar {
    margin: -34px 16px 42px;
    padding: 14px;
  }

  .search-inner,
  .suites-page-grid,
  .related-grid,
  .specs-grid,
  .amenities-detail-grid {
    grid-template-columns: 1fr;
  }

  .search-btn {
    grid-column: auto;
  }

  .suites-grid-section {
    padding-inline: 16px;
  }

  .suite-page-header,
  .suite-card-actions {
    grid-template-columns: 1fr;
  }

  .suite-page-price small {
    text-align: left;
  }

  .suite-info-name {
    font-size: 2.35rem;
  }

  .suite-detail-layout {
    margin-top: 42px;
  }
}
