.description-h {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
  text-align: center;
}
.description-container h1 {
  max-width: 90%;
  margin-inline: auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}
.card {
  min-height: 420px;
  background: var(--bg-grey);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 450px;
}
.card__media img {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--gold3);
}
.card__body {
  padding: 16px;
  text-align: center;
}
.card__title {
  font-family: var(--font-serif);
  color: var(--gold2);
}
.card__text {
  color: var(--muted);
  font-size: 2rem;
}
.spa-section {
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}
.spa-container {
  max-width: 1000px;
  text-align: center;
}
.spa-container img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 500 / 333; /* preserves layout before load */
  border: 20px solid #635f4e;
  display: block;
  margin: 0 auto;
}
.spa-container .spa-desc,
.spa-container .spa-services {
  font-size: clamp(2rem, 1.5vw, 2.5rem);
  line-height: 1.7;
  max-width: 90%;
}
.testimonials-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: "Times New Roman", serif;
}
.testimonials-section .section-title {
  font-weight: 700;
  color: var(--pureyellow);
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background-color: var(--bg-dark);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
  min-height: 436px;
}
.testimonial-text {
  border: 1px solid var(--pureyellow);
  border-radius: 10px;
  padding: 20px;
  background-color: var(--bg-grey);
  position: relative;
  height: 215px;
}
.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--pureyellow);
  object-fit: cover;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  z-index: 1;
}
.testimonial-card h4 {
  margin-top: 70px;
  color: var(--pureyellow);
  font-weight: 700;
}
.read-more {
  display: inline-block;
  margin-top: 5px;
  color: var(--pureyellow);
  text-decoration: underline;
  font-size: 1.6rem;
}
.read-more:hover {
  color: var(--white);
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-text {
    height: 200px;
  }
  .testimonial-img {
    width: 100px;
    height: 100px;
    bottom: -50px;
  }
  .testimonial-card h4 {
    margin-top: 60px;
  }
}
.couples-section {
  background-color: var(--bg-grey);
  padding: 60px 20px;
}
.couples-container {
  max-width: 900px;
  margin: 0 auto;
}
.couples-title {
  color: var(--pureyellow);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.couples-intro {
  margin-bottom: 15px;
  text-align: center;
}
.couples-subtitle {
  font-weight: 400;
  color: var(--pureyellow);
  margin-bottom: 25px;
  text-align: left;
}
.couples-quote {
  font-style: italic;
  border-left: 4px solid var(--pureyellow);
  padding-left: 20px;
  margin: 20px 0;
}
.couples-signature {
  margin-bottom: 30px;
  text-align: center;
}
.button1-container {
  text-align: center;
}
