:root {
  --wood-980: #160e09;
  --wood-950: #1f130d;
  --wood-900: #2b1a11;
  --wood-800: #3d2819;
  --wood-700: #684327;
  --gold-500: #c79d42;
  --gold-300: #e6cc7a;
  --linen: #f6efe2;
  --ivory: #fff9ed;
  --mist: #d8d1c2;
  --sage: #64725a;
  --ink: #251a12;
  --muted: #766757;
  --line: rgba(199, 157, 66, 0.28);
  --shadow: 0 26px 72px rgba(22, 14, 9, 0.22);
  --glass: rgba(255, 249, 237, 0.12);
  --glass-strong: rgba(255, 249, 237, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 157, 66, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 42%, rgba(92, 111, 74, 0.1), transparent 26rem),
    var(--linen);
}

html {
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--ivory);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active,
.site-header.is-solid {
  background: rgba(31, 19, 13, 0.82);
  border-bottom: 1px solid rgba(230, 204, 122, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.08);
}

.brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.brand-mark {
  width: clamp(28px, 2.5vw, 38px);
  height: clamp(28px, 2.5vw, 38px);
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cinzel Decorative", "Cormorant Garamond", Georgia, serif;
  color: var(--gold-300);
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 249, 237, 0.32),
    0 2px 0 rgba(82, 48, 25, 0.7),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 249, 237, 0.78);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown-trigger {
  color: rgba(255, 249, 237, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--gold-300);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 172px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(230, 204, 122, 0.18);
  border-radius: 8px;
  background: rgba(31, 19, 13, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  color: var(--gold-300);
  background: rgba(255, 249, 237, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 249, 237, 0.35);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 249, 237, 0.08);
}

.header-cta,
.btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.header-cta,
.btn {
  gap: 9px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--wood-980);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 28px rgba(199, 157, 66, 0.18);
}

.btn {
  padding: 0 22px;
}

.btn-primary {
  color: var(--wood-980);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.btn-secondary {
  color: var(--ivory);
  border: 1px solid rgba(255, 249, 237, 0.48);
  background: rgba(255, 249, 237, 0.1);
  backdrop-filter: blur(16px) saturate(1.08);
}

.btn-secondary.dark {
  color: var(--wood-950);
  border-color: rgba(104, 67, 39, 0.28);
  background: rgba(255, 249, 237, 0.62);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  isolation: isolate;
}

.hero-photo,
.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  z-index: -4;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.9);
}

.hero-canvas {
  z-index: -2;
  opacity: 0.78;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.9) 0%, rgba(22, 14, 9, 0.58) 48%, rgba(22, 14, 9, 0.2) 100%),
    linear-gradient(0deg, rgba(22, 14, 9, 0.72) 0%, transparent 42%);
}

.hero-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.lead {
  max-width: 590px;
  min-height: 5.5rem;
  color: rgba(255, 249, 237, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.72;
}

[data-content-slot]:empty::before {
  content: "";
  display: block;
  width: min(100%, var(--slot-width, 24rem));
  height: var(--slot-height, 0.9rem);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 157, 66, 0.2), rgba(255, 249, 237, 0.34), rgba(199, 157, 66, 0.14));
}

h2[data-content-slot]:empty::before,
h3[data-content-slot]:empty::before {
  --slot-height: 1.15rem;
}

p[data-content-slot]:empty::before {
  --slot-width: 18rem;
}

.lead[data-content-slot]:empty::before {
  --slot-width: 34rem;
  --slot-height: 4.6rem;
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-status {
  justify-self: end;
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
}

.hero-status article {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(230, 204, 122, 0.36);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: perspective(500px) rotateY(-12deg);
  animation: float-panel 5s ease-in-out infinite;
}

.hero-status article:nth-child(2) {
  animation-delay: 0.65s;
}

.hero-status article:nth-child(3) {
  animation-delay: 1.15s;
}

.hero-status i {
  grid-row: span 2;
  color: var(--gold-300);
}

.hero-status strong {
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-status span {
  color: rgba(255, 249, 237, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

@keyframes float-panel {
  0%,
  100% {
    transform: perspective(500px) rotateY(-12deg) translateY(0);
  }

  50% {
    transform: perspective(500px) rotateY(-4deg) translateY(-14px);
  }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--wood-900);
  color: var(--ivory);
}

.feature-strip div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 249, 237, 0.035);
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-left {
  transform: translateX(-42px);
}

.reveal.reveal-right {
  transform: translateX(42px);
}

.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible {
  transform: translateX(0);
}

.treatment-carousel.reveal-right,
.slider.reveal-right {
  transform: translateY(44px);
}

.treatment-carousel.reveal-right.is-visible,
.slider.reveal-right.is-visible {
  transform: translateY(0);
}

.feature-strip [data-content-slot]:empty::before {
  --slot-width: 12rem;
  background: rgba(255, 249, 237, 0.18);
}

.section-divider {
  height: 14px;
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.98), rgba(82, 48, 25, 0.98), rgba(22, 14, 9, 0.98));
  border-top: 1px solid rgba(230, 204, 122, 0.18);
  border-bottom: 1px solid rgba(230, 204, 122, 0.12);
  box-shadow: 0 18px 42px rgba(66, 40, 24, 0.14);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.treatments-section,
.gallery-section,
.salon-gallery {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.treatments-section .section-kicker,
.gallery-section .section-kicker,
.salon-gallery .section-kicker {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-kicker h2 {
  margin-bottom: 0;
}

.premium-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  isolation: isolate;
}

.premium-section::before,
.treatments-section::before,
.split-section::before,
.salon-gallery::before {
  content: "";
  position: absolute;
  inset: clamp(24px, 4vw, 54px) 0 auto;
  z-index: -1;
  height: clamp(260px, 34vw, 430px);
  background:
    radial-gradient(circle at 22% 40%, rgba(199, 157, 66, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 22%, rgba(92, 111, 74, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 249, 237, 0.68), rgba(255, 249, 237, 0));
  animation: background-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.premium-section::after,
.treatments-section::after,
.split-section::after {
  content: "";
  position: absolute;
  inset: clamp(80px, 12vw, 140px) 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 157, 66, 0.28), transparent);
  animation: shimmer-line 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes background-drift {
  from {
    transform: translate3d(-18px, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -10px, 0) scale(1.03);
  }
}

@keyframes shimmer-line {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.62);
  }

  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}

.service-showcase {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--wood-900);
  isolation: isolate;
}

.service-heading {
  position: absolute;
  top: clamp(92px, 13vh, 130px);
  left: 50%;
  z-index: 6;
  width: min(1180px, calc(100% - 36px));
  color: var(--ivory);
  transform: translateX(-50%);
  pointer-events: none;
}

.service-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ivory);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.service-showcase::before,
.service-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: clamp(80px, 16vw, 260px);
  pointer-events: none;
}

.service-showcase::before {
  left: 0;
  background: linear-gradient(90deg, rgba(22, 14, 9, 0.52), rgba(22, 14, 9, 0));
}

.service-showcase::after {
  right: 0;
  background: linear-gradient(270deg, rgba(22, 14, 9, 0.28), rgba(22, 14, 9, 0));
}

.service-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}

.service-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.service-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.82);
  transform: scale(1.08);
  animation: service-image-drift 14s ease-in-out infinite alternate;
  will-change: transform;
}

.service-panel:nth-of-type(even) img {
  animation-name: service-image-drift-alt;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.9), rgba(22, 14, 9, 0.54) 48%, rgba(22, 14, 9, 0.16)),
    linear-gradient(0deg, rgba(22, 14, 9, 0.72), transparent 55%);
}

@keyframes service-image-drift {
  from {
    transform: scale(1.08) translate3d(-1.8%, -1%, 0);
  }

  to {
    transform: scale(1.16) translate3d(1.8%, 1%, 0);
  }
}

@keyframes service-image-drift-alt {
  from {
    transform: scale(1.09) translate3d(1.6%, -1.2%, 0);
  }

  to {
    transform: scale(1.16) translate3d(-1.6%, 1.2%, 0);
  }
}

.service-panel div {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(760px, calc(100% - 36px));
  height: 100%;
  margin-left: max(clamp(28px, 12vw, 176px), calc((100vw - 1180px) / 2 + 64px));
  margin-right: auto;
  padding: clamp(170px, 23vh, 220px) 0 clamp(150px, 20vh, 190px);
  animation: service-copy-in 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes service-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-panel i {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--gold-300);
}

.service-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-panel h3 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 7.2vw, 6.8rem);
  line-height: 0.9;
}

.service-panel p {
  max-width: 640px;
  color: rgba(255, 249, 237, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.service-panel strong {
  display: flex;
  width: fit-content;
  margin-top: auto;
  color: var(--gold-300);
  font-size: 1.15rem;
}

.service-booking-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  margin-left: 0;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--wood-980);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(199, 157, 66, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-booking-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(199, 157, 66, 0.28);
}

.service-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(26px, 5vh, 46px);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
  transform: translateX(-50%);
}

.service-controls .icon-btn {
  pointer-events: auto;
}

.service-controls .icon-btn {
  opacity: 0.58;
}

.service-controls .icon-btn:hover {
  opacity: 1;
}

.service-progress {
  position: relative;
  width: min(42vw, 420px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.26);
  pointer-events: auto;
}

.service-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--service-progress, 16.666%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}


.video-frame {
  position: relative;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wood-900);
  box-shadow: var(--shadow);
}

.video-frame::after,
.slider-track::after,
.treatment-track::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
}

.video-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wood-980);
  background: rgba(230, 204, 122, 0.92);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.slider,
.treatment-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  perspective: 1200px;
}

.slider-track,
.treatment-track {
  display: flex;
  gap: 22px;
  overflow: visible;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slider-track {
  position: relative;
  height: clamp(460px, 72vh, 760px);
  transform-style: preserve-3d;
}

.treatment-track {
  position: relative;
  height: clamp(430px, 62vh, 620px);
  transform-style: preserve-3d;
}

.slide {
  position: relative;
  position: absolute;
  top: 0;
  left: 50%;
  width: min(78%, 900px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wood-900);
  box-shadow: 0 28px 82px rgba(22, 14, 9, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateX(var(--slide-x, 0)) translateZ(var(--slide-z, 0)) rotateY(var(--slide-rotate, 0deg)) scale(var(--slide-scale, 0.78));
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
  filter: saturate(0.78) brightness(0.75);
  transform-style: preserve-3d;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateX(var(--slide-x, 0)) translateZ(var(--slide-z, 0)) rotateY(var(--slide-rotate, 0deg)) scale(var(--slide-scale, 1));
  filter: saturate(1) brightness(1);
}

.slide.is-near {
  opacity: 0.5;
}

.slide.is-far {
  opacity: 0.16;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(74%, 430px);
  min-height: 340px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(199, 157, 66, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 249, 237, 0.7);
  backdrop-filter: blur(18px) saturate(1.06);
  box-shadow: 0 20px 58px rgba(22, 14, 9, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateX(var(--card-x, 0)) translateZ(var(--card-z, 0)) rotateY(var(--card-rotate, 0deg)) scale(var(--card-scale, 0.82));
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    background 520ms ease,
    filter 520ms ease;
  filter: saturate(0.82) brightness(0.82);
  transform-style: preserve-3d;
}

.treatment-card.is-active {
  opacity: 1;
  pointer-events: auto;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(43, 26, 17, 0.86), rgba(93, 58, 34, 0.8)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.12), transparent);
  backdrop-filter: blur(22px) saturate(1.1);
  filter: saturate(1) brightness(1);
  transform: translateX(-50%) translateX(var(--card-x, 0)) translateZ(var(--card-z, 0)) rotateY(var(--card-rotate, 0deg)) scale(var(--card-scale, 1));
}

.treatment-card.is-near {
  opacity: 0.62;
}

.treatment-card.is-far {
  opacity: 0.22;
}

.treatments-section {
  position: relative;
  isolation: isolate;
}

.treatments-section .treatment-carousel::before,
.treatments-section .treatment-carousel::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(28vw, 340px);
  height: min(28vw, 340px);
  border: 1px solid rgba(199, 157, 66, 0.16);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  animation: orbit-pulse 8s ease-in-out infinite;
}

.treatments-section .treatment-carousel::before {
  left: 8%;
}

.treatments-section .treatment-carousel::after {
  right: 8%;
  animation-delay: 1.4s;
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(-50%) scale(0.92) rotate(0deg);
  }

  50% {
    opacity: 0.62;
    transform: translateY(-50%) scale(1.06) rotate(8deg);
  }
}

.treatment-card i {
  color: var(--gold-500);
}

.treatment-card span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(199, 157, 66, 0.34);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.treatment-card h3 {
  max-width: 280px;
  margin-top: 42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.treatment-card p {
  color: var(--muted);
  line-height: 1.72;
}

.treatment-card.is-active p {
  color: rgba(255, 249, 237, 0.72);
}

.treatment-card strong {
  align-self: end;
  color: var(--gold-300);
}

.slider-controls {
  position: absolute;
  inset: 50% clamp(18px, 3vw, 54px) auto;
  z-index: 16;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
  transform: translateY(-50%);
}

.icon-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--gold-300);
  border: 1px solid rgba(230, 204, 122, 0.36);
  background: rgba(31, 19, 13, 0.58);
  box-shadow: 0 18px 42px rgba(22, 14, 9, 0.24), inset 0 1px 0 rgba(255, 249, 237, 0.14);
  backdrop-filter: blur(18px) saturate(1.08);
  pointer-events: auto;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.icon-btn:hover {
  color: var(--wood-980);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-1px);
}

.slider-dots {
  display: none;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 249, 237, 0.3);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold-300);
}

.layout-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  isolation: isolate;
}

.split-section p,
.experience-band p,
.review-card p,
.booking-card p,
.location-card p,
.booking-section p {
  color: var(--muted);
  line-height: 1.78;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.7);
  box-shadow: 0 14px 42px rgba(22, 14, 9, 0.07);
  overflow: hidden;
}

.benefit-list article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--gold-300), var(--gold-500));
  opacity: 0.75;
}

.benefit-list i {
  color: var(--gold-500);
}

.benefit-list span {
  font-weight: 800;
}

.experience-band {
  position: relative;
  width: min(1040px, calc(100% - 36px));
  margin: clamp(18px, 3vw, 34px) auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(31, 19, 13, 0.96), rgba(61, 40, 25, 0.9)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.16), transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 204, 122, 0.22);
  border-radius: 50%;
  animation: orbit-pulse 9s ease-in-out infinite;
}

.experience-band img {
  width: 100%;
  height: clamp(280px, 30vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.experience-band > div {
  max-width: 430px;
}

.experience-band h2 {
  font-size: clamp(2.55rem, 4.5vw, 3.8rem);
  line-height: 0.96;
}

.experience-band h2,
.experience-band p {
  color: var(--ivory);
}

.experience-band p {
  color: rgba(255, 249, 237, 0.72);
  line-height: 1.65;
}

.experience-band.reveal img {
  transform: translateX(-22px) scale(0.985);
  transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-band.reveal > div {
  transform: translateY(24px);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-band.reveal.is-visible img,
.experience-band.reveal.is-visible > div {
  transform: none;
}

.review-location {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  isolation: isolate;
}

.salon-gallery {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(72px, 9vw, 118px) 0 clamp(58px, 8vw, 96px);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(230, 204, 122, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffaf0, var(--linen));
}

.salon-viewer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.salon-categories {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 98px;
}

.salon-categories button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(199, 157, 66, 0.28);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.76);
  color: var(--wood-800);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.salon-categories button span,
.salon-panel-head span {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.salon-categories button:hover,
.salon-categories button.is-active {
  border-color: rgba(230, 204, 122, 0.62);
  background: linear-gradient(135deg, rgba(82, 48, 25, 0.98), rgba(52, 32, 20, 0.94));
  color: var(--ivory);
  transform: translateX(4px);
}

.salon-gallery-panel {
  min-width: 0;
}

.salon-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.salon-panel-head h2 {
  margin: 0;
  color: var(--wood-900);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.salon-main {
  position: relative;
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(199, 157, 66, 0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 10%, rgba(230, 204, 122, 0.16), transparent 24rem),
    rgba(255, 249, 237, 0.64);
  box-shadow: var(--shadow);
}

.salon-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  padding: clamp(18px, 2.8vw, 32px);
}

.salon-gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(82, 48, 25, 0.18);
  border-radius: 18px;
  background: var(--wood-980);
  box-shadow: 0 18px 42px rgba(22, 14, 9, 0.16);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.salon-gallery-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background:
    linear-gradient(rgba(22, 14, 9, 0.16), rgba(22, 14, 9, 0.24)),
    var(--salon-photo) center / cover;
  filter: blur(18px) saturate(0.96);
  transform: scale(1.08);
}

.salon-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 45%, transparent 42%, rgba(22, 14, 9, 0.18) 100%),
    linear-gradient(90deg, rgba(22, 14, 9, 0.14), transparent 22%, transparent 78%, rgba(22, 14, 9, 0.14));
}

.salon-gallery-card:hover,
.salon-gallery-card.is-active {
  border-color: rgba(230, 204, 122, 0.84);
  box-shadow: 0 24px 54px rgba(22, 14, 9, 0.2);
  transform: translateY(-3px);
}

.salon-gallery-card img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: calc(100% - 18px);
  max-height: calc(100% - 18px);
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 14px 32px rgba(22, 14, 9, 0.16);
}

.salon-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--wood-800);
  font-weight: 700;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 157, 66, 0.12), transparent 36rem),
    #fffaf0;
}

.salon-viewer-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.salon-viewer-actions span {
  min-width: 72px;
  color: var(--wood-800);
  font-weight: 900;
  text-align: center;
}

.salon-thumbs {
  display: none;
}

.review-card,
.booking-card,
.location-card,
.booking-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.72);
  box-shadow: 0 18px 52px rgba(22, 14, 9, 0.08);
  backdrop-filter: blur(12px) saturate(1.04);
}

.booking-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.86), rgba(246, 239, 226, 0.72)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.12), transparent);
}

.booking-card h2 {
  margin-bottom: 0;
}

.review-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 42px);
  text-align: center;
}

.review-card h2 {
  color: var(--wood-800);
  font-size: clamp(4rem, 9vw, 7rem);
}

.review-card p:not(.eyebrow) {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.location-card {
  overflow: hidden;
  margin-top: 0;
}

.location-card iframe {
  width: 100%;
  height: clamp(260px, 32vw, 360px);
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.location-card div {
  padding: clamp(22px, 3vw, 30px);
}

.location-section {
  scroll-margin-top: 92px;
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 72px);
}

.booking-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(56px, 6vw, 88px);
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.86), rgba(246, 239, 226, 0.72)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.12), transparent);
}

.booking-section h2 {
  margin-bottom: 12px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.review-card .btn {
  width: fit-content;
  margin-top: auto;
  align-self: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: rgba(255, 249, 237, 0.76);
  background: var(--wood-950);
  border-top: 1px solid rgba(230, 204, 122, 0.18);
}

.site-footer div,
.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer strong {
  color: var(--gold-300);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.site-footer nav {
  justify-items: center;
  align-content: start;
  gap: 8px;
  font-weight: 700;
  text-align: center;
}

.site-footer nav span {
  color: rgba(255, 249, 237, 0.58);
  font-weight: 600;
}

.site-footer div:last-child {
  justify-items: end;
  text-align: right;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.surface-card,
.side-panel,
.contact-details article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.68);
  box-shadow: 0 18px 52px rgba(22, 14, 9, 0.08);
  backdrop-filter: blur(12px) saturate(1.04);
}

.surface-card {
  min-height: 260px;
  padding: 28px;
}

.surface-card i,
.feature-strip i,
.side-panel i,
.contact-details i {
  color: var(--gold-500);
}

.surface-card i {
  margin-bottom: 52px;
}

.surface-card p,
.side-panel p,
.contact-details p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-copy p,
.contact-map-details {
  color: var(--muted);
  line-height: 1.75;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 86px max(18px, calc((100vw - 1180px) / 2)) 64px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(22, 14, 9, 0.94), rgba(61, 40, 25, 0.88)),
    url("assets/bali-spa-hero.webp") center / cover;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.8rem, 9vw, 7.8rem);
}

.tariff-surface,
.contact-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.88) 0%, rgba(43, 26, 17, 0.78) 48%, rgba(22, 14, 9, 0.66) 100%),
    radial-gradient(circle at 14% 24%, rgba(199, 157, 66, 0.2), transparent 25rem),
    url("assets/bali-spa-hero.webp") center / cover fixed,
    linear-gradient(180deg, var(--linen), #f1e8da);
}

.contact-page .contact-surface {
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  align-items: center;
  padding-top: clamp(70px, 9vw, 120px);
}

.tariff-page {
  padding-bottom: clamp(54px, 8vw, 104px);
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 204, 122, 0.14), transparent 25rem),
    radial-gradient(circle at 82% 54%, rgba(100, 114, 90, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--linen), #efe5d5);
}

.tariff-page .tariff-surface {
  position: relative;
  margin-top: clamp(28px, 5vw, 68px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(230, 204, 122, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.84), rgba(255, 249, 237, 0.62)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.1), transparent);
  box-shadow: 0 24px 80px rgba(22, 14, 9, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.tariff-page .tariff-surface::before,
.tariff-page .tariff-surface::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(199, 157, 66, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.tariff-page .tariff-surface::before {
  right: -120px;
  top: -90px;
  width: 320px;
  height: 320px;
  animation: orbit-pulse 8s ease-in-out infinite;
}

.tariff-page .tariff-surface::after {
  left: -160px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  animation: orbit-pulse 10s ease-in-out infinite reverse;
}

.tariff-category h2 {
  margin-bottom: 32px;
}

.tariff-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.tariff-tabs button {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 157, 66, 0.28);
  border-radius: 14px;
  color: var(--wood-800);
  background: rgba(255, 249, 237, 0.76);
  cursor: pointer;
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tariff-tabs button:hover,
.tariff-tabs button.is-active {
  color: var(--ivory);
  border-color: rgba(230, 204, 122, 0.42);
  background:
    linear-gradient(135deg, rgba(43, 26, 17, 0.98), rgba(93, 58, 34, 0.96)),
    linear-gradient(90deg, rgba(199, 157, 66, 0.16), transparent);
  box-shadow: 0 16px 34px rgba(22, 14, 9, 0.12);
  transform: translateY(-2px);
}

.tariff-panel {
  min-height: clamp(620px, 52vw, 760px);
  animation: tariff-panel-in 260ms ease both;
}

.tariff-panel[hidden] {
  display: none;
}

@keyframes tariff-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tariff-heading {
  margin-bottom: 24px;
}

.tariff-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tariff-heading h2 {
  margin-bottom: 0;
}

.tariff-heading.compact {
  margin-bottom: 12px;
}

.tariff-heading.compact h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.tariff-group {
  margin-top: clamp(26px, 4vw, 42px);
}

.tariff-list {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.tariff-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(199, 157, 66, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 249, 237, 0.92);
  box-shadow: 0 10px 26px rgba(22, 14, 9, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tariff-row:hover,
.tariff-note:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 204, 122, 0.42);
  box-shadow: 0 16px 34px rgba(22, 14, 9, 0.11);
}

.tariff-row h3 {
  color: inherit;
}

.tariff-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.tariff-row strong {
  min-height: 1.2rem;
  color: var(--gold-500);
  text-align: right;
  white-space: nowrap;
  animation: price-float 3.6s ease-in-out infinite;
}

.tariff-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(199, 157, 66, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 249, 237, 0.92);
  box-shadow: 0 10px 26px rgba(22, 14, 9, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tariff-note span {
  font-weight: 800;
}

.tariff-note strong {
  color: var(--gold-500);
  font-weight: 900;
  white-space: nowrap;
  animation: price-float 3.6s ease-in-out infinite;
}

.tariff-row:nth-child(2n) strong,
.tariff-note:nth-of-type(2n) strong {
  animation-delay: 420ms;
}

.tariff-row:nth-child(3n) strong {
  animation-delay: 780ms;
}

@keyframes price-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.tariff-list + .tariff-note {
  margin-top: 14px;
}

.side-panel {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 28px 30px;
}

.side-panel i {
  margin-bottom: 28px;
}

.side-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3vw, 3.15rem);
  line-height: 1;
}

.panel-link {
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  padding-inline: 24px;
  font-size: 1.02rem;
}

.contact-copy h1 {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--ivory);
  font-size: clamp(2.8rem, 4.2vw, 4.45rem);
  line-height: 0.98;
}

.contact-copy > p {
  max-width: 560px;
  color: rgba(255, 249, 237, 0.88);
}

.contact-highlight {
  margin-top: 22px;
  font-weight: 800;
}

.contact-highlight a {
  color: var(--gold-300);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  margin-top: clamp(30px, 4vw, 46px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 249, 237, 0.9);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(230, 204, 122, 0.42);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ivory);
  background: transparent;
  outline-color: var(--gold-500);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 249, 237, 0.58);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .is-wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  width: min(220px, 100%);
  margin-top: 8px;
  justify-self: start;
}

.contact-map-panel {
  display: grid;
  gap: 18px;
}

.contact-map-panel iframe {
  width: 100%;
  height: clamp(420px, 48vw, 560px);
  border: 0;
  filter: saturate(0.82) contrast(0.96);
  box-shadow: 0 18px 52px rgba(22, 14, 9, 0.1);
}

.contact-map-details {
  display: grid;
  gap: 4px;
  padding: 18px 0 0;
  color: rgba(255, 249, 237, 0.86);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-details article {
  padding: 26px;
}

.contact-details i {
  margin-bottom: 28px;
}

.legal-section {
  display: grid;
  gap: 18px;
}

.legal-section article {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.72);
  box-shadow: 0 18px 52px rgba(22, 14, 9, 0.08);
}

.legal-section p {
  color: var(--muted);
  line-height: 1.75;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 112px 18px 42px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 18%, rgba(230, 204, 122, 0.2), transparent 26rem),
    linear-gradient(135deg, rgba(22, 14, 9, 0.9), rgba(61, 38, 23, 0.88)),
    url("assets/bali-spa-hero.webp") center / cover;
}

.thanks-card {
  width: min(720px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid rgba(230, 204, 122, 0.34);
  border-radius: 12px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 19, 13, 0.9), rgba(82, 48, 25, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(230, 204, 122, 0.16), transparent 24rem);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(1.08);
}

.thanks-card img {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.thanks-card h1 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.thanks-card p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 249, 237, 0.78);
  line-height: 1.75;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
    gap: 16px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px;
    justify-items: center;
    text-align: center;
    background: rgba(31, 19, 13, 0.98);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-header.nav-active .site-nav {
    transform: translateY(0);
  }

  .site-nav a,
  .nav-dropdown-trigger,
  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 249, 237, 0.12);
    width: min(240px, 100%);
    margin-inline: auto;
    text-align: center;
    transform: none;
    transition: color 160ms ease, background 160ms ease;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .nav-dropdown:focus-within .nav-dropdown-trigger,
  .nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--gold-300);
    transform: none;
  }

  .nav-dropdown {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .nav-dropdown-trigger {
    justify-content: center;
    gap: 0;
  }

  .nav-dropdown-trigger svg {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    justify-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .nav-dropdown-menu::before {
    content: none;
  }

  .nav-dropdown-menu a {
    padding: 13px 0;
    border-radius: 0;
    color: rgba(255, 249, 237, 0.64);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none !important;
  }

  .header-cta {
    display: none;
  }

  .hero-shell,
  .layout-preview,
  .split-section,
  .experience-band,
  .review-location,
  .tariff-surface,
  .contact-surface {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-surface {
    grid-template-columns: 1fr;
  }

  .review-location {
    gap: 18px;
  }

  .review-card,
  .booking-card {
    min-height: 0;
  }

  .location-card {
    margin-top: 0;
  }

  .hero-status {
    display: none;
  }

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

  .feature-strip div {
    justify-content: flex-start;
    min-height: 74px;
  }

  .surface-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    grid-auto-flow: row;
  }

  .site-footer div:last-child {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    text-align: center;
  }

  .brand small {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .home-hero {
    min-height: 820px;
  }

  .hero-shell {
    width: calc(100% - 32px);
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(3.8rem, 19vw, 5.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy,
  .section-kicker,
  .split-section,
  .experience-band,
  .booking-card,
  .review-card,
  .location-card,
  .contact-copy,
  .tariff-category,
  .side-panel {
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(34px);
  }

  .reveal.reveal-left.is-visible,
  .reveal.reveal-right.is-visible {
    transform: translateY(0);
  }

  .section-kicker {
    display: block;
  }

  .service-showcase {
    min-height: 760px;
  }

  .service-panel div {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    padding-top: 104px;
    padding-bottom: 150px;
    text-align: center;
  }

  .service-booking-link {
    position: static;
    margin-top: 16px;
  }

  .service-panel h3 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .service-panel p {
    margin-right: auto;
    margin-left: auto;
  }

  .service-controls {
    bottom: 22px;
    gap: 12px;
  }

  .service-progress {
    width: 190px;
  }

  .video-frame {
    aspect-ratio: 4 / 5;
  }

  .slider-track {
    height: 560px;
  }

  .slider,
  .treatment-carousel {
    padding: 0;
  }

  .slide {
    width: 86%;
  }

  .treatment-card {
    width: 86%;
    min-height: 390px;
  }

  .slider-controls {
    inset-left: 12px;
    inset-right: 12px;
  }

  .icon-btn {
    width: 48px;
    height: 48px;
  }

  .experience-band {
    width: calc(100% - 32px);
    padding: 18px;
  }

  .experience-band img {
    height: 220px;
  }

  .experience-band h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .location-card iframe {
    height: 230px;
  }

  .salon-viewer {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .salon-categories {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .salon-categories button {
    min-height: 62px;
    padding: 14px 16px;
  }

  .salon-panel-head {
    align-items: center;
    text-align: left;
  }

  .salon-gallery-panel {
    grid-template-columns: 1fr;
  }

  .salon-panel-head h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .salon-main {
    grid-column: 1;
    min-height: 0;
  }

  .salon-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .salon-gallery-card {
    border-radius: 14px;
  }

  @media (max-width: 420px) {
    .salon-photo-grid {
      grid-template-columns: 1fr;
    }
  }

  .salon-viewer-actions {
    grid-column: 1;
  }

  .booking-actions,
  .booking-actions .btn {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-map-panel iframe {
    height: 320px;
  }

  .location-section {
    padding-top: 0;
  }

  .tariff-row {
    grid-template-columns: 1fr;
  }

  .tariff-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .tariff-row strong {
    text-align: center;
    white-space: normal;
  }

  .tariff-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .tariff-note strong {
    white-space: normal;
  }

}
