:root {
  --ink: #090a0a;
  --ink-soft: #111311;
  --panel: #171914;
  --panel-warm: #201b13;
  --gold: #c6a15b;
  --gold-light: #e0c27b;
  --ivory: #f1eee7;
  --muted: #aaa69e;
  --line: rgba(224, 194, 123, 0.23);
  --line-soft: rgba(241, 238, 231, 0.12);
  --display: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(198, 161, 91, 0.06), transparent 30rem),
    var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.admin-bar .siteHeader { top: 32px; }
@media (max-width: 782px) { body.admin-bar .siteHeader { top: 46px; } }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
img { display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6.9rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
h3 { line-height: 1.2; }

.skipLink {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1rem;
}
.skipLink:focus { transform: none; }

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 10, 10, 0.89);
  backdrop-filter: blur(18px);
}
.navShell {
  width: min(var(--container), calc(100% - 2.5rem));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.logo { display: inline-flex; width: 145px; align-items: center; }
.logo img { width: 100%; height: auto; }
.desktopNav { display: flex; justify-content: center; gap: clamp(1rem, 2.7vw, 2.5rem); }
.desktopNav a { color: var(--muted); font-size: 0.84rem; letter-spacing: 0.03em; transition: color 180ms ease; }
.desktopNav a:hover, .desktopNav a:focus-visible { color: var(--ivory); }
.mobileMenu { display: none; }

.button {
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover, .button:focus-visible { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.buttonSmall { min-height: 42px; padding: 0.65rem 1rem; }
.buttonGhost { background: transparent; border-color: rgba(241, 238, 231, 0.3); color: var(--ivory); }
.buttonGhost:hover, .buttonGhost:focus-visible { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.textLink { display: inline-flex; color: var(--gold-light); font-weight: 700; margin-top: 1.2rem; }
.textLink:hover, .textLink:focus-visible { color: var(--ivory); }

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.21em;
  line-height: 1.4;
  text-transform: uppercase;
}
.muted { color: var(--muted); }
.lead { max-width: 740px; font-size: clamp(1.04rem, 1.6vw, 1.22rem); }
.largeText { font-size: clamp(1.2rem, 2.1vw, 1.55rem); line-height: 1.55; }
.heroActions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.homeHero {
  width: min(1320px, calc(100% - 2.5rem));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.heroCopy {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroCopy h1 { max-width: 860px; margin-bottom: 1.5rem; font-size: clamp(3.2rem, 4.9vw, 5.4rem); }
.heroCopy h1 em { display: block; color: var(--gold-light); font-weight: 400; }
.heroLead { max-width: 670px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.trustLine { margin-top: clamp(2.5rem, 5vw, 5rem); padding-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; border-top: 1px solid var(--line-soft); }
.trustLine span { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; }
.trustLine span::before { content: "•"; color: var(--gold); padding-right: 0.55rem; }
.heroVisual { position: relative; min-height: 700px; overflow: hidden; }
.heroVisual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 25%), linear-gradient(0deg, rgba(9, 10, 10, 0.48), transparent 45%); }
.heroVisual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 35%; filter: saturate(0.82) contrast(1.03); }
.heroBadge { position: absolute; right: 2rem; bottom: 2rem; z-index: 2; width: 180px; padding: 1.2rem; border: 1px solid var(--line); background: rgba(9, 10, 10, 0.82); backdrop-filter: blur(12px); }
.heroBadge strong { display: block; color: var(--gold-light); font-family: var(--display); font-size: 2rem; line-height: 1; }
.heroBadge span { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.72rem; line-height: 1.4; }

.locationStrip {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.3rem 0;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.locationStrip span::before { content: "•"; color: var(--gold); margin-right: 0.6rem; }
.locationStrip a { margin-left: auto; color: var(--gold-light); }

.statsSection { width: min(var(--container), calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.statsIntro { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.statsIntro h2 { max-width: 580px; margin-bottom: 0; font-size: clamp(2.2rem, 4.2vw, 4.3rem); }
.statsLead { max-width: 580px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.statsGrid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.statCard { position: relative; min-height: 260px; padding: clamp(1.5rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(198,161,91,0.07), rgba(255,255,255,0.012) 48%); overflow: hidden; }
.statCard::after { content: ""; position: absolute; right: -80px; top: -120px; width: 230px; height: 230px; border: 1px solid rgba(224,194,123,0.09); border-radius: 50%; }
.statQualifier { position: relative; z-index: 1; display: block; color: var(--gold-light); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
.statCard strong { position: relative; z-index: 1; display: block; margin-top: 0.45rem; color: var(--ivory); font-family: var(--display); font-size: clamp(4rem, 8vw, 7.4rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.86; }
.statCard p { position: relative; z-index: 1; max-width: 360px; margin: 2.2rem 0 0.55rem; color: var(--ivory); font-size: 0.77rem; font-weight: 750; letter-spacing: 0.08em; line-height: 1.45; text-transform: uppercase; }
.statDetail { position: relative; z-index: 1; color: var(--muted); font-size: 0.78rem; }
.statsUpdate { margin: 1rem 0 0; color: var(--muted); font-size: 0.67rem; letter-spacing: 0.08em; text-align: right; text-transform: uppercase; }

.section { padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100% - var(--container)) / 2)); }
.sectionAlt { background: var(--ink-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sectionHeading { max-width: 810px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.sectionHeading h2 { margin-bottom: 1.3rem; }
.sectionHeading.center { margin-left: auto; margin-right: auto; text-align: center; }
.sectionHeading.center .lead { margin-left: auto; margin-right: auto; }

.serviceGrid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.serviceCard { min-height: 320px; padding: clamp(1.4rem, 2.8vw, 2.5rem); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.01); transition: background 200ms ease, transform 200ms ease; }
.serviceCard:hover, .serviceCard:focus-visible { background: var(--panel-warm); transform: translateY(-4px); }
.cardNumber { color: var(--gold-light); font-family: var(--display); font-size: 1.15rem; font-style: italic; }
.serviceCard h3 { margin: 3rem 0 0.8rem; font-family: var(--display); font-size: 1.75rem; font-weight: 500; }
.serviceCard p { color: var(--muted); font-size: 0.9rem; }
.cardAction { color: var(--gold-light); font-size: 0.73rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.intimateSpotlight { padding: clamp(5rem, 10vw, 10rem) max(1.25rem, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 8vw, 8rem); background: radial-gradient(circle at 80% 40%, rgba(198, 161, 91, 0.12), transparent 32rem), var(--panel-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intimateSpotlight h2 { max-width: 650px; }
.intimateSpotlight .largeText { max-width: 680px; }

.processGrid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-soft); }
.processCard { padding: 2rem 1.4rem 0; border-left: 1px solid var(--line-soft); }
.processCard:last-child { border-right: 1px solid var(--line-soft); }
.processCard span { color: var(--gold-light); font-family: var(--display); font-size: 1.2rem; font-style: italic; }
.processCard h3 { margin: 2.2rem 0 0.7rem; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.processCard p { color: var(--muted); font-size: 0.86rem; }

.founderSection, .founderDetail { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 740px; }
.founderImage, .founderPortrait { position: relative; min-height: 660px; overflow: hidden; }
.founderImage img, .founderPortrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.founderCopy, .founderDetail > div:last-child { padding: clamp(4rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem); display: flex; flex-direction: column; justify-content: center; background: var(--panel); }
.founderCopy h2, .founderDetail h2 { margin-bottom: 1.5rem; }
.credentialLine { margin-bottom: 2rem; color: var(--gold-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.founderQuote { margin: 2rem 0 0; padding-left: 1.5rem; border-left: 1px solid var(--gold); color: var(--ivory); font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.8rem); font-style: italic; }

.teamGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.teamCard { border: 1px solid var(--line-soft); background: var(--panel); overflow: hidden; }
.teamImage { position: relative; aspect-ratio: 1 / 1.08; overflow: hidden; }
.teamImage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 400ms ease; }
.teamCard:hover .teamImage img { transform: scale(1.025); }
.teamBody { padding: 1.4rem; }
.teamBody h3 { margin-bottom: 0.35rem; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.teamRole { min-height: 2.8em; color: var(--gold-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; line-height: 1.4; text-transform: uppercase; }
.teamBody .muted { font-size: 0.84rem; }

.reviewTop { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.reviewGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.reviewCard { min-height: 300px; padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; border: 1px solid var(--line-soft); background: var(--ink); }
.stars { margin-bottom: 2rem; color: var(--gold-light); letter-spacing: 0.15em; }
.reviewCard blockquote { margin: 0 0 2rem; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.45; }
.reviewCard > p { margin-top: auto; margin-bottom: 0; }
.reviewCard strong, .reviewCard span { display: block; }
.reviewCard span { margin-top: 0.3rem; color: var(--muted); font-size: 0.73rem; }

.treatmentGallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.treatmentCard { margin: 0; border: 1px solid var(--line-soft); background: var(--ink); overflow: hidden; }
.treatmentImage { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel); }
.treatmentImage img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.treatmentCard:hover .treatmentImage img { transform: scale(1.025); }
.treatmentCard figcaption { padding: 1.35rem; }
.treatmentCard h3 { margin-bottom: 0.45rem; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.treatmentCard p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; }

.videoGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; }
.videoCard { border: 1px solid var(--line-soft); background: var(--panel); overflow: hidden; }
.videoFrame { aspect-ratio: 9 / 16; background: #050505; }
.videoFrame iframe { width: 100%; height: 100%; display: block; border: 0; }
.videoBody { min-height: 210px; padding: 1.4rem; display: flex; flex-direction: column; }
.videoBody h3 { margin-bottom: 0.7rem; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.videoBody p { color: var(--muted); font-size: 0.84rem; }
.videoBody a { margin-top: auto; color: var(--gold-light); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.videoCollection { border-top: 1px solid var(--line); }
.videoCategory { border-bottom: 1px solid var(--line-soft); }
.videoCategory summary { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; cursor: pointer; list-style: none; }
.videoCategory summary::-webkit-details-marker { display: none; }
.videoCategory summary > span:first-child { display: flex; flex-direction: column; gap: 0.35rem; }
.videoCategory summary strong { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500; }
.videoCategory summary small { color: var(--muted); font-size: 0.78rem; }
.videoCategory summary > span:last-child { color: var(--gold-light); font-family: var(--display); font-size: 2rem; transition: transform 180ms ease; }
.videoCategory[open] summary > span:last-child { transform: rotate(45deg); }
.videoCategoryBody { padding: 1rem 0 clamp(3rem, 6vw, 5rem); }

.locationGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.locationCard { min-height: 560px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--panel-warm); overflow: hidden; }
.locationImage { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel); }
.locationImage img { width: 100%; height: 100%; object-fit: cover; }
.locationBody { min-height: 300px; padding: clamp(1.7rem, 4vw, 3rem); display: flex; flex: 1; flex-direction: column; }
.locationCard h3 { margin: 0 0 0.8rem; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
.locationCard .button { margin-top: auto; align-self: flex-start; }

.consultationBanner { padding: clamp(3rem, 6vw, 5.5rem) max(1.25rem, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; background: var(--gold); color: var(--ink); }
.consultationBanner .eyebrow { color: rgba(9, 10, 10, 0.65); }
.consultationBanner h2 { max-width: 850px; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.9rem); }
.consultationBanner p { max-width: 800px; margin-bottom: 0; }
.consultationBanner .button { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.consultationBanner .button:hover { background: var(--panel); }

.pageHero { padding: clamp(5rem, 11vw, 10rem) 1.25rem; border-bottom: 1px solid var(--line-soft); background: radial-gradient(circle at 85% 20%, rgba(198, 161, 91, 0.11), transparent 30rem); }
.pageHeroInner { width: min(1030px, 100%); margin: 0 auto; }
.pageHero h1 { margin-bottom: 2rem; }
.anchorNav { width: min(var(--container), calc(100% - 2.5rem)); margin: 0 auto; padding: 1.2rem 0; display: flex; flex-wrap: wrap; gap: 0.65rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
.anchorNav a { color: var(--muted); font-size: 0.78rem; }
.anchorNav a:hover { color: var(--gold-light); }

.serviceList { padding-top: 3rem; }
.serviceGroup { padding: clamp(3.5rem, 7vw, 6rem) 0; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 8vw, 8rem); border-bottom: 1px solid var(--line-soft); scroll-margin-top: 90px; }
.serviceGroupIntro h2 { margin: 1.3rem 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.serviceGroupIntro .button { margin-top: 1rem; }
.serviceItems { border-top: 1px solid var(--line); }
.serviceItem { padding: 1.2rem 0.8rem; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line-soft); font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.45rem); }
.serviceItem span:last-child { color: var(--gold-light); }

.featuredTreatmentGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.featuredTreatmentCard { display: block; border: 1px solid var(--line-soft); background: var(--ink); overflow: hidden; }
.featuredTreatmentCard > div { aspect-ratio: 4 / 5; overflow: hidden; }
.featuredTreatmentCard img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.featuredTreatmentCard:hover img, .featuredTreatmentCard:focus-visible img { transform: scale(1.025); }
.featuredTreatmentCard > span { min-height: 190px; padding: 1.5rem; display: block; }
.featuredTreatmentCard h3 { margin-bottom: 0.6rem; font-family: var(--display); font-size: 1.55rem; font-weight: 500; }
.featuredTreatmentCard p { margin-bottom: 0; color: var(--muted); font-size: 0.86rem; }

.normalizationSection, .twoColumnSection { padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 8vw, 8rem); }
.normalizationSection h2, .twoColumnSection h2 { margin-bottom: 1.5rem; }
.intimateProcess { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.intimateProcess article { min-height: 250px; padding: 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intimateProcess span, .valuesGrid span { color: var(--gold-light); font-family: var(--display); font-style: italic; }
.intimateProcess h3 { margin: 2.5rem 0 0.7rem; font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
.intimateProcess p { color: var(--muted); font-size: 0.85rem; }
.twoColumnSection { grid-template-columns: 1fr 0.85fr; align-items: center; background: var(--panel-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.twoColumnSection .button { margin-top: 1rem; }
.infoPanel { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: rgba(9,10,10,0.44); }
.checkList { margin: 0; padding: 0; list-style: none; }
.checkList li { padding: 1rem 0 1rem 1.6rem; border-bottom: 1px solid var(--line-soft); position: relative; }
.checkList li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }
.procedureFeature { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel-warm); }
.procedureFeatureImage { position: relative; min-height: 700px; overflow: hidden; }
.procedureFeatureImage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.procedureFeatureCopy { padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 7vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.procedureFeatureCopy h2 { margin-bottom: 1.5rem; }
.procedureFeatureCopy .checkList { margin: 1rem 0 2rem; }
.procedureFeatureCopy .button { align-self: flex-start; }
.faqList { width: min(900px, 100%); margin: 0 auto; border-top: 1px solid var(--line); }
.faqList details { border-bottom: 1px solid var(--line-soft); }
.faqList summary { padding: 1.5rem 3rem 1.5rem 0; position: relative; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.55rem); }
.faqList summary::-webkit-details-marker { display: none; }
.faqList summary::after { content: "+"; position: absolute; right: 0; color: var(--gold-light); }
.faqList details[open] summary::after { content: "×"; }
.faqList details p { max-width: 760px; padding-bottom: 1.5rem; color: var(--muted); }
.medicalNote { width: min(var(--container), calc(100% - 2.5rem)); margin: 0 auto clamp(4rem, 8vw, 8rem); padding: clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 2rem; border: 1px solid var(--line-soft); background: var(--panel); }
.medicalNote strong { color: var(--gold-light); }
.medicalNote p { margin-bottom: 0; color: var(--muted); }
.medicalNote a { grid-column: 2; color: var(--gold-light); font-weight: 700; }

.intimateMediaSection { background: radial-gradient(circle at 50% 0%, rgba(198, 161, 91, 0.1), transparent 34rem); }
.intimateGallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.intimateGallery figure { margin: 0; border: 1px solid var(--line-soft); background: var(--panel); overflow: hidden; }
.intimateGallery figure > div { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.intimateGallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.intimateGallery figcaption { padding: 1.4rem; }
.intimateGallery h3 { margin-bottom: 0.5rem; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.intimateGallery p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; }

.valuesSection { padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100% - var(--container)) / 2)); background: var(--panel-warm); }
.valuesGrid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.valuesGrid article { min-height: 280px; padding: 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.valuesGrid h3 { margin: 3rem 0 1rem; font-family: var(--display); font-size: 1.55rem; font-weight: 500; }
.valuesGrid p { color: var(--muted); font-size: 0.88rem; }

.contactGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contactCard { min-height: 620px; display: flex; flex-direction: column; border: 1px solid var(--line-soft); background: var(--panel); overflow: hidden; }
.contactCardImage { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.contactCardImage img { width: 100%; height: 100%; object-fit: cover; }
.contactCardBody { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex: 1; flex-direction: column; }
.contactCard h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 3vw, 3rem); }
.contactCard .button { margin-top: auto; align-self: flex-start; }
.contactPrimary { background: var(--panel-warm); border-color: var(--line); }
.contactDirect { background: radial-gradient(circle at 80% 20%, rgba(198, 161, 91, 0.16), transparent 26rem), var(--panel-warm); }
.contactDirect .contactCardBody { min-height: 620px; justify-content: center; }
.contactLinks { margin: 1.5rem 0 3rem; display: flex; flex-direction: column; gap: 0.7rem; }
.contactLinks a { color: var(--gold-light); font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.2; }
.socialGrid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.socialGrid a { min-height: 180px; padding: 1.6rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.socialGrid strong { margin: auto 0; font-family: var(--display); font-size: 1.7rem; font-weight: 500; }
.socialGrid span:last-child { align-self: flex-end; color: var(--gold-light); }
.bookingStrip { padding: clamp(3rem, 6vw, 5rem) max(1.25rem, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel-warm); }
.bookingStrip h2 { max-width: 800px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.7rem); }

.siteFooter { padding: 5rem max(1.25rem, calc((100% - var(--container)) / 2)) 2rem; border-top: 1px solid var(--line-soft); background: #060707; }
.footerGrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footerGrid > div:not(.footerBrand) { display: flex; flex-direction: column; align-items: flex-start; }
.footerBrand > p { margin-top: 1.3rem; margin-bottom: 0; }
.footerTitle { margin-bottom: 1.2rem; color: var(--gold-light); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
.footerGrid a:not(.logo), .footerGrid > div:not(.footerBrand) > p:not(.footerTitle) { margin-bottom: 0.55rem; color: var(--muted); font-size: 0.82rem; }
.footerGrid a:not(.logo):hover { color: var(--ivory); }
.footerBottom { margin-top: 4rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 0.68rem; }
.mobileBar { display: none; }

@media (max-width: 1050px) {
  .desktopNav { gap: 1.15rem; }
  .serviceGrid { grid-template-columns: repeat(2, 1fr); }
  .processGrid { grid-template-columns: repeat(3, 1fr); gap: 2rem 0; }
  .teamGrid { grid-template-columns: repeat(2, 1fr); }
  .statsIntro { grid-template-columns: 1fr; align-items: start; }
  .intimateProcess { grid-template-columns: repeat(2, 1fr); }
  .valuesGrid { grid-template-columns: repeat(2, 1fr); }
  .contactGrid { grid-template-columns: 1fr 1fr; }
  .videoGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 74px; }
  .navShell { width: min(100% - 1.5rem, var(--container)); height: 66px; grid-template-columns: 1fr auto; }
  .desktopNav, .navShell > .buttonSmall { display: none; }
  .logo { width: 124px; }
  .mobileMenu { display: block; position: relative; }
  .mobileMenu summary { min-width: 56px; padding: 0.6rem 0; color: var(--gold-light); cursor: pointer; font-size: 0.72rem; font-weight: 750; letter-spacing: 0.1em; list-style: none; text-align: right; text-transform: uppercase; }
  .mobileMenu summary::-webkit-details-marker { display: none; }
  .mobileMenu nav { position: absolute; right: 0; top: 45px; width: min(82vw, 320px); padding: 1.2rem; display: flex; flex-direction: column; border: 1px solid var(--line); background: #0b0c0b; box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
  .mobileMenu nav a { padding: 0.8rem; border-bottom: 1px solid var(--line-soft); }
  .homeHero { width: 100%; min-height: auto; grid-template-columns: 1fr; border: 0; }
  .heroCopy { min-height: 72svh; padding: 4.5rem 1.25rem; }
  .heroCopy h1 { font-size: clamp(3rem, 13vw, 5.4rem); }
  .heroVisual { min-height: 75svh; }
  .heroVisual::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 30%); }
  .locationStrip { width: calc(100% - 2.5rem); overflow-x: auto; white-space: nowrap; }
  .locationStrip a { margin-left: 0; }
  .intimateSpotlight, .normalizationSection, .twoColumnSection, .serviceGroup, .procedureFeature { grid-template-columns: 1fr; }
  .procedureFeatureImage { min-height: 115vw; }
  .founderSection, .founderDetail { grid-template-columns: 1fr; }
  .founderImage, .founderPortrait { min-height: 100vw; }
  .reviewGrid { grid-template-columns: 1fr; }
  .treatmentGallery { grid-template-columns: repeat(2, 1fr); }
  .featuredTreatmentGrid { grid-template-columns: 1fr; }
  .videoGrid { grid-template-columns: 1fr; }
  .intimateGallery { grid-template-columns: 1fr; }
  .locationGrid { grid-template-columns: 1fr; }
  .consultationBanner { grid-template-columns: 1fr; }
  .contactGrid { grid-template-columns: 1fr; }
  .socialGrid { grid-template-columns: 1fr; }
  .bookingStrip { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr 1fr; }
  .mobileBar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 0.65rem; display: grid; grid-template-columns: 1fr 0.7fr; gap: 0.5rem; border-top: 1px solid var(--line-soft); background: rgba(9, 10, 10, 0.96); backdrop-filter: blur(14px); }
  .mobileBar .button { min-height: 52px; padding: 0.6rem; }
}

@media (max-width: 580px) {
  .section, .pageHero { padding-left: 1.1rem; padding-right: 1.1rem; }
  .heroActions { flex-direction: column; }
  .heroActions .button { width: 100%; }
  .heroBadge { right: 1rem; bottom: 1rem; }
  .serviceGrid, .processGrid, .teamGrid, .intimateProcess, .valuesGrid, .treatmentGallery, .statsGrid { grid-template-columns: 1fr; }
  .statsSection { width: calc(100% - 2.2rem); }
  .statCard { min-height: 230px; }
  .statsUpdate { text-align: left; }
  .processGrid { gap: 0; }
  .processCard { padding: 1.5rem 1.2rem; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
  .processCard h3 { margin-top: 1rem; }
  .serviceCard { min-height: 280px; }
  .reviewTop { display: block; }
  .reviewTop .textLink { margin-bottom: 2rem; }
  .medicalNote { grid-template-columns: 1fr; }
  .medicalNote a { grid-column: 1; }
  .footerGrid { grid-template-columns: 1fr; }
  .footerBottom { flex-direction: column; }
}

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