:root {
  --bone: #f6efe4;
  --paper: #fbf7f0;
  --linen: #e9dfd0;
  --olive: #8f9676;
  --lacquer: #173a2a;
  --forest: #0c291d;
  --ink: #183126;
  --muted: #657067;
  --brass: #8f5d20;
  --brass-fill: #b98b45;
  --brass-light: #d2ae70;
  --line: rgba(23, 58, 42, 0.18);
  --line-light: rgba(246, 239, 228, 0.2);
  --shadow: 0 2rem 5rem rgba(21, 47, 34, 0.16);
  --display: "Cormorant Garamond", "Noto Serif SC", "Noto Serif TC", Georgia, serif;
  --sans: "Manrope", "Noto Sans SC", "Noto Sans TC", Arial, sans-serif;
  --shell: min(88rem, calc(100vw - 6rem));
  --section-space: clamp(6rem, 10vw, 10rem);
  --header-height: 5.4rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

::selection {
  background: rgba(185, 139, 69, 0.32);
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--forest);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(3.6rem, 6.6vw, 7rem);
}

.micro-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.8rem;
  color: var(--brass);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.micro-label span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  height: 1.35rem;
  border-right: 1px solid currentColor;
}

.section-lead {
  max-width: 38rem;
  color: inherit;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  min-height: 3.5rem;
  padding: 1rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button svg,
.text-link svg {
  transition: transform 220ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(0.25rem);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-primary {
  background: var(--lacquer);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--forest);
}

.button-brass {
  background: var(--brass-fill);
  color: var(--forest);
}

.button-brass:hover {
  background: var(--brass-light);
}

.button-large {
  min-height: 4.25rem;
  padding-inline: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(185, 139, 69, 0.24);
  background: rgba(246, 239, 228, 0.9);
  backdrop-filter: blur(20px) saturate(120%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.5rem;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  width: fit-content;
}

.brand-logo {
  display: block;
  flex: none;
  width: 13rem;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.2rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

.language-switcher button {
  min-width: 2.25rem;
  padding: 0.42rem 0.45rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.language-switcher button.is-active {
  background: var(--lacquer);
  color: var(--paper);
}

.header-book {
  min-height: 2.85rem;
  padding: 0.8rem 1rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(36rem, 72svh, 48rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 72% 50%;
  animation: hero-image-in 1.6s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.98) 0%, rgba(246, 239, 228, 0.94) 29%, rgba(246, 239, 228, 0.68) 46%, rgba(246, 239, 228, 0.08) 72%),
    linear-gradient(180deg, transparent 74%, rgba(9, 34, 23, 0.28));
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: var(--shell);
  min-height: inherit;
  margin-inline: auto;
  padding-block: 4rem 6rem;
}

.hero-copy {
  width: min(49rem, 58vw);
}

.hero-announcement,
.hero-kicker,
.hero-copy h1,
.hero-lead,
.hero-actions {
  animation: hero-copy-in 0.9s cubic-bezier(0.22, 0.78, 0.22, 1) both;
}

.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(143, 93, 32, 0.34);
  background: rgba(251, 247, 240, 0.74);
  color: var(--brass);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation-delay: 20ms;
}

.hero-announcement::before {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--brass-fill);
  box-shadow: 0 0 0 0.2rem rgba(185, 139, 69, 0.14);
  content: "";
}

.hero-copy h1 {
  max-width: 10.5ch;
  color: var(--lacquer);
  font-family: var(--display);
  font-size: clamp(4rem, 6.2vw, 6.75rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 0.95;
  animation-delay: 90ms;
}

html:lang(en) .hero-copy h1 {
  overflow-wrap: normal;
  word-break: normal;
}

.hero-lead {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: #31453a;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.7;
  text-wrap: pretty;
  animation-delay: 170ms;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.25rem;
  animation-delay: 250ms;
}

.proof-line {
  background: var(--forest);
  color: rgba(246, 239, 228, 0.83);
}

.proof-line-inner {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: 2rem;
  width: var(--shell);
  margin-inline: auto;
  padding-block: 1.3rem;
}

.proof-line span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-line span:not(:last-child)::after {
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.section-dark {
  background: var(--lacquer);
  color: var(--paper);
}

.section-dark .micro-label {
  color: var(--brass-light);
}

.section-bone {
  background: var(--bone);
}

.ritual {
  display: grid;
  grid-template-columns: minmax(28rem, 0.9fr) minmax(28rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
  min-height: 58rem;
  padding: var(--section-space) max(3rem, calc((100vw - 88rem) / 2));
  overflow: hidden;
}

.ritual-visual {
  position: relative;
  min-height: 47rem;
  transform: translate3d(0, var(--depth-y, 0), 0);
}

.ritual-visual::before {
  position: absolute;
  top: -2.2rem;
  right: 6%;
  width: 70%;
  height: 78%;
  border: 1px solid rgba(210, 174, 112, 0.65);
  content: "";
}

.ritual-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ritual-image:hover img {
  transform: scale(1.035);
}

.ritual-image-main {
  top: 0;
  left: 0;
  width: 76%;
  height: 39rem;
}

.ritual-image-main img {
  object-position: 50% 38%;
}

.ritual-image-detail {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 56%;
  height: 19rem;
  border: 0.65rem solid var(--lacquer);
  box-shadow: var(--shadow);
}

.ritual-image-detail img {
  object-position: 50% 43%;
}

.vertical-note {
  position: absolute;
  bottom: 1rem;
  left: -2.2rem;
  margin: 0;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.ritual-copy {
  max-width: 45rem;
}

.ritual-copy h2 {
  max-width: none;
  font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  line-height: 1.02;
}

.ritual-copy .section-lead {
  color: rgba(246, 239, 228, 0.72);
}

.ritual-steps {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
  counter-reset: ritual-step;
}

.ritual-steps li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.52fr) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
  counter-increment: ritual-step;
}

.ritual-steps li > span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 1.55rem;
}

.ritual-steps li > span::before {
  color: rgba(210, 174, 112, 0.7);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  content: "0" counter(ritual-step);
}

.ritual-steps p {
  margin: 0;
  color: rgba(246, 239, 228, 0.68);
  font-size: 0.88rem;
}

.ritual blockquote {
  margin: 2.2rem 0 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--brass);
  color: rgba(246, 239, 228, 0.88);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.prices {
  padding: var(--section-space) max(3rem, calc((100vw - 88rem) / 2));
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 5rem;
  margin-bottom: 3rem;
}

.editorial-head h2 {
  max-width: none;
  font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  line-height: 1.02;
}

.editorial-head > div > p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

.price-pdf-link {
  min-width: 10rem;
  margin-bottom: 0.25rem;
  border-color: var(--lacquer);
  color: var(--lacquer);
}

.price-pdf-link:hover {
  background: var(--lacquer);
  color: var(--paper);
}

.native-price-list {
  max-width: 72rem;
  margin-inline: auto;
}

.price-tabs {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.price-tab {
  position: relative;
  min-height: 3.25rem;
  padding: 0 0 0.8rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.price-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.price-tab:hover,
.price-tab:focus-visible,
.price-tab.is-active {
  color: var(--ink);
}

.price-tab:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 0.35rem;
}

.price-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.price-category {
  margin-top: 2.75rem;
}

.price-panel {
  animation: price-panel-in 260ms ease both;
}

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

@keyframes price-panel-in {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }

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

.price-category > h3,
.price-booking-note h3 {
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--brass);
  color: #78585a;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.price-category-intro {
  margin: -0.25rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.treatment {
  padding: 0.95rem 0 1.05rem;
  border-bottom: 1px solid var(--line);
}

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

.treatment h4,
.treatment h6 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.75vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.treatment-head .treatment-meta {
  margin: 0;
}

.treatment-meta {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.28;
  text-align: right;
  white-space: nowrap;
}

.treatment-meta b {
  margin-inline: 0.25rem;
  color: var(--brass);
  font-weight: 400;
}

.treatment-meta-stack {
  display: grid;
  justify-items: end;
}

.treatment > p {
  max-width: 67rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.96rem;
  line-height: 1.38;
}

.treatment > .treatment-includes,
.treatment > .treatment-note {
  color: var(--ink);
}

.treatment-includes em {
  margin-right: 0.2rem;
}

.waxing-group {
  margin-top: 1.75rem;
}

.waxing-group > h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.waxing-group > h5 {
  margin: 0.45rem 0 0;
  color: var(--brass);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.treatment-compact {
  padding-block: 0.65rem 0.7rem;
}

.treatment-compact h6 {
  font-size: 1.25rem;
}

.treatment-compact > p {
  margin-top: 0.2rem;
  font-size: 0.92rem;
}

.price-booking-note {
  margin-top: 4rem;
}

.price-booking-note p {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(28rem, 0.86fr) minmax(30rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
  padding: var(--section-space) max(3rem, calc((100vw - 88rem) / 2));
}

.about-copy h2 {
  max-width: none;
  color: var(--lacquer);
  font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  line-height: 1.02;
}

.about-copy > p:not(.micro-label) {
  max-width: 38rem;
}

.about-copy > p:not(.micro-label, .section-lead) {
  color: var(--muted);
}

.heritage-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.8rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.heritage-notes div {
  padding: 1.4rem 1rem 1.4rem 0;
}

.heritage-notes div + div {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.heritage-notes dt {
  color: var(--lacquer);
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
}

.heritage-notes dd {
  margin: 0.35rem 0 0;
  color: var(--brass);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-portrait {
  position: relative;
  height: min(46rem, 62vw);
  margin: 0;
  transform: translate3d(0, var(--depth-y, 0), 0);
}

.about-portrait::before {
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  width: 55%;
  height: 62%;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  content: "";
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 37%;
}

.about-portrait figcaption {
  position: absolute;
  right: -2rem;
  bottom: 2.5rem;
  display: grid;
  width: min(20rem, 75%);
  padding: 1.2rem 1.4rem;
  background: rgba(23, 58, 42, 0.92);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.about-portrait figcaption span {
  color: var(--brass-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-portrait figcaption strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.about-map {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.38fr);
  min-height: 30rem;
  margin: 1rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
  filter: saturate(0.7) contrast(0.94);
}

.about-map figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--paper);
}

.about-map figcaption > span {
  margin-bottom: 0.85rem;
  color: var(--brass);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-map figcaption strong {
  color: var(--lacquer);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.about-map figcaption a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--brass);
  color: var(--lacquer);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-map figcaption a svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.about-map figcaption a:hover svg,
.about-map figcaption a:focus-visible svg {
  transform: translateX(0.25rem);
}

.gallery {
  padding: 0 max(3rem, calc((100vw - 88rem) / 2)) var(--section-space);
}

.gallery-head {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  align-items: end;
  gap: 5rem;
  padding-top: var(--section-space);
  border-top: 1px solid var(--line);
}

.gallery-head h2 {
  max-width: none;
  color: var(--lacquer);
  font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  line-height: 1.02;
}

.gallery-head > p {
  max-width: 28rem;
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 18rem 22rem;
  gap: 0.85rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 29, 20, 0.48));
  pointer-events: none;
  content: "";
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(0.9);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  padding-left: 0.8rem;
  border-left: 1px solid var(--brass-light);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
}

.gallery-before {
  grid-column: 1 / span 4;
}

.gallery-after {
  grid-column: 5 / span 4;
}

.gallery-process {
  grid-column: 9 / -1;
  grid-row: 1 / span 2;
}

.gallery-herbs {
  grid-column: 1 / span 5;
}

.gallery-finish {
  grid-column: 6 / span 3;
}

.gallery-before img,
.gallery-after img {
  object-position: 50% 24%;
}

.gallery-process img {
  object-position: 48% 45%;
}

.gallery-herbs img {
  object-position: 50% 35%;
}

.gallery-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.gallery-foot p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.booking {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 36rem;
  padding: 4.5rem 3rem;
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
  text-align: center;
}

.booking::before,
.booking::after {
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.booking::before {
  left: 8vw;
}

.booking::after {
  right: 8vw;
}

.booking-botanical {
  position: absolute;
  right: -3rem;
  bottom: -7rem;
  width: min(32rem, 44vw);
  color: var(--brass);
  opacity: 0.22;
  transform: rotate(-7deg);
}

.booking-botanical svg {
  width: 100%;
  height: auto;
  stroke-width: 1.1;
}

.booking-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(52rem, 100%);
}

.booking .micro-label {
  color: var(--brass-light);
}

.booking h2 {
  max-width: 10ch;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
}

.booking-inner > p:not(.micro-label, .booking-note) {
  max-width: 39rem;
  margin: 2rem 0;
  color: rgba(246, 239, 228, 0.7);
  font-size: 1.05rem;
}

.booking-note {
  margin: 0.9rem 0 0;
  color: rgba(246, 239, 228, 0.5);
  font-size: 0.7rem;
}

.site-footer {
  background: #081e15;
  color: rgba(246, 239, 228, 0.74);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  width: var(--shell);
  margin-inline: auto;
  padding: 4.5rem 0 1.5rem;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-logo {
  display: block;
  width: min(15rem, 100%);
  height: auto;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  max-width: 20rem;
  margin: 0.25rem 0 0;
  color: rgba(246, 239, 228, 0.55);
  font-family: var(--display);
  font-size: 1.05rem;
}

.footer-label {
  margin: 0 0 1rem;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  margin-bottom: 0.75rem;
  color: var(--paper);
  font-size: 0.86rem;
}

.footer-contact a:hover {
  color: var(--brass-light);
}

.footer-legal details {
  border-top: 1px solid var(--line-light);
}

.footer-legal details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.footer-legal summary {
  padding: 0.8rem 1.4rem 0.8rem 0;
  color: var(--paper);
  font-size: 0.79rem;
}

.footer-legal details p {
  margin: 0 0 1rem;
  color: rgba(246, 239, 228, 0.55);
  font-size: 0.72rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 1.2rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: rgba(246, 239, 228, 0.42);
  font-size: 0.66rem;
  text-align: center;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 0.75, 0.22, 1);
}

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

.reveal-ready [data-depth].reveal.is-visible {
  transform: translate3d(0, var(--depth-y, 0), 0);
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1160px) {
  :root {
    --shell: calc(100vw - 3rem);
    --header-height: 4.9rem;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 0.45rem;
    width: 2.8rem;
    aspect-ratio: 1;
    padding: 0.72rem;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span {
    height: 1px;
    background: var(--lacquer);
    transition: transform 220ms ease;
  }

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

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

  .site-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    align-content: start;
    gap: 1.5rem;
    width: 100%;
    max-height: calc(100svh - var(--header-height));
    padding: 2rem 1.5rem 2.5rem;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  body.menu-open .site-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
  }

  .language-switcher {
    padding-left: 0;
    border-left: 0;
  }

  .header-book {
    width: 100%;
  }

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

  .editorial-head,
  .gallery-head {
    gap: 3rem;
  }

  .editorial-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gallery-head {
    grid-template-columns: 1fr 0.6fr;
  }

  .about {
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    padding-bottom: 5.5rem;
  }

  .hero-copy {
    width: 68vw;
  }

  .proof-line-inner {
    grid-template-columns: 1fr 1fr;
  }

  .proof-line span:nth-child(2)::after {
    display: none;
  }

  .ritual,
  .about {
    grid-template-columns: 1fr;
  }

  .ritual-visual {
    max-width: 42rem;
  }

  .about-portrait {
    width: min(42rem, 92%);
    height: 42rem;
    justify-self: end;
  }

  .about-map {
    grid-template-columns: 1fr;
  }

  .about-map iframe {
    min-height: 25rem;
  }

  .gallery-grid {
    grid-template-rows: 17rem 20rem 19rem;
  }

  .gallery-before {
    grid-column: 1 / span 6;
  }

  .gallery-after {
    grid-column: 7 / -1;
  }

  .gallery-process {
    grid-column: 1 / span 5;
    grid-row: 2 / span 2;
  }

  .gallery-herbs {
    grid-column: 6 / -1;
  }

  .gallery-finish {
    grid-column: 6 / -1;
  }
}

main {
  display: flex;
  flex-direction: column;
}

main > .hero {
  order: 0;
}

main > .gallery {
  order: 1;
}

main > :not(.hero):not(.gallery) {
  order: 2;
}

@media (min-width: 1161px) {
  :root {
    --section-space: clamp(5.75rem, 7vw, 7.5rem);
  }

  .hero {
    min-height: clamp(38rem, 74svh, 46rem);
  }

  .hero-inner {
    padding-block: 3.5rem 4.75rem;
  }

  .hero-copy {
    width: min(46rem, 54vw);
  }

  .hero-copy h1 {
    font-size: clamp(4.5rem, 6vw, 6.4rem);
    line-height: 0.92;
  }

  .hero-lead {
    margin-top: 1.6rem;
  }

  .hero-actions {
    margin-top: 1.9rem;
  }

  .proof-line-inner {
    padding-block: 1.05rem;
  }

  .ritual {
    min-height: 50rem;
    gap: clamp(4rem, 6.5vw, 7rem);
  }

  .ritual-visual {
    min-height: 40rem;
  }

  .ritual-image-main {
    height: 33rem;
  }

  .ritual-image-detail {
    height: 16rem;
  }

  .ritual-steps {
    margin-top: 2rem;
  }

  .ritual-steps li {
    padding-block: 1.1rem;
  }

  .ritual blockquote {
    margin-top: 1.75rem;
  }

  .editorial-head {
    margin-bottom: 2.75rem;
  }

  .about {
    column-gap: clamp(4rem, 6.5vw, 7rem);
    row-gap: 4.5rem;
  }

  .about-portrait {
    height: min(39rem, 52vw);
  }

  .about-map,
  .about-map iframe {
    min-height: 24rem;
  }

  .about-map {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-rows: 16rem 19rem;
    margin-top: 3rem;
  }

  .gallery-foot {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .booking {
    min-height: 31rem;
    padding-block: 4rem;
  }

  .booking-inner > p:not(.micro-label, .booking-note) {
    margin: 1.6rem 0 1.8rem;
  }

  .footer-inner {
    padding-top: 3.75rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 2rem);
    --section-space: 3.75rem;
    --header-height: 4.25rem;
  }

  .proof-line {
    display: none;
  }

  h2 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .brand-logo {
    width: 10.5rem;
    max-height: 2.5rem;
  }

  .site-menu {
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 1rem;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding: clamp(1.25rem, 3.5vh, 2.25rem) 1rem max(0.85rem, env(safe-area-inset-bottom));
    border-top-color: rgba(143, 93, 32, 0.2);
    background:
      radial-gradient(circle at 105% 12%, rgba(185, 139, 69, 0.13), transparent 37%),
      linear-gradient(150deg, var(--paper) 0%, var(--bone) 100%);
    box-shadow: none;
    overscroll-behavior: contain;
  }

  .site-nav {
    align-self: center;
    counter-reset: mobile-nav;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.58rem 0;
    color: var(--lacquer);
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    letter-spacing: -0.025em;
    line-height: 1;
    counter-increment: mobile-nav;
    opacity: 0;
    transform: translateY(0.65rem);
    transition:
      color 180ms ease,
      opacity 320ms ease,
      transform 320ms cubic-bezier(0.22, 0.75, 0.22, 1);
  }

  .site-nav a::before {
    color: var(--brass);
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    content: "0" counter(mobile-nav);
  }

  .site-nav a::after {
    background: var(--brass);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="true"] {
    color: var(--brass);
  }

  body.menu-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  body.menu-open .site-nav a:nth-child(2) {
    transition-delay: 45ms;
  }

  body.menu-open .site-nav a:nth-child(3) {
    transition-delay: 90ms;
  }

  body.menu-open .site-nav a:nth-child(4) {
    transition-delay: 135ms;
  }

  .language-switcher {
    width: fit-content;
    padding: 0.22rem;
    border: 1px solid var(--line);
    background: rgba(251, 247, 240, 0.62);
  }

  .language-switcher button {
    min-width: 3.1rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.65rem;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .header-book {
    justify-content: space-between;
    min-height: 3.35rem;
    padding-inline: 1.25rem;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 0.75rem;
    background: var(--bone);
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: var(--shell);
    height: auto;
    aspect-ratio: 2.15 / 1;
    margin-inline: auto;
    object-fit: cover;
    object-position: 68% 50%;
  }

  .hero-wash {
    display: none;
  }

  .hero-inner {
    align-items: start;
    min-height: 0;
    padding: 1.15rem 0 2rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 1.2rem;
  }

  .hero-announcement {
    margin-bottom: 0.75rem;
    padding: 0.48rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 4rem);
    letter-spacing: -0.018em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-lead {
    width: min(100%, 34rem);
    margin: 0.8rem 0 0;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-actions .button {
    min-height: 3rem;
    padding-inline: 0.7rem;
    gap: 0.55rem;
  }

  .hero-actions .text-link {
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 0.55rem;
    border: 1px solid var(--lacquer);
    gap: 0.45rem;
    font-size: 0.68rem;
    line-height: 1.1;
    text-align: center;
  }

  .proof-line-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 0.5rem;
  }

  .proof-line span {
    justify-content: space-between;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 0.6rem;
  }

  .proof-line span::after {
    display: block !important;
  }

  .proof-line span:last-child::after {
    display: none !important;
  }

  .ritual,
  .prices,
  .about,
  .gallery {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .prices,
  .about {
    padding-top: 3rem;
  }

  .prices {
    padding-bottom: 3.25rem;
  }

  .about {
    gap: 2.25rem;
    border-top: 1px solid var(--line);
  }

  .ritual {
    display: none;
  }

  .ritual-visual {
    display: none;
  }

  .ritual-copy h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 9vw, 3.25rem);
    letter-spacing: -0.025em;
    line-height: 0.98;
    text-wrap: pretty;
  }

  .ritual-visual {
    min-height: 31rem;
  }

  .ritual-visual::before {
    top: -1rem;
    right: 3%;
    width: 73%;
  }

  .ritual-image-main {
    width: 84%;
    height: 25rem;
  }

  .ritual-image-detail {
    width: 61%;
    height: 12rem;
  }

  .vertical-note {
    left: -0.65rem;
  }

  .ritual-steps li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .editorial-head,
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 1.35rem;
  }

  .gallery-head {
    display: none;
  }

  .editorial-head h2,
  .about-copy h2,
  .gallery-head h2 {
    max-width: none;
    font-size: clamp(2.4rem, 9vw, 3.25rem);
    line-height: 0.98;
  }

  .editorial-head > p:last-child,
  .gallery-head > p {
    margin: 0;
  }

  .price-pdf-link {
    width: 100%;
  }

  .price-tabs {
    gap: 1.5rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .price-tabs::-webkit-scrollbar {
    display: none;
  }

  .price-tab {
    flex: 0 0 auto;
    min-height: 3rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .price-category {
    margin-top: 2.25rem;
  }

  .price-category > h3,
  .price-booking-note h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .treatment {
    padding-block: 0.8rem 0.9rem;
  }

  .treatment-head {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .treatment h4,
  .treatment h6 {
    font-size: 1.3rem;
  }

  .treatment-meta {
    font-size: 1rem;
    text-align: left;
    white-space: normal;
  }

  .treatment-meta-stack {
    justify-items: start;
  }

  .treatment > p {
    margin-top: 0.3rem;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .treatment-compact {
    padding-block: 0.55rem 0.65rem;
  }

  .treatment-compact h6 {
    font-size: 1.2rem;
  }

  .treatment-compact > p {
    font-size: 0.88rem;
  }

  .waxing-group {
    margin-top: 1.5rem;
  }

  .price-booking-note {
    margin-top: 3rem;
  }

  .heritage-notes {
    grid-template-columns: 1fr;
    margin-top: 1.8rem;
  }

  .heritage-notes div,
  .heritage-notes div + div {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    align-items: center;
    padding: 1rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .heritage-notes div:last-child {
    border-bottom: 0;
  }

  .heritage-notes dt {
    font-size: 2.6rem;
  }

  .heritage-notes dd {
    margin: 0;
  }

  .about-portrait {
    display: none;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 11.5rem 14rem 12.5rem;
    gap: 0.55rem;
    margin-top: 0.75rem;
  }

  .gallery-before,
  .gallery-after {
    grid-row: 1;
  }

  .gallery-before {
    grid-column: 1;
  }

  .gallery-after {
    grid-column: 2;
  }

  .gallery-process {
    grid-column: 1;
    grid-row: 2 / span 2;
  }

  .gallery-herbs {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-finish {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-item figcaption {
    bottom: 0.65rem;
    left: 0.65rem;
    max-width: calc(100% - 1rem);
    font-size: 0.85rem;
  }

  .gallery-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
  }

  .gallery-foot p {
    display: none;
  }

  .booking {
    min-height: 29rem;
    padding: 3rem 1rem 3.25rem;
  }

  .booking::before,
  .booking::after {
    display: none;
  }

  .booking h2 {
    font-size: clamp(3.75rem, 16vw, 5rem);
  }

  .booking-inner > p:not(.micro-label, .booking-note) {
    margin: 1.35rem 0 1.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .booking .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.75rem;
  }

  .footer-logo {
    width: min(13rem, 72vw);
    margin-bottom: 0.6rem;
  }

  .copyright {
    margin-top: 0.5rem;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 3.3rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: 10.5rem 12.5rem 11.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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