/* ════════ SPA & WELLNESS ════════ */
.spa {
  position: relative;
}

.spa-green {
  background: #214944;
  padding: 8px 0 0;
}

.spa-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.spa-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 16px;
}

.spa-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #cfdacf;
  margin-bottom: 34px;
}

.spa-stage {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto -200px;
  padding: 0 24px;
}

.spa-cream {
  background: var(--cream);
  height: 250px;
  position: relative;
  z-index: 1;
}

.spa-bg {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .3);
  transition: opacity .35s ease;
}

.spa-cards {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -44px;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  flex-wrap: wrap;
}

.spa-card {
  width: 150px;
  height: 96px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  perspective: 900px;
}

.spa-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, .2, .2, 1);
  transform-style: preserve-3d;
}

.spa-card.active .spa-inner {
  transform: rotateY(180deg);
}

.spa-face,
.spa-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  overflow: hidden;
}

.spa-face {
  background: #fffdf8;
  color: var(--green);
}

.spa-back {
  background: linear-gradient(180deg, var(--gold), var(--gold-d));
  color: #fff;
  transform: rotateY(180deg);
}

.spa-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spa-ico svg,
.spa-ico img {
  width: 34px;
  height: 34px;
  stroke: var(--green);
  fill: none;
}

.spa-ico img {
  width: 60%;
}

.spa-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  margin-top: 8px;
  line-height: 1.2;
}

.spa-back p {
  font-size: 9px;
  line-height: 1.42;
}

/* ════════ STARGAZING ════════ */
.star-section {
  background: #f3ece0;
  padding: 56px 0 70px;
}

.star-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.star-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 56px;
  color: #1f4034;
  margin-bottom: 16px;
}

.star-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #6f7d72;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.star-card {
  flex: 1 1 0;
  min-width: 0;
  will-change: flex-grow;
  transition: flex-grow .8s cubic-bezier(.22, 1, .36, 1);
}

.star-card:hover {
  flex-grow: 2.4;
}

.star-frame {
  background: #fffdf8;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
  transition: box-shadow .8s cubic-bezier(.22, 1, .36, 1);
}

.star-card:hover .star-frame {
  box-shadow: 0 22px 46px rgba(0, 0, 0, .20);
}

.star-photo {
  border-radius: 11px;
  overflow: hidden;
}

.star-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.star-card:hover .star-photo img {
  transform: scale(1.04);
}

.star-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height .8s cubic-bezier(.22, 1, .36, 1), opacity .55s ease .12s, transform .7s cubic-bezier(.22, 1, .36, 1) .1s, padding .8s cubic-bezier(.22, 1, .36, 1);
  text-align: center;
  padding: 0 12px;
}

.star-card:hover .star-body {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0);
  padding: 16px 14px 10px;
}

.star-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: #1f4034;
  margin-bottom: 10px;
}

.star-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6f7d72;
}

.star-label {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.2;
  color: #1f4034;
  margin-top: 18px;
  transition: opacity .5s ease;
}

.star-card:hover .star-label {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .spa-title {
    font-size: 38px;
  }
  .spa-bg {
    height: 340px;
  }
  .spa-stage {
    margin-bottom: 0;
  }
  .spa-cards {
    position: static;
    margin-top: 18px;
    bottom: auto;
    gap: 12px;
  }
  .spa-cream {
    height: 36px;
  }
  .star-title {
    font-size: 38px;
  }
  .star-row {
    flex-direction: column;
    gap: 28px;
  }
  .star-card {
    width: 100%;
  }
  .star-card:hover {
    flex-grow: 1;
  }
  .star-body {
    max-height: none;
    opacity: 1;
    transform: none;
    padding: 16px 14px 10px;
  }
  .star-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .spa-card {
    width: 46%;
  }
}
