/* Restored Cana Bay information within the locked R15 visual system. */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.amenity-card {
  min-height: 170px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.amenity-icon { font-size: 28px; margin-bottom: 13px; }
.amenity-card h3 { font: 500 27px/1.05 "Cormorant Garamond", serif; color: var(--blue); margin: 0 0 8px; }
.amenity-card p { font-size: 12px; line-height: 1.55; margin: 0; }

.location-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6vw;
  align-items: center;
}

.distance-list { margin-top: 25px; border-top: 1px solid var(--line); }
.distance-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.distance-place { display: flex; gap: 11px; align-items: center; color: var(--ink); }
.distance-time { color: var(--aqua); font-weight: 600; white-space: nowrap; }

.beach-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}

.beach-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}

.beach-carousel__image.is-active { opacity: 1; }

.beach-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffffb8;
  border-radius: 50%;
  background: #0c557dcc;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.beach-carousel__control.previous { left: 16px; }
.beach-carousel__control.next { right: 16px; }

.beach-carousel__status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  background: #0c557dcc;
  color: #fff;
  font-size: 10px;
}

.beach-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.beach-carousel__dot.is-active { background: #fff; }
.carousel-caption { margin: 12px 0 0; font-size: 12px; color: #6d777c; }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { padding: 25px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font: 500 29px/1.1 "Cormorant Garamond", serif; color: var(--blue); margin: 0 0 10px; }
.faq-item p { margin: 0; }

@media (max-width: 980px) {
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-layout { grid-template-columns: 1fr; }
  .beach-carousel { height: 390px; }
}

@media (max-width: 620px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 0; }
  .beach-carousel { height: 300px; }
}
