body {
  margin: 0;
  overflow-x: hidden;
}

.video-hero {
  background: #000;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.video-hero-media {
  display: block;
  height: min(78vh, 760px);
  object-fit: cover;
  width: 100%;
}

.amenity-split {
  background: #efefef;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 640px;
}

.amenity-split-reverse {
  grid-template-columns: 60% 40%;
}

.amenity-content {
  align-self: center;
  box-sizing: border-box;
  justify-self: center;
  max-width: 440px;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.2rem, 2vw, 2rem);
  width: 100%;
}

.amenity-content h2 {
  color: #c5a25c;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.9rem, 2.3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.22;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.amenity-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-content li {
  margin-bottom: 1rem;
}

.amenity-content strong {
  color: #4b4b4b;
  display: block;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.14rem;
  margin-bottom: 0.2rem;
}

.amenity-content span {
  color: #6b6b6b;
  display: block;
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.amenity-btn {
  background: #c5a25c;
  color: #fff;
  display: inline-block;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 1rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
}

.amenity-media {
  background-color: #d6d6d6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.amenity-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.amenity-media-kids {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.45) 0 4%, transparent 5%),
    linear-gradient(165deg, #d6b276 0%, #f0d49d 38%, #b98e52 100%);
}

.amenity-media-outdoor {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 35% 52%, rgba(139, 180, 89, 0.95) 0 30%, rgba(139, 180, 89, 0.65) 31%, transparent 42%),
    linear-gradient(145deg, #d0b77b 0%, #86a955 34%, #6f8d46 72%, #ce8e57 100%);
}

@media (max-width: 1024px) {
  .amenity-split,
  .amenity-split-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .amenity-split-reverse .amenity-media {
    order: 0;
  }

  .amenity-content {
    max-width: 760px;
  }

  .amenity-media {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .video-hero-media {
    height: 42vh;
    min-height: 260px;
  }

  .amenity-content {
    padding: 1.5rem 1rem 2rem;
  }

  .amenity-content strong {
    font-size: 1rem;
  }

  .amenity-content span {
    font-size: 0.95rem;
  }

  .amenity-media {
    min-height: 260px;
  }
}
