:root {
  --bg: #fffdfc;
  --bg-soft: #f8efed;
  --ink: #201d1d;
  --muted: #706765;
  --rose: #c97379;
  --rose-deep: #9d555c;
  --rose-pale: #efd0cd;
  --gold: #b8905d;
  --line: rgba(32, 29, 29, 0.11);
  --shadow: 0 24px 70px rgba(58, 35, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  width: min(var(--max), calc(100% - 28px));
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 253, 252, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(59, 38, 35, 0.12);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-over-hero {
  background: rgba(32, 29, 29, 0.2);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 220ms ease;
}

.site-header.is-over-hero .brand {
  color: #fff;
}

.site-header.is-over-hero .brand-logo {
  filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.18));
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.mobile-book {
  display: none;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(32, 29, 29, 0.78);
  transition: color 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav a.is-active {
  color: var(--rose-deep);
}

.site-header.is-over-hero .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-header.is-over-hero .site-nav a.is-active,
.site-header.is-over-hero .site-nav a:hover,
.site-header.is-over-hero .site-nav a:focus-visible {
  color: #fff;
}

.site-header.is-over-hero .site-nav a::after {
  background: rgba(255, 255, 255, 0.74);
}

.header-book,
.button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-book,
.button.primary {
  background: linear-gradient(135deg, var(--rose), #d98b8f);
  color: #fff;
  box-shadow: 0 18px 36px rgba(201, 115, 121, 0.28);
}

.site-header.is-over-hero .header-book {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
}

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) clamp(42px, 6vw, 82px);
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(145, 82, 52, 0.9), transparent 46%),
    #2a1d18;
  box-shadow: none;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 21, 0.9) 0%, rgba(24, 21, 21, 0.68) 34%, rgba(24, 21, 21, 0.16) 74%),
    linear-gradient(180deg, rgba(24, 21, 21, 0.14) 0%, rgba(24, 21, 21, 0.04) 42%, rgba(24, 21, 21, 0.68) 100%);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  width: min(680px, 100%);
  min-width: 0;
  padding-left: 0;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.1rem, 7.6vw, 8.1rem);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 660px;
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  box-shadow: none;
}

.hero-proof div {
  min-height: auto;
  padding: 0 28px 0 0;
  margin: 0 28px 10px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hero-proof dt {
  color: #fff;
  font-weight: 800;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #2a1815;
  box-shadow: none;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: transform 700ms ease;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image figcaption {
  display: none;
}

.hero-image:hover img {
  transform: scale(1.04);
}

.intro-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}

.intro-track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  animation: track 30s linear infinite;
}

.intro-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: clamp(28px, 6vw, 82px);
  min-width: 100vw;
  padding: 0 clamp(18px, 3vw, 56px);
}

.intro-track span {
  white-space: nowrap;
}

@keyframes track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding: 118px 0;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

img.logo-placeholder {
  object-fit: contain;
  object-position: center;
  padding: clamp(42px, 8vw, 96px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(239, 208, 205, 0.46)),
    var(--bg-soft);
}

.about-copy,
.page-hero-copy,
.service-detail-copy,
.choice-copy,
.section-heading,
.service-content,
.booking-panel,
.social,
.footer-main,
.footer-column,
.faq-group-intro,
.faq-card-list,
.contact-card {
  min-width: 0;
}

.section-label {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy h2,
.section-heading h2,
.choice-copy h2,
.footer h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
}

.about-copy p,
.section-heading p,
.choice-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  color: var(--rose-deep);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.services-preview {
  padding: 102px 0 116px;
  background: linear-gradient(180deg, var(--bg-soft), rgba(255, 253, 252, 0.65));
}

.section-heading {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 46px;
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(58, 35, 32, 0.1);
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-content span {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
}

.service-content h3 {
  margin-top: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
}

.service-content p {
  min-height: 100px;
  color: var(--muted);
}

.service-content a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--rose-deep);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: 82vh;
  padding: 128px 0 72px;
}

.page-hero-copy h1 {
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  overflow-wrap: normal;
}

.page-hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
}

.page-hero-image {
  width: 100%;
  max-height: 590px;
  aspect-ratio: 4 / 3.8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 124px 0 72px;
  background: #8e492e;
  isolation: isolate;
}

.services-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 18, 16, 0.88) 0%, rgba(32, 20, 17, 0.72) 34%, rgba(39, 23, 18, 0.32) 58%, rgba(44, 25, 19, 0.04) 82%),
    linear-gradient(180deg, rgba(25, 17, 15, 0.08) 38%, rgba(24, 16, 14, 0.42) 100%);
  content: "";
}

.services-hero-picture {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  overflow: hidden;
}

.services-hero-image {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
  box-shadow: none;
}

.services-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: clamp(8px, 3svh, 28px);
}

.services-hero .section-label {
  color: #f2bebf;
}

.services-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: 6.2rem;
  overflow-wrap: normal;
}

.services-hero-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

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

.services-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 0 112px;
}

.panel {
  min-height: 360px;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.panel.tint {
  background: var(--bg-soft);
}

.panel h2,
.service-detail-copy h2,
.booking-panel h2,
.social h2,
.faq-group h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
}

.panel p,
.service-detail-copy p,
.booking-panel p,
.social p {
  color: var(--muted);
}

.panel .button {
  margin-top: 16px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: 38px 0 96px;
}

.service-detail.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.service-detail.reverse img {
  order: 2;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-copy .button {
  margin-top: 18px;
}

.catalog-section {
  padding: 40px 0 120px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  column-gap: clamp(56px, 7vw, 112px);
  row-gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 72px;
  padding: 80px 0 64px;
}

.catalog-intro-heading {
  min-width: 0;
}

.catalog-intro-heading .section-label {
  margin-bottom: 18px;
}

.catalog-intro h2 {
  max-width: 640px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  scroll-margin-top: 140px;
  text-wrap: balance;
}

.catalog-intro-copy {
  width: 100%;
  max-width: 470px;
  margin: 0;
  padding-top: 42px;
  justify-self: end;
}

.catalog-intro-copy::before {
  display: block;
  width: 64px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--rose);
  content: "";
}

.catalog-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.treatment-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(58, 35, 32, 0.08);
}

.treatment-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.treatment-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.treatment-card-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.treatment-card h2 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.treatment-card-tagline {
  margin: 14px 0 0;
  color: var(--rose-deep);
  font-weight: 700;
}

.treatment-card-description {
  margin: 10px 0 24px;
  color: var(--muted);
}

.treatment-card .text-link {
  margin-top: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 112px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.treatment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 6.5vw, 88px);
  align-items: center;
  padding: 34px 0 96px;
}

.treatment-hero-copy {
  min-width: 0;
  padding-right: clamp(12px, 2vw, 28px);
  container-type: inline-size;
}

.treatment-hero h1 {
  max-width: 100%;
  font-size: clamp(3.25rem, 10.4cqi, 4rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.treatment-hero h1.treatment-title-long {
  font-size: clamp(2.9rem, 9.2cqi, 3.7rem);
}

.treatment-tagline {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
}

.treatment-hero-copy > p:not(.section-label, .treatment-tagline) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.treatment-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.treatment-hero-media img {
  width: 100%;
  max-height: 660px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.treatment-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 112px;
  border-block: 1px solid var(--line);
}

.treatment-highlights article {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.treatment-highlights article:first-child {
  padding-left: 0;
}

.treatment-highlights article:last-child {
  padding-right: 0;
  border-right: 0;
}

.treatment-highlights span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.treatment-highlights h2 {
  margin-top: 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.treatment-highlights p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.treatment-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  padding-bottom: 118px;
  scroll-margin-top: 110px;
}

.treatment-article-heading {
  min-width: 0;
}

.treatment-article-heading .section-label {
  margin-bottom: 18px;
}

.treatment-article-title {
  max-width: 660px;
  font-size: 3.9rem;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.treatment-article-copy {
  max-width: 540px;
  padding-top: 42px;
}

.treatment-article-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.treatment-points {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.treatment-points li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.treatment-points li::before {
  position: absolute;
  top: 1.35em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.treatment-article-copy .treatment-closing {
  margin-top: 28px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
}

.treatment-article-copy .treatment-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--rose);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.92rem;
}

.treatment-faq {
  padding: 94px 0 112px;
  border-top: 1px solid var(--line);
}

.treatment-faq .section-heading {
  margin-bottom: 36px;
}

.treatment-faq-list {
  display: grid;
  gap: 10px;
  width: min(860px, 100%);
  margin-inline: auto;
}

.related-services {
  padding: 82px 0 112px;
  border-top: 1px solid var(--line);
}

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

.related-heading-copy {
  min-width: 0;
}

.related-heading h2 {
  max-width: 680px;
  font-size: 3.55rem;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.related-all-link {
  flex-shrink: 0;
  margin-top: 0;
}

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

.related-card {
  display: grid;
  grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
  min-height: 220px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 115, 121, 0.46);
  box-shadow: 0 18px 46px rgba(58, 35, 32, 0.08);
}

.related-card-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.related-card:hover .related-card-image,
.related-card:focus-visible .related-card-image {
  transform: scale(1.035);
}

.related-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px 20px;
  container-type: inline-size;
}

.related-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

@container (max-width: 190px) {
  .related-card h3 {
    font-size: 1.3rem;
  }
}

.related-card p {
  margin: 11px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.related-card strong {
  margin-top: auto;
  color: var(--rose-deep);
  font-size: 0.88rem;
}

.choice {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 78px);
  padding: 112px 0;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.choice-list div {
  min-height: 224px;
  padding: 28px;
  background: var(--bg);
}

.choice-list svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-list h3 {
  margin-top: 22px;
  font-size: 1.08rem;
}

.choice-list p {
  color: var(--muted);
}

.quote-band {
  padding: 66px 0;
  background:
    linear-gradient(90deg, rgba(32, 29, 29, 0.02), rgba(201, 115, 121, 0.11)),
    #fff;
  border-block: 1px solid var(--line);
}

.quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

blockquote {
  margin: 0;
}

blockquote p {
  max-width: 760px;
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.12;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.quote-inner img {
  width: clamp(100px, 15vw, 168px);
  opacity: 0.7;
}

.faq-hero {
  min-height: 70vh;
}

.faq-tool {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
  gap: 16px;
  align-items: end;
  margin-top: -42px;
  margin-bottom: 54px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(58, 35, 32, 0.11);
  backdrop-filter: blur(18px);
}

.faq-search {
  display: grid;
  gap: 8px;
}

.faq-search label {
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.faq-search input:focus {
  border-color: rgba(201, 115, 121, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 115, 121, 0.12);
}

.faq-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.faq-filter button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-filter button.is-active,
.faq-filter button:hover,
.faq-filter button:focus-visible {
  border-color: rgba(201, 115, 121, 0.45);
  background: var(--rose);
  color: #fff;
}

.faq-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -28px;
  margin-bottom: 76px;
}

.faq-nav a {
  display: grid;
  gap: 14px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(58, 35, 32, 0.08);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 2.1vw, 1.8rem);
  line-height: 1.12;
  text-decoration: none;
}

.faq-nav span {
  color: var(--rose);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.faq-page {
  display: grid;
  gap: 24px;
  padding-bottom: 76px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(248, 239, 237, 0.62), rgba(255, 255, 255, 0.74) 48%),
    #fff;
  box-shadow: 0 24px 70px rgba(58, 35, 32, 0.08);
  scroll-margin-top: 110px;
}

.faq-group.is-hidden,
details.is-hidden {
  display: none;
}

.faq-group-intro {
  position: sticky;
  top: 112px;
}

.faq-group h2 {
  margin-bottom: 18px;
}

.faq-group-intro p:not(.section-label) {
  color: var(--muted);
}

.faq-card-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

details {
  overflow: hidden;
  border: 1px solid rgba(32, 29, 29, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  list-style: none;
  padding: 22px 22px 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.2;
}

summary:focus {
  outline: none;
}

summary:focus-visible {
  outline: 2px solid rgba(201, 115, 121, 0.45);
  outline-offset: 6px;
  border-radius: 4px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--rose);
  font-family: Inter, sans-serif;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: -4px 22px 22px;
  color: var(--muted);
}

.faq-empty {
  margin: 8px 0 0;
  padding: 28px;
  border: 1px dashed rgba(201, 115, 121, 0.36);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

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

.contact-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 48px rgba(58, 35, 32, 0.08);
}

.contact-card a,
.contact-card span {
  display: block;
  min-height: 42px;
  margin-top: 26px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.16;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 92px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    var(--bg-soft);
}

.social {
  padding: 0 0 112px;
  text-align: center;
}

.social p {
  max-width: 640px;
  margin: 18px auto 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--rose-deep);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 115, 121, 0.18), rgba(184, 144, 93, 0.09) 42%, rgba(32, 29, 29, 0) 74%),
    #201d1d;
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 190, 191, 0.64), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(3, minmax(0, 0.72fr));
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(48px, 7vw, 82px) 0 24px;
}

.footer-main {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.12));
}

.footer-main p {
  max-width: 360px;
  margin: 22px 0 24px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #f2bebf;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-column p,
.footer-main p,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

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

  .intro-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .services-hero h1 {
    font-size: 5rem;
  }

  .treatment-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treatment-hero-copy {
    padding-right: 0;
  }

  .treatment-hero h1 {
    max-width: 900px;
  }

  .treatment-hero-media img {
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .treatment-article {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .treatment-article-title {
    max-width: 760px;
    font-size: 3.5rem;
  }

  .treatment-article-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .catalog-intro {
    column-gap: 48px;
    padding: 64px 0 56px;
  }

  .catalog-intro h2 {
    max-width: 600px;
    font-size: 3.75rem;
  }

  .catalog-intro-copy {
    max-width: 440px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 68px;
    padding: 8px 10px 8px 12px;
  }

  .site-header.is-over-hero {
    background: rgba(32, 29, 29, 0.34);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--rose-deep);
    border: 1px solid rgba(168, 75, 82, 0.22);
    border-radius: 50%;
    background: rgba(201, 115, 121, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
      color 180ms ease,
      background 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-over-hero .nav-toggle {
    color: #fff;
    background: rgba(20, 17, 17, 0.24);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.04),
      0 8px 22px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
  }

  .site-header.is-open .nav-toggle {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), #d98b8f);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(201, 115, 121, 0.28);
  }

  .nav-toggle:hover {
    transform: scale(1.04);
  }

  .nav-toggle:active {
    transform: scale(0.96);
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(217, 139, 143, 0.34);
    outline-offset: 3px;
  }

  .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -7px);
  }

  .nav-toggle span:nth-child(2) {
    transform: translate(-50%, -1px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, 5px);
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translate(-50%, -1px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -1px) scaleX(0.25);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translate(-50%, -1px) rotate(-45deg);
  }

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

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 253, 252, 0.95);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.is-over-hero.is-open .site-nav {
    background: rgba(32, 29, 29, 0.72);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  }

  .site-header.is-open .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 8px;
    color: rgba(32, 29, 29, 0.78);
    padding: 0 14px;
    text-align: center;
  }

  .site-header.is-open .site-nav a::after {
    display: none;
  }

  .site-header.is-open .site-nav a:hover,
  .site-header.is-open .site-nav a:focus-visible,
  .site-header.is-open .site-nav a.is-active {
    background: rgba(201, 115, 121, 0.11);
  }

  .site-header.is-over-hero.is-open .site-nav a {
    color: rgba(255, 255, 255, 0.76);
  }

  .site-header.is-over-hero.is-open .site-nav a:hover,
  .site-header.is-over-hero.is-open .site-nav a:focus-visible,
  .site-header.is-over-hero.is-open .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .site-header.is-open .site-nav .mobile-book {
    display: flex;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--rose), #d98b8f);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(201, 115, 121, 0.22);
  }

  .hero,
  .about,
  .choice,
  .footer-inner,
  .page-hero,
  .split,
  .service-detail,
  .service-detail.reverse,
  .catalog-intro,
  .treatment-hero,
  .treatment-article,
  .related-heading,
  .faq-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    margin-bottom: 52px;
    padding: 64px 0 56px;
  }

  .catalog-intro h2 {
    max-width: 700px;
    font-size: 3.25rem;
  }

  .catalog-intro-copy {
    max-width: 640px;
    padding-top: 0;
    justify-self: start;
  }

  .hero {
    align-items: center;
    min-height: 100svh;
    width: 100%;
    padding: 122px 32px 48px;
  }

  .services-hero {
    min-height: 100svh;
    padding: 112px 0 52px;
  }

  .services-hero::before {
    background:
      linear-gradient(90deg, rgba(29, 19, 17, 0.68), rgba(45, 27, 21, 0.14)),
      linear-gradient(180deg, rgba(30, 21, 18, 0.16) 12%, rgba(27, 19, 17, 0.9) 100%);
  }

  .services-hero-image {
    object-fit: cover;
    object-position: 76% center;
  }

  .services-hero h1 {
    font-size: 4.2rem;
  }

  .hero::before {
    inset: 0;
  }

  .hero::after {
    right: 28px;
    bottom: 34px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-image img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 66% center;
  }

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

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

  .treatment-grid .treatment-card:last-child {
    grid-column: 1 / -1;
  }

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

  .related-grid .related-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
    width: calc((100% - 14px) / 2);
    justify-self: center;
  }

  .treatment-hero-media img {
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .treatment-article {
    gap: 30px;
  }

  .service-detail.reverse img {
    order: 0;
  }

  .faq-tool,
  .faq-nav,
  .faq-group {
    grid-template-columns: 1fr;
  }

  .faq-filter {
    justify-content: flex-start;
  }

  .faq-nav {
    margin-top: -10px;
    margin-bottom: 54px;
  }

  .faq-group-intro {
    position: static;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 64px;
  }

  .contact-card {
    min-height: 180px;
    padding: 26px;
  }

  .contact-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card {
    display: flex;
    flex-direction: column;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 18px) / 2);
    justify-self: center;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 1.15 / 1;
  }

  .service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .service-content p {
    min-height: 0;
  }

  .service-content a {
    margin-top: auto;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-main,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 64px;
    padding-left: 12px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .page-hero-copy h1 {
    font-size: 3.3rem;
  }

  .hero {
    align-items: flex-start;
    min-height: 100svh;
    width: 100%;
    padding: 96px 18px 28px;
  }

  .services-hero {
    min-height: 100svh;
    padding: 96px 0 72px;
  }

  .services-hero h1 {
    font-size: 3.45rem;
  }

  .services-hero-copy > p:not(.section-label) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .services-hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .services-hero-actions .button {
    flex: 1 1 140px;
    padding-inline: 16px;
  }

  .hero-copy {
    margin-top: clamp(92px, 18svh, 168px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(24, 21, 21, 0.4) 0%, rgba(24, 21, 21, 0.42) 34%, rgba(24, 21, 21, 0.88) 100%),
      linear-gradient(90deg, rgba(24, 21, 21, 0.72), rgba(24, 21, 21, 0.14));
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-image img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 68% center;
  }

  .hero-image figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    font-size: 0.88rem;
  }

  .about,
  .services-preview,
  .catalog-section,
  .choice,
  .faq-page {
    padding-block: 72px;
  }

  .catalog-section {
    padding-top: 16px;
  }

  .catalog-intro {
    gap: 26px;
    margin-bottom: 32px;
    padding: 48px 0 40px;
  }

  .catalog-intro h2 {
    font-size: 2.35rem;
  }

  .catalog-intro h2.catalog-title-long {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .catalog-intro-copy {
    max-width: 100%;
  }

  .catalog-intro-copy::before {
    width: 48px;
    margin-bottom: 18px;
  }

  .catalog-intro-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

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

  .treatment-grid .treatment-card:last-child {
    grid-column: auto;
  }

  .treatment-card-body {
    padding: 20px;
  }

  .breadcrumbs {
    padding-top: 94px;
    font-size: 0.75rem;
  }

  .treatment-hero {
    gap: 30px;
    padding: 24px 0 64px;
  }

  .treatment-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .treatment-hero h1.treatment-title-long {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
  }

  .treatment-tagline {
    font-size: 1.45rem;
  }

  .treatment-hero-media img {
    aspect-ratio: 4 / 3.2;
  }

  .treatment-highlights {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .treatment-highlights article,
  .treatment-highlights article:first-child,
  .treatment-highlights article:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatment-highlights article:last-child {
    border-bottom: 0;
  }

  .treatment-article {
    gap: 24px;
    padding-bottom: 74px;
  }

  .treatment-article-title,
  .related-heading h2 {
    font-size: 2.25rem;
  }

  .treatment-faq {
    padding: 70px 0 78px;
  }

  .related-services {
    padding: 64px 0 76px;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .related-heading h2 {
    font-size: 2.35rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .related-grid .related-card:last-child,
  .related-card {
    grid-column: auto;
    grid-template-columns: minmax(104px, 0.58fr) minmax(0, 1fr);
    width: 100%;
  }

  .related-card {
    min-height: 180px;
  }

  .related-card-image {
    min-height: 180px;
  }

  .related-card-body {
    padding: 18px 16px;
  }

  .related-card h3 {
    font-size: 1.3rem;
  }

  .related-card p {
    font-size: 0.86rem;
  }

  .faq-page {
    padding-top: 0;
  }

  .faq-tool {
    margin-top: -18px;
    padding: 14px;
  }

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

  .faq-nav a {
    min-height: auto;
  }

  .faq-group {
    padding: 22px;
  }

  .page-hero {
    padding-top: 118px;
    padding-bottom: 56px;
    min-height: auto;
  }

  .page-hero-image,
  .service-detail img {
    aspect-ratio: 4 / 3.3;
  }

  .split,
  .service-detail {
    padding-bottom: 64px;
  }

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

  .booking-panel > .button {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 56px;
    padding-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 48px rgba(58, 35, 32, 0.08);
  }

  .contact-card {
    min-height: 0;
    padding: 20px 22px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .contact-card .section-label {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .contact-card a,
  .contact-card span {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.25;
  }

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

  .service-card {
    width: auto;
    justify-self: stretch;
  }

  .service-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .service-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    margin-top: 6px;
    font-size: 1.65rem;
  }

  .service-content p {
    min-height: 0;
    margin: 12px 0 6px;
    font-size: 0.94rem;
  }

  .services-preview .section-heading {
    margin-bottom: 30px;
  }

  .choice-list {
    grid-template-columns: 1fr;
  }

  .quote-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .footer-main,
  .footer-column {
    max-width: none;
  }

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

@media (max-width: 360px) {
  .section-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    font-size: 1.14rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .button,
  .header-book {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  h1,
  .hero h1,
  .page-hero-copy h1 {
    font-size: clamp(2.85rem, 15vw, 3.65rem);
  }

  .hero {
    padding-top: 104px;
  }

  .services-hero h1 {
    font-size: 2.8rem;
  }

  .services-hero-actions .button {
    flex-basis: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-proof {
    display: none;
  }

  .faq-filter button {
    flex: 1 1 calc(50% - 8px);
  }

  summary {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 18px;
  }

  details p {
    margin-inline: 18px;
  }

  .footer-logo span {
    font-size: 1.7rem;
  }

  .catalog-intro h2.catalog-title-long {
    font-size: 1.9rem;
  }

  .treatment-article-title {
    font-size: 2.05rem;
  }
}
