.theme-luxury-spa {
  --spa-cream: #fbf8ef;
  --spa-pearl: #f3efe4;
  --spa-mist: #e7eee3;
  --spa-sage: #73846f;
  --spa-forest: #203d34;
  --spa-plum: #68445b;
  --spa-brass: #c2a15d;
  --spa-ink: #20231f;
  --spa-muted: #687064;
  --spa-line: rgba(32, 35, 31, 0.15);
  --spa-white: #fffdf8;
  --bg: var(--spa-cream);
  --surface: var(--spa-white);
  --surface-soft: var(--spa-mist);
  --text: var(--spa-ink);
  --muted: var(--spa-muted);
  --line: var(--spa-line);
  --accent: var(--spa-forest);
  --accent-2: var(--spa-plum);
  --dark: #142720;
  --on-dark: #fff8ec;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", system-ui, sans-serif;
  background: var(--spa-cream);
  color: var(--spa-ink);
  font-family: var(--body-font);
}

.theme-luxury-spa * {
  box-sizing: border-box;
}

.theme-luxury-spa img {
  display: block;
  max-width: 100%;
}

.theme-luxury-spa h1,
.theme-luxury-spa h2,
.theme-luxury-spa h3 {
  color: inherit;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0;
}

.theme-luxury-spa h1 {
  max-width: 8.8em;
  margin: 0;
  font-size: 4.4rem;
  line-height: 0.9;
}

.theme-luxury-spa h2 {
  max-width: 12em;
  margin: 0.75rem 0 0;
  font-size: 3.25rem;
  line-height: 0.98;
}

.theme-luxury-spa h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.theme-luxury-spa p {
  line-height: 1.72;
}

.spa-header {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.spa-header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(12, 25, 20, 0.18);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.spa-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  color: var(--spa-forest);
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.spa-brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--spa-forest);
}

.spa-brand-mark::before,
.spa-brand-mark::after {
  content: "";
  position: absolute;
  width: 0.65rem;
  height: 1.28rem;
  border-radius: 999px 999px 0 0;
  background: var(--spa-brass);
  transform-origin: 50% 100%;
}

.spa-brand-mark::before {
  transform: translateX(-0.32rem) rotate(-28deg);
}

.spa-brand-mark::after {
  transform: translateX(0.32rem) rotate(28deg);
}

.spa-header .site-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.2rem;
  padding: 0;
}

.spa-header .site-nav a {
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: var(--spa-ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.spa-header .site-nav a:hover,
.spa-header .site-nav a:focus-visible {
  background: var(--spa-mist);
}

.spa-header .site-nav a:last-child {
  border: 0;
  background: transparent;
  color: var(--spa-ink);
}

.theme-luxury-spa .nav-toggle {
  display: none;
}

.button-header {
  --button-icon-bg: var(--spa-white);
  --button-icon-arrow: var(--spa-forest);
  justify-self: end;
  min-height: 3.55rem;
  padding: 0 1.1rem 0 1.3rem;
  border-radius: 999px;
  background: var(--spa-forest);
  color: var(--spa-white);
  box-shadow: none;
}

.spa-button,
.button-form,
.button-price {
  border-radius: 999px;
  font-weight: 900;
}

.theme-luxury-spa .button-primary {
  background: var(--spa-white);
  color: var(--spa-forest);
  box-shadow: none;
}

.theme-luxury-spa .button-primary:hover,
.theme-luxury-spa .button-primary:focus-visible {
  background: var(--spa-mist);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--spa-white);
}

.button-secondary {
  border-color: color-mix(in srgb, var(--spa-forest) 18%, var(--spa-line));
  background: var(--spa-white);
  color: var(--spa-forest);
  box-shadow: none;
}

.button-icon {
  position: relative;
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  margin-left: 0.65rem;
  border-radius: 50%;
  background: var(--button-icon-bg, var(--spa-forest));
}

.button-icon::before,
.button-icon::after {
  content: "";
  position: absolute;
  background: var(--button-icon-arrow, var(--spa-white));
}

.button-icon::before {
  top: 1rem;
  left: 0.72rem;
  width: 0.82rem;
  height: 0.12rem;
  transform: rotate(-42deg);
}

.button-icon::after {
  top: 0.72rem;
  right: 0.72rem;
  width: 0.52rem;
  height: 0.52rem;
  border-top: 0.12rem solid var(--button-icon-arrow, var(--spa-white));
  border-right: 0.12rem solid var(--button-icon-arrow, var(--spa-white));
  background: transparent;
}

.spa-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--spa-white);
}

.spa-hero-image,
.spa-hero-overlay {
  position: absolute;
  inset: 0;
}

.spa-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spa-hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 27, 22, 0.82) 0%, rgba(13, 27, 22, 0.54) 42%, rgba(13, 27, 22, 0.1) 100%),
    linear-gradient(0deg, rgba(13, 27, 22, 0.48) 0%, rgba(13, 27, 22, 0.02) 44%);
}

.spa-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
  align-content: end;
  max-width: 48rem;
  min-height: 88vh;
  padding-top: 8rem;
  padding-bottom: 4.8rem;
}

.spa-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin: 0;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.spa-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.58rem;
  border-radius: 50%;
  background: currentColor;
}

.spa-kicker.dark {
  color: var(--spa-forest);
}

.spa-kicker.light {
  color: var(--spa-white);
}

.spa-hero-lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.15rem;
}

.spa-hero-actions {
  max-width: 32rem;
  margin-top: 0.4rem;
}

.spa-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.spa-proof li {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-strip {
  border-bottom: 1px solid var(--spa-line);
  background: var(--spa-cream);
}

.trust-inner {
  display: grid;
  gap: 1.4rem;
  padding: 2.2rem 0 2.35rem;
  text-align: center;
}

.trust-inner p {
  color: var(--spa-forest);
  font-weight: 800;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: center;
}

.trust-logos span {
  min-height: 3.1rem;
  display: grid;
  place-items: center;
  border-top: 1px solid color-mix(in srgb, var(--spa-forest) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--spa-forest) 18%, transparent);
  color: color-mix(in srgb, var(--spa-forest) 62%, var(--spa-muted));
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.section-split-heading,
.team-heading,
.pricing-heading,
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.6rem;
}

.section-split-heading > p,
.about-copy > p,
.lounge-copy > p,
.booking-copy > p {
  color: var(--spa-muted);
  font-size: 1.04rem;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.ritual-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--spa-forest);
  color: var(--spa-white);
}

.ritual-card-feature {
  min-height: 38rem;
}

.ritual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(13, 27, 22, 0.82) 0%, rgba(13, 27, 22, 0.36) 55%, rgba(13, 27, 22, 0.02) 100%);
}

.ritual-card:hover img {
  transform: scale(1.03);
}

.ritual-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
}

.ritual-card-copy span {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 900;
}

.ritual-card-copy p {
  max-width: 25rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
}

.ritual-card-copy a {
  width: fit-content;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--spa-forest);
  font-weight: 900;
}

.about-section {
  background: var(--spa-pearl);
}

.about-grid,
.lounge-grid,
.booking-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-media,
.lounge-media {
  position: relative;
}

.about-media img,
.lounge-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 8px;
  object-fit: cover;
}

.about-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 10.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--spa-white);
  color: var(--spa-forest);
  box-shadow: 0 20px 46px rgba(20, 39, 32, 0.18);
}

.about-note strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  line-height: 0.9;
}

.about-note span {
  display: block;
  margin-top: 0.45rem;
  color: var(--spa-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.about-copy {
  display: grid;
  gap: 1.4rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.stat-row div {
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--spa-forest) 22%, transparent);
}

.stat-row strong {
  display: block;
  color: var(--spa-forest);
  font-family: var(--heading-font);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.9;
}

.stat-row span {
  display: block;
  margin-top: 0.55rem;
  color: var(--spa-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-section,
.pricing-section,
.booking-section {
  background: var(--spa-forest);
  color: var(--spa-white);
}

.process-heading,
.pricing-heading {
  align-items: start;
}

.process-heading h2,
.pricing-heading h2,
.booking-copy h2 {
  color: var(--spa-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.22);
}

.process-step {
  min-height: 19rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem;
  background: var(--spa-forest);
}

.process-step span {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  color: var(--spa-brass);
  font-weight: 900;
}

.process-step p,
.booking-copy p {
  color: rgba(255, 253, 248, 0.78);
}

.team-section,
.faq-section {
  background: var(--spa-cream);
}

.team-heading {
  align-items: center;
}

.team-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  display: grid;
  gap: 1rem;
  min-height: 21rem;
  padding: 1.25rem;
  border: 1px solid var(--spa-line);
  border-radius: 8px;
  background: var(--spa-white);
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--spa-plum);
  color: var(--spa-white);
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
}

.team-avatar.alt {
  background: var(--spa-forest);
}

.team-avatar.sage {
  background: var(--spa-sage);
  color: var(--spa-ink);
}

.team-card p {
  color: var(--spa-muted);
}

.team-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.team-card li {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--spa-mist);
  color: var(--spa-forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-card {
  min-height: 27rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.3rem;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.price-card p {
  margin: 0;
  color: var(--spa-brass);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--spa-white);
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
}

.price-card span {
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.65;
}

.featured-price {
  background: var(--spa-white);
  color: var(--spa-forest);
}

.featured-price strong {
  color: var(--spa-forest);
}

.featured-price span {
  color: var(--spa-muted);
}

.button-price {
  align-self: end;
  margin-top: auto;
  background: var(--spa-white);
  color: var(--spa-forest);
  box-shadow: none;
}

.featured-price .button-price {
  background: var(--spa-forest);
  color: var(--spa-white);
}

.lounge-section {
  background: var(--spa-mist);
}

.lounge-copy {
  display: grid;
  gap: 1.25rem;
}

.detail-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--spa-line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  background: var(--spa-mist);
}

.detail-list dt {
  color: var(--spa-forest);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
  color: var(--spa-muted);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--spa-line);
  border-radius: 8px;
  background: var(--spa-white);
}

.faq-list summary {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--spa-forest);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--spa-muted);
}

.booking-grid {
  align-items: start;
}

.booking-copy {
  display: grid;
  gap: 1.3rem;
  position: sticky;
  top: 7rem;
}

.booking-contact {
  display: grid;
  gap: 0.65rem;
}

.booking-contact a {
  width: fit-content;
  color: var(--spa-white);
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
}

.spa-form {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: var(--spa-white);
  color: var(--spa-ink);
}

.spa-form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.spa-form label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--spa-forest);
  font-size: 0.85rem;
  font-weight: 900;
}

.spa-form input,
.spa-form select,
.spa-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--spa-forest) 18%, var(--spa-line));
  border-radius: 6px;
  background: #fffefa;
  color: var(--spa-ink);
}

.spa-form input,
.spa-form select {
  min-height: 3.15rem;
  padding: 0 0.85rem;
}

.spa-form textarea {
  min-height: 9rem;
  padding: 0.85rem;
  resize: vertical;
}

.spa-form [aria-invalid="true"] {
  border-color: #b54f45;
  box-shadow: 0 0 0 3px rgba(181, 79, 69, 0.18);
}

.button-form {
  --button-icon-bg: var(--spa-white);
  --button-icon-arrow: var(--spa-forest);
  background: var(--spa-forest);
  color: var(--spa-white);
  box-shadow: none;
}

.spa-footer {
  padding: 3rem 0;
  background: #0f1f1a;
  color: rgba(255, 253, 248, 0.78);
}

.spa-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.spa-footer .spa-brand {
  color: var(--spa-white);
}

.spa-footer p {
  max-width: 42rem;
  margin-top: 1rem;
}

.spa-footer nav {
  display: grid;
  gap: 0.65rem;
}

.spa-footer a {
  color: var(--spa-white);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .theme-luxury-spa h1 {
    font-size: 3.8rem;
  }

  .theme-luxury-spa h2 {
    font-size: 2.85rem;
  }

  .spa-header-row {
    grid-template-columns: 1fr auto auto;
  }

  .theme-luxury-spa .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--spa-mist);
    color: var(--spa-forest);
  }

  .button-header {
    display: none;
  }

  .spa-header .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 0.45rem;
    border-radius: 20px;
    background: var(--spa-white);
  }

  .spa-header .site-nav.open {
    display: flex;
  }

  .spa-header .site-nav a {
    justify-content: center;
  }

  .section-split-heading,
  .team-heading,
  .pricing-heading,
  .process-heading,
  .about-grid,
  .lounge-grid,
  .booking-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .ritual-grid,
  .pricing-grid,
  .team-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .theme-luxury-spa h1 {
    font-size: 3rem;
  }

  .theme-luxury-spa h2 {
    font-size: 2.35rem;
  }

  .theme-luxury-spa h3 {
    font-size: 1.55rem;
  }

  .spa-header {
    top: 0.7rem;
  }

  .spa-header-row {
    width: min(calc(100% - 1rem), var(--max));
    min-height: 4rem;
    border-radius: 24px;
  }

  .spa-brand {
    font-size: 1.3rem;
  }

  .spa-brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .spa-hero,
  .spa-hero-content {
    min-height: 84vh;
  }

  .spa-hero-content {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .spa-hero-lead {
    font-size: 1rem;
  }

  .trust-logos,
  .ritual-grid,
  .pricing-grid,
  .team-grid,
  .process-grid,
  .stat-row,
  .spa-form .field-grid {
    grid-template-columns: 1fr;
  }

  .ritual-card,
  .ritual-card-feature {
    min-height: 28rem;
  }

  .process-step {
    min-height: 14rem;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .spa-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .theme-luxury-spa h1 {
    font-size: 2.55rem;
  }

  .theme-luxury-spa h2 {
    font-size: 2.05rem;
  }

  .button-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .spa-proof li {
    width: 100%;
  }

  .booking-contact a {
    font-size: 1.25rem;
  }
}
