@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Allura";
  src: url("/assets/fonts/allura-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --surface: #fff8f6;
  --surface-soft: #fdf1ef;
  --surface-muted: #f7ebe9;
  --surface-high: #ebe0de;
  --white: #ffffff;
  --ink: #201a19;
  --ink-soft: #524341;
  --muted: #6d5a58;
  --primary: #824e46;
  --primary-dark: #693a32;
  --primary-soft: #f7dcda;
  --rose: #e4cac8;
  --bronze: #b58a67;
  --line: #d6c2bf;
  --line-soft: rgba(130, 78, 70, 0.16);
  --footer: #271817;
  --shadow: 0 24px 60px rgba(105, 58, 50, 0.09);
  --shadow-small: 0 14px 35px rgba(105, 58, 50, 0.07);
  --max: 1280px;
  --header-height: 84px;
  color-scheme: light;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--surface);
  color: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  box-sizing: border-box;
  max-width: 100%;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-inline-size: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--white);
  background: var(--primary);
}

:focus-visible {
  outline: 3px solid rgba(130, 78, 70, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: max(12px, env(safe-area-inset-left));
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--footer);
  font-weight: 700;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 248, 246, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding-right: max(0px, env(safe-area-inset-right));
  padding-left: max(0px, env(safe-area-inset-left));
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  justify-self: start;
  text-decoration: none;
}

.wordmark img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.wordmark-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  min-width: 0;
  color: var(--primary-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  font-weight: 500;
  line-height: 1.15;
}

.wordmark-text span {
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 32px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.desktop-nav a[aria-current="page"] {
  color: var(--primary-dark);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 23px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.button--primary {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(130, 78, 70, 0.18);
}

.button--primary:hover {
  color: var(--white);
  background: var(--primary-dark);
}

.button--small {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 11px;
}

.button--text {
  min-height: auto;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.button--text:hover {
  transform: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  width: 23px;
  display: grid;
  gap: 5px;
}

.menu-icon span {
  height: 2px;
  border-radius: 2px;
  background: var(--primary-dark);
}

.mobile-navigation {
  position: fixed;
  z-index: 110;
  inset: 0;
  min-height: 100vh;
  min-height: 100svh;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  background: rgba(39, 24, 23, 0.98);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-navigation__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-navigation__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--surface);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
}

.mobile-navigation__brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.mobile-navigation .menu-button {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--surface);
  font-size: 28px;
}

.mobile-navigation__links {
  display: grid;
  gap: 3px;
  margin-top: clamp(24px, 8vh, 72px);
}

.mobile-navigation__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--surface);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 9vw, 40px);
  text-decoration: none;
}

.mobile-navigation__links a::after {
  content: "↗";
  color: var(--bronze);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.mobile-navigation__note {
  margin-top: 36px;
  color: rgba(255, 248, 246, 0.68);
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin: 0 0 22px;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.display,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.display {
  max-width: 720px;
  font-size: clamp(49px, 6.8vw, 92px);
  line-height: 0.98;
}

.page-title {
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.05;
}

.section-title {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
}

.card-title {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.prose {
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 20px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -210px;
  left: -170px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(181, 138, 103, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding-block: clamp(72px, 9vw, 124px);
}

.hero-copy {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-actions--center {
  justify-content: center;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 35px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-highlights li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
}

.hero-visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual::before {
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
}

.hero-visual::after {
  right: -6%;
  bottom: -10%;
  width: 38%;
  aspect-ratio: 1;
  background: var(--primary-soft);
  opacity: 0.76;
}

.brand-badge-frame,
.hero-logo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.brand-badge-frame {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.brand-badge-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-frame {
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.hero-logo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-badge-note {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 7%;
  width: min(240px, 50%);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-small);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding-block: clamp(82px, 10vw, 132px);
}

.section--soft {
  background: var(--surface-soft);
}

.section--portrait {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section--portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/images/editorial/experience-portrait.jpg") 72% center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.section--portrait > * {
  position: relative;
  z-index: 1;
}

.section--portrait .benefit-card {
  background: rgba(255, 255, 255, 0.86);
}

.section--muted {
  background: var(--surface-muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}

.section-heading .lead {
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  min-width: 0;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.benefit-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.service-preview-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 3.4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.service-preview-card__number {
  margin-bottom: 22px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 28px);
}

.service-preview-card .card-title {
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.08;
}

.service-preview-card p {
  flex: 1;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.editorial-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-high);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.editorial-image figcaption,
.gallery-item figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  color: var(--ink-soft);
  background: rgba(255, 248, 246, 0.88);
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.editorial-copy .section-title {
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.editorial-copy .button {
  margin-top: 27px;
}

.page-hero {
  padding-block: clamp(72px, 9vw, 120px) clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.page-hero .lead {
  margin-inline: auto;
}

.page-hero--left {
  text-align: left;
}

.page-hero--left .lead {
  margin-inline: 0;
}

.notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0 0 42px;
  padding: 17px 19px;
  border: 1px solid var(--rose);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(247, 220, 218, 0.45);
  font-size: 14px;
}

.notice::before {
  content: "i";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1;
}

.treatments-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.category-nav {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 3px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.category-nav strong {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}

.category-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.category-nav a:hover {
  color: var(--primary);
}

.treatment-categories {
  min-width: 0;
  display: grid;
  gap: 76px;
}

.treatment-category {
  scroll-margin-top: 30px;
}

.treatment-category__heading {
  margin-bottom: 26px;
}

.treatment-category__heading p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.treatment-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 21px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.treatment-item__name {
  margin: 0;
  font-weight: 600;
}

.treatment-item__price {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.treatment-item__book {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

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

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.info-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
}

.about-mark {
  width: min(100%, 470px);
  margin-inline: auto;
}

.about-mark .brand-badge-frame {
  width: 100%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  padding: 28px;
  border-top: 1px solid var(--primary);
  background: rgba(255, 255, 255, 0.34);
}

.value-card__number {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
}

.value-card h3 {
  margin: 28px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
  align-items: end;
}

.image-pair figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.image-pair figure:nth-child(2) {
  min-height: 470px;
}

.image-pair img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-pair figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 8px 11px;
  border-radius: 9px;
  background: rgba(255, 248, 246, 0.88);
  color: var(--ink-soft);
  font-size: 11px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-high);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--portrait img {
  object-position: center top;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-item figcaption small {
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.form-card,
.contact-card,
.faq-card,
.booking-shell {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.form-card,
.booking-shell {
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-small);
}

.form-card h2,
.contact-card h2,
.faq-card h2 {
  margin: 0 0 24px;
  color: var(--primary-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 500;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(130, 78, 70, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 25px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
}

.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-card,
.faq-card {
  padding: clamp(25px, 3vw, 36px);
}

.contact-card {
  background: var(--surface-muted);
}

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

.contact-socials {
  display: grid;
  gap: 4px;
  margin: 8px 0 4px;
}

.contact-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.contact-socials a:hover {
  color: var(--primary);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.contact-card .button {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.booking-page {
  padding-block: clamp(58px, 8vw, 108px);
}

.booking-shell {
  width: min(100%, 940px);
  margin-inline: auto;
}

.booking-heading {
  margin-bottom: 36px;
  text-align: center;
}

.booking-heading .page-title {
  overflow: visible;
  padding-block: 0.08em 0.18em;
  padding-inline: 0.12em;
  color: var(--primary-dark);
  font-family: "Allura", "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 8.4vw, 96px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.booking-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-progress li::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 16px;
  left: calc(50% + 19px);
  width: calc(100% - 38px);
  height: 1px;
  background: var(--line);
}

.booking-progress li:last-child::after {
  display: none;
}

.booking-progress span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
}

.booking-progress li.is-active,
.booking-progress li.is-complete {
  color: var(--primary-dark);
}

.booking-progress li.is-active span,
.booking-progress li.is-complete span {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.booking-step h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 500;
}

.booking-step > p {
  margin: 0 0 28px;
  color: var(--muted);
}

.service-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 480px;
  padding: 4px 5px 8px 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.service-option {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.service-option:hover {
  border-color: var(--primary);
}

.service-option:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(130, 78, 70, 0.12);
}

.service-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.service-option__name {
  font-size: 14px;
  font-weight: 600;
}

.service-option__price {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 31px;
  padding-top: 25px;
  border-top: 1px solid var(--line-soft);
}

.booking-summary {
  min-height: 180px;
  margin: 24px 0;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.booking-error {
  min-height: 22px;
  margin: 13px 0 0;
  color: #93000a;
  font-size: 13px;
  font-weight: 600;
}

.cta-band {
  padding-block: clamp(70px, 8vw, 100px);
  color: var(--surface);
  background: var(--primary-dark);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.cta-band .section-title {
  max-width: 760px;
}

.cta-band p {
  max-width: 700px;
  margin: 15px 0 0;
  color: rgba(255, 248, 246, 0.72);
}

.cta-band .button {
  border-color: var(--surface);
  color: var(--primary-dark);
  background: var(--surface);
}

.not-found {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding-block: 70px;
  text-align: center;
}

.not-found__inner {
  width: min(100%, 720px);
}

.not-found__code {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(96px, 20vw, 190px);
  line-height: 0.8;
}

.site-footer {
  padding: clamp(72px, 9vw, 110px) 0 max(92px, calc(32px + env(safe-area-inset-bottom)));
  color: var(--surface);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, 0.6fr));
  gap: 50px;
}

.footer-logo {
  width: min(100%, 520px);
  height: auto;
  background: transparent;
}

.footer-copy {
  max-width: 470px;
  margin: 17px 0 0;
  color: rgba(255, 248, 246, 0.68);
}

.footer-heading {
  margin: 0 0 18px;
  color: rgba(255, 248, 246, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--surface);
  text-decoration: none;
}

.footer-socials {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
}

.footer-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--surface);
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--primary-soft);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 28px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 248, 246, 0.56);
  font-size: 12px;
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  color: rgba(255, 248, 246, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(247, 220, 218, 0.45);
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: var(--primary-soft);
}

.mobile-dock {
  display: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .benefit-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.82fr);
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .header-inner:not(:has(.menu-button)) {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .wordmark {
    gap: 8px;
    justify-self: start;
  }

  .desktop-nav {
    display: none;
  }

  .wordmark img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .wordmark-text {
    font-size: 1rem;
  }

  .header-inner > .button {
    min-height: 44px;
    padding: 9px 16px;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero-inner,
  .editorial-split,
  .about-intro,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    min-height: auto;
    gap: 55px;
    padding-block: 46px 78px;
  }

  .hero-visual {
    order: -1;
    width: min(86vw, 520px);
    margin-inline: auto;
  }

  .hero-logo-frame {
    width: min(100%, 520px);
    border-radius: 22px;
  }

  .brand-badge-note {
    right: 0;
  }

  .display {
    font-size: clamp(48px, 13vw, 72px);
  }

  .service-preview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-preview-card__number {
    margin-bottom: 25px;
  }

  .treatments-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
  }

  .category-nav strong {
    display: none;
  }

  .category-nav a {
    text-align: center;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item--large {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .cta-band__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-band__inner .button {
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .wordmark-text {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.12;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    padding-right: max(0px, env(safe-area-inset-right));
    padding-left: max(0px, env(safe-area-inset-left));
  }

  .header-inner > .button {
    width: 96px;
    padding-inline: 10px;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    gap: 42px;
  }

  .hero-visual {
    width: 100%;
  }

  .brand-badge-frame {
    border-width: 6px;
  }

  .brand-badge-note {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .lead {
    margin-inline: 0;
  }

  .benefit-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .benefit-card {
    padding: 24px 13px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 17px;
  }

  .benefit-card .card-title {
    font-size: 20px;
  }

  .benefit-card p {
    display: none;
  }

  .editorial-image,
  .editorial-image img {
    min-height: 320px;
  }

  .category-nav {
    display: flex;
    overflow-x: auto;
  }

  .category-nav a {
    flex: 0 0 auto;
    padding: 8px 13px;
  }

  .treatment-list,
  .info-grid,
  .field-grid,
  .service-option-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-pair {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-pair figure,
  .image-pair figure:nth-child(2) {
    min-height: 310px;
  }

  .gallery-toolbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 12px;
  }

  .gallery-item--large {
    grid-row: span 2;
  }

  .gallery-item figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    display: block;
    padding: 8px 10px;
    font-size: 10px;
  }

  .gallery-item figcaption small {
    display: block;
    margin-top: 2px;
    font-size: 9px;
  }

  .booking-shell {
    padding: 24px 17px;
  }

  .booking-progress {
    gap: 4px;
  }

  .booking-progress li {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .booking-progress li::after {
    left: calc(50% + 17px);
    width: calc(100% - 34px);
  }

  .booking-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions .button:only-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .footer-logo {
    width: 100%;
    max-width: 420px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-dock {
    position: fixed;
    z-index: 75;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--surface);
    background: rgba(105, 58, 50, 0.96);
    box-shadow: 0 18px 44px rgba(39, 24, 23, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-dock a {
    min-width: 0;
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 10px 5px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-dock a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.14);
  }
}

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

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