:root {
  --black: oklch(11.5% 0.004 80);
  --coal: oklch(14.5% 0.006 80);
  --ink: oklch(24% 0.016 82);
  --ivory: oklch(96.5% 0.012 92);
  --ivory-deep: oklch(93.5% 0.016 92);
  --cream-text: oklch(93% 0.014 90);
  --cream-dim: oklch(82% 0.02 88);
  --gold: oklch(71% 0.125 92);
  --gold-soft: oklch(83% 0.105 95);
  --gold-ink: oklch(46% 0.095 88);
  --muted: oklch(40% 0.022 85);
  --umber: #312e26;
  --display: "Prata", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Jost", "Avenir Next", Futura, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.65;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
strong {
  font-weight: 500;
}
h1,
h2,
h3,
h4,
p,
li,
dt,
dd,
summary,
figcaption,
blockquote {
  text-wrap: pretty;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--gold-soft);
}
.skip-link:focus {
  top: 1rem;
}

/* ————— utility bar + header ————— */
.utility {
  color: var(--cream-dim);
  background: var(--black);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.utility__inner,
.nav__inner,
.container {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}
.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 2.75rem;
}
.utility a {
  text-decoration: none;
}
.utility a:hover {
  color: var(--gold-soft);
}
.utility__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.utility__languages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  color: var(--gold-soft);
}
.language-toggle {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}
.language-toggle button {
  border: 0;
  padding: 0;
  color: var(--cream-text);
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.language-toggle button[aria-pressed="true"] {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--cream-text);
  background: #312e26;
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 32px oklch(10% 0.01 80 / 0.45);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 4.2rem;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand img {
  width: auto;
  height: 100%;
}
.brand__wordmark {
  display: grid;
  gap: 0.25rem;
}
.brand__name {
  font: 400 1.4rem/1 var(--display);
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.brand__tagline {
  color: var(--gold-soft);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.65rem;
  color: var(--cream-text);
  cursor: pointer;
}
.nav-toggle__lines {
  display: grid;
  gap: 5px;
  width: 1.5rem;
}
.nav-toggle__lines span {
  height: 1px;
  background: currentColor;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav__links a {
  text-decoration: none;
  white-space: nowrap;
}
.nav__links a:hover {
  color: var(--gold-soft);
}

/* ————— buttons ————— */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.8rem 2rem;
  border: 0;
  color: var(--black);
  background: var(--gold-soft);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover {
  background: var(--gold);
}
.link-cta {
  display: inline-flex;
  align-items: center;
  min-height: 3.25rem;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.link-cta:hover {
  color: var(--gold-ink);
}
.section--dark .link-cta:hover,
.hero .link-cta:hover,
.membership .link-cta:hover,
.contact .link-cta:hover {
  color: var(--gold-soft);
}

/* ————— type ————— */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
h1 {
  font-size: clamp(2.9rem, 7vw, 6.2rem);
}
h1 em,
h2 em {
  color: var(--gold-soft);
  font-style: normal;
}
h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
}
h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}
.kicker {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold-ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.section--dark .kicker,
.membership .kicker,
.contact .kicker {
  color: var(--gold-soft);
}

/* ————— hero ————— */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(76vh, 48rem);
  color: var(--cream-text);
  background: var(--black);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.8s ease,
    transform 9s linear;
}
.hero__media img.is-active {
  opacity: 0.82;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      oklch(12% 0.012 80 / 0.82) 0%,
      oklch(12% 0.012 80 / 0.35) 55%,
      oklch(12% 0.012 80 / 0.05) 100%
    ),
    linear-gradient(
      to top,
      oklch(12% 0.012 80 / 0.9) 0%,
      oklch(12% 0.012 80 / 0.2) 40%,
      oklch(12% 0.012 80 / 0.08) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 7vw, 6rem);
  max-width: 1240px;
}
.hero h1 {
  color: var(--ivory);
}
.hero__copy {
  max-width: 44ch;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--cream-text);
}
.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
  margin-top: 2.5rem;
}

/* ————— proof strip ————— */
.proof {
  color: var(--cream-dim);
  background: #312e26;
}
.proof__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.proof__inner span[aria-hidden] {
  color: var(--gold);
}

/* ————— sections ————— */
.section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.section--dark {
  color: var(--cream-text);
  background: var(--coal);
}
.section--black {
  color: var(--cream-text);
  background: var(--black);
}
.section__heading {
  max-width: 52rem;
}
.section__heading p {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
}
.section--dark .section__heading p,
.section--black .section__heading p {
  color: var(--cream-dim);
}

/* ————— pillars ————— */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}
.pillar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream-text);
  background: var(--black);
}
.pillar > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar > img[src*="mental-health"] {
  object-position: center 32%;
}
.pillar > img[src*="front-desk"] {
  object-position: center 26%;
}
.pillar:hover > img {
  transform: scale(1.05);
}
.pillar__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}
.pillar__body h3 {
  color: var(--ivory);
}
.pillar__line {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  color: var(--cream-text);
}
.pillar__desc {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cream-dim);
}
.pillar__list {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.pillar__list li {
  padding-top: 0.6rem;
  border-top: 1px solid oklch(60% 0.06 90 / 0.28);
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.pillar__cue {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.75rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pillar:hover .pillar__cue {
  color: var(--gold);
}

/* ————— flagship ————— */
.video-wrap {
  margin: 0;
}
.flagship-offset {
  position: relative;
}
.flagship-offset__ghost {
  position: absolute;
  inset: auto 0 -0.12em auto;
  z-index: 0;
  max-width: 100%;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 1px oklch(71% 0.125 92 / 0.35);
  font: 400 clamp(6rem, 15vw, 13rem) / 1 var(--display);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.flagship-offset__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.video-wrap--offset video {
  box-shadow: 0 32px 80px oklch(10% 0.01 80 / 0.35);
}
.flagship-offset__copy h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
}
.flagship-offset__copy > p {
  max-width: 42ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
}
.flagship-offset__peptide {
  font-size: 1rem;
}
.flagship-offset__peptide a {
  color: var(--gold-ink);
}
.flagship-offset__copy .button {
  margin-top: 2.5rem;
}
.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}
.video-wrap figcaption,
.media-facade__caption {
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* ————— results ————— */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}
.quote {
  margin: 0;
}
.quote p {
  margin: 0;
  font: 400 clamp(1.3rem, 1.9vw, 1.65rem) / 1.5 var(--display);
}
.quote figcaption {
  margin-top: 1.75rem;
}
.quote__stars {
  display: inline-flex;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.quote__stars svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}
.quote strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.quote footer {
  margin-top: 0.4rem;
  color: var(--gold-ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.studio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}
.studio a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black);
}
.studio a:first-child,
.studio a:nth-child(4) {
  grid-row: span 2;
  aspect-ratio: auto;
}
.studio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}
.studio a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* ————— team ————— */
.team-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}
.member img,
.member__monogram {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}
.member img[src*="fleurancois"] {
  object-position: 68% 18%;
}
.member img[src*="owen"] {
  object-position: 66% 15%;
}
.member__monogram {
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  background: radial-gradient(
    26rem 22rem at 50% 0%,
    oklch(28% 0.04 88 / 0.7),
    var(--coal) 70%
  );
  font: 400 3rem var(--display);
  letter-spacing: 0.08em;
}
.member h3 {
  margin-top: 1.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}
.member p {
  margin: 0.6rem 0 0;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* ————— membership ————— */
.membership {
  position: relative;
  color: var(--cream-text);
  background:
    radial-gradient(
      90rem 50rem at 85% -10%,
      oklch(30% 0.05 88 / 0.5),
      transparent 60%
    ),
    var(--black);
}
.membership__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
.membership__grid h2 {
  color: var(--ivory);
}
.membership__lead {
  margin: 2rem 0 0;
  color: var(--cream-text);
}
.membership__situational,
.membership__note {
  margin: 1.75rem 0 0;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: perk;
}
.perks li {
  counter-increment: perk;
  font-size: 1.1rem;
  line-height: 1.5;
}
.perks li::before {
  content: counter(perk, decimal-leading-zero);
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font: 400 1rem var(--display);
}
.membership .actions {
  margin-top: 3rem;
}

/* ————— conversations / education ————— */
.edu {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.edu__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.edu-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: oklch(99% 0.005 95);
}
.edu-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.edu-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.edu-card__cue {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--gold-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.media-facade {
  position: relative;
  margin: 0 0 2rem;
  overflow: hidden;
  background: var(--black);
}
.media-facade img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.85;
}
.media-facade__button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-soft);
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.25s ease;
}
.media-facade__button:hover {
  background: var(--gold);
}
.media-facade iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.media-facade .media-facade__caption {
  position: static;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--cream-dim);
}

/* ————— med spa signature + menu ————— */
.signature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.sig-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  background: var(--black);
  color: var(--cream-text);
}
.sig-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sig-card:hover img {
  transform: scale(1.05);
}
.sig-card img[src*="steam-men"] {
  height: 116%;
  object-position: center top;
}
.sig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(12% 0.012 80 / 0.92) 0%,
    oklch(12% 0.012 80 / 0.45) 35%,
    oklch(12% 0.012 80 / 0.02) 65%
  );
}
.sig-card figcaption {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.sig-card h3 {
  font-size: 1.4rem;
  color: var(--ivory);
}
.sig-card p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}
.menu__label {
  margin-bottom: 1.25rem;
  font: 600 0.78rem var(--sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.menu ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li {
  padding-top: 0.7rem;
  border-top: 1px solid oklch(70% 0.04 90 / 0.35);
  font: 400 1.2rem/1.35 var(--display);
}
.menu__note {
  max-width: 52ch;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  color: var(--muted);
}

/* ————— FAQ ————— */
.faq {
  max-width: 52rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.faq details {
  border-bottom: 1px solid oklch(70% 0.04 90 / 0.35);
}
.faq summary {
  padding: 1.75rem 0;
  cursor: pointer;
  font: 450 clamp(1.3rem, 2vw, 1.6rem) / 1.3 var(--display);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--gold-ink);
  font: 400 1.5rem var(--display);
}
.faq details[open] summary::after {
  content: "–";
}
.faq summary:hover {
  color: var(--gold-ink);
}
.faq details p {
  max-width: 62ch;
  margin: 0 0 1.75rem;
  color: var(--muted);
}

/* ————— visit ————— */
.contact {
  color: var(--cream-text);
  background: var(--black);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.contact__address {
  margin: 2.5rem 0 0;
  font: 400 1.15rem/1.55 var(--display);
  color: var(--ivory);
}
.contact__address a {
  text-decoration: none;
}
.contact__address a:hover {
  color: var(--gold-soft);
}
.contact__phone {
  display: inline-block;
  margin-top: 0.75rem;
  font: 400 1.15rem/1.5 var(--display);
  color: var(--gold-soft);
  text-decoration: none;
}
.contact__phone:hover {
  color: var(--gold);
}
.contact__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}
.contact__hours {
  margin: 2rem 0 0;
}
.contact__hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 0;
}
.contact__hours div + div {
  border-top: 1px solid oklch(60% 0.06 90 / 0.28);
}
.contact__hours dt {
  font: 400 1.15rem var(--display);
  color: var(--ivory);
}
.contact__hours dd {
  margin: 0;
  color: var(--cream-dim);
  font-size: 1rem;
}

/* ————— footer ————— */
.footer {
  color: var(--cream-dim);
  background: var(--black);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 2.5rem;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem;
}
.footer__brand {
  width: 8rem;
}
.footer h2 {
  margin-bottom: 1.25rem;
  color: var(--gold-soft);
  font: 600 0.75rem var(--sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: var(--gold-soft);
}
.footer__links {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.socials {
  display: flex;
  gap: 1.5rem;
}
.socials--spaced {
  margin-top: 1.75rem;
}
.socials a {
  color: var(--gold-soft);
}
.socials a:hover {
  color: var(--gold);
}
.socials svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}
.footer__bottom {
  padding: 1.5rem 0 2rem;
  color: oklch(66% 0.02 88);
  font-size: 0.875rem;
}
.footer__bottom p {
  margin: 0;
}

/* ————— mobile bar ————— */
.mobile-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 15;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  background: var(--black);
}
.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 3.5rem;
  color: var(--cream-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-bar a:first-child {
  color: var(--black);
  background: var(--gold-soft);
}

/* ————— reveal motion ————— */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
      opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ————— legacy pillar-page components (medspa / mental-health / primary-care / 404) ————— */
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero--pillar,
.page-header {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  color: var(--cream-text);
  background: var(--black);
}
.page-header__grid > div {
  max-width: min(58ch, 60%);
}
.page-header__photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 33.333%;
  margin: 0;
  overflow: hidden;
}
.page-header__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-intro {
  max-width: 44ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--cream-dim);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}
.photo {
  margin: 0;
  background: var(--black);
}
.photo img {
  width: 100%;
  max-height: 34rem;
  object-fit: cover;
}
.photo figcaption {
  padding: 0.9rem 0;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section--white {
  background: var(--ivory-deep);
}
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.service-card {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
}
.service-card__number {
  color: var(--gold-ink);
  font: 400 1.3rem var(--display);
}
.service-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}
.service-card p {
  max-width: 43rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  margin-top: 2.5rem;
}
.page-feature {
  margin: 0 0 3rem;
  padding: 1.25rem;
  color: var(--cream-text);
  background: var(--black);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.cards--flush {
  margin-top: 0;
}
.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: oklch(99% 0.005 95);
}
.card--dark {
  color: var(--cream-text);
  background: var(--coal);
}
.card__number {
  color: var(--gold-ink);
  font: 400 1.1rem var(--display);
}
.card--dark .card__number {
  color: var(--gold-soft);
}
.card h3 {
  margin-top: 1.25rem;
}
.card p {
  margin: 1rem 0 0;
  color: var(--muted);
}
.card--dark p {
  color: var(--cream-dim);
}
.card__link {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--gold-ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}
.card--dark .card__link {
  color: var(--gold-soft);
}
.card__link:hover {
  color: var(--ink);
}
.card--dark .card__link:hover {
  color: var(--gold);
}
.service-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  font-size: 0.95rem;
}
.button--outline {
  color: var(--cream-text);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--gold-soft);
}
.button--outline:hover {
  color: var(--black);
  background: var(--gold-soft);
}
.button--dark {
  color: var(--cream-text);
  background: var(--coal);
}
.button--dark:hover {
  background: var(--ink);
}
.not-found {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.not-found .page-intro {
  margin-inline: auto;
  color: var(--muted);
}
.actions--center {
  justify-content: center;
}
.editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}
.editorial__body p {
  max-width: 39rem;
  margin: 0 0 1.25rem;
}
.pullquote {
  margin: 0;
  font: 400 1.5rem/1.35 var(--display);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.spotlight-copy {
  display: grid;
  gap: 1.25rem;
}
.spotlight-copy article {
  padding: 1.5rem;
  color: var(--ink);
  background: oklch(99% 0.005 95);
}
.spotlight-copy p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.review {
  padding: 1.5rem;
  background: oklch(99% 0.005 95);
}
.review p {
  margin: 0;
  font: 400 1.18rem/1.4 var(--display);
}
.review footer {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.contact__item h3 {
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.contact__item p,
.contact__item a {
  display: block;
  margin: 0.55rem 0 0;
  color: var(--cream-dim);
  text-decoration: none;
}
.contact__item a:hover {
  color: var(--gold-soft);
}

/* ————— responsive ————— */
@media (max-width: 1240px) {
  .nav-toggle {
    display: block;
  }
  .nav__links {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    padding: 1.5rem;
    background: var(--umber);
    box-shadow: 0 20px 40px oklch(10% 0.01 80 / 0.5);
  }
  .nav__links.is-open {
    display: grid;
    gap: 0.5rem;
  }
  .nav__links .button {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 980px) {
  .pillars {
    grid-template-columns: 1fr;
  }
  .quotes,
  .flagship-offset__grid,
  .membership__grid,
  .edu,
  .contact__grid,
  .hero__grid,
  .editorial,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .page-header__grid > div {
    max-width: none;
  }
  .page-header__photo {
    position: static;
    width: 100%;
    margin-top: 2.5rem;
    aspect-ratio: 16 / 10;
  }
  .studio,
  .team-four,
  .signature {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .team-four {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .utility__inner {
    justify-content: center;
    flex-wrap: wrap;
    padding-block: 0.6rem;
  }
  .utility__details {
    display: grid;
    gap: 0.15rem;
    text-align: center;
  }
  .brand {
    height: 3.6rem;
    gap: 0.6rem;
  }
  .brand__tagline {
    display: none;
  }
  .perks,
  .edu__topics,
  .cards,
  .reviews,
  .footer__top,
  .services__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 0;
  }
  .hero__content {
    padding-block: 3.5rem;
  }
  .mobile-bar {
    display: grid;
  }
  body {
    padding-bottom: 3.5rem;
  }
  .section {
    padding-block: 4.5rem;
  }
}
@media (max-width: 400px) {
  .utility__inner,
  .nav__inner,
  .container {
    width: min(100% - 1.5rem, 1240px);
  }
  .hero__actions .button,
  .actions .button {
    width: 100%;
  }
}

/* ————— pricing page ————— */
.price-groups {
  columns: 2;
  column-gap: clamp(3rem, 6vw, 6rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.price-groups--single {
  columns: 1;
  max-width: 44rem;
}
.price-group {
  break-inside: avoid;
  margin-bottom: 3rem;
}
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid oklch(70% 0.04 90 / 0.35);
  font: 400 1.1rem/1.4 var(--display);
}
.price-list small {
  display: block;
  color: var(--muted);
  font: 300 0.85rem var(--sans);
}
.price-list__amount {
  flex: 0 0 auto;
  font: 500 1rem var(--sans);
  letter-spacing: 0.04em;
}
.price-note {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 680px) {
  .price-groups {
    columns: 1;
  }
}

.subnav {
  position: sticky;
  top: 5.5rem;
  z-index: 9;
  background: var(--umber);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.08) inset;
}
.subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  padding: 0.9rem 0;
}
.subnav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.subnav a:hover {
  color: var(--gold-soft);
}
section[id],
.menu__label[id] {
  scroll-margin-top: 9.5rem;
}
