@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin-normal-v21.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin-italic-v21.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-normal-v20.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0d0b0a;
  --ink-soft: #171310;
  --coffee: #2b211a;
  --ivory: #f6f1e8;
  --paper: #eee7dc;
  --paper-deep: #e3d9cb;
  --gold: #d5b272;
  --gold-bright: #edce8b;
  --gold-deep: #765526;
  --taupe: #88776a;
  --blush: #c6a89c;
  --line-dark: rgba(13, 11, 10, 0.15);
  --line-light: rgba(246, 241, 232, 0.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--ivory);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--ivory);
  transition: background-color 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header:has(.mobile-menu.is-open) {
  background: rgba(13, 11, 10, 0.91);
  border-color: rgba(246, 241, 232, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  line-height: 0.8;
}

.wordmark-name {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.wordmark-sub {
  margin-top: 9px;
  color: var(--ivory);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.header-wordmark {
  line-height: 1;
}

.header-logo {
  display: block;
  width: 128px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(246, 241, 232, 0.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ivory);
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease,
    transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
  gap: 12px;
  font-size: 10px;
}

.button-gold {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #f6dda5;
  border-color: #f6dda5;
}

.button-ink {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.button-ink:hover,
.button-ink:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-light {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(13, 11, 10, 0.4);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.35);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(13, 11, 10, 0.35);
  background: transparent;
  cursor: pointer;
}

.text-link-gold {
  color: var(--gold-bright);
  border-color: rgba(237, 206, 139, 0.45);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow-dark {
  color: #765526;
}

.hero {
  position: relative;
  min-height: 900px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 25%, rgba(160, 110, 67, 0.1), transparent 28%),
    linear-gradient(135deg, #100d0b 0%, #090808 70%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: 3%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(213, 178, 114, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(213, 178, 114, 0.07);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 8vw;
  min-height: 840px;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 42px;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(66px, 6vw, 100px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.hero h1 em,
.section-heading h2 em,
.experience h2 em,
.reviews h2 em,
.booking-band h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(246, 241, 232, 0.67);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.hero-intro strong {
  color: var(--ivory);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.button-arrow {
  font-size: 16px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
}

.proof-stars {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.hero-proof p {
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
  color: rgba(246, 241, 232, 0.57);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
}

.hero-image-wrap {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #211913;
  clip-path: polygon(8% 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 6%);
}

.hero-image-wrap::after {
  position: absolute;
  content: "";
  inset: 14px;
  border: 1px solid rgba(237, 206, 139, 0.25);
  clip-path: polygon(8% 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 6%);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.77) contrast(1.04);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 11, 10, 0.55));
  pointer-events: none;
}

.orbit-badge {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: -62px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
}

.orbit-badge svg {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  animation: orbit 18s linear infinite;
}

.orbit-badge text {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.21em;
}

.orbit-badge > span {
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  letter-spacing: -0.08em;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.availability-note {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 250px;
  padding: 18px 22px;
  color: var(--ink);
  background: rgba(246, 241, 232, 0.95);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.availability-note p {
  margin: 0;
  color: #6c5f55;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.availability-note strong {
  color: var(--ink);
  font-size: 11px;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  flex: 0 0 auto;
  background: #708b5b;
  border-radius: 50%;
}

.pulse-dot::after {
  position: absolute;
  content: "";
  inset: -4px;
  border: 1px solid #708b5b;
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  70%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.hero-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  color: rgba(246, 241, 232, 0.68);
  animation: ticker 28s linear infinite;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.ticker-track span {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 9px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 130px 0;
}

.treatments {
  position: relative;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.experience h2,
.reviews h2,
.booking-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.section-heading h2 em,
.reviews h2 em {
  color: var(--gold-deep);
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 3px;
  color: #6d6056;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  min-height: 650px;
  color: var(--ivory);
  background: var(--ink);
}

.service-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.service-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(13, 11, 10, 0.55));
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.service-feature:hover .service-photo img {
  transform: scale(1.025);
}

.image-label {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 25px;
  color: rgba(246, 241, 232, 0.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-list {
  display: flex;
  flex-direction: column;
  padding: 34px 62px 26px;
}

.service-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid var(--line-light);
}

.service-number {
  align-self: start;
  margin-top: 46px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-row h3 span {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-row p {
  margin: 8px 0 0;
  color: rgba(246, 241, 232, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.round-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid rgba(237, 206, 139, 0.35);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: 24px;
}

.service-footer > p {
  max-width: 250px;
  margin: 0;
  color: rgba(246, 241, 232, 0.7);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.service-footer .text-link-dark {
  color: var(--ivory);
  border-color: rgba(246, 241, 232, 0.3);
}

.pricing {
  position: relative;
  background: #ded1c2;
  overflow: hidden;
}

.pricing::before {
  position: absolute;
  content: "";
  top: 80px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(151, 111, 53, 0.12);
  border-radius: 50%;
}

.pricing-heading {
  position: relative;
  margin-bottom: 64px;
}

.pricing-subheading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 28px;
}

.pricing-subheading h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.pricing-subheading h3 em {
  color: var(--gold-deep);
  font-weight: 400;
}

.pricing-subheading > p {
  max-width: 390px;
  margin: 0 0 3px;
  color: #66594f;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.extension-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(213, 178, 114, 0.32);
  color: var(--ivory);
  background: rgba(213, 178, 114, 0.32);
}

.extension-price-card {
  position: relative;
  min-width: 0;
  padding: 40px 38px 34px;
  background: var(--ink);
}

.price-card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.extension-price-card h4 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.price-lines {
  margin: 24px 0 0;
}

.price-lines div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
}

.price-lines dt {
  color: rgba(246, 241, 232, 0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-lines dd {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.treatment-price-block {
  margin-top: 26px;
  padding: 56px 60px 0;
  border: 1px solid rgba(213, 178, 114, 0.28);
  color: var(--ivory);
  background: var(--ink-soft);
}

.pricing-subheading-light {
  margin-bottom: 34px;
}

.pricing-subheading-light h3 {
  color: var(--ivory);
}

.pricing-subheading-light h3 em,
.pricing-subheading-light .eyebrow {
  color: var(--gold-bright);
}

.pricing-subheading-light > p {
  color: rgba(246, 241, 232, 0.64);
}

.price-table-shell {
  border-top: 1px solid rgba(213, 178, 114, 0.32);
}

.price-comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-comparison col.price-column {
  width: 104px;
}

.price-comparison th,
.price-comparison td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line-light);
}

.price-comparison thead th {
  color: rgba(246, 241, 232, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-align: left;
  text-transform: uppercase;
}

.price-comparison thead th:not(:first-child),
.price-comparison td {
  text-align: right;
}

.price-comparison tbody th {
  min-width: 0;
  font-weight: 400;
  text-align: left;
}

.price-comparison tbody th > span {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.price-comparison tbody th small {
  display: block;
  max-width: 620px;
  margin-top: 7px;
  color: rgba(246, 241, 232, 0.5);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.price-comparison tbody td {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-comparison .price-group-row th {
  padding: 28px 18px 12px;
  border-bottom-color: rgba(213, 178, 114, 0.28);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 8px;
}

.price-notes p {
  position: relative;
  margin: 0;
  padding: 24px 28px 26px;
  color: rgba(246, 241, 232, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

.price-notes p + p {
  border-left: 1px solid var(--line-light);
}

.price-notes p::before {
  content: "✦";
  margin-right: 10px;
  color: var(--gold);
}

.pricing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
}

.pricing-actions > p {
  max-width: 520px;
  margin: 0;
  color: #66594f;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.experience {
  position: relative;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 50%, rgba(213, 178, 114, 0.12), transparent 25%),
    var(--ink-soft);
  overflow: hidden;
}

.experience::after {
  position: absolute;
  content: "";
  top: 0;
  right: 32%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(237, 206, 139, 0.15), transparent);
}

.experience-mark {
  position: absolute;
  top: 50%;
  left: -40px;
  color: transparent;
  font-family: var(--serif);
  font-size: 290px;
  font-style: italic;
  letter-spacing: -0.1em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(213, 178, 114, 0.1);
  transform: translateY(-50%);
  pointer-events: none;
}

.experience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  gap: 11vw;
  align-items: center;
}

.experience h2 {
  max-width: 680px;
}

.experience-intro {
  max-width: 550px;
  margin: 34px 0 32px;
  color: rgba(246, 241, 232, 0.64);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
}

.experience-steps {
  border-top: 1px solid var(--line-light);
}

.experience-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.experience-steps article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.experience-steps h3 {
  margin: -7px 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.experience-steps p {
  max-width: 420px;
  margin: 0;
  color: rgba(246, 241, 232, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.faq {
  background: #ded1c2;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 9vw;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-heading h2 {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.faq-heading h2 em {
  color: var(--gold-deep);
  font-weight: 400;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 430px;
  margin: 28px 0 0;
  color: #66594f;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

.faq-list {
  border-top: 1px solid rgba(13, 11, 10, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(13, 11, 10, 0.22);
}

.faq-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: #765526;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 680px;
  margin: -4px 54px 28px 0;
  color: #5f534b;
  font-size: 13px;
  line-height: 1.8;
}

.reviews {
  background: var(--ivory);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.reviews h2 {
  text-align: right;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 24px;
  align-items: start;
}

.review-card {
  position: relative;
  min-height: 400px;
  margin: 0;
  padding: 56px 60px 48px;
}

.review-card-main {
  color: var(--ivory);
  background: var(--ink);
}

.review-card-accent {
  margin-top: 78px;
  color: var(--ink);
  background: #dfd1c3;
}

.quote-mark {
  height: 48px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 84px;
  font-style: italic;
  line-height: 1;
}

.review-card blockquote {
  max-width: 650px;
  margin: 24px 0 48px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 400;
  line-height: 1.35;
}

.review-card-accent blockquote {
  font-size: clamp(21px, 1.8vw, 26px);
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.review-card figcaption div {
  display: flex;
  flex-direction: column;
}

.review-card figcaption strong {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card figcaption div span {
  margin-top: 2px;
  opacity: 0.75;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-source {
  margin: 34px 0 0;
  color: #66594f;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.reviews-source a {
  color: #765526;
  font-weight: 600;
  border-bottom: 1px solid rgba(118, 85, 38, 0.45);
}

.booking-band {
  position: relative;
  padding: 125px 0;
  color: var(--ivory);
  background: #745238;
  overflow: hidden;
}

.booking-band::before,
.booking-band::after {
  position: absolute;
  content: "";
  width: 360px;
  height: 360px;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 50%;
}

.booking-band::before {
  top: -210px;
  left: -80px;
}

.booking-band::after {
  right: -90px;
  bottom: -230px;
}

.booking-band-glow {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

.booking-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.booking-band .eyebrow {
  color: var(--ivory);
}

.booking-band h2 {
  max-width: 890px;
}

.booking-band h2 em {
  color: #f4deae;
}

.booking-band-content > p:not(.eyebrow) {
  margin: 26px 0 34px;
  color: rgba(246, 241, 232, 0.92);
  font-family: var(--serif);
  font-size: 18px;
}

.site-footer {
  padding: 90px 0 28px;
  color: var(--ivory);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 1.05fr 0.65fr;
  gap: 50px;
  padding-bottom: 72px;
}

.wordmark-footer .wordmark-name {
  font-size: 50px;
}

.footer-brand > p {
  margin: 28px 0 0;
  color: rgba(246, 241, 232, 0.5);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  padding: 0;
  color: rgba(246, 241, 232, 0.68);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column button:hover,
.footer-column a:focus-visible,
.footer-column button:focus-visible {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(246, 241, 232, 0.68);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-book-button {
  display: none;
}

.booking-dialog {
  width: min(680px, calc(100vw - 34px));
  max-width: none;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.booking-dialog[open] {
  animation: dialog-in 250ms ease both;
}

.booking-dialog::backdrop {
  background: rgba(5, 4, 4, 0.78);
  backdrop-filter: blur(8px);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(13, 11, 10, 0.2);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-fallback {
  padding: 70px;
}

.dialog-fallback h2,
.embed-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.dialog-fallback > p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 30px;
  color: #6d6056;
  font-family: var(--serif);
  font-size: 18px;
}

.dialog-actions {
  display: flex;
  gap: 12px;
}

.dialog-email {
  display: inline-block;
  margin-top: 25px;
  color: #6d6056;
  font-size: 11px;
  border-bottom: 1px solid rgba(13, 11, 10, 0.2);
}

.dialog-embed {
  padding: 30px;
}

.embed-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 24px;
}

.embed-heading h2 {
  font-size: 40px;
}

.embed-heading a {
  margin-bottom: 5px;
  color: #765526;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-embed iframe {
  width: 100%;
  height: min(620px, 65vh);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0, 1),
    transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

:focus-visible {
  outline: 2px solid #fffaf0;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px #3f2b18;
}

.not-found-page {
  min-height: 100vh;
  color: var(--ivory);
  background:
    radial-gradient(circle at 75% 30%, rgba(213, 178, 114, 0.13), transparent 30%),
    var(--ink);
}

.not-found {
  display: flex;
  width: var(--shell);
  min-height: 100vh;
  margin-inline: auto;
  padding: 80px 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.not-found .wordmark {
  margin-bottom: 76px;
}

.not-found h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.not-found h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.not-found > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 36px;
  color: rgba(246, 241, 232, 0.68);
  font-family: var(--serif);
  font-size: 19px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 6vw;
  }

  .hero h1 {
    font-size: clamp(60px, 7vw, 80px);
  }

  .hero-image-wrap {
    height: 590px;
  }

  .orbit-badge {
    left: -45px;
    width: 108px;
    height: 108px;
  }

  .service-list {
    padding-inline: 42px;
  }

  .extension-price-card {
    padding-inline: 30px;
  }

  .treatment-price-block {
    padding-inline: 42px;
  }

  .experience-layout {
    gap: 7vw;
  }

  .faq-layout {
    gap: 6vw;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.65fr 1.05fr;
  }

  .footer-grid .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
    --shell: calc(100% - 40px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .wordmark-name {
    font-size: 31px;
  }

  .header-logo {
    width: 106px;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: var(--header-height) 0 auto;
    display: flex;
    height: calc(100vh - var(--header-height));
    padding: 42px 24px 80px;
    flex-direction: column;
    color: var(--ivory);
    background: rgba(13, 11, 10, 0.98);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 300ms cubic-bezier(0.7, 0, 0.2, 1), visibility 300ms;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.2;
  }

  .mobile-menu a span {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .mobile-menu .button {
    margin-top: 34px;
  }

  .hero {
    min-height: 1120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 132px 0 74px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(62px, 13vw, 90px);
  }

  .hero-intro {
    max-width: 600px;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero-visual {
    width: calc(100% - 30px);
    justify-self: center;
  }

  .hero-image-wrap {
    height: 650px;
  }

  .orbit-badge {
    top: 48px;
    left: -42px;
  }

  .availability-note {
    right: -18px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .service-photo {
    min-height: 500px;
  }

  .service-list {
    padding: 20px 40px 34px;
  }

  .service-footer {
    padding-top: 30px;
  }

  .pricing-subheading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-subheading > p {
    max-width: 600px;
  }

  .extension-price-grid {
    grid-template-columns: 1fr;
  }

  .treatment-price-block {
    padding: 44px 32px 0;
  }

  .price-notes {
    grid-template-columns: 1fr;
  }

  .price-notes p + p {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .pricing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .experience::after {
    display: none;
  }

  .experience-steps {
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading > p:not(.eyebrow) {
    max-width: 600px;
  }

  .reviews-heading {
    display: block;
  }

  .reviews h2 {
    text-align: left;
  }

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

  .review-card-accent {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-grid .footer-column:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 68px;
  }

  .not-found-page {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 44px;
    padding: 118px 0 60px;
  }

  .hero h1 {
    font-size: clamp(54px, 16.4vw, 70px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
  }

  .hero-proof p {
    padding: 0;
    border: 0;
  }

  .hero-visual {
    width: calc(100% - 10px);
  }

  .hero-image-wrap {
    height: 500px;
  }

  .orbit-badge {
    top: 26px;
    left: -16px;
    width: 90px;
    height: 90px;
  }

  .orbit-badge text {
    font-size: 7.5px;
  }

  .orbit-badge > span {
    font-size: 24px;
  }

  .availability-note {
    right: -10px;
    bottom: 20px;
    min-width: 226px;
    padding: 15px 17px;
  }

  .hero-ticker {
    padding-block: 15px;
  }

  .ticker-set {
    gap: 25px;
    padding-right: 25px;
  }

  .ticker-track span {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .experience h2,
  .reviews h2,
  .booking-band h2 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-photo {
    min-height: 420px;
  }

  .service-list {
    padding: 14px 24px 30px;
  }

  .service-row {
    grid-template-columns: 28px 1fr 42px;
    gap: 10px;
    min-height: 136px;
  }

  .service-number {
    margin-top: 39px;
  }

  .service-row h3 {
    font-size: 36px;
  }

  .round-link {
    width: 40px;
    height: 40px;
  }

  .service-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .extension-price-card {
    padding: 30px 24px 26px;
  }

  .treatment-price-block {
    padding: 36px 18px 0;
  }

  .price-comparison col.price-column {
    width: 58px;
  }

  .price-comparison th,
  .price-comparison td {
    padding: 15px 7px;
  }

  .price-comparison thead th {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .price-comparison tbody th > span {
    font-size: 19px;
  }

  .price-comparison tbody th small {
    font-size: 10px;
    line-height: 1.45;
  }

  .price-comparison tbody td {
    font-size: 21px;
  }

  .price-comparison .price-group-row th {
    padding: 24px 7px 10px;
  }

  .price-notes p {
    padding-inline: 6px;
  }

  .pricing-actions .button {
    width: 100%;
  }

  .experience-layout {
    gap: 58px;
  }

  .experience-steps article {
    gap: 14px;
    padding: 29px 0;
  }

  .faq-heading h2 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .faq-list summary {
    padding-block: 23px;
    font-size: 22px;
  }

  .faq-list details p {
    margin-right: 28px;
  }

  .reviews-heading {
    margin-bottom: 42px;
  }

  .review-card {
    min-height: auto;
    padding: 38px 28px 36px;
  }

  .review-card blockquote,
  .review-card-accent blockquote {
    font-size: 23px;
  }

  .booking-band {
    padding: 90px 0;
  }

  .booking-band-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .site-footer {
    padding-top: 68px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-grid .footer-column:nth-child(3) {
    grid-column: auto;
    margin: 0;
  }

  .footer-grid .footer-column:last-child {
    display: flex;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-book-button {
    position: fixed;
    z-index: 80;
    inset: auto 0 0;
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--ink);
    background: var(--gold-bright);
    border: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .booking-dialog {
    width: calc(100vw - 24px);
  }

  .dialog-fallback {
    padding: 62px 25px 38px;
  }

  .dialog-fallback h2 {
    font-size: 47px;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-actions .button {
    width: 100%;
  }

  .dialog-email {
    font-size: 10px;
  }

  .dialog-embed {
    padding: 58px 10px 10px;
  }

  .embed-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
  }

  .embed-heading h2 {
    font-size: 34px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
