:root {
  --black: #020202;
  --white: #ffffff;
  --paper: #fafafa;
  --ink: #1d1d22;
  --muted: #6a6a72;
  --faint: #e9e9ea;
  --soft: #f4f4f4;
  --accent: #f2eff0;
  --hot: #ff4e7a;
  --gold: #e4c081;
  --max: 1180px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.92);
  color: var(--white);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr minmax(180px, 220px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  height: 58px;
  margin: 0 auto;
}

.wordmark {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  justify-content: center;
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
}

.nav-links a,
.nav-actions a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 600;
}

.services-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
}

.services-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 238px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.services-dropdown a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  white-space: nowrap;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown,
.services-menu.is-open .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 4px;
  background: var(--white);
  color: var(--black) !important;
  padding: 0 14px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.page-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 58%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(0.85) contrast(1.18);
  z-index: 0;
}

.hero-video-fallback {
  position: absolute;
  inset: 46px 0 0;
  background:
    radial-gradient(circle at 55% 22%, rgba(229, 190, 126, 0.22), transparent 18%),
    radial-gradient(circle at 77% 58%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), #000 88%);
  animation: heroDrift 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroDrift {
  from {
    transform: scale(1) translate3d(-1%, -1%, 0);
    opacity: 0.46;
  }

  to {
    transform: scale(1.08) translate3d(1%, 1%, 0);
    opacity: 0.62;
  }
}

.hero-image {
  position: absolute;
  inset: 46px 0 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.46) 38%, #000 66%),
    linear-gradient(90deg, #000 0%, #050505 26%, #10100f 48%, #070707 68%, #000 100%);
}

.hero-image::before,
.hero-image::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-image::before {
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, 0.42) 60%, #000 92%),
    linear-gradient(180deg, transparent 0 42%, rgba(0, 0, 0, 0.86) 60%, #000 82%);
  z-index: 3;
}

.hero-image::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 68%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 18%, #000 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 140px);
  opacity: 0.96;
  z-index: 2;
}

.clinic-building {
  position: absolute;
  left: 50%;
  top: 11%;
  width: min(720px, 54vw);
  height: 460px;
  transform: translateX(-39%);
  perspective: 900px;
  z-index: 1;
}

.building-roof {
  position: absolute;
  left: 5%;
  top: -3%;
  width: 84%;
  height: 110px;
  transform: skewX(-17deg);
  background:
    linear-gradient(180deg, rgba(227, 181, 108, 0.4), rgba(20, 18, 15, 0.95)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(0.2px);
}

.building-face {
  position: absolute;
  bottom: 44px;
  border: 2px solid rgba(212, 183, 118, 0.34);
  box-shadow:
    inset 0 0 44px rgba(255, 214, 136, 0.18),
    0 0 70px rgba(224, 178, 106, 0.18);
}

.building-face-left {
  left: 0;
  width: 55%;
  height: 340px;
  transform: skewY(3deg);
  background:
    repeating-linear-gradient(90deg, rgba(255, 219, 147, 0.42) 0 8px, rgba(255, 242, 203, 0.1) 8px 17px, transparent 17px 54px),
    linear-gradient(90deg, rgba(8, 9, 8, 0.85), rgba(237, 190, 112, 0.42), rgba(8, 9, 8, 0.84));
}

.building-face-right {
  right: 4%;
  width: 42%;
  height: 310px;
  transform: skewY(-5deg);
  background:
    repeating-linear-gradient(90deg, rgba(255, 218, 147, 0.38) 0 7px, transparent 7px 42px),
    linear-gradient(90deg, rgba(251, 218, 155, 0.28), rgba(0, 0, 0, 0.76));
}

.door-mark {
  position: absolute;
  right: 19%;
  top: 39%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.7fr);
  align-items: end;
  min-height: 100vh;
  padding: 0 0 72px;
}

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

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  padding: 0 18px;
}

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

.button-muted {
  background: var(--soft);
  color: var(--ink);
}

.button-dark {
  width: 100%;
  background: var(--black);
  color: var(--white);
}

.button-outline {
  border: 1px solid rgba(17, 72, 63, 0.55);
  background: transparent;
  color: #11483f;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 22px;
  padding-bottom: 3px;
}

.hero-stats div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 11px;
  text-align: center;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  margin-top: 5px;
}

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

.section-intro {
  width: min(650px, calc(100% - 40px));
  margin: 0 auto 56px;
  text-align: center;
}

.kicker {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.section-intro h2,
.experience-copy h2,
.consult-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-intro p,
.experience-copy p,
.consult-section p {
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.method-card {
  min-width: 0;
}

.option-link-card {
  display: block;
  border-radius: 10px;
  outline: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.option-link-card:hover,
.option-link-card:focus-visible {
  opacity: 0.92;
  transform: translateY(-3px);
}

.method-visual {
  position: relative;
  height: 454px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.method-card-one .method-visual {
  background:
    radial-gradient(circle at 23% 18%, rgba(255, 0, 98, 0.9), transparent 9%),
    radial-gradient(circle at 58% 54%, rgba(108, 40, 255, 0.94), transparent 29%),
    linear-gradient(140deg, #0d0926, #1931b0 52%, #f35c8e);
}

.method-card-one .method-visual::before {
  position: absolute;
  content: "";
  inset: 18% 15% 0;
  border-radius: 48% 48% 0 0;
  background:
    radial-gradient(circle at 48% 25%, rgba(255, 190, 207, 0.55), transparent 5%),
    linear-gradient(180deg, rgba(16, 9, 43, 0.05), rgba(2, 2, 12, 0.86));
  transform: rotate(-13deg);
}

.method-card-one .method-visual::after {
  position: absolute;
  content: "";
  left: 12%;
  right: 12%;
  bottom: 16%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(12px);
}

.light-line {
  position: absolute;
  left: 16%;
  top: 3%;
  width: 3px;
  height: 130px;
  background: #ff3f87;
  box-shadow: 0 0 22px #ff3f87;
  transform: rotate(2deg);
}

.method-card-two .method-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 28% 72%, rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 58% 40%, rgba(221, 176, 110, 0.52), transparent 27%),
    linear-gradient(130deg, #54402b, #d5b479 45%, #15100b);
}

.method-card-two .method-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.16);
}

.glass-panel {
  position: relative;
  z-index: 1;
  width: min(270px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(20, 20, 20, 0.38);
  color: var(--white);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.glass-panel small,
.glass-panel strong,
.glass-panel span {
  display: block;
}

.glass-panel small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  margin-bottom: 9px;
}

.glass-panel strong {
  max-width: 170px;
  margin-bottom: 21px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.glass-panel span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
}

.glass-panel i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d76;
}

.glass-panel em {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-style: normal;
  padding: 3px 6px;
}

.method-card-three .method-visual {
  background:
    radial-gradient(circle at 75% 14%, rgba(255, 173, 117, 0.8), transparent 20%),
    linear-gradient(160deg, #120f16, #1f1924 44%, #ff8b61);
}

.runner {
  position: absolute;
  right: 19%;
  bottom: 0;
  width: 190px;
  height: 420px;
  background:
    radial-gradient(circle at 44% 13%, #1b1218 0 18px, transparent 19px),
    linear-gradient(72deg, transparent 0 33%, #0a0b10 34% 45%, transparent 46%),
    linear-gradient(104deg, transparent 0 42%, #090910 43% 57%, transparent 58%),
    linear-gradient(180deg, transparent 0 19%, #050507 20% 58%, transparent 59%),
    linear-gradient(38deg, transparent 0 52%, #08080d 53% 61%, transparent 62%);
  filter: blur(0.2px);
  transform: rotate(-6deg);
}

.method-card h3 {
  margin: 18px 0 8px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.method-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.results-section {
  padding-top: 102px;
}

.quote-block {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto 116px;
  text-align: center;
}

blockquote {
  margin: 0 auto 40px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.quote-person {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.quote-person span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, #ffe0c8 0 18%, transparent 19%),
    linear-gradient(135deg, #251c18, #e7a270);
}

.quote-person strong {
  font-size: 0.7rem;
}

.quote-person small {
  color: var(--muted);
  font-size: 0.64rem;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.quote-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dadadd;
}

.quote-dots span:first-child {
  width: 18px;
  border-radius: 999px;
  background: var(--ink);
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 40px));
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
}

.metric-panel article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.metric-panel article + article {
  border-left: 1px solid var(--faint);
}

.metric-panel strong {
  color: #2c2c31;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.metric-panel strong span {
  font-size: 0.35em;
  vertical-align: super;
}

.metric-panel p {
  max-width: 260px;
  margin: 0;
  color: #55555c;
  font-size: 0.78rem;
  line-height: 1.55;
}

.metric-hot {
  color: var(--white);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.78), transparent 14%),
    radial-gradient(circle at 42% 44%, rgba(255, 182, 196, 0.72), transparent 32%),
    linear-gradient(140deg, #ff315f, #ff6f8b 46%, #ff9bab);
}

.metric-hot strong,
.metric-hot p {
  color: var(--white);
}

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

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
  padding: 24px;
}

.plan-card::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 4px;
  border-radius: 10px 10px 0 0;
  background: #111;
  opacity: 0.1;
}

.plan-top {
  min-height: 112px;
}

.plan-card h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.plan-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.label {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f1eded;
  color: #6f6262;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 4px;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-size: 0.28em;
  letter-spacing: -0.03em;
}

.commitment {
  margin: 0 0 22px;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  color: #4d4d55;
  font-size: 0.78rem;
  line-height: 1.4;
  padding-left: 18px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: #111;
}

.not-included {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.72rem !important;
}

.plan-featured {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 78, 122, 0.12), transparent 34%),
    var(--white);
}

.plan-featured::before {
  background: var(--hot);
  opacity: 1;
}

.plan-dark {
  background: var(--black);
  color: var(--white);
}

.plan-dark::before {
  background: var(--white);
  opacity: 0.34;
}

.plan-dark p,
.plan-dark li,
.plan-dark .price span {
  color: rgba(255, 255, 255, 0.62);
}

.plan-dark li::before {
  color: var(--white);
}

.plan-wide {
  grid-column: span 2;
  min-height: auto;
}

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

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 80px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0;
}

.experience-copy {
  align-self: start;
  position: sticky;
  top: 90px;
}

.experience-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--faint);
}

.experience-list article {
  min-height: 210px;
  background: var(--white);
  padding: 26px;
}

.experience-list span {
  display: block;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.72rem;
}

.experience-list h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 450;
  letter-spacing: -0.03em;
}

.experience-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 22px;
}

.filter-button {
  min-height: 32px;
  border: 1px solid var(--faint);
  border-radius: 999px;
  background: var(--white);
  color: #3d3d42;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 650;
  padding: 0 14px;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--black);
  color: var(--white);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.addon-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
  padding: 20px;
}

.addon-card.is-hidden {
  display: none;
}

.addon-card span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.addon-card h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.52;
}

.addon-card strong {
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 650;
}

.consult-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.48fr);
  gap: 84px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0;
}

.consult-section h2 {
  max-width: 580px;
}

.consult-section p {
  margin-left: 0;
  max-width: 520px;
}

.consult-form {
  display: grid;
  gap: 14px;
  align-self: start;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
}

.consult-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
}

.consult-form input,
.consult-form select {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--faint);
  border-radius: 5px;
  background: #fbfbfb;
  color: var(--ink);
  outline: none;
  padding: 0 11px;
}

.consult-form input:focus,
.consult-form select:focus {
  border-color: #9a9aa0;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 0.68rem !important;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--faint);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.care-model-section {
  background: #ececee;
  padding: 120px 0;
}

.care-model-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.care-model-intro {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.care-model-intro .kicker {
  margin: 0 0 18px;
  color: #8a8f97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.care-model-intro h2 {
  margin: 0 0 20px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #4a4e56;
}

.care-model-intro p {
  margin: 0;
  color: #7a8088;
  font-size: 1rem;
  line-height: 1.75;
}

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

.pillar-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d0d3d8;
  border-radius: 20px;
  background: #f7f7f8;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(58, 61, 68, 0.08);
}

.pillar-card-media {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #d8dbe0;
}

.pillar-card-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.pillar-card-media img[src=""] {
  display: none;
}

.pillar-card-media .media-placeholder {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  border: 2px dashed #aeb4be;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  color: #6f7680;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.pillar-card-media.has-image .media-placeholder {
  display: none;
}

.pillar-card--longevity .pillar-card-media {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 78, 122, 0.28), transparent 24%),
    linear-gradient(145deg, #4a3d6b, #8b6fa8 52%, #c98aa8);
}

.pillar-card--primary .pillar-card-media {
  background:
    radial-gradient(circle at 72% 28%, rgba(140, 190, 210, 0.3), transparent 28%),
    linear-gradient(145deg, #5a6a78, #8fa3b0 55%, #b8c8d0);
}

.pillar-card--aesthetics .pillar-card-media {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 190, 160, 0.35), transparent 26%),
    linear-gradient(145deg, #7a6058, #b09088 55%, #d4b0a8);
}

.pillar-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 32px;
}

.pillar-card-body span {
  margin-bottom: 10px;
  color: #8a8f97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pillar-card-body h3 {
  margin: 0 0 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #4a4e56;
}

.pillar-card-body p {
  margin: 0 0 22px;
  flex: 1;
  color: #7a8088;
  font-size: 0.94rem;
  line-height: 1.65;
}

.pillar-card-body .button-outline {
  align-self: flex-start;
  border-color: #b8bdc6;
  color: #5a5e66;
}

.care-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.treatments-heading h2,
.consult-banner h2,
.faq-section-home h2 {
  margin: 0 0 22px;
  color: #0d4650;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.treatments-heading p,
.consult-banner p {
  color: #5d6d73;
  font-size: 1.02rem;
  line-height: 1.72;
}

.treatment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  justify-content: center;
}

.treatment-actions .button-dark {
  width: auto;
}

.treatments-section,
.resources-section,
.faq-section-home {
  padding: 104px 0;
}

.treatments-heading {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 54px;
  text-align: center;
}

.carousel-shell {
  position: relative;
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 70px;
}

.treatment-track {
  display: grid;
  grid-auto-columns: minmax(280px, 370px);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 24px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.treatment-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  padding: 34px 26px 26px;
  scroll-snap-align: start;
}

.treatment-card::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45)),
    var(--treatment-bg);
  transition: transform 260ms ease;
}

.treatment-card:hover::before {
  transform: scale(1.04);
}

.treatment-card span,
.treatment-card h3,
.treatment-card p {
  position: relative;
  z-index: 1;
}

.treatment-card span {
  align-self: flex-end;
  border-radius: 4px;
  background: #d7eef1;
  color: #0d4650;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
}

.treatment-card h3 {
  max-width: 260px;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.treatment-card p {
  align-self: flex-start;
  margin: 0;
  border-radius: 5px;
  background: #fff;
  color: #25252c;
  font-weight: 650;
  padding: 15px 22px;
}

.visual-one { --treatment-bg: radial-gradient(circle at 80% 12%, rgba(255,255,255,.5), transparent 16%), linear-gradient(135deg, #4b4f55, #a3a9aa 45%, #17171d); }
.visual-two { --treatment-bg: radial-gradient(circle at 70% 26%, #e7c2ad, transparent 20%), linear-gradient(140deg, #9e7f6f, #dbb7a4 48%, #31231f); }
.visual-three { --treatment-bg: radial-gradient(circle at 82% 22%, #d7a87d, transparent 19%), linear-gradient(140deg, #5d4337, #b27a61 48%, #1d1514); }
.visual-four { --treatment-bg: radial-gradient(circle at 30% 22%, #92d9ff, transparent 18%), linear-gradient(135deg, #0e3040, #4da3bd 50%, #10151b); }
.visual-five { --treatment-bg: radial-gradient(circle at 70% 18%, #ffc8d5, transparent 18%), linear-gradient(140deg, #4a2335, #d9829c 48%, #1b1118); }
.visual-six { --treatment-bg: radial-gradient(circle at 26% 18%, #ff4f86, transparent 16%), linear-gradient(135deg, #190d18, #7d3250 48%, #050505); }
.visual-seven { --treatment-bg: radial-gradient(circle at 72% 20%, #e8d2bd, transparent 19%), linear-gradient(140deg, #2c2019, #9b7054 48%, #15100e); }
.visual-eight { --treatment-bg: radial-gradient(circle at 25% 18%, #b6f0ff, transparent 18%), linear-gradient(135deg, #10272d, #77aab4 45%, #101112); }
.visual-nine { --treatment-bg: radial-gradient(circle at 74% 24%, #9df0b1, transparent 17%), linear-gradient(140deg, #17261e, #659271 50%, #0d110f); }
.visual-ten { --treatment-bg: radial-gradient(circle at 78% 18%, #fff, transparent 16%), linear-gradient(135deg, #111, #4f4f58 46%, #020202); }
.visual-eleven { --treatment-bg: radial-gradient(circle at 30% 18%, #ff985c, transparent 18%), linear-gradient(140deg, #2b1711, #c76038 48%, #111); }
.visual-twelve { --treatment-bg: radial-gradient(circle at 78% 24%, #ffe082, transparent 18%), linear-gradient(135deg, #2a2411, #b08b31 45%, #10100d); }
.visual-thirteen { --treatment-bg: radial-gradient(circle at 70% 20%, #d6e8ff, transparent 20%), linear-gradient(140deg, #1c2734, #758aa5 48%, #11161d); }
.visual-fourteen { --treatment-bg: radial-gradient(circle at 30% 20%, #9fd8ff, transparent 18%), linear-gradient(135deg, #112437, #477aa2 50%, #111); }
.visual-fifteen { --treatment-bg: radial-gradient(circle at 76% 20%, #cbb6ff, transparent 18%), linear-gradient(140deg, #171229, #6b5ba3 48%, #07070a); }
.visual-sixteen { --treatment-bg: radial-gradient(circle at 26% 20%, #ffb4c7, transparent 17%), linear-gradient(135deg, #25131c, #a95d76 48%, #111); }
.visual-seventeen { --treatment-bg: radial-gradient(circle at 68% 17%, #f7f4dc, transparent 18%), linear-gradient(140deg, #202026, #717175 48%, #0a0a0d); }
.visual-eighteen { --treatment-bg: radial-gradient(circle at 30% 20%, #94f0ff, transparent 18%), linear-gradient(135deg, #0d2530, #3f8da0 48%, #080d10); }
.visual-nineteen { --treatment-bg: radial-gradient(circle at 75% 20%, #f4a6ff, transparent 18%), linear-gradient(140deg, #1c1024, #755083 48%, #111); }
.visual-twenty { --treatment-bg: radial-gradient(circle at 30% 18%, #e7f5ff, transparent 18%), linear-gradient(135deg, #1a2028, #8396aa 48%, #050607); }

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 900;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.consult-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  gap: 70px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 72px auto;
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #020202, #162f36);
  color: #fff;
  padding: 72px;
}

.consult-banner h2 {
  color: #fff;
}

.consult-banner p {
  color: rgba(255, 255, 255, 0.7);
}

.resources-section {
  background: #d9edf0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.resource-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.resource-image {
  min-height: 270px;
  overflow: hidden;
  background: #e3e5e9;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resource-body {
  padding: 28px;
}

.resource-body span {
  border-radius: 4px;
  background: #d7eef1;
  color: #0d4650;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 9px;
}

.resource-body h3 {
  margin: 20px 0 16px;
  color: #222832;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.resource-body p {
  min-height: 104px;
  color: #5d6d73;
  line-height: 1.62;
}

.faq-section-home {
  background: #fff;
}

.faq-list-home {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid #e1e1e1;
}

.faq-list-home details {
  border-bottom: 1px solid #e1e1e1;
}

.faq-list-home summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  padding: 26px 0;
  color: #0d4650;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.faq-list-home summary::after {
  content: "+";
  color: #789097;
}

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

.faq-list-home p {
  max-width: 760px;
  margin: -6px 0 28px;
  color: #5d6d73;
  line-height: 1.7;
}

.site-footer-rich {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(140px, 0.7fr));
  gap: 64px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 34px;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 72px;
  border-radius: 8px;
  background: #17171c;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-brand p,
.site-footer-rich a {
  color: #6c737c;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-address {
  margin: 22px 0 0;
  font-style: normal;
}

.footer-address a {
  display: inline-block;
  color: #5a626c;
  transition: color 160ms ease;
}

.footer-address a:hover,
.footer-address a:focus-visible {
  color: #1d1d22;
}

.footer-phone {
  margin: 18px 0 0;
}

.footer-phone a {
  display: inline-block;
  color: #3a3d44;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-phone a:hover,
.footer-phone a:focus-visible {
  color: #1d1d22;
}

.site-footer-rich nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer-rich h3 {
  margin: 0 0 14px;
  color: #3a3d44;
  font-size: 0.85rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

.footer-bottom p {
  margin: 0;
  color: #8a9098;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.service-detail-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #020202;
  color: #fff;
  padding: 120px 0 74px;
}

.service-detail-hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 26% 42%, rgba(255, 78, 122, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), #000 90%),
    linear-gradient(130deg, #050506, #17171f 46%, #040404);
}

.service-detail-hero::after {
  position: absolute;
  content: "";
  right: 9vw;
  top: 14vh;
  width: min(760px, 55vw);
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 82px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: 0 0 120px rgba(255, 255, 255, 0.08);
  transform: skewY(-2deg);
}

.service-detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 72px;
  align-items: end;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.service-detail-hero h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-detail-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.service-detail-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  padding: 28px;
}

.service-detail-note span,
.service-detail-card span {
  display: block;
  margin-bottom: 42px;
  color: #6a6a72;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-detail-note h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-detail-note p {
  color: #62626a;
  font-size: 0.9rem;
}

.service-detail-section {
  padding: 112px 0;
  background: #f7f7f7;
}

.service-detail-heading {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 54px;
  text-align: center;
}

.service-detail-heading h2 {
  margin: 0 0 18px;
  color: #0d4650;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-detail-heading p {
  color: #5d6d73;
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.service-detail-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  padding: 30px;
}

.service-detail-card.feature {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.62), transparent 17%),
    radial-gradient(circle at 34% 44%, rgba(255, 188, 203, 0.62), transparent 28%),
    linear-gradient(135deg, #ff315f, #ff7490);
}

.service-detail-card.dark {
  background: #050505;
  color: #fff;
}

.service-detail-card.feature span,
.service-detail-card.dark span,
.service-detail-card.feature p,
.service-detail-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-detail-card p {
  color: #5d6d73;
  line-height: 1.65;
}

.service-detail-card strong {
  font-size: 0.9rem;
}

.service-scroll-section {
  background: #f7f7f7;
  padding: 24px 0 96px;
}

.service-scroll-heading {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding-top: 64px;
  text-align: center;
}

.service-scroll-heading h2 {
  margin: 0 0 18px;
  color: #0d4650;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-scroll-heading p {
  color: #5d6d73;
  line-height: 1.7;
}

.service-scroll-list {
  display: grid;
  gap: 88px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.service-scroll-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 46px);
  padding: 64px 0;
}

.service-scroll-item:nth-child(even) {
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1fr);
}

.service-scroll-item:nth-child(even) .service-visual {
  order: 2;
}

.service-visual {
  position: relative;
  min-height: min(650px, 70vh);
  overflow: hidden;
  border-radius: 18px;
  background: var(--service-bg);
  box-shadow: 0 24px 70px rgba(13, 70, 80, 0.12);
}

.service-visual.service-visual-photo {
  box-shadow: none;
}

.service-visual.service-visual-photo::before,
.service-visual.service-visual-photo::after {
  display: none;
}

.service-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.48), transparent 16%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 82px);
  opacity: 0.42;
}

.service-visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, transparent 0 46%, rgba(247, 247, 247, 0.72) 78%, #f7f7f7 100%);
}

.service-scroll-item:nth-child(even) .service-visual::after {
  background: linear-gradient(270deg, transparent 0 46%, rgba(247, 247, 247, 0.72) 78%, #f7f7f7 100%);
}

.service-copy {
  position: relative;
  z-index: 1;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(14px);
}

.service-copy span {
  display: block;
  margin-bottom: 46px;
  color: #6a6a72;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-copy h3 {
  margin: 0 0 18px;
  color: #17171c;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-copy p {
  color: #5d6d73;
  font-size: 1rem;
  line-height: 1.75;
}

.service-copy strong {
  display: inline-flex;
  margin-top: 20px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 0.82rem;
  padding: 10px 14px;
}

.service-copy stripe-buy-button {
  display: block;
  margin-top: 22px;
}

.service-learn-more {
  width: fit-content;
  margin-top: 22px;
}

.service-index-list .service-scroll-item,
.service-index-list .service-scroll-item:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
}

.service-index-list .service-scroll-item:nth-child(even) .service-visual {
  order: 0;
}

.service-index-list .service-scroll-item:nth-child(even) .service-visual::after {
  background: linear-gradient(90deg, transparent 0 46%, rgba(247, 247, 247, 0.72) 78%, #f7f7f7 100%);
}

.service-bg-1 { --service-bg: radial-gradient(circle at 24% 28%, rgba(255, 78, 122, 0.75), transparent 18%), linear-gradient(135deg, #101421, #31435b 48%, #d5a08b); }
.service-bg-2 { --service-bg: radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.5), transparent 16%), linear-gradient(135deg, #112a36, #5e9aaa 48%, #0b1015); }
.service-bg-3 { --service-bg: radial-gradient(circle at 30% 20%, rgba(255, 188, 203, 0.7), transparent 18%), linear-gradient(135deg, #24121c, #9f5e78 48%, #100b0e); }
.service-bg-4 { --service-bg: radial-gradient(circle at 76% 24%, rgba(255, 224, 130, 0.7), transparent 18%), linear-gradient(135deg, #2b2110, #a67e33 48%, #0e0d0a); }
.service-bg-5 { --service-bg: radial-gradient(circle at 28% 22%, rgba(147, 240, 255, 0.68), transparent 18%), linear-gradient(135deg, #0c2530, #3f8da0 48%, #090e11); }
.service-bg-6 { --service-bg: radial-gradient(circle at 74% 22%, rgba(203, 182, 255, 0.72), transparent 18%), linear-gradient(135deg, #171229, #6b5ba3 48%, #07070a); }
.service-bg-7 { --service-bg: radial-gradient(circle at 32% 24%, rgba(255, 160, 120, 0.72), transparent 18%), linear-gradient(135deg, #2a1408, #c46a3a 48%, #120a06); }
.service-bg-8 { --service-bg: radial-gradient(circle at 68% 18%, rgba(180, 255, 210, 0.65), transparent 18%), linear-gradient(135deg, #0f2418, #3f8f63 48%, #08100b); }
.service-bg-9 { --service-bg: radial-gradient(circle at 26% 26%, rgba(255, 210, 240, 0.75), transparent 18%), linear-gradient(135deg, #2a1024, #b86b9d 48%, #100810); }

.service-detail-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #020202, #1a1a1f);
  color: #fff;
  text-align: center;
  padding: 86px 32px;
}

.service-detail-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-detail-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.how-page {
  background: var(--white);
}

.how-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.how-hero-image {
  position: absolute;
  inset: 46px 0 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(120, 160, 255, 0.16), transparent 18%),
    radial-gradient(circle at 24% 50%, rgba(255, 78, 122, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.34) 45%, #000 100%),
    linear-gradient(120deg, #040404 0%, #101014 42%, #050505 100%);
}

.how-hero-image::before,
.how-hero-image::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.how-hero-image::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 25%, rgba(0, 0, 0, 0.4) 62%, #000 94%),
    linear-gradient(180deg, transparent 0 58%, rgba(0, 0, 0, 0.92) 96%);
  z-index: 3;
}

.how-hero-image::after {
  inset: auto 0 0;
  height: 40%;
  background:
    linear-gradient(8deg, #020202 0 38%, rgba(18, 18, 20, 0.76) 39% 52%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 132px);
  z-index: 2;
}

.diagnostic-suite {
  position: absolute;
  left: 50%;
  top: 14%;
  width: min(900px, 64vw);
  height: 520px;
  transform: translateX(-47%);
  z-index: 1;
}

.glass-room {
  position: absolute;
  right: 5%;
  bottom: 45px;
  width: 66%;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 78px),
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), rgba(180, 180, 190, 0.02)),
    linear-gradient(180deg, rgba(18, 18, 22, 0.12), rgba(0, 0, 0, 0.86));
  box-shadow: 0 0 110px rgba(255, 255, 255, 0.08), inset 0 0 80px rgba(255, 255, 255, 0.05);
  transform: skewY(-2deg);
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.08), 0 0 70px rgba(255, 78, 122, 0.12);
}

.scan-ring-one {
  left: 7%;
  top: 18%;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(255, 255, 255, 0.12) 39% 44%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 78, 122, 0.34), transparent 61%);
}

.scan-ring-two {
  left: 18%;
  top: 31%;
  width: 120px;
  height: 120px;
  border-color: rgba(255, 255, 255, 0.12);
}

.exam-light {
  position: absolute;
  right: 21%;
  top: 7%;
  width: 260px;
  height: 180px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.65), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 74%);
  filter: blur(4px);
  transform: skewX(-18deg);
}

.how-hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 72px;
  align-items: end;
  min-height: 100vh;
  padding: 120px 0 70px;
}

.how-hero-copy {
  max-width: 760px;
}

.how-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.how-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  line-height: 1.6;
}

.path-cards {
  display: grid;
  gap: 8px;
}

.path-card {
  display: block;
  min-height: 206px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  padding: 22px;
}

.path-card span,
.step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.path-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.path-card-dark {
  background: rgba(10, 10, 12, 0.86);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.path-card-dark p,
.path-card-dark span {
  color: rgba(255, 255, 255, 0.64);
}

.membership-flow {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.process-step {
  min-height: 430px;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
  padding: 26px;
}

.process-step-wide {
  grid-column: span 2;
}

.process-step-hot {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 13%, rgba(255, 255, 255, 0.66), transparent 16%),
    radial-gradient(circle at 34% 46%, rgba(255, 196, 208, 0.64), transparent 31%),
    linear-gradient(140deg, #ff315f, #ff6f8b 48%, #ff9bab);
}

.process-step h3 {
  max-width: 540px;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.process-step p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.process-step-hot p,
.process-step-hot .step-number {
  color: rgba(255, 255, 255, 0.78);
}

.mini-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 12px;
  border: 1px solid var(--faint);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 14px;
}

.membership-notes {
  width: min(var(--max), calc(100% - 40px));
  margin: 12px auto 0;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--white);
  padding: 24px 26px;
}

.membership-notes p {
  max-width: 950px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.assessment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.9fr);
  gap: 74px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0;
}

.assessment-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 44% 36%, rgba(255, 78, 122, 0.8), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.42), transparent 14%),
    linear-gradient(140deg, #15151b, #3a2433 54%, #ff7d9a);
}

.assessment-visual::before {
  position: absolute;
  content: "";
  inset: 46px 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18% 80%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
  backdrop-filter: blur(4px);
}

.data-card {
  position: absolute;
  left: 44px;
  bottom: 44px;
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.data-card span {
  display: block;
  margin-bottom: 52px;
  font-size: 2rem;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.data-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.assessment-copy {
  align-self: center;
}

.assessment-copy h2,
.why-grid h2,
.how-cta h2 {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.assessment-copy > p,
.why-grid p,
.how-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.assessment-points {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: var(--faint);
}

.assessment-points article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  background: var(--white);
  padding: 20px;
}

.assessment-points strong {
  font-size: 0.82rem;
}

.assessment-points span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.why-section {
  background: var(--black);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.8fr);
  gap: 82px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 18px;
}

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

.faq-list {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--faint);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  padding: 26px 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 400;
}

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

.faq-list p {
  max-width: 780px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-list a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.how-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 0, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #020202, #1a1a1f);
  color: var(--white);
  padding: 72px;
  text-align: center;
}

.how-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1050px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.96);
    padding: 12px;
  }

  .nav-links {
    top: 55px;
  }

  .nav-actions {
    top: 235px;
  }

  .nav-links.is-open,
  body.nav-open .nav-actions {
    display: flex;
  }

  .nav-links a,
  .nav-actions a {
    padding: 13px 8px;
    text-align: center;
  }

  .hero-content,
  .service-detail-inner,
  .service-scroll-item,
  .consult-banner,
  .how-hero-content,
  .assessment-section,
  .why-grid,
  .experience-section,
  .consult-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 620px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .clinic-building {
    width: 760px;
    transform: translateX(-50%);
  }

  .method-cards,
  .service-detail-grid,
  .resource-grid,
  .process-grid,
  .plans-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnostic-suite {
    width: 820px;
    transform: translateX(-50%);
  }

  .path-cards {
    max-width: 720px;
  }

  .process-step-wide {
    grid-column: span 2;
  }

  .assessment-copy {
    align-self: start;
  }

  .metric-panel {
    grid-template-columns: 1fr;
  }

  .metric-panel article + article {
    border-left: 0;
    border-top: 1px solid var(--faint);
  }

  .experience-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .service-detail-inner,
  .page-grid,
  .care-model-section,
  .section-intro,
  .method-cards,
  .process-grid,
  .membership-notes,
  .assessment-section,
  .why-grid,
  .faq-list,
  .how-cta,
  .plans-grid,
  .experience-section,
  .filter-bar,
  .addon-grid,
  .consult-section,
  .footer,
  .metric-panel,
  .quote-block {
    width: min(100% - 28px, var(--max));
  }

  .wordmark {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .hero-content,
  .how-hero-content {
    padding-bottom: 34px;
  }

  .hero-copy h1,
  .how-hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-stats,
  .service-detail-grid,
  .method-cards,
  .process-grid,
  .resource-grid,
  .pillar-list,
  .pillars-grid,
  .plans-grid,
  .plan-wide ul,
  .addon-grid,
  .assessment-points article {
    grid-template-columns: 1fr;
  }

  .plan-wide,
  .process-step-wide {
    grid-column: auto;
  }

  .method-visual {
    height: 360px;
  }

  .clinic-building {
    top: 12%;
    width: 590px;
    height: 380px;
  }

  .building-face-left {
    height: 285px;
  }

  .building-face-right {
    height: 260px;
  }

  .diagnostic-suite {
    top: 10%;
    width: 610px;
    height: 420px;
  }

  .scan-ring-one {
    width: 190px;
    height: 190px;
  }

  .glass-room {
    height: 270px;
  }

  .path-card,
  .process-step,
  .membership-notes,
  .how-cta {
    padding: 22px;
  }

  .process-step {
    min-height: auto;
  }

  .assessment-visual {
    min-height: 390px;
  }

  .section-padding,
  .service-detail-section,
  .service-scroll-section,
  .treatments-section,
  .resources-section,
  .faq-section-home,
  .assessment-section,
  .why-section,
  .experience-section,
  .consult-section {
    padding: 84px 0;
  }

  .quote-block {
    margin-bottom: 64px;
  }

  .metric-panel strong {
    font-size: 2.5rem;
  }

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

  .care-model-section {
    padding: 84px 0;
  }

  .pillars-grid {
    max-width: none;
  }

  .treatments-heading h2,
  .consult-banner h2,
  .faq-section-home h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .pillars-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    padding: 0 14px;
  }

  .carousel-button {
    display: none;
  }

  .treatment-track {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .treatment-card {
    min-height: 420px;
  }

  .consult-banner {
    width: min(100% - 28px, var(--max));
    padding: 28px;
  }

  .site-footer-rich {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 28px, var(--max));
    padding-top: 64px;
  }

  .footer-logo {
    margin-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .service-detail-hero {
    padding: 96px 0 54px;
  }

  .service-scroll-list {
    width: min(100% - 28px, var(--max));
    gap: 44px;
  }

  .service-scroll-item,
  .service-scroll-item:nth-child(even),
  .service-index-list .service-scroll-item,
  .service-index-list .service-scroll-item:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0;
  }

  .service-scroll-item:nth-child(even) .service-visual {
    order: 0;
  }

  .service-visual {
    min-height: 340px;
  }

  .service-visual::after,
  .service-scroll-item:nth-child(even) .service-visual::after {
    background: linear-gradient(180deg, transparent 0 46%, rgba(247, 247, 247, 0.72) 78%, #f7f7f7 100%);
  }

  .service-scroll-heading {
    width: min(100% - 28px, var(--max));
  }

  .service-detail-inner,
  .service-detail-grid,
  .service-detail-heading,
  .service-detail-cta {
    width: min(100% - 28px, var(--max));
  }

  .service-detail-hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .service-detail-cta {
    padding: 48px 24px;
  }
}

/* Readable display typography — applies site-wide, including page inline styles */
:root {
  --type-hero: clamp(1.75rem, 3vw, 2.35rem);
  --type-section: clamp(1.4rem, 2.4vw, 1.9rem);
  --type-card: clamp(1.2rem, 2vw, 1.5rem);
  --type-lead: 1.15;
  --type-track: -0.03em;
}

.hero-copy h1,
.how-hero-copy h1,
.service-detail-hero h1,
.services-hero h1,
.longevity-hero h1,
.membership-options .hero h1,
.about-hero h1,
.articles-hero h1 {
  font-size: var(--type-hero) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

.section-intro h2,
.experience-copy h2,
.consult-section h2,
.care-model-copy h2,
.care-model-intro h2,
.treatments-heading h2,
.consult-banner h2,
.faq-section-home h2,
.service-scroll-heading h2,
.service-detail-heading h2,
.service-detail-cta h2,
.assessment-copy h2,
.why-grid h2,
.how-cta h2,
.section-heading h2,
.longevity-intro h2,
.longevity-cta h2,
.impact-expanded-header h2,
.membership-options .section-intro h2,
.membership-options .cta h2,
.membership-options .schedule-copy h2,
.concierge-copy h2,
.soft-grid h2,
.option-path-section .section-intro h2,
.membership-flow .section-intro h2 {
  font-size: var(--type-section) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

.service-copy h3,
.service-detail-card h3,
.treatment-card h3,
.service-card h3,
.longevity-stat strong,
.pillar-card h3,
.package-offer-copy h3,
.process-step h3 {
  font-size: var(--type-card) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

blockquote {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem) !important;
  line-height: 1.2 !important;
  letter-spacing: var(--type-track) !important;
}

.metric-panel strong,
.data-card span {
  font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

.price,
.longevity-hero-panel .price,
.membership-card .price {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

.service-detail-note h2,
.hero-note h2,
.hero-panel h2,
.longevity-hero-panel h2 {
  font-size: 1.35rem !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

.path-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.45rem) !important;
  line-height: var(--type-lead) !important;
  letter-spacing: var(--type-track) !important;
}

@media (max-width: 900px) {
  :root {
    --type-hero: clamp(1.6rem, 6.5vw, 2.1rem);
    --type-section: clamp(1.3rem, 5.5vw, 1.75rem);
  }
}
