*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

:root {
  --white:    #ffffff;
  --off:      #f8f6f2;
  --parch:    #f0ece4;
  --stone:    #e4dfd6;
  --mid:      #9a968f;
  --ink:      #1e1c19;
  --deep:     #141210;
  --teal:     #2a6b6b;
  --teal-lt:  #3a8585;
  --teal-pale:#e8f2f2;
  --gold:     #b59a6a;
  --gold-lt:  #d4b98a;
}

html { overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: background .5s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  padding: 16px 56px;
  box-shadow: 0 1px 0 rgba(30,28,25,.08);
  backdrop-filter: blur(12px);
}
.nav-logo-link {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  height: 46px; width: auto; flex-shrink: 0;
}
.nav-logo {
  display: flex; flex-direction: column;
}
.nav-logo-main {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-top: 2px;
}
nav ul {
  list-style: none; display: flex; gap: 28px; align-items: center; flex-wrap: nowrap;
}
nav li { white-space: nowrap; }
nav a {
  color: var(--ink); text-decoration: none;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; opacity: .6; transition: opacity .25s, color .25s;
}
nav a:hover { opacity: 1; }
.nav-book {
  background: var(--teal); color: var(--white) !important;
  opacity: 1 !important; padding: 11px 26px;
  font-size: .68rem !important; letter-spacing: .16em !important;
  transition: background .3s !important;
  white-space: nowrap; flex-shrink: 0;
}
.nav-book:hover { background: var(--teal-lt) !important; }

/* Nav over dark hero image — homepage only */
nav.nav-over-hero .nav-logo-main            { color: var(--white); transition: color .4s; }
nav.nav-over-hero .nav-logo-sub             { color: rgba(255,255,255,.72); transition: color .4s; }
nav.nav-over-hero a                         { color: var(--white); transition: opacity .25s, color .4s; }
nav.nav-over-hero .nav-logo-link,
nav.nav-over-hero .nav-logo-link:hover      { opacity: 1 !important; }
/* Restore dark colors once nav turns white */
nav.nav-over-hero.scrolled .nav-logo-main  { color: var(--ink); }
nav.nav-over-hero.scrolled .nav-logo-sub   { color: var(--teal); }
nav.nav-over-hero.scrolled a               { color: var(--ink); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.05);
  animation: hzoom 18s ease-out forwards;
  filter: brightness(.88) saturate(.9);
}
@keyframes hzoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,18,16,.72) 0%,
    rgba(20,18,16,.38) 55%,
    rgba(20,18,16,.15) 100%
  );
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative; z-index: 10;
  padding: 0 56px 92px; max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(42,107,107,.18); border: 1px solid rgba(42,107,107,.35);
  padding: 7px 16px; margin-bottom: 28px;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: #a8d4d4; font-weight: 500;
  opacity: 0; animation: fu .8s .2s forwards;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-lt);
}
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.08; color: var(--white);
  margin-bottom: 24px;
  opacity: 0; animation: fu .9s .35s forwards;
}
.hero h1 em { font-style: italic; color: #a8d4d4; }
.hero-sub {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.65);
  max-width: 480px; margin-bottom: 40px; font-weight: 300;
  opacity: 0; animation: fu .9s .55s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fu .9s .75s forwards;
}
@keyframes fu { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }

.btn-primary {
  display: inline-block; background: var(--teal); color: var(--white);
  padding: 15px 36px; font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  transition: background .3s, transform .25s;
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.8); padding: 15px 36px;
  font-size: .72rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,.28);
  transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--teal);
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--teal); }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-img-wrap {
  position: relative; overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  filter: saturate(.85);
  transition: transform 8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-text {
  background: var(--off); padding: 88px 72px 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  font-size: .97rem; line-height: 1.85; color: rgba(30,28,25,.62);
  font-weight: 300; margin-bottom: 18px;
}
.divider { width: 32px; height: 1px; background: var(--teal); margin: 30px 0; }

/* ── TREATMENTS ── */
.treatments { padding: 110px 56px; background: var(--white); }
.treatments-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.treatments-header .section-title { max-width: 440px; }
.view-all {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--teal); padding-bottom: 3px;
  transition: opacity .25s; white-space: nowrap; align-self: flex-end;
}
.view-all:hover { opacity: .6; }

.tx-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--stone);
}
.tx-card {
  background: var(--white); padding: 0;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background .3s;
  cursor: pointer;
}
.tx-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.tx-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.75) brightness(.9);
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
}
.tx-card:hover .tx-card-img img {
  transform: scale(1.06); filter: saturate(.9) brightness(.85);
}
.tx-card-body { padding: 28px 26px 32px; flex:1; }
.tx-card-num {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 10px;
}
.tx-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
  line-height: 1.25; color: var(--ink);
}
.tx-card p {
  font-size: .83rem; line-height: 1.72;
  color: rgba(30,28,25,.54); font-weight: 300;
}
.tx-card-bar {
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.tx-card:hover .tx-card-bar { transform: scaleX(1); }

/* ── APPROACH ── */
.approach {
  background: var(--ink); padding: 110px 56px 110px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.approach-left .section-eyebrow { color: #a8d4d4; }
.approach-left .section-eyebrow::before { background: #a8d4d4; }
.approach-left .section-title { color: var(--white); margin-bottom: 24px; }
.approach-left .section-title em { color: #a8d4d4; }
.approach-left p {
  font-size: .97rem; line-height: 1.85; color: rgba(255,255,255,.52);
  font-weight: 300; margin-bottom: 32px;
}

.approach-right {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
}
.approach-img {
  position: relative; min-height: 300px; overflow: hidden; flex-shrink: 0;
}
.approach-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  filter: brightness(.52) saturate(.75);
  transition: transform 9s ease;
}
.approach-img:hover img { transform: scale(1.04); }
.approach-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,18,16,.3) 0%, rgba(42,107,107,.62) 100%);
}
.approach-thumbs {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  margin-top: -40px;
}
.approach-thumb {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  opacity: .6;
  transition: opacity .3s, transform .3s;
  cursor: pointer;
}
.approach-thumb:hover { opacity: 1; transform: translateY(-2px); }
.approach-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.approach-thumb:hover img { transform: scale(1.08); }


/* HOMEPAGE APPROACH LIGHTBOX */

.ap-lb { position: fixed; inset: 0; background: rgba(5,4,3,.96); z-index: 9999; display: none; align-items: center; justify-content: center; }
.ap-lb.open { display: flex; }
.ap-lb img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 3px; display: block; }
.ap-lb-btn { position: absolute; background: none; border: none; color: rgba(255,255,255,.65); cursor: pointer; transition: color .2s; line-height: 1; padding: 16px; font-size: 1.4rem; }
.ap-lb-btn:hover { color: #fff; }
.ap-lb-close { top: 16px; right: 20px; }
.ap-lb-prev { left: 8px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.ap-lb-next { right: 8px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.ap-lb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); font-size: .78rem; font-family: 'DM Sans', sans-serif; letter-spacing: .08em; }

.approach-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start;
}
.step:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.step-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem; font-weight: 400;
  color: rgba(255,255,255,.12); line-height: 1;
  padding-top: 2px;
}
.step h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.step p {
  font-size: .83rem; line-height: 1.72;
  color: rgba(255,255,255,.45); font-weight: 300;
}

/* ── TEAM ── */
.team { background: var(--off); padding: 110px 56px; }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 68px; }
.team-header .section-eyebrow { justify-content: center; }
.team-header .section-eyebrow::before { display: none; }
.team-subhead {
  font-size: .97rem; line-height: 1.8; color: rgba(30,28,25,.52);
  max-width: 520px; margin: 18px auto 0; font-weight: 300;
}
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(30,28,25,.07);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,28,25,.1);
}
.team-photo-wrap {
  position: relative; width: 100%; aspect-ratio: 1/1; overflow: hidden;
}
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: saturate(.88);
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.05); filter: saturate(1);
}
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,107,107,.18) 0%, transparent 50%);
}
.team-card-body { padding: 28px 28px 32px; }
.team-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.team-title {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); font-weight: 500;
}
.team-divider { width: 28px; height: 1px; background: var(--stone); margin: 16px 0; }
.team-bio {
  font-size: .84rem; line-height: 1.78; color: rgba(30,28,25,.58);
  font-weight: 300; margin-bottom: 18px;
}
.team-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.team-certs span {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--teal-pale); color: var(--teal);
  padding: 4px 10px; font-weight: 500;
}
.team-status {
  font-size: .7rem; font-weight: 500; color: var(--mid);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--stone);
}

/* ── CONDITIONS ── */
.conditions { padding: 110px 56px; background: var(--parch); }
.conditions-inner { max-width: 1100px; margin: 0 auto; }
.conditions h2 { margin-bottom: 56px; max-width: 480px; }
.conditions-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: var(--stone);
}
.cond {
  background: var(--parch); padding: 36px 32px;
  transition: background .3s;
  border-left: 2px solid transparent;
}
.cond:hover { background: var(--white); border-left-color: var(--teal); }
.cond-label {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 10px;
}
.cond h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; color: var(--ink);
}
.cond p { font-size: .83rem; line-height: 1.72; color: rgba(30,28,25,.55); font-weight: 300; }

/* ── SOCIAL PROOF ── */
.proof { padding: 110px 56px; background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.review {
  background: var(--off); padding: 36px 32px;
  border-top: 2px solid var(--teal);
  transition: transform .3s;
}
.review:hover { transform: translateY(-4px); }
.review-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
}
.star {
  width: 11px; height: 11px;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  background: var(--gold);
}
.review-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  line-height: 1.7; color: rgba(30,28,25,.75);
  margin-bottom: 28px;
}
.review-rule { width: 24px; height: 1px; background: var(--stone); margin-bottom: 16px; }
.reviewer-name { font-size: .84rem; font-weight: 500; color: var(--ink); }
.reviewer-detail { font-size: .7rem; color: var(--mid); margin-top: 3px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--teal);
  padding: 80px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-band h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--white); line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,.7); }
.cta-band p { font-size: .95rem; color: rgba(255,255,255,.65); margin-top: 12px; font-weight: 300; }
.btn-white {
  display: inline-block; background: var(--white); color: var(--teal);
  padding: 16px 38px; font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background .3s, transform .25s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--off); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--deep); padding: 72px 56px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.f-brand .f-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.f-brand .f-sub {
  font-size: .56rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 18px;
}
.f-brand p {
  font-size: .84rem; line-height: 1.75;
  color: rgba(255,255,255,.32); font-weight: 300; max-width: 280px;
  margin-bottom: 22px;
}
.f-address { font-size: .8rem; color: rgba(255,255,255,.3); line-height: 1.7; }
.f-address a { color: rgba(255,255,255,.3); text-decoration: none; }
.f-col h5 {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.22); margin-bottom: 18px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a {
  font-size: .84rem; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .25s;
}
.f-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.18); letter-spacing: .05em; }
.hipaa-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .64rem; letter-spacing: .1em; color: rgba(255,255,255,.25);
}
.hipaa-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-lt); }

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.rv.on { opacity: 1; transform: none; }
.rv-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.rv-left.on { opacity: 1; transform: none; }
.rv-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.rv-right.on { opacity: 1; transform: none; }
.rv-scale {
  opacity: 0; transform: scale(.97);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.rv-scale.on { opacity: 1; transform: none; }

/* ── PRICING TABLE ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.pricing-table th {
  background: var(--teal-pale);
  color: var(--teal);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: .9rem;
}
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--stone);
  font-size: .9rem;
}
.pricing-table tbody tr:hover {
  background: var(--off);
}
.pricing-amount {
  font-weight: 600;
  color: var(--teal);
}

/* ── PAGE PADDING ── */
.page-content {
  padding: 120px 56px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(30,28,25,.7);
  margin-bottom: 40px;
  max-width: 700px;
}

/* ── ANNOUNCEMENTS ── */
.announcements {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  padding: 32px 40px;
  margin: 60px 0;
  border-radius: 2px;
}
.announcements h3 {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Libre Baskerville', serif;
}
.announcements p {
  color: rgba(30,28,25,.8);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px 4px; z-index: 210; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, background .4s;
}
nav.nav-over-hero .nav-hamburger span { background: var(--white); }
nav.nav-over-hero.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span { background: var(--ink) !important; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  nav { padding: 18px 22px; }
  .nav-hamburger { display: flex; }
  nav ul {
    position: fixed; inset: 0; background: var(--white);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px; z-index: 205; display: none;
  }
  nav ul.open { display: flex; }
  nav ul li a { font-size: 1.1rem; letter-spacing: .1em; opacity: 1; color: var(--ink) !important; }
  nav ul li a:hover { opacity: .6; }
  nav ul .nav-book { font-size: .85rem !important; padding: 14px 32px !important; color: var(--white) !important; }
  .hero-content { padding: 0 22px 68px; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding: 56px 22px; }
  .treatments { padding: 80px 22px; }
  .tx-grid { grid-template-columns: repeat(2,1fr); }
  .approach { grid-template-columns: 1fr; padding: 80px 22px; gap: 52px; }
  .conditions { padding: 80px 22px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .proof { padding: 80px 22px; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 60px 22px; }
  footer { padding: 56px 22px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team { padding: 80px 22px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .page-content { padding: 80px 22px; }
}