@import url("tokens.css");

:root {
  --color-white: #ffffff;
  --color-ink: var(--color-text-primary);
  --color-muted: var(--color-text-muted);
  --color-soft: var(--color-surface-soft);
  --color-border: var(--color-border-soft);
  --color-warm: #eee7dd;
  --color-focus: #8c6f4a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-description: "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --radius: 0.38rem;
  --button-radius: 0.28rem;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  --header-height: 4.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-ink);
  color: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--button-radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.section {
  padding: var(--space-8) 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: clamp(8rem, 28vw, 10rem);
  height: 2.85rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  color: var(--color-ink);
  font-size: clamp(0.68rem, 1.8vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.language-switch a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(17, 17, 17, 0.72);
  transition: color 180ms ease;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  color: var(--color-ink);
}

.language-switch a[aria-current="page"] {
  font-weight: 700;
}

.language-switch span {
  width: 1px;
  height: 1rem;
  background: rgba(17, 17, 17, 0.42);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--color-ink);
}

.nav-menu {
  position: fixed;
  inset: var(--header-height) 1rem auto 1rem;
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-ink);
}

.nav-menu a.button {
  color: var(--color-white);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.25rem;
  background: var(--color-ink);
  color: var(--color-white);
  border: 1px solid var(--color-ink);
  border-radius: var(--button-radius);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
}

.button:active {
  transform: translateY(0);
}

.button-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.button-secondary:hover {
  background: var(--color-soft);
  border-color: var(--color-ink);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.button-card {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
}

.service-card-hero > p:not(.service-category) {
  display: none;
}

@media (max-width: 859px) {
  .treatment-group-featured .service-card-featured > p:not(.service-category) {
    display: none;
  }
}

.service-card-overlay-btn {
  position: absolute;
  left: var(--space-3);
  right: auto;
  bottom: var(--space-3);
  z-index: 3;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 2px 14px rgba(17, 17, 17, 0.5);
}

.service-card-featured .service-card-overlay-btn {
  left: clamp(var(--space-3), 5vw, var(--space-5));
  right: auto;
  bottom: var(--space-3);
}

@media (min-width: 860px) {
  .treatment-group-featured .service-card-featured .service-card-overlay-btn {
    display: none;
  }
}

.service-card .button-card {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.service-card .button-card:hover,
.service-card .button-card:active {
  transform: none;
  background: var(--color-soft);
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.service-card .text-link {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 0.84rem;
}

.service-card .card-actions .text-link-icon-only {
  flex: 0 0 auto;
  min-width: 44px;
  color: var(--color-ink);
  font-size: 0;
  letter-spacing: 0;
}

.service-card .card-actions .text-link-icon-only::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-ink);
  -webkit-mask: url("../assets/images/icons/details-more.svg") no-repeat center / contain;
  mask: url("../assets/images/icons/details-more.svg") no-repeat center / contain;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  min-height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
}

.text-link[data-open-modal]::after {
  content: "";
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  background-color: currentColor;
  -webkit-mask: url("../assets/images/icons/details-more.svg") no-repeat center / contain;
  mask: url("../assets/images/icons/details-more.svg") no-repeat center / contain;
}

.text-link-icon-only {
  justify-content: center;
  width: 44px;
  min-width: 44px;
  padding: 0;
  gap: 0;
}

.text-link-icon-only::after {
  width: 1.125rem;
  height: 1.125rem;
}

.hero-slide-copy .eyebrow,
.specialist-content .eyebrow {
  color: #fff;
}

.hero {
  min-height: 100svh;
  padding: 0;
  background: var(--color-white);
}

.hero > .container {
  width: 100%;
  margin-inline: 0;
}

.split {
  display: grid;
  gap: var(--space-6);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

p {
  font-family: var(--font-description);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 12ch;
  margin-bottom: var(--space-5);
  font-size: clamp(3.2rem, 12.5vw, 7rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(2.5rem, 12vw, 5.75rem);
}

h3 {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 8vw, 3rem);
}

h4 {
  margin-bottom: var(--space-3);
  font-size: 2rem;
}

.hero-text,
.section-heading p,
.section-copy p {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.hero-carousel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  touch-action: pan-y;
  background: var(--color-soft);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    var(--hero-overlay),
    var(--hero-overlay-side);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-slide:first-child img {
  object-position: 62% center;
}

.hero-slide:nth-child(2) img {
  object-position: 58% center;
}

.hero-slide:nth-child(3) img {
  object-position: 62% center;
}

.hero-slide-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: min(100%, 46rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height) + var(--space-5)) clamp(2rem, 8vw, 5rem) clamp(6rem, 14vh, 9rem);
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  max-width: 11ch;
  margin-bottom: var(--space-5);
}

.hero-dots {
  position: absolute;
  left: clamp(2rem, 8vw, 5rem);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 4;
  display: flex;
  gap: var(--space-3);
}

.hero-dots button {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  background: rgba(17, 17, 17, 0.22);
  border: 0;
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 2rem;
  background: var(--color-ink);
}

.hero-dots button:focus-visible {
  outline-offset: 6px;
}

.treatment-marquee {
  overflow: hidden;
  padding: var(--space-5) 0;
  background: var(--color-ink);
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
  animation: marquee-scroll 34s linear infinite;
}

.marquee-track span {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "✦";
  position: absolute;
  right: calc(clamp(2rem, 7vw, 5rem) * -0.58);
  top: 50%;
  color: var(--color-focus);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transform: translateY(-50%);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.specialist-showcase {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-white);
  touch-action: pan-y;
}

.specialist-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.specialist-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.specialist-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    var(--hero-overlay),
    var(--hero-overlay-side);
}

.specialist-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.specialist-slide:first-child img {
  object-position: 68% center;
}

.specialist-slide:nth-child(2) img {
  object-position: 62% center;
}

.specialist-slide:nth-child(3) img {
  object-position: 66% center;
}

.specialist-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(100%, 48rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height) + var(--space-5)) clamp(2rem, 8vw, 5rem) clamp(11rem, 23vh, 14rem);
}

.specialist-content h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 9vw, 4.85rem);
}

.specialist-content p:not(.eyebrow) {
  max-width: 30rem;
  color: var(--color-muted);
  font-size: 1rem;
}

.specialist-actions {
  position: absolute;
  left: clamp(2rem, 8vw, 5rem);
  right: clamp(2rem, 8vw, 5rem);
  bottom: clamp(4.75rem, 8vh, 6.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: 0;
}

.specialist-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.specialist-link span {
  font-size: 1.35rem;
  line-height: 1;
}

.specialist-dots {
  position: absolute;
  left: clamp(2rem, 8vw, 5rem);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 3;
  display: flex;
  gap: var(--space-3);
}

.specialist-dots button {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  background: rgba(17, 17, 17, 0.22);
  border: 0;
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.specialist-dots button.is-active {
  width: 2rem;
  background: var(--color-ink);
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .hero-carousel {
    min-height: 100svh;
    border-radius: 0;
  }

  .hero-carousel::after {
    background:
      var(--hero-overlay),
      var(--hero-overlay-side);
  }

  .hero-slide-copy {
    justify-content: flex-end;
    padding: calc(var(--header-height) + var(--space-5)) var(--space-5) clamp(5.5rem, 14vh, 7rem);
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    max-width: 9.5ch;
  }

  .hero-text {
    max-width: 18rem;
    font-size: 1rem;
  }

  .hero-dots {
    left: var(--space-5);
    bottom: var(--space-6);
  }

  .treatment-marquee {
    padding: var(--space-4) 0;
  }

  .specialist-showcase {
    min-height: 100svh;
  }

  .specialist-slide::after {
    background:
      var(--hero-overlay),
      var(--hero-overlay-side);
  }

  .specialist-content {
    padding: calc(var(--header-height) + var(--space-5)) var(--space-5) clamp(13rem, 27vh, 15rem);
  }

  .specialist-content h2 {
    max-width: 10.5ch;
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .specialist-content p:not(.eyebrow) {
    max-width: 19rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .specialist-actions {
    left: var(--space-5);
    right: var(--space-5);
    bottom: 4.2rem;
    display: grid;
    align-items: stretch;
    gap: var(--space-3);
    width: auto;
  }

  .specialist-link {
    justify-content: space-between;
  }

  .specialist-dots {
    left: var(--space-5);
    bottom: 1.65rem;
  }
}

.hero-portrait,
.image-placeholder,
.map-placeholder {
  min-height: 28rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(238, 231, 221, 0.8)),
    var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.portrait-card {
  width: min(82%, 24rem);
  min-height: 22rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-2);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  text-align: center;
}

.hero-portrait img,
.image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.hero-portrait img {
  object-position: center 18%;
}

.image-placeholder img {
  object-position: center;
}

.portrait-card span,
.image-placeholder span,
.map-placeholder span {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.portrait-card small,
.map-placeholder small {
  color: var(--color-muted);
}

.map-embed {
  position: relative;
  min-height: 30rem;
  padding: 0.75rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(0.95) brightness(1.03);
}

.map-open-link {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-4);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.image-tall {
  min-height: 34rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: var(--space-7);
}

.treatment-group {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
}

.treatment-group-title {
  margin: 0 0 var(--space-5);
  font-size: clamp(2.2rem, 7vw, 3rem);
}

@media (max-width: 559px) {
  .treatment-group {
    padding: var(--space-5) 0;
  }

  .treatment-group-title {
    position: sticky;
    top: var(--header-height);
    z-index: 11;
    width: 100vw;
    margin: 0 calc(50% - 50vw) var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: var(--color-ink);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: none;
  }

  .container > .treatment-group:nth-child(2) .treatment-group-title {
    z-index: 11;
  }

  .container > .treatment-group:nth-child(3) .treatment-group-title {
    z-index: 12;
  }

  .container > .treatment-group:nth-child(4) .treatment-group-title {
    z-index: 13;
  }

  .container > .treatment-group:nth-child(5) .treatment-group-title {
    z-index: 14;
  }
}

@media (min-width: 560px) {
  .treatment-group-title--featured {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

.cards-grid,
.feature-grid {
  display: grid;
  gap: var(--space-4);
}

.service-card {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 180ms ease;
}

.service-card:not(.service-card-featured) {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px 4px var(--radius) var(--radius);
}

.service-card-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.service-card-hero .service-media {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--color-soft);
  overflow: hidden;
}

.service-card-hero .service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.06) 46%, rgba(17, 17, 17, 0.48)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.3), rgba(17, 17, 17, 0));
  pointer-events: none;
}

.service-card-hero .service-category,
.service-card-hero h4,
.service-card-hero > p {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  pointer-events: none;
}

.service-card-hero .service-category {
  top: var(--space-2);
  padding: 0 var(--space-2);
  display: block;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.service-card-hero h4 {
  top: calc(var(--space-2) + 0.62rem);
  padding: 0 var(--space-3);
  max-width: 11ch;
  color: var(--color-white);
  font-size: clamp(1.42rem, 5.8vw, 1.85rem);
  line-height: 1.02;
  text-shadow: 0 10px 28px rgba(17, 17, 17, 0.38);
}

.service-card-hero > p {
  bottom: var(--space-2);
  padding: var(--space-3);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.74rem, 2.8vw, 0.86rem);
  line-height: 1.34;
  text-shadow: 0 8px 22px rgba(17, 17, 17, 0.38);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.service-card:not(.service-card-featured) {
  --card-footer-inline: var(--space-4);
}

.service-card:not(.service-card-featured) dl {
  grid-row: 2;
  grid-column: 1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
  margin: 0;
  padding: var(--space-3) var(--card-footer-inline) var(--space-2);
  border-top: 0;
  background: var(--color-white);
}

.service-card:not(.service-card-featured) dl > div:last-child {
  text-align: right;
  justify-self: end;
}

.service-card:not(.service-card-featured) .card-actions {
  grid-row: 3;
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
  align-items: center;
  padding: var(--space-2) var(--card-footer-inline) var(--space-4);
  background: var(--color-white);
}

.service-card:not(.service-card-featured) .card-actions .text-link {
  grid-column: 1;
  justify-self: start;
}

.service-card:not(.service-card-featured) .card-actions .button-card {
  grid-column: 2;
  justify-self: end;
}

.service-card-featured {
  grid-column: 1 / -1;
  gap: var(--space-4);
  background:
    linear-gradient(135deg, rgba(238, 231, 221, 0.32), rgba(255, 255, 255, 0.94) 48%),
    var(--color-white);
  border-color: #dedede;
}

.treatment-group-featured {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
}

.treatment-group-featured .cards-grid {
  display: block;
}

.treatment-group-featured .service-card-featured {
  position: relative;
  min-height: min(43rem, calc(100svh - var(--header-height) - 2rem));
  display: grid;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr auto auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-ink);
  border-color: var(--color-border);
}

.treatment-group-featured .service-card-featured .service-media {
  grid-column: 1 / -1 !important;
  position: relative;
  grid-row: 1 / 2;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.treatment-group-featured .service-card-featured .service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.05) 42%, rgba(17, 17, 17, 0.26)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.36), rgba(17, 17, 17, 0));
  pointer-events: none;
}

.treatment-group-featured .service-card-featured .service-media img {
  position: absolute;
  inset: 0;
  min-height: 100%;
  max-width: none;
  object-position: center;
}

.treatment-group-featured .service-card-featured .service-category {
  display: none;
}

.treatment-group-featured .service-card-featured h4 {
  position: absolute;
  top: clamp(var(--space-5), 7vw, var(--space-7));
  left: clamp(var(--space-5), 7vw, var(--space-7));
  right: clamp(var(--space-5), 7vw, var(--space-7));
  z-index: 1;
  max-width: 10ch;
  color: var(--color-white);
  font-size: clamp(3rem, 13vw, 5.4rem);
  text-shadow: 0 18px 48px rgba(17, 17, 17, 0.35);
}

.treatment-group-featured .service-card-featured > p:not(.service-category) {
  position: absolute;
  left: clamp(var(--space-5), 7vw, var(--space-7));
  right: clamp(var(--space-5), 7vw, var(--space-7));
  bottom: clamp(8.75rem, 17vh, 11rem);
  z-index: 1;
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.5;
  text-shadow: 0 10px 32px rgba(17, 17, 17, 0.35);
}

.treatment-group-featured .service-card-featured dl,
.treatment-group-featured .service-card-featured .card-actions {
  grid-column: 1 / -1 !important;
  position: relative;
  z-index: 1;
  background: var(--color-white);
}

.treatment-group-featured .service-card-featured dl {
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-3);
  margin: 0;
  padding: var(--space-4) var(--space-5) var(--space-3);
  border-top: 0;
}

.treatment-group-featured .service-card-featured dl > div:last-child {
  text-align: right;
  justify-self: end;
}

.treatment-group-featured .service-card-featured .card-actions {
  grid-row: 3 / 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
  align-items: center;
  padding: 0 var(--space-5) var(--space-5);
}

.treatment-group-featured .service-card-featured .card-actions .text-link {
  grid-column: 1;
  justify-self: start;
}

.treatment-group-featured .service-card-featured .card-actions .button-card {
  grid-column: 2;
  justify-self: end;
}

@media (max-width: 559px) {
  .treatment-group-featured .service-card-featured > p:not(.service-category) {
    bottom: clamp(11.25rem, 24vh, 13.5rem);
  }

  .treatment-group-featured .service-card-featured dl {
    padding: var(--space-5) var(--space-5) var(--space-3);
  }

  .treatment-group-featured .service-card-featured .card-actions {
    padding: var(--space-3) var(--space-5) clamp(1.85rem, 7.5vw, 2.35rem);
    padding-bottom: calc(clamp(1.85rem, 7.5vw, 2.35rem) + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 860px) {
  .treatment-group-featured .service-card-featured dl,
  .treatment-group-featured .service-card-featured .card-actions {
    grid-column: 1 / -1 !important;
  }
}

.service-media {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) var(--space-3);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(238, 231, 221, 0.8)),
    var(--color-soft);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media span {
  position: absolute;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-media.is-missing img {
  display: none;
}

.service-media:not(.is-loaded) img {
  opacity: 0;
}

.service-media.is-loaded span {
  display: none;
}

.service-card:not(.service-card-featured):hover,
.service-card-featured:hover {
  transform: none;
  box-shadow: none;
}

.service-card:not(.service-card-featured):hover {
  border-color: #d2d2d2;
}

.service-card p {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.service-card:not(.service-card-featured) > p:not(.service-category),
.service-card-hero > p {
  color: rgba(255, 255, 255, 0.92);
}

.service-card-featured h4 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 8vw, 3.25rem);
  line-height: 0.95;
}

.service-card-featured > p:not(.service-category) {
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.service-category {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.service-card dt {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card dd {
  margin: 0;
  font-weight: 700;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

@media (max-width: 559px) {
  .treatments .section-heading {
    margin-bottom: var(--space-5);
  }

  .treatment-group {
    padding: var(--space-5) 0;
  }

  .treatment-group .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .service-card-hero .service-media {
    aspect-ratio: 4 / 5;
  }

  .service-card-hero .service-category {
    top: var(--space-2);
    padding-inline: var(--space-2);
    font-size: clamp(0.36rem, 2.35vw, 0.44rem);
    letter-spacing: 0.04em;
  }

  .service-card-hero h4 {
    top: calc(var(--space-2) + 0.56rem);
    padding-inline: var(--space-2);
    font-size: clamp(1.22rem, 5.2vw, 1.46rem);
  }

  .service-card-hero > p {
    bottom: var(--space-2);
    padding: var(--space-2) var(--space-3) var(--space-3);
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .service-card:not(.service-card-featured) {
    --card-footer-inline: var(--space-3);
  }

  .service-card:not(.service-card-featured) dl {
    gap: var(--space-2);
    padding: var(--space-2) var(--card-footer-inline) var(--space-1);
  }

  .service-card:not(.service-card-featured) dt {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .service-card:not(.service-card-featured) dd {
    font-size: 0.8rem;
  }

  .service-card .card-actions {
    gap: var(--space-2);
    padding: var(--space-2) var(--card-footer-inline, var(--space-3)) var(--space-3);
    padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  }

  .service-card .text-link {
    min-height: auto;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .service-card .text-link[data-open-modal]:not(.text-link-icon-only)::after {
    width: 0.82em;
    height: 0.82em;
  }

  .service-card .text-link-icon-only[data-open-modal]::after {
    width: 1.125rem;
    height: 1.125rem;
  }

  .service-card .button-card {
    flex-shrink: 0;
    min-height: 32px;
    padding: 0.42rem 0.55rem;
    font-size: 0.66rem;
  }

  .service-card-featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 560px) {
  .service-card-hero .service-media {
    aspect-ratio: 3 / 4;
  }

  .service-card-hero .service-category {
    top: var(--space-4);
    padding-inline: var(--space-5);
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .service-card-hero h4 {
    top: calc(var(--space-4) + 0.72rem);
    padding-inline: var(--space-5);
    font-size: clamp(1.68rem, 2.5vw, 2.15rem);
  }

  .service-card-hero > p {
    bottom: var(--space-3);
    padding: var(--space-4) var(--space-5) var(--space-5);
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .service-card:not(.service-card-featured) dl {
    padding: var(--space-4) var(--space-5) var(--space-3);
  }

  .service-card:not(.service-card-featured) .card-actions {
    padding: var(--space-2) var(--space-5) var(--space-5);
  }
}

.why,
.reviews,
.booking {
  background: var(--color-soft);
}

.feature-grid article {
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-grid h3 {
  margin-bottom: var(--space-3);
  font-size: 2rem;
}

.feature-grid p,
.timeline p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: var(--space-4);
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.timeline span {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.reviews-card,
.booking-card {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.rating-box {
  padding: var(--space-5);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.rating-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.rating-box span,
.muted {
  color: var(--color-muted);
}

.reviews-intro p {
  color: var(--color-muted);
}

.review-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.review-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.review-card p {
  margin-bottom: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 7vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.review-card small {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.review-meta span {
  min-width: 3rem;
  min-height: 3rem;
  display: inline-grid;
  place-items: center;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 800;
}

.review-meta strong {
  font-size: 0.95rem;
}

.narrow {
  width: min(100% - 2rem, 860px);
}

.accordion {
  display: grid;
  gap: var(--space-3);
}

.accordion article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion button {
  width: 100%;
  min-height: 56px;
  padding: var(--space-4);
  background: var(--color-white);
  border: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
}

.accordion button::after {
  content: "+";
  float: right;
}

.accordion button[aria-expanded="true"]::after {
  content: "−";
}

.accordion article p {
  display: none;
  margin: 0;
  padding: 0 var(--space-4) var(--space-4);
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.accordion article.is-open p {
  display: block;
}

.booking-card {
  text-align: center;
  align-items: center;
}

.booking-card h2 {
  max-width: 12ch;
  margin-inline: auto;
}

address {
  color: var(--color-muted);
  font-style: normal;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  padding: var(--space-7) 0 var(--space-5);
  background: var(--color-ink);
  color: var(--color-white);
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer .brand,
.footer h2 {
  color: var(--color-white);
}

.footer .brand-mark {
  border-color: var(--color-white);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-grid h2 {
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a {
  min-height: 36px;
  display: block;
}

.footer-bottom {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: var(--space-4);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
  opacity: 0;
  transition: opacity 180ms cubic-bezier(0.4, 0, 1, 1);
}

.modal.is-open .modal-backdrop {
  opacity: 1;
  transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 720px);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  --modal-inline-pad: var(--space-card-padding);
  background: var(--color-surface-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 200ms cubic-bezier(0.4, 0, 1, 1),
    transform 200ms cubic-bezier(0.4, 0, 1, 1);
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-hero {
  position: relative;
  flex-shrink: 0;
  min-height: min(14rem, 36svh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #2a2a2a;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.modal-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.modal-hero-media[hidden] {
  display: none;
}

.modal-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.12) 38%, rgba(17, 17, 17, 0.08) 55%, rgba(17, 17, 17, 0.82) 100%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.42) 0%, rgba(17, 17, 17, 0.08) 58%, rgba(17, 17, 17, 0) 100%);
}

.modal-hero-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  padding:
    1.65rem
    var(--modal-inline-pad)
    var(--space-stack-md);
}

.modal-hero-head {
  flex: 0 0 auto;
}

.modal-hero-copy .eyebrow {
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.modal-hero-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  font-weight: 500;
  line-height: var(--leading-display);
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(17, 17, 17, 0.35);
}

.modal-hero-copy #modal-description {
  margin: var(--space-stack-md) 0 0;
  max-width: 38ch;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(17, 17, 17, 0.4);
}

.modal-body {
  padding: var(--modal-inline-pad);
  padding-top: var(--space-stack-lg);
  padding-bottom: calc(var(--modal-inline-pad) + 0.15rem);
}

.modal-body > .button {
  display: flex;
  width: 100%;
  margin: var(--space-stack-md) 0 0;
  border-radius: 10px;
  border-inline: 1px solid var(--color-ink);
}

.modal-close {
  position: absolute;
  top: var(--space-stack-sm);
  right: var(--modal-inline-pad);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-stack-md);
  margin: 0 0 var(--space-stack-md);
}

.modal-details div:nth-child(-n+2) {
  grid-column: 1 / -1;
}

.modal-details div:nth-child(3) p,
.modal-details div:nth-child(4) p {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text-primary);
}

.modal-details div {
  padding: var(--space-stack-sm) var(--space-stack-md);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card);
}

.modal-details span {
  display: block;
  margin-bottom: var(--space-stack-xs);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-details p {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--color-text-secondary);
}

@media (min-width: 560px) {
  .cards-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .nav-menu a {
    min-height: 44px;
    font-size: 0.86rem;
  }

  .service-card-featured {
    grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto auto;
    column-gap: clamp(var(--space-5), 4vw, var(--space-7));
    row-gap: var(--space-3);
    align-items: center;
    padding: clamp(var(--space-5), 3vw, var(--space-7));
  }

  .service-card-featured .service-media {
    grid-row: 1 / -1;
    align-self: stretch;
    min-height: 24rem;
    margin: calc(clamp(var(--space-5), 3vw, var(--space-7)) * -1) 0 calc(clamp(var(--space-5), 3vw, var(--space-7)) * -1) calc(clamp(var(--space-5), 3vw, var(--space-7)) * -1);
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .service-card-featured .service-category,
  .service-card-featured h4,
  .service-card-featured > p:not(.service-category),
  .service-card-featured dl,
  .service-card-featured .card-actions {
    grid-column: 2;
  }

  .service-card-featured .card-actions {
    justify-content: flex-start;
  }

  .split,
  .reviews-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .modal {
    place-items: center;
  }

  .modal-panel {
    --modal-inline-pad: var(--space-6);
  }

  .modal-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    padding: 0;
  }
}

/* Mobile calm typography — hero + sections from .why onward (mobile-ux-ui-tokens) */
@media (max-width: 767px) {
  .container,
  .narrow {
    width: min(100% - (var(--space-page-x) * 2), 1180px);
  }

  .why,
  .process,
  .reviews,
  .faq,
  .booking,
  .contact {
    padding: var(--space-section-y) 0;
  }

  .section-heading {
    margin-bottom: var(--space-stack-lg);
  }

  .section-heading .eyebrow,
  .reviews-intro .eyebrow,
  .booking-card .eyebrow,
  .section-copy .eyebrow {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
  }

  .hero-carousel::after {
    background:
      var(--hero-overlay),
      var(--hero-overlay-side);
  }

  .hero-slide-copy {
    padding:
      calc(var(--header-height) + var(--space-stack-md))
      var(--space-page-x)
      clamp(5.5rem, 14vh, 7rem);
  }

  .hero-slide-copy .eyebrow {
    margin-bottom: var(--space-stack-sm);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    max-width: 14ch;
    margin-bottom: var(--space-stack-md);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
  }

  .hero-slide-copy .hero-text {
    max-width: 34ch;
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .hero-dots {
    left: var(--space-page-x);
  }

  .why .section-heading h2,
  .process .section-heading h2,
  .reviews-intro h2,
  .faq .section-heading h2,
  .booking-card h2,
  .contact .section-copy h2 {
    max-width: 28ch;
    margin-bottom: var(--space-stack-md);
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
  }

  .section-heading p,
  .reviews-intro p:not(.eyebrow),
  .booking-card p:not(.eyebrow) {
    max-width: 38ch;
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .feature-grid {
    gap: var(--space-stack-md);
  }

  .feature-grid article {
    padding: var(--space-card-padding);
    border-radius: var(--radius-card);
    border-color: var(--color-border-soft);
  }

  .feature-grid span {
    margin-bottom: var(--space-stack-sm);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
  }

  .feature-grid h3 {
    margin-bottom: var(--space-stack-sm);
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 4vw, 1.375rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.015em;
    color: var(--color-text-primary);
  }

  .feature-grid p,
  .timeline p {
    font-size: var(--text-body-sm);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .timeline li {
    padding: var(--space-card-padding);
    border-radius: var(--radius-card);
  }

  .timeline span {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
  }

  .timeline strong {
    margin-bottom: var(--space-stack-xs);
    font-family: var(--font-display);
    font-size: clamp(1.0625rem, 3.8vw, 1.25rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.015em;
    color: var(--color-text-primary);
  }

  .reviews-card,
  .booking-card {
    padding: var(--space-card-padding);
    border-radius: var(--radius-card);
  }

  .rating-box {
    padding: var(--space-card-padding);
    border-radius: var(--radius-card);
  }

  .rating-box strong {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
    font-weight: 500;
    color: var(--color-text-primary);
  }

  .rating-box span,
  .rating-box p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
  }

  .review-grid {
    gap: var(--space-stack-md);
  }

  .review-card {
    gap: var(--space-stack-md);
    padding: var(--space-card-padding);
    border-radius: var(--radius-card);
  }

  .review-card p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    line-height: var(--leading-body);
    letter-spacing: normal;
    color: var(--color-text-secondary);
  }

  .review-card small {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
  }

  .accordion button {
    min-height: 48px;
    padding: var(--space-stack-md);
    font-family: var(--font-body);
    font-size: var(--text-title-sm);
    font-weight: 600;
    line-height: var(--leading-ui);
    color: var(--color-text-primary);
  }

  .accordion article p {
    font-size: var(--text-body-sm);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .contact .section-copy h2 {
    max-width: 22ch;
  }

  .contact address,
  .contact .section-copy p,
  .contact .muted {
    font-size: var(--text-body-sm);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  /* Marquee */
  .treatment-marquee {
    padding: var(--space-stack-md) 0;
  }

  .marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 4.2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.88);
  }

  /* Specialist showcase */
  .specialist-slide::after {
    background:
      var(--hero-overlay),
      var(--hero-overlay-side);
  }

  .specialist-content {
    padding:
      calc(var(--header-height) + var(--space-stack-md))
      var(--space-page-x)
      clamp(13rem, 27vh, 15rem);
  }

  .specialist-content .eyebrow {
    margin-bottom: var(--space-stack-sm);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
  }

  .specialist-content h2 {
    max-width: 14ch;
    margin-bottom: var(--space-stack-md);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
  }

  .specialist-content p:not(.eyebrow) {
    max-width: 34ch;
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .specialist-actions {
    left: var(--space-page-x);
    right: var(--space-page-x);
  }

  .specialist-link {
    font-family: var(--font-body);
    font-size: var(--text-body-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-text-primary);
  }

  .specialist-dots {
    left: var(--space-page-x);
  }

  /* Treatments */
  .treatments {
    padding: var(--space-section-y) 0;
  }

  .treatments .section-heading h2 {
    max-width: 28ch;
    margin-bottom: var(--space-stack-md);
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
  }

  .treatments .section-heading p {
    max-width: 38ch;
    font-size: var(--text-body);
    line-height: var(--leading-body);
    color: var(--color-text-secondary);
  }

  .treatment-group-title {
    padding: var(--space-stack-sm) var(--space-page-x);
    background: var(--color-text-primary);
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 4.5vw, 1.375rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.015em;
  }

  .treatment-group-featured .service-card-featured h4 {
    max-width: 12ch;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 7vw, 2.125rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.02em;
  }

  .service-card:not(.service-card-featured) {
    border-radius: 4px 4px var(--radius-card) var(--radius-card);
    border-color: var(--color-border-soft);
  }

  .service-card-hero .service-category {
    font-size: clamp(0.4rem, 2.5vw, 0.48rem);
    letter-spacing: 0.05em;
    color: #fff;
  }

  .service-card-hero h4 {
    top: calc(var(--space-2) + 0.58rem);
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 4.5vw, 1.375rem);
    font-weight: 500;
    line-height: var(--leading-display);
    letter-spacing: -0.015em;
  }

  .service-card-hero > p {
    font-size: var(--text-body-sm);
    line-height: var(--leading-body);
  }

  .service-card:not(.service-card-featured) dt {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
  }

  .service-card:not(.service-card-featured) dd {
    font-size: var(--text-body-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    font-variant-numeric: tabular-nums;
  }

  .service-card .text-link {
    min-height: 44px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-body-sm);
    letter-spacing: normal;
  }

  .service-card .text-link-icon-only {
    flex: 0 0 auto;
    min-width: 44px;
    font-size: 0;
    color: var(--color-ink);
  }

  .service-card .text-link-icon-only::after {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-color: var(--color-ink);
  }

  .service-card .button-card {
    min-height: 34px;
    padding: 0.4rem 0.65rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
  }

  .modal {
    padding: 0.625rem var(--space-page-x);
    padding-bottom: max(0.625rem, env(safe-area-inset-bottom, 0px));
    place-items: center;
  }

  .modal-panel {
    width: 100%;
    max-width: 100%;
    max-height: calc(100svh - 1.25rem);
    --modal-inline-pad: 1rem;
    border-radius: 18px;
  }

  .modal-hero {
    flex: 1 1 auto;
    min-height: min(16.5rem, 46svh);
    max-height: 50svh;
  }

  .modal-hero-copy {
    padding:
      1.45rem
      var(--modal-inline-pad)
      var(--space-stack-md);
  }

  .modal-hero-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .modal-hero-copy #modal-description {
    max-width: none;
    margin-top: auto;
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .modal-body {
    flex: 0 1 auto;
    padding-top: var(--space-stack-lg);
    overflow-y: auto;
    min-height: 0;
  }

  .modal-details {
    gap: var(--space-stack-md);
    margin-bottom: var(--space-stack-md);
  }

  .modal-details div {
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
  }

  .modal-details p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .modal-body > .button {
    width: 100%;
    margin-top: var(--space-stack-md);
    min-height: 48px;
    padding: 0.75rem 1.15rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .marquee-track {
    width: auto;
    flex-wrap: wrap;
    transform: none;
  }
}
