@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-variable.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
:root {
  --paper: #f7f5ef;
  --paper-deep: #eeece3;
  --ink: #454437;
  --muted: #606156;
  --olive: #4c4c3c;
  --brown: #876047;
  --line: #dcdacf;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Manrope, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  font: inherit;
  color: inherit;
}
button:not(:disabled),
summary {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
button {
  border: 0;
  background: none;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(42px, 4.4vw, 64px);
}
em {
  font-family: var(--display);
  font-weight: 400;
  color: var(--brown);
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
address {
  font-style: normal;
}
:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 6px;
}
::selection {
  background: #d7c6b2;
  color: #292c23;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 110px;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.9;
}
.text-link {
  font-size: 18px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 5px 0;
  line-height: 1.6;
  transition:
    color 0.2s,
    border-color 0.2s;
  font-weight: 600;
}
.text-link:hover {
  color: var(--brown);
  border-color: var(--brown);
}
.text-link span[aria-hidden] {
  font-size: 19px;
  line-height: 1;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 50px;
  padding: 13px 23px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  border-radius: 3px;
  line-height: 1.5;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span[aria-hidden] {
  font-size: 20px;
  line-height: 1;
}
.button-dark {
  background: var(--olive);
  color: #fffdf6;
}
.button-dark:hover {
  background: #33382d;
}
.button-outline {
  border-color: #b4b2a4;
}
.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.button-cream {
  background: var(--paper);
  color: var(--ink);
}
.button-cream:hover {
  background: #e1dbca;
}
.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;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--paper-deep);
  font-size: 18px;
  letter-spacing: 0.025em;
  padding: 6px 20px;
}
.announcement > a {
  display: inline-flex;
  gap: 8px;
  border-left: 1px solid #c5c3b7;
  padding-left: 30px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 3px 20px #30372805;
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.wordmark-name {
  font-family: var(--display);
  font-size: 49px;
  line-height: 0.84;
  letter-spacing: -0.075em;
  padding-right: 4px;
  font-weight: 500;
}
.wordmark-dot {
  color: var(--brown);
}
.wordmark-caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 16px;
}
.desktop-nav > a {
  font-size: 18px;
  white-space: nowrap;
  position: relative;
  padding: 14px 0;
  font-weight: 600;
}
.desktop-nav > a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown);
  transition: width 0.3s;
}
.desktop-nav > a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.phone-link {
  padding: 8px;
}
.phone-link svg {
  width: 17px;
  height: 17px;
}
.header-book {
  min-height: 43px;
  padding: 10px 18px;
  gap: 22px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 39px;
}
.hero-copy {
  padding-bottom: 24px;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}
.short-rule {
  width: 26px;
  height: 1px;
  background: var(--brown);
}
.hero h1 {
  font-size: clamp(68px, 7.6vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-left: -4px;
}
.hero h1 em {
  line-height: 1.09;
}
.hero-description {
  font-size: 20px;
  line-height: 1.8;
  max-width: 400px;
  margin-top: 29px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-actions .button {
  gap: 24px;
}
.hero-actions .text-link {
  font-size: 18px;
  gap: 14px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.hero-note > svg {
  width: 36px;
  height: 36px;
  color: var(--brown);
}
.hero-note p {
  font-size: 18px;
  line-height: 1.9;
}
.hero-note p span {
  font-size: 18px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  padding-left: 18px;
}
.hero-image-wrap {
  width: 100%;
  height: clamp(470px, 42vw, 596px);
  overflow: hidden;
  border-radius: 210px 210px 4px 4px;
  background: var(--paper-deep);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(0.8) sepia(0.06);
}
.hero-seal {
  position: absolute;
  right: -20px;
  top: 32px;
  width: 103px;
  height: 103px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid #c6c0ad;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 7px #f7f5ef75;
  transform: rotate(14deg);
}
.hero-seal span {
  font-size: 14px;
  letter-spacing: 0.07em;
}
.hero-seal svg {
  width: 34px;
  height: 34px;
  color: var(--brown);
}
.signature-card {
  position: absolute;
  left: -24px;
  right: 30px;
  bottom: 68px;
  max-width: 382px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 23px;
  background: rgba(249, 247, 241, 0.96);
  box-shadow: 0 6px 32px #29251710;
  border: 1px solid #fff8;
  border-radius: 3px;
  transition: transform 0.25s;
}
.signature-card:hover {
  transform: translateY(-4px);
}
.signature-symbol {
  font-size: 35px;
  color: var(--brown);
}
.signature-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.signature-card small {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.signature-card strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.signature-meta {
  font-size: 16px;
  color: var(--muted);
}
.signature-meta > span {
  padding: 0 9px;
}
.signature-arrow {
  font-size: 25px;
  margin-left: auto;
}
.hero-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: space-between;
  margin-top: 13px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.ritual-strip {
  border-block: 1px solid var(--line);
}
.ritual-strip > .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ritual-strip span {
  font-family: var(--display);
  font-size: 22px;
}
.ritual-strip i {
  font-style: normal;
  font-size: 22px;
  color: #a89171;
}
.treatment-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
  gap: 20px;
}
.treatment-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 18px 0;
  font-family: var(--display);
  font-size: 25px;
  position: relative;
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}
.treatment-tab > span {
  font-family: var(--body);
  font-size: 14px;
  color: var(--muted);
}
.treatment-tab::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
}
.treatment-tab[aria-selected="true"]::after {
  background: var(--brown);
}
.treatment-tab[aria-selected="true"] {
  color: #8b654d;
}
.treatment-tab:hover {
  color: var(--brown);
}
.treatment-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}
.treatment-visual {
  position: sticky;
  top: 125px;
  height: 560px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper-deep);
}
.treatment-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(0.76);
}
.treatment-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(transparent, #2f291ac7);
  color: var(--paper);
  padding: 62px 24px 23px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
}
.treatment-visual figcaption > span:last-child {
  font-size: 34px;
}
.treatment-intro {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 17px;
  max-width: 475px;
  line-height: 1.8;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  min-height: 88px;
  transition:
    background 0.25s,
    padding 0.25s;
}
.service-row:hover {
  background: #eae7db70;
  padding-inline: 10px;
}
.service-name {
  font-family: var(--body);
  font-size: 22px;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.service-name > small {
  display: block;
  font-family: var(--body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 6px;
  letter-spacing: 0;
  font-weight: 500;
}
.service-name > .service-description {
  display: block;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 8px;
}
.service-name > .service-duration {
  color: var(--ink);
  font-weight: 600;
}
.service-price {
  font-family: var(--body);
  font-size: 28px;
  line-height: 1.1;
  padding-top: 2px;
  white-space: nowrap;
  font-weight: 600;
}
.service-arrow {
  font-size: 20px;
  color: var(--brown);
  margin-left: 8px;
}
.mini-label {
  display: inline-block;
  font-weight: 600;
  vertical-align: middle;
  color: var(--brown);
  font-family: var(--body);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin: 5px 0 3px 8px;
  background: #eae3d5;
  padding: 3px 5px;
  line-height: 1.4;
}
.menu-footnote {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.menu-footnote > a {
  border-bottom: 1px solid var(--line);
}
.no-script-note {
  margin-top: 20px;
}
.no-script-note a {
  text-decoration: underline;
}
.experience-section {
  background: var(--paper-deep);
  padding: 100px 0 107px;
}
.experience-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 95px;
  align-items: center;
}
.experience-collage {
  position: relative;
  height: 592px;
  padding-right: 84px;
}
.experience-main {
  height: 516px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 170px 170px 3px 3px;
  filter: saturate(0.7);
}
.experience-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 61%;
  height: 231px;
  object-fit: cover;
  border: 8px solid var(--paper-deep);
  border-radius: 3px;
  filter: saturate(0.6);
}
.image-note {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.02;
  transform: rotate(-7deg);
}
.experience-copy > .eyebrow {
  margin-bottom: 20px;
}
.experience-copy h2 {
  font-size: clamp(42px, 4.3vw, 61px);
  line-height: 1.05;
}
.experience-copy > p:not(.eyebrow) {
  font-size: 20px;
  color: var(--muted);
  max-width: 380px;
  margin-top: 25px;
  line-height: 1.95;
}
.experience-points {
  margin: 27px 0;
}
.experience-points > div {
  display: flex;
  gap: 18px;
  margin: 18px 0;
}
.experience-points > div > span {
  font-size: 14px;
  color: var(--brown);
  padding-top: 4px;
}
.experience-points p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}
.experience-points strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.special-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f1efe7;
  padding: 30px 29px 20px;
  display: flex;
  flex-direction: column;
}
.special-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 8px;
}
.special-top > .eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
}
.special-top > span:last-child {
  font-size: 25px;
  line-height: 1;
  color: var(--brown);
}
.special-card h3 {
  font-size: 42px;
  line-height: 1.04;
}
.special-description {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 18px;
  max-width: 100%;
  min-height: 61px;
}
.special-price {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  margin-top: 23px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.special-price > span {
  font-family: var(--body);
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0;
}
.special-list {
  display: grid;
  gap: 8px;
  margin: 23px 0 28px;
  font-size: 18px;
}
.special-list li::before {
  content: "+";
  color: var(--brown);
  margin-right: 9px;
  font-size: 14px;
}
.special-card > .button {
  width: 100%;
  margin-top: auto;
  gap: 15px;
  justify-content: space-between;
}
.offer-label {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 16px;
}
.special-card-featured {
  background: var(--olive);
  color: var(--paper);
  border-color: var(--olive);
}
.special-card-featured em {
  color: #ddcbb0;
}
.special-card-featured .special-description,
.special-card-featured .special-price > span,
.special-card-featured .offer-label {
  color: #c9cabb;
}
.special-card-featured .special-top > span:last-child,
.special-card-featured .special-list li::before {
  color: #d6bd93;
}
.special-card-featured .special-price {
  border-color: #747365;
}
.specials-note {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin: 26px auto 0;
  line-height: 1.9;
}
.specials-note > a {
  border-bottom: 1px solid #aca99d;
}
.poster-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 19px;
  font-size: 18px;
}
.poster-links > span {
  color: var(--muted);
}
.poster-links > a {
  border-bottom: 1px solid var(--line);
}
.poster-links > a > span {
  padding-left: 14px;
}
.space-section {
  background: #eae8df;
}
.space-section .section-heading .text-link {
  margin-top: 16px;
}
.space-gallery {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 20px;
}
.gallery-item {
  position: relative;
  height: 346px;
  border-radius: 3px;
  overflow: hidden;
  background: #ddd7cb;
}
.gallery-item > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition:
    transform 0.7s var(--ease),
    filter 0.7s;
}
.gallery-wide > img {
  object-position: 43% 50%;
}
.gallery-item:hover > img {
  transform: scale(1.035);
  filter: saturate(0.9);
}
.gallery-item > span {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 20px 19px;
  background: linear-gradient(transparent, #282617a6);
  color: #fffdf7;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gallery-item > span i {
  font-style: normal;
  font-size: 22px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-section .eyebrow {
  margin-bottom: 18px;
}
.faq-section > div > p:not(.eyebrow) {
  font-size: 20px;
  color: var(--muted);
  margin-top: 25px;
}
.faq-section .text-link {
  margin-top: 19px;
}
.faq-list {
  border-top: 1px solid var(--line);
  padding-top: 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 21px 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.95;
  padding: 0 28px 22px 0;
}
.faq-list details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visit-section {
  background: #e9e4d8;
  padding: 72px 0;
}
.visit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.visit-copy > .eyebrow {
  margin-bottom: 22px;
}
.visit-copy h2 {
  font-size: 73px;
  line-height: 1;
}
.visit-details {
  display: flex;
  gap: 60px;
  margin: 34px 0;
}
.detail-label {
  font-size: 14px;
  letter-spacing: 0.17em;
  display: block;
  margin-bottom: 12px;
}
.visit-details address,
.visit-details p {
  font-size: 20px;
  line-height: 1.85;
}
.visit-details .text-link {
  font-size: 18px;
  margin-top: 8px;
}
.visit-details > div > a:not(.text-link) {
  display: inline-block;
  font-size: 18px;
  margin-top: 15px;
}
.visit-image {
  position: relative;
  height: 442px;
  overflow: hidden;
  border-radius: 3px 150px 3px 3px;
}
.visit-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.5) brightness(0.78);
}
.visit-image-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 35px 33px;
  background: linear-gradient(transparent, #302e2080);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.visit-image-caption > span {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
}
.visit-image-caption em {
  color: var(--paper);
}
.visit-image-caption svg {
  width: 40px;
  height: 40px;
}
.site-footer {
  padding: 53px 0 22px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 55px;
  padding-bottom: 40px;
}
.footer-top > p {
  font-size: 18px;
  line-height: 1.5;
  border-left: 1px solid var(--line);
  padding-left: 45px;
}
.footer-top > p > em {
  font-size: 21px;
  line-height: 1.5;
}
.footer-top nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 18px;
  font-weight: 600;
}
.footer-back {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  color: var(--muted);
}
.mobile-booking {
  display: none;
}
dialog {
  color: var(--ink);
  background: var(--paper);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  max-height: 88dvh;
  box-shadow: 0 24px 90px #171b1633;
}
dialog::backdrop {
  background: rgba(35, 38, 30, 0.62);
  backdrop-filter: blur(5px);
}
.detail-dialog {
  width: min(700px, calc(100% - 40px));
}
.dialog-inner {
  padding: 42px 38px 30px;
  position: relative;
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  z-index: 2;
  background: var(--paper);
}
.dialog-close:hover {
  background: #e7e2d5;
}
.dialog-inner > .eyebrow {
  margin-bottom: 16px;
  padding-right: 26px;
}
.dialog-inner > h2 {
  font-size: 43px;
  line-height: 1.07;
  padding-right: 25px;
}
.dialog-description {
  margin-top: 17px;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.package-options {
  margin: 14px 0 24px;
}
.package-options .service-name {
  font-size: 22px;
}
.package-options .service-row {
  padding-block: 21px;
}
.package-options .service-name > .package-description {
  font-size: 20px;
  line-height: 1.7;
}
.package-treatment-list {
  margin: 20px 0;
  font-size: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  line-height: 1.8;
}
.package-treatment-list > li::before {
  content: "✧";
  font-size: 14px;
  color: var(--brown);
  margin-right: 9px;
}
.package-gift {
  font-size: 18px;
  color: var(--muted);
  padding: 16px;
  background: var(--paper-deep);
  margin: 16px 0 22px;
}
.lightbox {
  background: var(--paper);
  width: min(1120px, calc(100% - 40px));
  overflow: hidden;
  padding: 48px 20px 16px;
}
.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 160px;
}
.lightbox-stage > img {
  max-width: calc(100% - 116px);
  height: auto;
  max-height: calc(88dvh - 142px);
  object-fit: contain;
  margin: auto;
}
.lightbox-prev,
.lightbox-next {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--paper-deep);
}
.lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  padding: 14px 58px 0;
  line-height: 1.6;
}
#lightbox-count {
  white-space: nowrap;
  color: var(--muted);
  font-size: 16px;
}
@media (min-width: 1600px) {
  .container {
    width: min(1320px, calc(100% - 160px));
  }
  .hero {
    gap: 95px;
    padding-top: 43px;
    padding-bottom: 52px;
  }
  .hero-image-wrap {
    height: 620px;
  }
  .hero h1 {
    font-size: 115px;
  }
  .hero-description {
    font-size: 20px;
    max-width: 375px;
  }
  .hero-copy {
    padding-bottom: 20px;
  }
  .hero-actions {
    margin-top: 38px;
  }
  .hero-note {
    margin-top: 60px;
  }
  .hero-caption {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 80px);
  }
  .desktop-nav {
    gap: 12px;
    margin-right: 0;
  }
  .header-actions {
    gap: 8px;
  }
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-image-wrap {
    height: 535px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    padding-inline: 17px;
    gap: 15px;
  }
  .hero-actions .text-link {
    gap: 8px;
  }
  .treatment-layout {
    gap: 42px;
  }
  .experience-layout {
    gap: 60px;
  }
  .special-card {
    padding: 25px 22px 20px;
  }
  .special-card h3 {
    font-size: 37px;
  }
  .special-price {
    font-size: 43px;
  }
  .special-card > .button {
    font-size: 18px;
    padding-inline: 17px;
  }
  .visit-details {
    gap: 34px;
  }
  .footer-top {
    gap: 35px;
    flex-wrap: wrap;
  }
  .footer-top nav {
    gap: 19px;
  }
  .footer-top > p {
    padding-left: 30px;
  }
  .header-inner {
    gap: 14px;
  }
  .phone-link {
    display: none;
  }
  .header-book {
    padding-inline: 14px;
    gap: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 1050px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 44px;
    padding: 8px;
  }
  .menu-toggle > span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav:not([hidden]) {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 14px 40px 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 25px #3037280d;
    max-height: calc(100dvh - 90px);
    overflow: auto;
  }
  .mobile-nav > a {
    display: flex;
    justify-content: space-between;
    font-family: var(--display);
    font-size: 27px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav > a:last-child {
    font-family: var(--body);
    font-size: 18px;
    border: 0;
    padding-top: 23px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-image-wrap {
    height: 500px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hero-description {
    max-width: 310px;
  }
  .hero-note {
    margin-top: 24px;
  }
  .signature-card {
    left: -16px;
    right: 14px;
    padding: 16px 18px;
    gap: 13px;
  }
  .signature-card strong {
    font-size: 22px;
  }
  .hero-seal {
    width: 85px;
    height: 85px;
    right: -16px;
  }
  .hero-seal span {
    font-size: 14px;
  }
  .hero-seal svg {
    width: 26px;
    height: 26px;
  }
  .ritual-strip span {
    font-size: 19px;
  }
  .section-space {
    padding-block: 85px;
  }
  .treatment-layout {
    gap: 33px;
  }
  .service-name {
    font-size: 22px;
  }
  .treatment-visual {
    height: 500px;
  }
  .experience-layout {
    gap: 42px;
  }
  .experience-collage {
    padding-right: 45px;
    height: 550px;
  }
  .experience-main {
    height: 485px;
  }
  .experience-inset {
    height: 195px;
  }
  .image-note {
    font-size: 24px;
  }
  .specials-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .special-card {
    padding: 28px 26px 22px;
  }
  .special-card h3 {
    font-size: 48px;
  }
  .special-description {
    font-size: 20px;
    min-height: 58px;
    max-width: 100%;
  }
  .special-top > .eyebrow {
    font-size: 14px;
  }
  .special-list {
    font-size: 18px;
  }
  .special-card > .button {
    padding-inline: 12px;
    gap: 8px;
    font-size: 18px;
  }
  .special-price {
    font-size: 54px;
  }
  .special-price > span {
    font-size: 16px;
  }
  .space-gallery {
    gap: 13px;
  }
  .gallery-item {
    height: 290px;
  }
  .faq-section {
    gap: 48px;
  }
  .visit-layout {
    gap: 45px;
  }
  .visit-copy h2 {
    font-size: 64px;
  }
  .visit-image {
    height: 410px;
  }
  .visit-details {
    flex-wrap: wrap;
    gap: 22px;
  }
  .footer-top {
    gap: 28px;
  }
  .footer-top nav {
    gap: 17px;
  }
  .footer-top > p {
    padding-left: 25px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .section-space {
    padding-block: 65px;
  }
  .announcement {
    font-size: 18px;
    flex-wrap: wrap;
    text-align: center;
    gap: 2px 12px;
    min-height: 31px;
    padding: 6px 12px;
  }
  .announcement > a {
    gap: 4px;
    padding-left: 12px;
  }
  .header-inner {
    height: 84px;
    gap: 12px;
  }
  .wordmark-name {
    font-size: 43px;
  }
  .wordmark-caption {
    font-size: 13px;
    margin-top: 9px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-book {
    min-height: 39px;
    font-size: 18px;
    padding: 9px 12px;
    gap: 10px;
    display: none;
  }
  .menu-toggle {
    padding-right: 0;
    width: 24px;
  }
  .mobile-nav:not([hidden]) {
    padding-inline: 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-top: 36px;
    padding-bottom: 27px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-copy > .eyebrow {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(59px, 18.3vw, 90px);
    line-height: 0.91;
    letter-spacing: -0.045em;
  }
  .hero-description {
    max-width: 370px;
    font-size: 20px;
    line-height: 1.9;
    margin-top: 24px;
  }
  .hero-actions {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 14px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 18px;
    gap: 15px;
    min-height: 47px;
    padding-inline: 18px;
    width: 100%;
    justify-content: space-between;
  }
  .hero-actions .text-link {
    font-size: 18px;
    gap: 9px;
    width: 100%;
    justify-content: space-between;
    padding-block: 8px;
  }
  .hero-note {
    margin-top: 23px;
    gap: 11px;
  }
  .hero-note > svg {
    width: 28px;
    height: 28px;
  }
  .hero-note p {
    font-size: 18px;
  }
  .hero-note p span {
    font-size: 18px;
  }
  .hero-visual {
    padding-left: 0;
    margin-left: 28px;
    margin-right: 4px;
  }
  .hero-image-wrap {
    height: 500px;
    border-radius: 200px 200px 3px 3px;
  }
  .hero-image {
    object-position: 50% 43%;
  }
  .hero-seal {
    right: -5px;
    top: 26px;
    width: 104px;
    height: 104px;
  }
  .signature-card {
    left: -28px;
    right: 0;
    bottom: 57px;
    max-width: 100%;
    padding: 18px;
    gap: 10px;
  }
  .signature-card strong {
    font-size: 23px;
  }
  .signature-card small {
    font-size: 14px;
  }
  .signature-meta {
    font-size: 16px;
  }
  .signature-arrow {
    font-size: 23px;
  }
  .hero-caption {
    font-size: 14px;
    margin-top: 11px;
  }
  .ritual-strip > .container {
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    padding-block: 15px;
  }
  .ritual-strip i {
    display: none;
  }
  .ritual-strip span {
    font-size: 23px;
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .ritual-strip span::before {
    content: "✧";
    color: var(--brown);
    font-size: 14px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 31px;
  }
  .section-heading .eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .section-heading > p,
  .section-heading > div > p:not(.eyebrow) {
    font-size: 20px;
  }
  .section-heading br {
    display: none;
  }
  h2 {
    font-size: 47px;
    line-height: 1.04;
  }
  .treatment-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    margin-bottom: 25px;
  }
  .treatment-tab {
    font-size: 24px;
    padding: 11px 0 14px;
    gap: 5px;
  }
  .treatment-tab > span {
    font-size: 14px;
  }
  .treatment-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .treatment-visual {
    position: relative;
    top: auto;
    height: 305px;
  }
  .treatment-visual img {
    object-position: 50% 53%;
  }
  .treatment-visual figcaption {
    font-size: 27px;
    padding: 60px 21px 19px;
  }
  .treatment-intro {
    font-size: 20px;
    margin-bottom: 9px;
    max-width: 100%;
  }
  .service-row {
    padding: 23px 0;
    gap: 8px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .service-name {
    font-size: 22px;
    grid-column: 1 / -1;
  }
  .service-price {
    font-size: 28px;
    grid-column: 1;
    grid-row: 2;
    align-self: center;
  }
  .service-name > small {
    font-size: 16px;
  }
  .mini-label {
    font-size: 14px;
  }
  .menu-footnote {
    font-size: 18px;
    margin-top: 17px;
  }
  .experience-section {
    padding: 64px 0;
  }
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .experience-collage {
    height: 490px;
    padding-right: 62px;
    max-width: 460px;
    width: 100%;
    margin: auto;
  }
  .experience-main {
    height: 439px;
    object-position: 50% 38%;
  }
  .experience-inset {
    height: 192px;
    width: 61%;
    border-width: 6px;
  }
  .image-note {
    font-size: 26px;
    bottom: 0;
  }
  .experience-copy > .eyebrow {
    font-size: 14px;
  }
  .experience-copy h2 {
    font-size: 51px;
    line-height: 1.05;
  }
  .experience-copy > p:not(.eyebrow) {
    font-size: 20px;
    max-width: 100%;
    margin-top: 24px;
  }
  .experience-points {
    margin-block: 23px;
  }
  .experience-points p {
    font-size: 18px;
  }
  .experience-points strong {
    font-size: 20px;
  }
  .experience-copy > .text-link {
    font-size: 18px;
  }
  .specials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .special-card {
    padding: 29px 28px 21px;
  }
  .special-card h3 {
    font-size: 44px;
  }
  .special-top {
    margin-bottom: 20px;
  }
  .special-top > .eyebrow {
    font-size: 14px;
  }
  .special-description {
    font-size: 20px;
    max-width: 100%;
    min-height: 0;
    margin-top: 18px;
  }
  .special-price {
    font-size: 50px;
    margin-top: 22px;
    padding-bottom: 20px;
  }
  .special-price > span {
    font-size: 16px;
  }
  .special-list {
    font-size: 18px;
    margin-block: 22px;
    gap: 8px;
  }
  .special-card > .button {
    font-size: 18px;
    padding-inline: 19px;
    min-height: 48px;
  }
  .offer-label {
    font-size: 14px;
  }
  .specials-note {
    text-align: left;
    font-size: 18px;
  }
  .poster-links {
    justify-content: flex-start;
    gap: 15px 21px;
    font-size: 18px;
  }
  .poster-links > span {
    width: 100%;
  }
  .space-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-wide {
    grid-column: 1/-1;
  }
  .gallery-item {
    height: 264px;
  }
  .gallery-wide {
    height: 280px;
  }
  .gallery-item > span {
    padding: 43px 12px 13px;
    font-size: 18px;
    line-height: 1.5;
    gap: 7px;
  }
  .gallery-item > span i {
    font-size: 18px;
  }
  .space-section .section-heading br {
    display: block;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section .eyebrow {
    font-size: 14px;
  }
  .faq-section > div > p:not(.eyebrow) {
    font-size: 20px;
    margin-top: 20px;
  }
  .faq-list summary {
    font-size: 20px;
    padding: 21px 0;
  }
  .faq-list details > p {
    font-size: 20px;
  }
  .visit-section {
    padding-block: 58px;
  }
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .visit-copy > .eyebrow {
    font-size: 14px;
  }
  .visit-copy h2 {
    font-size: 64px;
  }
  .visit-details {
    gap: 38px;
    margin: 27px 0;
  }
  .visit-details address,
  .visit-details p {
    font-size: 20px;
  }
  .visit-details > div > a:not(.text-link) {
    font-size: 18px;
  }
  .visit-image {
    height: 347px;
    border-radius: 3px 130px 3px 3px;
  }
  .visit-image > img {
    object-position: 50% 35%;
  }
  .visit-image-caption {
    padding: 55px 26px 25px;
  }
  .visit-image-caption > span {
    font-size: 41px;
  }
  .site-footer {
    padding: 42px 0 91px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 16px;
    padding-bottom: 27px;
  }
  .footer-top > .wordmark {
    grid-column: 1;
    justify-self: start;
  }
  .footer-top > p {
    grid-column: 1/-1;
    border-left: 0;
    padding-left: 0;
    font-size: 18px;
  }
  .footer-top > p > em {
    font-size: 20px;
  }
  .footer-top nav {
    grid-column: 1;
    grid-row: 3;
    margin-left: 0;
    gap: 16px;
    font-size: 18px;
  }
  .footer-back {
    grid-column: 2;
    grid-row: 3;
    width: 32px;
    height: 32px;
    font-size: 17px;
  }
  .footer-bottom {
    font-size: 18px;
    gap: 15px;
    padding-top: 20px;
  }
  .mobile-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    inset: auto 0 0;
    gap: 10px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(247, 245, 239, 0.98);
    border-top: 1px solid var(--line);
    z-index: 18;
    box-shadow: 0 -3px 18px #30372808;
  }
  .mobile-booking > a:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    flex-shrink: 0;
    padding: 10px 0;
    font-weight: 600;
  }
  .mobile-booking svg {
    height: 17px;
    width: 17px;
  }
  .mobile-booking > .button {
    flex: 1;
    max-width: none;
    min-height: 43px;
    font-size: 18px;
    justify-content: space-between;
    padding: 10px 17px;
    gap: 12px;
  }
  .dialog-inner {
    padding: 39px 23px 28px;
  }
  .dialog-inner > h2 {
    font-size: 36px;
  }
  .dialog-inner > .eyebrow {
    font-size: 14px;
  }
  .dialog-description {
    font-size: 20px;
  }
  .package-options .service-name {
    font-size: 22px;
  }
  .package-options .service-row {
    gap: 12px;
  }
  .package-options .service-price {
    font-size: 28px;
  }
  .package-options .service-arrow {
    margin-left: 0;
  }
  .package-treatment-list {
    grid-template-columns: 1fr;
    font-size: 18px;
    gap: 7px;
  }
  .lightbox {
    width: calc(100% - 20px);
    padding: 50px 10px 14px;
  }
  .lightbox-stage {
    gap: 4px;
    position: relative;
  }
  .lightbox-stage > img {
    max-width: 100%;
    max-height: calc(88dvh - 157px);
  }
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--paper);
    box-shadow: 0 2px 10px #171b1622;
    font-size: 16px;
    bottom: -48px;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
  .lightbox-footer {
    min-height: 54px;
    padding: 14px 49px 0;
    font-size: 18px;
    gap: 9px;
  }
  .lightbox-footer > p {
    max-width: 100%;
  }
  #lightbox-count {
    font-size: 16px;
  }
  .service-arrow {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin-left: 0;
    font-size: 24px;
  }
  .signature-symbol {
    display: none;
  }
}
@media (max-width: 380px) {
  .header-inner {
    gap: 10px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-book > span[aria-hidden] {
    display: none;
  }
  .container {
    width: calc(100% - 36px);
  }
  .announcement {
    font-size: 18px;
    gap: 2px 9px;
  }
  .announcement > a {
    padding-left: 9px;
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 18px;
    gap: 15px;
    padding-inline: 15px;
  }
  .hero-actions .text-link {
    font-size: 18px;
    gap: 7px;
  }
  .hero-visual {
    margin-left: 21px;
  }
  .hero-image-wrap {
    height: 423px;
  }
  .signature-card {
    left: -21px;
    right: 0;
    padding: 15px 13px;
    gap: 11px;
  }
  .signature-card strong {
    font-size: 22px;
  }
  .signature-symbol {
    font-size: 28px;
  }
  .hero-seal {
    width: 104px;
    height: 104px;
    right: -8px;
  }
  .ritual-strip span {
    font-size: 23px;
  }
  .ritual-strip > .container {
    gap: 0 15px;
  }
  .treatment-tab {
    font-size: 24px;
    gap: 3px;
  }
  .service-name {
    font-size: 22px;
  }
  .service-price {
    font-size: 28px;
  }
  .treatment-visual {
    height: 280px;
  }
  .experience-collage {
    height: 426px;
    padding-right: 47px;
  }
  .experience-main {
    height: 382px;
  }
  .experience-inset {
    height: 174px;
  }
  .image-note {
    font-size: 22px;
  }
  .experience-copy h2 {
    font-size: 45px;
  }
  .special-card {
    padding-inline: 22px;
  }
  .gallery-item {
    height: 232px;
  }
  .gallery-wide {
    height: 253px;
  }
  .footer-top > p {
    padding-left: 0;
  }
  .footer-top nav {
    gap: 20px;
  }
  .visit-details {
    gap: 24px;
  }
  .mobile-booking > a:first-child {
    max-width: 88px;
    line-height: 1.25;
  }
  .mobile-booking > a:first-child svg {
    flex: 0 0 18px;
  }
  .mobile-booking > .button {
    padding-inline: 12px;
  }
  .service-row {
    gap: 7px 10px;
  }
}
.shop-preview {
  grid-template-columns: 1.12fr 1fr;
  align-items: start;
  gap: 24px;
}
.shop-preview .gallery-item {
  display: flex;
  flex-direction: column;
  height: auto;
  border: 1px solid #cecabe;
  border-radius: 5px;
  background: #f7f5ef;
}
.shop-preview .gallery-item > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #dedbd1;
  filter: none;
}
.shop-preview .gallery-item:hover > img {
  filter: none;
  transform: none;
}
.shop-preview .gallery-featured > img {
  aspect-ratio: 6 / 5;
}
.shop-preview .gallery-item > span {
  position: static;
  padding: 13px 14px;
  min-height: 68px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
}
.shop-preview .gallery-featured > span {
  font-size: 20px;
  min-height: 64px;
  padding-inline: 22px;
}
.shop-preview .gallery-item > span i {
  font-size: 22px;
  flex-shrink: 0;
}
.gallery-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.space-section .section-heading > div:last-child {
  max-width: 440px;
}
@media (max-width: 1050px) {
  .shop-preview {
    grid-template-columns: 1fr;
  }
  .shop-preview .gallery-featured > img {
    aspect-ratio: 1800 / 1105;
  }
  .shop-preview .gallery-item > img {
    max-height: 330px;
  }
  .shop-preview .gallery-featured > img {
    max-height: none;
  }
}
@media (max-width: 760px) {
  .shop-preview {
    gap: 18px;
  }
  .gallery-previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .shop-preview .gallery-item > span {
    min-height: 64px;
    padding: 11px 12px;
    font-size: 18px;
  }
  .shop-preview .gallery-featured > span {
    min-height: 64px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  .site-header,
  .announcement,
  .mobile-booking,
  .hero-visual,
  .experience-section,
  .space-section,
  .visit-image,
  .site-footer,
  .treatment-tabs,
  .treatment-visual,
  .special-card > .button,
  dialog {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .container {
    width: 100%;
  }
  .section-space {
    padding-block: 25px;
  }
  .hero,
  .treatment-layout,
  .faq-section,
  .visit-layout {
    display: block;
  }
  .hero {
    padding: 20px 0;
  }
  .hero h1 {
    font-size: 50px;
  }
  .treatment-panel[hidden] {
    display: block !important;
  }
  .treatment-panel {
    break-inside: avoid;
    margin-bottom: 24px;
  }
  .service-row {
    padding: 9px 0;
    min-height: 0;
  }
  .treatment-intro {
    font-weight: 600;
  }
  .hero-note,
  .hero-actions,
  .menu-footnote,
  .poster-links,
  .specials-note {
    display: none;
  }
  .specials-grid {
    gap: 12px;
  }
  .special-card {
    padding: 16px;
  }
  .special-card h3 {
    font-size: 27px;
  }
  .special-card-featured {
    background: white;
    color: black;
  }
  .special-card-featured em,
  .special-card-featured .special-description,
  .special-card-featured .special-price > span {
    color: black;
  }
  .visit-section {
    padding: 25px 0;
    background: white;
  }
  .faq-section {
    display: none;
  }
}
