/* ==========================================================================
   Shuvatara — Modern Amenities Section
   Scoped under `sh-amenities` so it never collides with the legacy theme CSS.
   ========================================================================== */

.sh-amenities {
  position: relative;
  padding: 100px 0;
  background: #fbf9f5;
  overflow: hidden;
}

.sh-amenities::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 106, .16) 0%, rgba(212, 175, 106, 0) 70%);
  z-index: 0;
}

.sh-amenities__head {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.sh-amenities__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-amenities__eyebrow::before,
.sh-amenities__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-amenities__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-amenities__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

/* ---------------------------------- Grid ---------------------------------- */
.sh-amenities__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sh-amenities__item {
  background: #fff;
  border: 1px solid rgba(11, 20, 32, .07);
  border-radius: 16px;
  padding: 34px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sh-amenities__item:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 50px -26px rgba(11, 20, 32, .35);
}

.sh-amenities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(212, 175, 106, .12);
  transition: background .3s ease, transform .3s ease;
}

.sh-amenities__item:hover .sh-amenities__icon {
  background: linear-gradient(135deg, var(--sh-gold-light, #f1dfb5), var(--sh-gold, #d4af6a));
  transform: scale(1.08);
}

.sh-amenities__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sh-amenities__item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 8px;
}

.sh-amenities__item p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #7c8492;
  margin: 0;
}

/* --------------------------------- Responsive --------------------------------- */
@media (max-width: 1199px) {
  .sh-amenities__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .sh-amenities { padding: 72px 0; }
  .sh-amenities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .sh-amenities__item { padding: 26px 16px; }
}

@media (max-width: 480px) {
  .sh-amenities__grid { grid-template-columns: 1fr; }
}
