
/* ??? TOKENS ??????????????????????????????????????????????????? */
:root {
  --bg:       #080808;
  --surface:  #111111;
  --card:     #181818;
  --border:   #242424;
  --border2:  #2e2e2e;
  --white:    #ffffff;
  --off-white:#f0ede8;
  --text:     #c8c8c8;
  --muted:    #888888;
  --dim:      #444444;
  --ff-d:     'Cormorant Garamond', Georgia, serif;
  --ff-b:     'Montserrat', sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
}

/* ??? RESET ???????????????????????????????????????????????????? */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* fixed header offset (desktop) */
  width: 100%;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b), ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size-adjust: 0.52;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
}

/* ??? FLOATING WHATSAPP ????????????????????????????????????????? */
.wa-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 68px;
  height: 68px;
  border-radius: 18px; /* square, premium */
  display: grid;
  place-items: center;
  z-index: 220;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 55%),
    rgba(17,17,17,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 34px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06) inset;
  transition:
    transform .22s var(--ease-out-quart),
    border-color .22s var(--ease-out-quart),
    background .22s var(--ease-out-quart);
}
.wa-float::after{
  content:'';
  position:absolute;
  inset:-2px;
  border-radius: 16px;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 42%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out-quart);
  opacity: 0;
  transition: transform .9s var(--ease-out-quart), opacity .25s var(--ease-out-quart);
  pointer-events:none;
  mix-blend-mode: screen;
}
.wa-float svg{ width: 30px; height: 30px; }
.wa-float .wa-ico{ fill: rgba(255,255,255,.92); }
@media (hover:hover){
  .wa-float:hover{
    transform: translate3d(0,-2px,0);
    border-color: rgba(255,255,255,.30);
  }
  .wa-float:hover::after{ opacity: 1; transform: translateX(120%); }
  .wa-float:active{ transform: translate3d(0,0,0) scale(.985); }
}
@media (prefers-reduced-motion: reduce){
  .wa-float{ transition:none; }
  .wa-float::after{ display:none; }
}
a { text-decoration: none; color: inherit; }
.mirror-x { transform: scaleX(-1); }
.no-mirror { transform: scaleX(1) !important; }
img { display: block; max-width: 100%; }

/* ??? SCROLLBAR ???????????????????????????????????????????????? */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); }

/* ??? IMAGE PLACEHOLDERS ??????????????????????????????????????? */
.img-ph {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-ph.has-img .img-ph-text { display: none; }
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}
.img-ph-text {
  position: relative;
  z-index: 1;
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 13px;
  color: var(--dim);
  text-align: center;
  line-height: 1.8;
  max-width: 68%;
  padding: 24px;
  border: 1px solid var(--border);
}

/* ??? TYPOGRAPHY UTILITIES ????????????????????????????????????? */
:root{
  --fs-body: 16px;
  --fs-label: 12px;
  --fs-micro: 11px;
}
.eyebrow {
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.display {
  font-family: var(--ff-d), ui-serif, Georgia, "Times New Roman", serif;
  font-size-adjust: 0.44;
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}
.section-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ??? BUTTONS ?????????????????????????????????????????????????? */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--ff-b);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
}
.btn-light {
  background: var(--white);
  color: var(--bg);
}
.btn-light:hover { background: var(--off-white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--white); }

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled:not(.nav-open) {
  transition:
    background .4s var(--ease),
    border-color .4s var(--ease),
    padding .25s var(--ease);
}
.site-nav.scrolled {
  background: rgba(8,8,8,.5);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 16px 60px;
}
.nav-logo {
  font-family: var(--ff-d), ui-serif, Georgia, "Times New Roman", serif;
  font-size-adjust: 0.44;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.nav-logo .logo-main{ white-space: nowrap; }
.nav-logo .logo-sub{ white-space: nowrap; }
.footer-logo .logo-main{ white-space: nowrap; }
.nav-logo em {
  font-style: italic;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-contact {
  font-size: var(--fs-label);
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-contact a {
  color: rgba(255,255,255,.9);
  transition: color .2s;
  white-space: nowrap;
}
.nav-contact a:hover { color: var(--white); }

/* never show mobile-only links on desktop */
.nav-links .nav-mobile-only{ display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,8,8,.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-lines::before { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle-lines::after { transform: translate(-50%, calc(-50% + 6px)); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  z-index: 90;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
body.nav-lock { overflow: hidden; }

/* ??? HERO ????????????????????????????????????????????????????? */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.15) 0%,
    rgba(8,8,8,.3) 40%,
    rgba(8,8,8,.85) 100%
  );
  z-index: 2;
}
.hero-bg .img-ph-text { display: none; }
.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video { z-index: 1; background: #000; }
.hero-poster { z-index: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.hero-eyebrow {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 24px;
}
.hero-eyebrow a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: color .2s, border-color .2s;
}
.hero-eyebrow a:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.45);
}
.hero h1 {
  font-family: var(--ff-d), ui-serif, Georgia, "Times New Roman", serif;
  font-size-adjust: 0.44;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: relative;
  margin-top: 26px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.4); opacity: .3; }
}

/* ??? ABOUT ???????????????????????????????????????????????????? */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-bottom: 1px solid var(--border);
}
.about-img {
  border-right: 1px solid var(--border);
}
.about-img .img-ph {
  height: 100%;
  min-height: 500px;
}
.about-img .img-ph > img{
  object-position: 70% 50%;
}
.about-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .eyebrow { margin-bottom: 24px; }
.about-content h2 {
  font-family: var(--ff-d);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.about-content h2 em { font-style: italic; }
.about-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
}
.about-pillars {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.about-pillars li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--text);
}
.about-pillars li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--white);
  flex-shrink: 0;
}

/* ??? TREATMENTS SECTION ??????????????????????????????????????? */
.treatments-section {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  color: #0b0b0b;
}

.treatments-section .eyebrow { color: #0b0b0b; }
.treatments-section h2 { color: #0b0b0b; }
.treatments-section .treatments-header-right { color: #0b0b0b; }
.treatments-section .section-rule { background: rgba(0,0,0,.12); }
.treatments-section .treatments-header-left h2 { color: #0b0b0b; }
.treatments-section .treatments-header-right { color: #0b0b0b; }
.treatments-section .treatments-header-right * { color: #0b0b0b; }
.treatments-section .treatments-header-left .eyebrow { color: #0b0b0b; }
.treatments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.treatments-header-left .eyebrow { margin-bottom: 20px; }
.treatments-header-left h2 {
  font-family: var(--ff-d);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: #0b0b0b;
  line-height: 1.0;
  max-width: 560px;
}
.treatments-header-left h2 em { font-style: italic; }
.treatments-header-right {
  font-size: 16px;
  color: #0b0b0b;
  line-height: 1.8;
  max-width: 300px;
  text-align: right;
  padding-bottom: 8px;
}

/* 4 Category Cards */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
  background: var(--border);
}
.treatment-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.treatment-card:hover { background: var(--card); }
.tc-image {
  height: 300px;
  border-bottom: 2px solid var(--border);
  flex-shrink: 0;
}
.tc-image .img-ph { height: 100%; border: none; }
.treatment-card:hover .tc-image { border-bottom-color: var(--white); }
.tc-body {
  padding: 32px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tc-tag {
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 14px;
}
.tc-name {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.tc-count {
  font-size: var(--fs-label);
  letter-spacing: .10em;
  color: rgba(255,255,255,.58);
  margin-bottom: 20px;
}
.tc-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
  flex: 1;
  margin-bottom: 24px;
}
.tc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .25s var(--ease);
}
.tc-link::after {
  content: '\2192';
  font-size: 12px;
}
.treatment-card:hover .tc-link {
  opacity: 1;
  transform: translateX(0);
}

/* Treatment Spotlights */
.spotlights {
  border-top: 1px solid var(--border);
}
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.spotlight.reverse { direction: rtl; }
.spotlight.reverse > * { direction: ltr; }
.spotlight-img {
  border-right: 1px solid var(--border);
}
.spotlight.reverse .spotlight-img {
  border-right: none;
  border-left: 1px solid var(--border);
}
.spotlight-img .img-ph { height: 100%; min-height: 400px; border: none; }
.spotlight-body {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-tag {
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 16px;
}
.spotlight-body h3 {
  font-family: var(--ff-d);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
}
.spotlight-body h3 em { font-style: italic; }
.spotlight-subtitle {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.74);
  margin-bottom: 28px;
  line-height: 1.5;
}
.spotlight-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 380px;
}
.spotlight-benefits {
  list-style: none;
  margin-bottom: 36px;
}
.spotlight-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.spotlight-benefits li::before {
  content: '\2013';
  color: var(--white);
  font-size: var(--fs-label);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Spotlight (light) ? black text version */
.spotlight.spotlight-light {
  background: var(--off-white);
  border-bottom-color: rgba(0,0,0,.12);
}
.spotlight.spotlight-light .spotlight-img { border-right-color: rgba(0,0,0,.12); }
.spotlight.reverse.spotlight-light .spotlight-img { border-left-color: rgba(0,0,0,.12); }
.spotlight.spotlight-light .spotlight-tag,
.spotlight.spotlight-light .spotlight-body h3,
.spotlight.spotlight-light .spotlight-subtitle,
.spotlight.spotlight-light .spotlight-body p,
.spotlight.spotlight-light .spotlight-benefits li,
.spotlight.spotlight-light .spotlight-benefits li::before {
  color: #0b0b0b;
}
.spotlight.spotlight-light .spotlight-benefits li { border-bottom-color: rgba(0,0,0,.10); }
.spotlight.spotlight-light .btn-outline {
  color: #0b0b0b;
  border-color: rgba(0,0,0,.22);
}
.spotlight.spotlight-light .btn-outline:hover { border-color: rgba(0,0,0,.55); }
.spotlight.spotlight-light .btn { justify-content: center; }

/* ??? WHY US ??????????????????????????????????????????????????? */
.why-section {
  background: var(--surface);
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.why-header { margin-bottom: 64px; }
.why-header .eyebrow { margin-bottom: 20px; }
.why-header h2 {
  font-family: var(--ff-d);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}
.why-header h2 em { font-style: italic; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.why-card {
  background: var(--surface);
  padding: 44px 40px;
  transition: background .25s;
}
.why-card:hover { background: var(--card); }
.why-num {
  font-family: var(--ff-d);
  font-size: 56px;
  font-weight: 300;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.why-card h3 {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

/* ??? DOCTORS ?????????????????????????????????????????????????? */
.doctors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 1px solid var(--border);
}
.doctors-img .img-ph { height: 100%; min-height: 500px; border: none; }
.doctors-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.doctors-content .eyebrow { margin-bottom: 24px; }
.doctors-content h2 {
  font-family: var(--ff-d);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.doctors-content h2 em { font-style: italic; }
.doctors-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 400px;
}
.doctors-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--ff-d);
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: var(--fs-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ??? REVIEWS ?????????????????????????????????????????????????? */
.reviews-section {
  background: var(--bg);
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.reviews-header { margin-bottom: 56px; max-width: 560px; }
.reviews-header .eyebrow { margin-bottom: 20px; }
.reviews-header h2 {
  font-family: var(--ff-d);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}
.reviews-header h2 em { font-style: italic; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.review-card {
  margin: 0;
  border: none;
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: background .25s;
}
.review-card:hover { background: var(--card); }
.review-card .review-quote {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  flex: 1;
  margin: 0 0 24px;
}
.review-card .review-quote::before {
  content: '"';
  font-family: var(--ff-d);
  font-size: 52px;
  line-height: 0.85;
  color: var(--border2);
  display: block;
  margin-bottom: 4px;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-name {
  font-size: var(--fs-label);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(212, 175, 122, .95);
}
/* ??? FAQ ?????????????????????????????????????????????????????? */
.faq-section {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: #F1EAE5;
}
.faq-section .eyebrow { color: #0b0b0b; }
.faq-left .eyebrow { margin-bottom: 20px; }
.faq-left h2 {
  font-family: var(--ff-d);
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 300;
  color: #0b0b0b;
  line-height: 1.05;
  margin-bottom: 24px;
}
.faq-left h2 em { font-style: italic; }
.faq-left p {
  font-size: 14px;
  line-height: 1.85;
  color: #0b0b0b;
}
.faq-right { padding-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #0b0b0b;
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
}
.faq-q:hover { color: #0b0b0b; opacity: .8; }
.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  transition: all .25s;
}
.faq-item.open .faq-icon {
  border-color: rgba(0,0,0,.55);
  color: #0b0b0b;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0,0,0,.72);
}
.faq-item.open .faq-a { max-height: 200px; }

/* ??? CTA SECTION ?????????????????????????????????????????????? */
.cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg .img-ph {
  width: 100%;
  height: 100%;
  border: none;
}
.cta-bg .img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.82);
  z-index: 2;
}
.cta-bg .img-ph-text { z-index: 3; }
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 40px;
  max-width: 640px;
}
.cta-content .eyebrow { margin-bottom: 24px; }
.cta-content h2 {
  font-family: var(--ff-d);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; }
.cta-content p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ??? FOOTER ??????????????????????????????????????????????????? */
footer {
  padding: 56px 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 100%;
  overflow-x: clip;
}
.footer-logo {
  font-family: var(--ff-d), ui-serif, Georgia, "Times New Roman", serif;
  font-size-adjust: 0.44;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  text-align: left;
  line-height: 1.05;
  white-space: nowrap;
}
.footer-logo em { font-style: italic; font-weight: 400; }

.logo-sub{
  margin-top: 4px;
  font-family: var(--ff-b), ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  white-space: nowrap;
}
@media (max-width: 600px){
  .logo-sub{ font-size: 10px; letter-spacing: .12em; }
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(28px, auto);
  column-gap: 28px;
  row-gap: 10px;
  list-style: none;
  justify-content: center;
  justify-items: center;
}
.footer-nav a {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--white); }
.footer-info {
  text-align: right;
  font-size: var(--fs-label);
  letter-spacing: .08em;
  color: var(--dim);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.footer-info a { color: var(--dim); transition: color .2s; }
.footer-info a:hover { color: var(--muted); }
.footer-info a{ display:block; }
.footer-info a:first-child{ white-space: nowrap; }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  color: var(--dim);
  text-transform: uppercase;
}

/* HOME: BEFORE / AFTER (hover reveal, no slider) */
.home-ba-section{
  padding: 72px 60px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(120% 120% at 18% 0%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 55%), var(--surface);
}
.home-ba-inner{
  max-width: 1100px;
  margin: 0 auto;
}
.home-ba-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.home-ba-kicker{
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.home-ba-title{
  font-family: var(--ff-d), ui-serif, Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-top: 10px;
}
.home-ba-title em{ font-style: italic; }
.home-ba-note{
  max-width: 320px;
  text-align: right;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.52);
}

.ba-reveal{ margin-top: 6px; }
.ba-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06) inset;
  --ba-veil: 0;
  --ba-swap: 0;
}
.ba-frame::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 72%, rgba(0,0,0,.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 52%, rgba(0,0,0,.45) 100%);
  opacity: calc(var(--ba-veil) * .92);
  mix-blend-mode: multiply;
  z-index: 3;
}
.ba-frame::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(140% 120% at 20% 10%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.28) 100%);
  mix-blend-mode: screen;
  opacity: .65;
  z-index: 2;
}
.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  will-change: opacity;
}
.ba-before{ opacity: calc(1 - var(--ba-swap)); }
.ba-after{ opacity: var(--ba-swap); }

.ba-labels{
  position:absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  display:flex;
  justify-content: space-between;
  gap: 10px;
  pointer-events:none;
  z-index: 4;
}
.ba-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  background: rgba(8,8,8,.48);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ba-hint{
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.ba-hint .ba-hint-hover{ display:none; }
.ba-hint .ba-hint-tap{ display:none; }

@media (prefers-reduced-motion: reduce){
  .ba-img{ transition:none; }
  .ba-frame::before{ display:none; }
}

@media (max-width: 900px){
  .home-ba-section{ padding: 56px 28px; }
  .home-ba-head{ flex-direction: column; align-items: flex-start; }
  .home-ba-note{ text-align: left; max-width: 100%; }
}

/* ??? REVEAL ANIMATIONS ???????????????????????????????????????? */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ??? RESPONSIVE ??????????????????????????????????????????????? */
@media (max-width: 1100px) {
  .treatment-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Header: switch to burger before contacts overflow */
@media (max-width: 1100px) {
  .site-nav { padding: 14px 18px; }
  .site-nav.scrolled { padding: 10px 18px; }
  /* Layout: contacts near-right, burger at far-right */
  .nav-logo{ order: 1; }
  .nav-links{ order: 2; }
  .nav-contact{
    order: 3;
    margin-left: auto;
    margin-right: 10px;
  }
  .nav-toggle { order: 4; display: inline-grid; place-items: center; z-index: 110; }
  .nav-links { display: none; }

  /* Tablet: show contacts in header, allow wrap on narrower widths */
  .site-nav .nav-contact{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-label);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 42vw;
  }
  .site-nav .nav-contact a{ white-space: normal; }

  .site-nav.nav-open {
    background: rgba(8,8,8,.98);
    backdrop-filter: blur(16px);
    /* No bottom border while menu is open ? panel sits flush under the bar (avoids seam/double stack). */
    border-bottom-color: transparent;
  }
  /* Show white X when open (hide only middle line) */
  .site-nav.nav-open .nav-toggle-lines { background: transparent; }
  .site-nav.nav-open .nav-toggle-lines::before { transform: translate(-50%, -50%) rotate(45deg); }
  .site-nav.nav-open .nav-toggle-lines::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .site-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 18px 26px;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--border);
    z-index: 105;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .nav-links a { font-size: 12px; letter-spacing: .18em; }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .hero-bg .img-ph > img { object-position: 60% 30%; }
  .about, .doctors, .spotlight { grid-template-columns: 1fr; }
  .about-img .img-ph, .doctors-img .img-ph { min-height: 360px; }
  .spotlight-img .img-ph { min-height: 280px; }
  .about-img { border-right: none; border-bottom: 1px solid var(--border); }
  .doctors-content { border-left: none; border-top: 1px solid var(--border); }
  .spotlight.reverse { direction: ltr; }
  .spotlight.reverse .spotlight-img { border-left: none; border-bottom: 1px solid var(--border); }
  .spotlight-img { border-right: none; border-bottom: 1px solid var(--border); }
  .about-content, .spotlight-body, .doctors-content { padding: 48px 32px; }
  .spotlight-body p { max-width: 100%; }
  .doctors-content p { max-width: 100%; }
  .treatments-section, .why-section, .reviews-section, .faq-section { padding: 64px 28px; }
  .treatments-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .treatments-header-right { text-align: left; max-width: 100%; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 48px; }
  footer { grid-template-columns: 1fr; gap: 22px; text-align: center; padding: 40px 28px; }
  .footer-logo{ justify-self: center; align-items: center; text-align: center; }
  .footer-info { text-align: center; }
  .footer-nav {
    width: min(520px, 100%);
    margin: 0 auto;
    justify-content: center;
  }
  .doctors-stats { gap: 32px; }
}

/* Wide tablet: keep phone + directions on one line */
@media (min-width: 760px) and (max-width: 900px){
  .site-nav .nav-contact{ flex-wrap: nowrap; white-space: nowrap; max-width: none; }
  .site-nav .nav-contact a{ white-space: nowrap; }
}

/* Mobile: hide header contacts; show in burger menu */
@media (max-width: 600px){
  .site-nav .nav-contact{ display: none; }
  .nav-links .nav-mobile-only{ display: block; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 70px; }
  .hero-bg .img-ph > img { object-position: 62% 30%; }
  .treatment-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-logo{
    justify-self: center;
    align-items: center;
    text-align: center;
  }
}

/* --- WordPress page / index content ----------------------------- */
.page-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 60px 100px;
  min-height: 50vh;
}
.page-shell .page-header h1 {
  font-family: var(--ff-d);
  font-weight: 300;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.page-shell .entry-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}
.page-shell .entry-content a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-shell .entry-content a:hover {
  color: var(--white);
}


