.services-hero {
  padding: 76px 0 44px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 28px;
  align-items: stretch;
}

.services-hero-copy {
  min-height: 540px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(51, 43, 37, .08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.58)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .12), transparent 24rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.services-hero-copy::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(183, 152, 109, .16);
}

.services-hero-media {
  min-height: 540px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9cbbd;
  isolation: isolate;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.services-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(52, 38, 28, .34), rgba(52, 38, 28, .02) 58%, rgba(52, 38, 28, .08)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.18), transparent 20rem);
  z-index: 1;
}

.service-intro {
  padding-top: 52px;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 14px;
}

.service-intro-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 50px rgba(64, 48, 34, .08);
}

.service-intro-card.is-large {
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(246,238,226,.76)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .08), transparent 24rem);
}

.service-intro-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #8a6841;
  font-size: 13px;
  font-weight: 800;
}

.service-intro-card h3 {
  margin: 52px 0 12px;
  color: var(--text);
  font-size: 24px;
  letter-spacing: -.04em;
}

.service-intro-card.is-large h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.service-intro-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.price-section {
  padding-top: 70px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 56px rgba(64, 48, 34, .09);
}

.price-card.is-featured {
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,238,226,.82)),
    radial-gradient(circle at 0 0, rgba(233, 91, 151, .10), transparent 24rem);
  border-color: rgba(183, 152, 109, .20);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(233, 91, 151, .07);
}

.price-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(51, 43, 37, .09);
}

.service-label {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #856747;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.price-card h3 {
  margin: 18px 0 7px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
}

.price-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.price-card-head strong {
  color: var(--text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .92;
  letter-spacing: -.06em;
}

.feature-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183, 152, 109, .12);
}

.reservation-note {
  margin-top: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(183, 152, 109, .18);
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 14px 40px rgba(64, 48, 34, .06);
}

.reservation-note strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -.03em;
}

.reservation-note p {
  margin: 8px 0 0;
  max-width: 880px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.brand-section {
  padding-top: 46px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.brand-pill {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(51, 43, 37, .08);
  background: rgba(255, 255, 255, .68);
  color: var(--muted);
  font-weight: 760;
  letter-spacing: -.02em;
  box-shadow: 0 14px 40px rgba(64, 48, 34, .06);
}

@media (max-width: 1020px) {
  .services-hero-grid,
  .service-intro-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-copy,
  .services-hero-media {
    min-height: auto;
  }

  .services-hero-media {
    height: 620px;
  }

  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .services-hero {
    padding-top: 38px;
  }

  .services-hero-copy {
    padding: 28px;
    border-radius: 28px;
  }

  .services-hero-media {
    height: 520px;
    border-radius: 28px;
  }

  .service-intro-card,
  .price-card {
    padding: 24px;
    border-radius: 28px;
  }

  .price-card-head {
    display: block;
  }

  .price-card-head strong {
    display: block;
    margin-top: 18px;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }
}
