/* Trust strip, intro, suite cards, amenities, gallery, tour banner, stats counters */

.trust {
  background:var(--white);
  border-bottom:1px solid var(--line);
  padding:24px 0;
}

.trust .wrap {
  display:flex;
  justify-content:space-between;
  gap:25px;
  align-items:center;
}

.trust p {
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.highlights {
  display:flex;
  gap:25px;
  font-size:12px;
  font-weight:700;
  color:var(--ink);
}

.highlights span:before {
  content:'✓';
  color:var(--green);
  margin-right:6px;
}

.intro {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:72px;
  align-items:center;
}

.image-stack {
  height:520px;
  position:relative;
}

.image-stack img:first-child {
  width:78%;
  height:88%;
  object-fit:cover;
}

.image-stack img:last-child {
  position:absolute;
  right:0;
  bottom:0;
  width:44%;
  height:46%;
  object-fit:cover;
  border:8px solid var(--paper);
}

.experience {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:30px;
}

.experience div {
  border-right:1px solid var(--line);
  padding:0 14px;
}

.experience div:first-child {
  padding-left:0;
}

.experience div:last-child {
  border:0;
}

.experience b {
  font:700 25px Poppins;
  display:block;
  color:var(--navy);
}

.experience span {
  font-size:11px;
  color:var(--muted);
}

.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.room {
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:7px;
  transition:.3s transform,.3s box-shadow;
}

.room:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.room-img {
  height:245px;
  overflow:hidden;
  position:relative;
}

.room-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.room:hover .room-img img {
  transform:scale(1.06);
}

.pill {
  position:absolute;
  left:12px;
  top:12px;
  background:#effcf6;
  color:#057354;
  font-size:10px;
  font-weight:700;
  padding:5px 9px;
  border-radius:3px;
}

.save {
  position:absolute;
  right:12px;
  top:12px;
  width:35px;
  height:35px;
  background:#fff;
  border:0;
  border-radius:50%;
  font-size:18px;
}

.save.active {
  color:#d84b68;
}

.room-body {
  padding:18px;
}

.room-title {
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.room h3 {
  font:600 18px Poppins;
  margin:0;
}

.rate {
  color:var(--blue);
  font-size:18px;
  font-weight:700;
  white-space:nowrap;
}

.rate small {
  font-size:11px;
  color:var(--muted);
  font-weight:500;
}

.room p {
  font-size:13px;
  color:var(--muted);
  margin:4px 0 15px;
}

.specs {
  border-top:1px solid var(--line);
  padding-top:13px;
  display:flex;
  gap:14px;
  font-size:12px;
  color:var(--muted);
}

.room-foot {
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.compare {
  border:0;
  background:none;
  font-size:12px;
  color:var(--muted);
  padding:4px;
}

.band {
  background:var(--navy);
  color:#fff;
}

.band .section-head p {
  color:#b5c2d7;
}

.amenities {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid #2a3953;
}

.amenity {
  min-height:145px;
  padding:26px 18px;
  border-right:1px solid #2a3953;
}

.amenity:nth-child(5n) {
  border-right:0;
}

.amenity strong {
  display:block;
  font:600 15px Poppins;
  margin-top:13px;
}

.amenity span {
  font-size:25px;
  color:#74aaff;
}

.amenity small {
  font-size:12px;
  color:#9eadc1;
}

.gallery {
  columns:3;
  column-gap:15px;
}

.gallery figure {
  margin:0 0 15px;
  break-inside:avoid;
  position:relative;
  overflow:hidden;
  border-radius:5px;
  cursor:pointer;
}

.gallery img {
  width:100%;
  display:block;
  transition:.4s;
}

.gallery figure:hover img {
  transform:scale(1.045);
}

.gallery figcaption {
  position:absolute;
  bottom:0;
  inset-inline:0;
  padding:32px 13px 12px;
  color:#fff;
  font-size:12px;
  font-weight:700;
  background:linear-gradient(transparent,rgba(0,0,0,.64));
  opacity:0;
  transition:.3s;
}

.gallery figure:hover figcaption {
  opacity:1;
}

.tour {
  height:530px;
  display:grid;
  align-items:center;
  color:#fff;
  background:linear-gradient(90deg,rgba(8,16,30,.78),rgba(8,16,30,.18)),url('../assets/images/photo-17.jpg') center/cover;
}

.tour .text {
  max-width:515px;
}

.tour h2 {
  font:700 clamp(30px,4vw,46px)/1.15 Poppins;
  margin:10px 0;
}

.tour p {
  color:#e4eaf3;
  font-size:16px;
}

.play {
  height:65px;
  width:65px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:var(--blue);
  font-size:18px;
}

.stats {
  background:var(--white);
  padding:42px 0;
}

.stats .wrap {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat {
  padding:0 27px;
  border-right:1px solid var(--line);
}

.stat:last-child {
  border:0;
}

.num {
  font:700 34px Poppins;
  display:block;
  color:var(--navy);
}

.stat span:last-child {
  font-size:12px;
  color:var(--muted);
}

/* Partner platforms strip (Booking.com / Expedia / Airbnb) */
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.partner-badge {
  flex: 1 1 200px;
  display: grid;
  place-items: center;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: .25s transform, .25s box-shadow, .25s border-color;
}

.partner-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.partner-badge img {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .partner-badges {
    flex-direction: column;
  }
}