@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-RomanHead.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-MediumHead.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-SemiBoldHead.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/SequelSans-BoldHead.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* Cormorant — the brand serif echoing the storefront wordmark. Variable font
   (one file per style, covers the full weight range), self-hosted to match the
   Sequel Sans delivery above. Used for display/section headings and .serif accents. */
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/Cormorant-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("../fonts/Cormorant-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* Palette aligned to the storefront sign: a lavender/mauve board with cool
     near-black lettering (was a warm peach + espresso scheme). */
  --ink: #241d29;          /* cool charcoal-aubergine — primary text (was #2c1912) */
  --ink-soft: #5f5468;     /* muted mauve-grey — secondary text (was #5f4b42) */
  --paper: #dcc7d6;        /* dusty lilac — .section-paper bg (was peach #f0cdb5) */
  --paper-light: #f2ecf2;  /* barely-lilac — page/body bg (was #faeee5) */
  --paper-pale: #fcf9fc;   /* cool near-white — .section-pale bg (was #fffaf6) */
  --plum: #855f8c;         /* lavender-mauve accent (was #87586d) */
  --plum-dark: #573f60;    /* deep aubergine — hovers, eyebrow text (was #654153) */
  --plum-soft: #d3bcdc;    /* soft lilac — accents on dark sections (was #d9b7c5) */
  --gold: #d6a95e;         /* warm gold accent, kept */
  --line: rgba(36, 29, 45, 0.18);
  --line-light: rgba(253, 251, 253, 0.2);
  --white: #fdfbfd;        /* cool near-white (was warm #fffaf6) */
  --shadow: 0 18px 54px rgba(40, 26, 48, 0.14);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --content: 1240px;
  --narrow: 780px;
  --header-height: 92px;
  --font-sans: "Sequel Sans", "Helvetica Neue", sans-serif;
  --font-serif: "Cormorant", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--plum-dark);
}

a:visited {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

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

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

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

.section {
  padding-block: clamp(80px, 9vw, 140px);
}

.section-sm {
  padding-block: clamp(56px, 7vw, 96px);
}

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

.section-pale {
  background: var(--paper-pale);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--plum-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--plum);
  content: "";
}

.section-dark .eyebrow {
  color: var(--plum-soft);
}

.display-title,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-wrap: balance;
}

.display-title {
  max-width: 760px;
  font-size: clamp(3.25rem, 7.4vw, 7.8rem);
}

.page-title {
  max-width: 920px;
  font-size: clamp(3.1rem, 7vw, 7.2rem);
}

.section-title {
  max-width: 880px;
  font-size: clamp(2.55rem, 5vw, 5.5rem);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.section-dark .lede {
  color: rgba(253, 251, 253, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out;
}

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

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

.button-primary:hover,
.button-primary:visited {
  color: var(--white);
}

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

.button-plum {
  background: var(--plum);
  color: var(--white);
}

.button-plum:hover,
.button-plum:visited {
  color: var(--white);
}

.button-plum:hover {
  background: var(--plum-dark);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

/* Guard against the global `a:visited { color: inherit }` (which outranks the
   class): without this, a visited .button-light (e.g. the /book-now.html CTA)
   inherits the dark panel's white text and renders as a blank white pill. */
.button-light:visited {
  color: var(--ink);
}

.button-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.button-outline {
  border-color: currentColor;
  background: transparent;
}

.button-arrow {
  font-size: 1.15em;
  transition: transform 180ms ease-out;
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 236, 242, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-logo {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: block;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 6px 18px rgba(36, 29, 45, 0.14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.nav-dropdown > a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--plum);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 160ms ease-out,
    transform 160ms ease-out;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  width: 32px;
  height: 44px;
  margin-left: -9px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease-out;
}

.nav-dropdown[data-open="true"] .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 15px);
  left: 0;
  width: min(760px, calc(100vw - 48px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-pale);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease-out 120ms,
    transform 160ms ease-out 120ms,
    visibility 0s linear 280ms;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown[data-open="true"] .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 36px;
}

.mega-menu-group h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.mega-menu-group a {
  display: block;
  padding-block: 5px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  text-decoration: none;
}

.mega-menu-group a:hover {
  color: var(--plum-dark);
  text-decoration: underline;
}

.mega-menu-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-menu-footer p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.header-book {
  min-height: 46px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 19px;
  height: 2px;
  display: block;
  background: currentColor;
  transition:
    transform 180ms ease-out,
    opacity 180ms ease-out;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: var(--header-height) 0 0;
  overflow-y: auto;
  padding: 28px 24px 120px;
  background: var(--paper-light);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 220ms ease-out,
    transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-links {
  display: grid;
  gap: 2px;
}

.mobile-menu-links > a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.mobile-menu-links > a[aria-current="page"] {
  color: var(--plum-dark);
}

.mobile-menu-services {
  margin-top: 28px;
}

.mobile-menu-services p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-services a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
}

.mobile-menu-contact {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 26, 0.84) 0%, rgba(20, 14, 26, 0.56) 42%, rgba(20, 14, 26, 0.08) 76%),
    linear-gradient(0deg, rgba(20, 14, 26, 0.38), transparent 45%);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-content {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-block: 72px;
}

.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow::before {
  background: var(--plum-soft);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(253, 251, 253, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero .button-primary {
  background: var(--white);
  color: var(--ink);
}

.hero .button-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero .button-outline {
  color: var(--white);
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: rgba(253, 251, 253, 0.82);
  font-size: 0.92rem;
}

.hero-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-band-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 1.04rem;
}

.trust-item span,
.trust-item a {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Page heroes and editorial layouts */
.page-hero {
  padding-block: clamp(86px, 11vw, 170px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 22%, rgba(133, 95, 140, 0.18), transparent 28%),
    var(--paper);
}

.page-hero .lede {
  max-width: 760px;
}

.page-hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip,
.service-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

.meta-chip:hover,
.service-chip:hover {
  border-color: var(--plum);
  color: var(--plum-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.split.reverse > :first-child {
  order: 2;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.service-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.service-list a {
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.service-list span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: right;
}

.category-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.category-index a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(253, 251, 253, 0.4);
  text-decoration: none;
  transition:
    background-color 160ms ease-out,
    border-color 160ms ease-out,
    transform 160ms ease-out;
}

.category-index a:hover {
  border-color: var(--plum);
  background: var(--paper-pale);
  transform: translateY(-3px);
}

.category-index small {
  color: var(--plum-dark);
  font-weight: 700;
}

.category-index strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.treatment-category {
  border-top: 1px solid var(--line);
}

.treatment-category:first-child {
  border-top: 0;
}

.category-heading {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
}

.category-number {
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
}

.category-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-wrap: balance;
}

.category-body {
  margin: 46px 0 0 138px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
}

.category-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.category-body .info-grid {
  margin-top: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-chip {
  background: var(--paper-pale);
  color: var(--ink);
}

/* Trust and proof */
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
}

.proof-points {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
}

.proof-points strong {
  display: block;
  margin-bottom: 3px;
}

.proof-points span {
  color: rgba(253, 251, 253, 0.7);
  font-size: 0.94rem;
}

.profile-card {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(253, 251, 253, 0.05);
}

.profile-monogram {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-style: italic;
}

.profile-card h3 {
  margin: 24px 0 4px;
  font-size: 1.65rem;
}

.profile-role {
  margin: 0;
  color: var(--plum-soft);
}

.profile-card p:not(.profile-role) {
  color: rgba(253, 251, 253, 0.72);
}

.profile-card a {
  color: var(--white);
}

.review-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-pale);
}

.review-score {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.review-score strong {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.review-score span {
  color: var(--ink-soft);
}

.review-card blockquote {
  margin: 34px 0 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.review-card footer {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Information, steps, FAQs */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.step {
  min-height: 260px;
  padding: 28px;
  background: var(--paper-pale);
}

.step small {
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
}

.step h3 {
  margin: 62px 0 8px;
  font-size: 1.3rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.info-card {
  padding: 26px;
  border-top: 2px solid var(--plum);
  background: var(--paper-pale);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.notice {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(253, 251, 253, 0.54);
  color: var(--ink-soft);
}

.notice strong {
  color: var(--ink);
}

.treatment-pricing-notice {
  margin-top: 28px;
}

.info-grid.contact-choice-grid {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.faq-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  min-height: 80px;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 18px;
  list-style: none;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

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

.faq-index {
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease-out;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 760px;
  padding: 0 46px 26px 60px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

/* Contact and booking */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-pale);
}

.contact-card small {
  color: var(--plum-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 58px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-card a {
  font-weight: 600;
}

.map-wrap {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: #e3dce6;
}

.map-wrap iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(0.92);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.booking-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.booking-aside h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.booking-aside p {
  color: var(--ink-soft);
}

.booking-meta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.booking-meta strong,
.booking-meta span {
  display: block;
}

.booking-meta span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.booking-widget {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

wl-appointments-widget {
  min-height: 640px;
  display: block;
}

.booking-fallback {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

/* Calls to action and footer */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 90px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(253, 251, 253, 0.17), transparent 28%),
    var(--plum-dark);
  color: var(--white);
}

.cta-panel h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 6rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-wrap: balance;
}

.cta-panel p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(253, 251, 253, 0.78);
  font-size: 1.1rem;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 56px;
  padding-block: 80px 56px;
}

.footer-brand img {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.footer-brand p {
  max-width: 410px;
  margin: 22px 0 0;
  color: rgba(253, 251, 253, 0.7);
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--plum-soft);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: rgba(253, 251, 253, 0.78);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(253, 251, 253, 0.58);
  font-size: 0.84rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social a {
  color: rgba(253, 251, 253, 0.72);
}

.mobile-actions {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --header-height: 82px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .header-inner::before {
    content: "";
  }

  .site-logo {
    width: 66px;
    height: 66px;
  }

  .menu-toggle {
    display: grid;
  }

  .category-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  body {
    padding-bottom: 72px;
  }

  body.page-booking {
    padding-bottom: 0;
  }

  .shell,
  .narrow,
  .hero-content {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-book {
    display: none;
  }

  .display-title,
  .page-title,
  .section-title {
    line-height: 1.02;
  }

  .hero {
    min-height: 690px;
    align-items: flex-end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(20, 14, 26, 0.88) 0%, rgba(20, 14, 26, 0.5) 60%, rgba(20, 14, 26, 0.12) 100%);
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-content {
    padding-block: 64px;
  }

  .hero-copy {
    max-width: 540px;
  }

  .trust-band-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split,
  .proof-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .editorial-image {
    min-height: 400px;
  }

  .category-index {
    grid-template-columns: 1fr 1fr;
  }

  .category-heading {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  .category-body {
    margin: 34px 0 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile-card {
    max-width: 520px;
  }

  .contact-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 210px;
  }

  .booking-aside {
    position: static;
  }

  .booking-widget {
    padding: 0;
    overflow: hidden;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(242, 236, 242, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    background: var(--plum);
  }

  .mobile-actions a:visited {
    color: var(--white);
  }

  .page-booking .mobile-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 72px;
  }

  .section-sm {
    padding-block: 52px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-proof [aria-hidden="true"] {
    display: none;
  }

  .category-index,
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .step h3 {
    margin-top: 40px;
  }

  .faq-item summary {
    min-height: 92px;
    grid-template-columns: 30px 1fr 24px;
    gap: 10px;
  }

  .faq-answer {
    padding: 0 24px 24px 40px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
    height: 420px;
  }

  .cta-panel {
    padding: 34px 26px;
    border-radius: var(--radius-md);
  }
}

/* Expanded treatment directory */
.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -10px;
  width: calc(100% + 20px);
  height: 20px;
  content: "";
}

.mega-menu {
  left: -64px;
  width: min(1160px, calc(100vw - 48px));
  max-height: calc(100svh - var(--header-height) - 24px);
  padding: 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-menu-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.mega-menu-intro .eyebrow {
  margin: 0;
  font-size: 0.68rem;
}

.mega-menu-intro > a {
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.mega-menu-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.mega-menu-group h2 {
  min-height: 38px;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.mega-menu-group a {
  position: relative;
  padding: 4px 0 4px 12px;
  font-size: 0.79rem;
  line-height: 1.32;
  transition:
    color 180ms ease-out,
    transform 180ms ease-out;
}

.mega-menu-group a::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--plum);
  content: "";
  opacity: 0.55;
}

.mega-menu-group a:hover {
  transform: translateX(3px);
}

.mobile-category {
  border-bottom: 1px solid var(--line);
}

.mobile-category summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-weight: 600;
}

.mobile-category summary::-webkit-details-marker {
  display: none;
}

.mobile-category summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mobile-category summary span::before,
.mobile-category summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-category summary span::after {
  transform: rotate(90deg);
}

.mobile-category[open] summary span::after {
  transform: rotate(0);
}

.mobile-category-links {
  display: grid;
  padding: 0 0 14px 16px;
}

.mobile-category-links a {
  min-height: 42px;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

/* Premium individual service pages */
.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 70px) 0 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(253, 251, 253, 0.5), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(133, 95, 140, 0.15), transparent 28%),
    var(--paper);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 72px);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.service-hero-copy {
  padding-bottom: clamp(64px, 8vw, 118px);
}

.service-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.45rem, 6.9vw, 7.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.0;
  text-wrap: balance;
}

.service-title .serif {
  display: block;
  color: var(--plum-dark);
}

.service-intro {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.service-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  overflow: hidden;
  border-radius: 240px 22px 0 0;
  background: var(--paper-light);
  transform: translateZ(0);
}

.service-hero-media picture,
.service-hero-media img {
  width: 100%;
  height: 100%;
}

.service-hero-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.service-hero-media > p {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(20, 14, 26, 0.74);
  color: rgba(253, 251, 253, 0.9);
  font-size: 0.68rem;
  backdrop-filter: blur(10px);
}

.service-facts {
  position: relative;
  z-index: 2;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--paper-pale);
  box-shadow: 0 -10px 40px rgba(40, 26, 48, 0.06);
}

.service-facts > div {
  min-height: 110px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-facts > div:last-child {
  border-right: 0;
}

.service-facts dt {
  color: var(--plum-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-facts dd {
  margin: 14px 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 9vw, 140px);
}

.service-section-heading {
  max-width: 860px;
}

.concern-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.concern-list li {
  position: relative;
  padding: 18px 36px 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.concern-list li::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--plum);
  content: "↗";
  font-family: var(--font-serif);
  transform: translateY(-50%);
}

.service-prose {
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.service-prose p {
  margin: 0;
}

.service-prose p + p {
  margin-top: 22px;
}

.service-process {
  margin: 52px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.service-process li {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 253, 0.36);
  transition:
    background-color 240ms ease-out,
    transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.service-process li:hover {
  z-index: 2;
  background: var(--paper-pale);
  transform: translateY(-5px);
}

.service-process li > span,
.care-grid article > span {
  color: var(--plum-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
}

.service-process h3 {
  margin: 86px 0 10px;
  font-size: 1.35rem;
}

.service-process p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
}

.benefit-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 22px 0 22px 38px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.benefit-list li::before {
  position: absolute;
  top: 1.45em;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--plum-soft);
  border-radius: 50%;
  content: "";
}

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

.care-grid article {
  min-height: 290px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper-pale);
}

.care-grid h3 {
  margin: 62px 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.care-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.service-consultation-note {
  margin-top: 24px;
}

.service-provider-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.provider-portrait {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 180px 18px 180px 18px;
}

.provider-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-credentials {
  margin: 28px 0 0;
  color: var(--plum-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.provider-verification {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(253, 251, 253, 0.62);
  font-size: 0.86rem;
}

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

.text-link {
  flex: 0 0 auto;
  font-weight: 700;
  text-decoration: none;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.related-service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.related-service-card:hover {
  color: var(--ink);
  transform: translateY(-7px);
}

.related-service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-light);
}

.related-service-image picture,
.related-service-image img {
  width: 100%;
  height: 100%;
}

.related-service-image img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.related-service-card:hover .related-service-image img {
  transform: scale(1.035);
}

.related-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--plum-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-service-card strong {
  margin-top: 8px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.related-service-card > span:last-child {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-pagination {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-pagination a {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-decoration: none;
}

.service-pagination a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.service-pagination small {
  color: var(--plum-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-pagination strong {
  margin-top: 10px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.review-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.service-rating {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  text-align: center;
}

.service-rating strong {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.service-rating > span {
  margin-top: 20px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.service-rating p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.medical-disclaimer {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
}

/* Dependency-free motion: content stays visible until JavaScript opts in. */
@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 180ms ease-in both page-enter reverse;
}

::view-transition-new(root) {
  animation: 420ms cubic-bezier(.22, 1, .36, 1) both page-enter;
}

.motion-ready [data-reveal]:not(.is-visible),
.motion-ready [data-reveal-group] > *:not(.is-visible) {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 26px), 0);
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-group] > * {
  transition:
    opacity 650ms cubic-bezier(.22, 1, .36, 1),
    transform 650ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .image-reveal {
  clip-path: inset(0 0 100% 0 round var(--radius-md));
  transition: clip-path 900ms cubic-bezier(.22, 1, .36, 1);
}

.motion-ready .image-reveal img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(var(--parallax-scale, 1.03));
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.motion-ready .image-reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius-md));
}

.motion-ready .image-reveal.is-visible img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(var(--parallax-scale, 1));
}

.motion-ready .hero[data-parallax] .hero-media {
  opacity: 0.72;
  clip-path: inset(0 0 0 10%);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(calc(var(--parallax-scale, 1.075) + 0.025));
  transition:
    opacity 1100ms cubic-bezier(.22, 1, .36, 1),
    clip-path 1300ms cubic-bezier(.22, 1, .36, 1),
    transform 250ms linear;
  will-change: transform;
}

.hero-sequence-ready .hero[data-parallax] .hero-media {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(var(--parallax-scale, 1.075));
}

@media (min-width: 900px) {
  .page-home .split:not(.reverse) .editorial-image {
    --reveal-x: -42px;
  }

  .page-home .split.reverse .editorial-image {
    --reveal-x: 42px;
  }

  .page-home .split:not(.reverse) > :not(.editorial-image) :is(.eyebrow, .section-title, .lede, .button-row) {
    --reveal-x: 34px;
  }

  .page-home .split.reverse > :not(.editorial-image) :is(.eyebrow, .section-title, .lede, .button-row) {
    --reveal-x: -34px;
  }
}

.split-word {
  display: inline-block;
  overflow: hidden;
  padding: .14em .12em .18em;
  margin: -.14em -.12em -.18em;
  vertical-align: bottom;
}

.split-word > span {
  display: inline-block;
  transform: translateY(calc(110% + .2em));
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--word-delay, 0ms);
}

.hero-sequence-ready .split-word > span {
  transform: translateY(0);
}

@media (max-width: 1240px) and (min-width: 1101px) {
  .mega-menu {
    left: -58px;
  }

  .mega-menu-group a {
    font-size: 0.75rem;
  }
}

@media (max-width: 1000px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    padding-bottom: 0;
  }

  .service-hero-media {
    min-height: 560px;
    border-radius: 180px 18px 0 0;
  }

  .service-facts {
    margin-top: 0;
  }

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

@media (max-width: 800px) {
  .service-hero {
    padding-top: 26px;
  }

  .breadcrumb {
    margin-bottom: 36px;
  }

  .service-title {
    line-height: 0.97;
  }

  .service-hero-media {
    min-height: 480px;
    border-radius: 120px 16px 0 0;
  }

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

  .service-facts > div:nth-child(2) {
    border-right: 0;
  }

  .service-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-editorial-grid,
  .service-benefits-grid,
  .service-provider-grid,
  .review-signal-grid {
    grid-template-columns: 1fr;
  }

  .care-grid,
  .related-services {
    grid-template-columns: 1fr;
  }

  .provider-portrait {
    min-height: 500px;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-service-card {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .service-rating {
    width: min(100%, 380px);
    min-height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .service-hero-grid {
    gap: 42px;
  }

  [data-service="hydradermabrasion"] .service-title {
    font-size: clamp(2.2rem, 11.7vw, 3rem);
  }

  .service-hero-media {
    min-height: 420px;
  }

  .service-hero-media > p {
    font-size: 0.62rem;
  }

  .service-facts > div {
    min-height: 104px;
    padding: 18px;
  }

  .service-process,
  .care-grid,
  .service-pagination {
    grid-template-columns: 1fr;
  }

  .service-process li {
    min-height: 250px;
  }

  .service-process h3 {
    margin-top: 56px;
  }

  .care-grid article {
    min-height: 250px;
  }

  .service-pagination a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .provider-portrait {
    min-height: 420px;
    border-radius: 110px 14px 110px 14px;
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal-group] > *,
  .motion-ready .image-reveal,
  .motion-ready .image-reveal img,
  .split-word > span {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

/* =====================================================================
   Inside Anima — parallax scroll gallery. Reuses the .editorial-image
   clip-path reveal + the [data-parallax] engine; columns carry opposite
   drift strengths so they counter-scroll (the classic gallery effect).
   ===================================================================== */
.gallery-section { overflow: hidden; }
.gallery-head { max-width: var(--narrow); margin-bottom: clamp(32px, 5vw, 56px); }
.gallery-head .lede { margin-top: 14px; }
.gallery-strip {
  max-width: var(--content);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.gallery-col { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 26px); }
.gallery-col--offset { margin-top: clamp(30px, 6vw, 72px); }
.gallery-cell.editorial-image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  margin: 0;
}
.gallery-cell--tall.editorial-image { aspect-ratio: 3 / 4; }
.gallery-cell--wide.editorial-image { aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-col:nth-child(3) { display: none; }
  .gallery-col--offset { margin-top: clamp(24px, 8vw, 44px); }
}
@media (max-width: 540px) {
  .gallery-strip { gap: 12px; }
  .gallery-col--offset { margin-top: 24px; }
}

.gallery-col { will-change: transform; }

/* ---------------------------------------------------------------------
   Cinematic logo intro (homepage only). A full-screen overlay draws the
   Anima emblem + wordmark, then lifts away to reveal the page. Shown by
   default; gated out after the first view of the session and for
   reduced-motion / no-JS via the inline <head> script + <noscript>.
   Skip + scroll-lock are orchestrated in medspa.js.
   --------------------------------------------------------------------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 90% at 50% 38%, #3b2a44 0%, #241d29 55%, #171019 100%);
  color: var(--white);
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.95s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.8s ease 0.1s;
  will-change: transform, opacity;
}
.intro-skip .intro { display: none; }
body.intro-lock { overflow: hidden; }

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(125% 125% at 50% 42%, transparent 55%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.intro-logo {
  position: relative;
  width: clamp(250px, 40vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.82);
  filter: blur(10px);
  animation: introBrandIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

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

.intro-logo::before {
  z-index: -1;
  inset: -14%;
  background: radial-gradient(circle, rgba(211, 188, 220, 0.24), transparent 68%);
  opacity: 0;
  transform: scale(0.8);
  animation: introBrandHalo 1.5s ease 0.45s forwards;
}

.intro-logo::after {
  z-index: 2;
  inset: -8px;
  border: 1px solid rgba(253, 251, 253, 0.35);
  opacity: 0;
  transform: scale(0.92);
  animation: introBrandRing 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.intro-brandmark {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  clip-path: circle(0% at 50% 50%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  animation: introBrandReveal 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

@keyframes introBrandIn {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes introBrandReveal {
  to { clip-path: circle(51% at 50% 50%); }
}

@keyframes introBrandHalo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introBrandRing {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro.is-leaving {
  transform: translateY(-100%);
  opacity: 0.9;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}
