/* ── SOUTHERN HORIZON HEALTHCARE — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #130918;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

:root {
  --tl: #9ad1d4; --t: #129FA6; --p: #AD3794;
  --co: #E56A6F; --pk: #F28E9F;
  --dark: #130918; --dark2: #1c1025; --dark3: #231430;
  --dark-p: #130918; --dark-p2: #1c1025; --dark-p3: #231430;
  --line: rgba(255,255,255,0.07); --muted: rgba(255,255,255,0.4);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

/* COLOR STRIP */
.color-strip { display:flex; height:3px; position:sticky; top:0; z-index:200; }
.color-strip span { flex:1; }

/* NAV */
.nav {
  position:sticky; top:3px; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 40px; height:64px;
  background:rgba(11,11,11,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-logo img { height:60px; width:auto; transition:opacity .2s; mix-blend-mode:screen; }
.nav-logo img:hover { opacity:.7; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a { font-size:13px; color:var(--muted); letter-spacing:.02em; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-cta {
  background:transparent; border:1px solid var(--tl); color:var(--tl);
  font-family:var(--sans); font-size:12px; font-weight:500;
  padding:9px 22px; border-radius:3px; cursor:pointer;
  letter-spacing:.06em; text-transform:uppercase; transition:background .2s, color .2s;
}
.nav-cta:hover { background:var(--tl); color:#0b0b0b; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.nav-hamburger span { display:block; width:24px; height:2px; background:#fff; transition:transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display:none; flex-direction:column;
  position:fixed; top:67px; left:0; right:0;
  background:#0b0b0b; border-bottom:1px solid var(--line);
  padding:24px 32px 32px; z-index:99; gap:20px;
}
.nav-mobile.open { display:flex; }
.nav-mobile a { font-size:15px; color:rgba(255,255,255,.65); padding:6px 0; border-bottom:1px solid var(--line); }
.nav-mobile .nav-cta { margin-top:8px; text-align:center; width:100%; }

/* PAGE HERO */
.page-hero {
  position:relative; min-height:52vh; display:flex;
  align-items:flex-end; overflow:hidden;
}
.page-hero-bg { position:absolute; inset:0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.page-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,11,11,1) 0%, rgba(11,11,11,.7) 50%, rgba(11,11,11,.3) 100%);
}
.page-hero-content { position:relative; z-index:1; padding:48px 40px; width:100%; }
.dept-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  padding:5px 14px; border-radius:99px; margin-bottom:14px;
  border:1px solid; width:fit-content;
}
.page-hero h1 {
  font-family:var(--serif); font-size:clamp(36px, 5vw, 62px);
  font-weight:500; line-height:1.1; color:#fff; margin-bottom:12px;
}
.page-hero h1 em { font-style:italic; }
.page-hero-sub {
  font-size:15px; color:rgba(255,255,255,.5);
  line-height:1.7; max-width:560px; margin-bottom:24px;
}
.page-hero-cta {
  display:inline-block; background:var(--t); color:#fff;
  font-family:var(--sans); font-size:13px; font-weight:500;
  padding:13px 28px; border-radius:3px; border:none; cursor:pointer;
  transition:background .2s; letter-spacing:.03em;
}
.page-hero-cta:hover { background:#0d8a90; }

/* BREADCRUMB */
.breadcrumb {
  padding:14px 40px; background:var(--dark2);
  border-bottom:1px solid var(--line);
  font-size:12px; color:var(--muted);
  display:flex; align-items:center; gap:8px;
}
.breadcrumb a { color:var(--muted); transition:color .2s; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { opacity:.4; }

/* CONTENT SECTIONS */
.content-section { padding:72px 40px; background:var(--dark); }
.content-section.alt { background:var(--dark2); }
.section-eyebrow { font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--t); margin-bottom:10px; }
.section-title { font-family:var(--serif); font-size:clamp(26px,3.5vw,40px); font-weight:500; color:#fff; line-height:1.15; margin-bottom:12px; }
.section-body { font-size:14px; color:rgba(255,255,255,.45); line-height:1.8; max-width:680px; }

/* SERVICE CARDS GRID */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:8px; overflow:hidden; margin-top:40px; }
.card {
  background:var(--dark2); padding:28px 24px 24px;
  display:flex; flex-direction:column; gap:12px;
  transition:background .2s; position:relative; overflow:hidden;
}
.card:hover { background:var(--dark3); }
.card-img { height:180px; border-radius:6px; overflow:hidden; margin-bottom:4px; }
.card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.card:hover .card-img img { transform:scale(1.03); }
.card-icon { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:4px; }
.card h3 { font-family:var(--serif); font-size:20px; font-weight:500; color:#fff; line-height:1.2; }
.card p { font-size:13px; color:rgba(255,255,255,.38); line-height:1.7; flex:1; }
.card-list { list-style:none; display:flex; flex-direction:column; gap:6px; margin-top:4px; }
.card-list li { font-size:12px; color:rgba(255,255,255,.38); padding-left:16px; position:relative; line-height:1.5; }
.card-list li::before { content:'—'; position:absolute; left:0; color:rgba(255,255,255,.2); }
.card-link { font-size:12px; font-weight:500; margin-top:6px; display:flex; align-items:center; gap:4px; transition:gap .2s; }
.card:hover .card-link { gap:8px; }

/* TWO-COL INTRO */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; padding:72px 40px; }
.two-col.reverse .two-col-img { order:-1; }
.two-col-img { border-radius:8px; overflow:hidden; }
.two-col-img img { width:100%; height:420px; object-fit:cover; }
.two-col-text .section-body { margin-top:12px; }
.two-col-text .page-hero-cta { margin-top:24px; }

/* TREATMENTS LIST */
.treatments { padding:0 40px 72px; }
.treatments-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:8px; overflow:hidden; margin-top:32px; }
.treatment-item { background:var(--dark2); padding:24px; display:flex; gap:18px; align-items:flex-start; transition:background .2s; }
.treatment-item:hover { background:var(--dark3); }
.treatment-num { font-family:var(--serif); font-size:32px; font-weight:500; line-height:1; opacity:.15; flex-shrink:0; width:40px; }
.treatment-title { font-size:14px; font-weight:500; color:#fff; margin-bottom:6px; }
.treatment-desc { font-size:12px; color:rgba(255,255,255,.38); line-height:1.65; }

/* PRICING CARDS */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.pricing-card {
  background:var(--dark2); border:1px solid var(--line);
  border-radius:8px; padding:28px 24px; display:flex;
  flex-direction:column; gap:6px; position:relative; overflow:hidden;
}
.pricing-card.featured { border-color:rgba(173,55,148,.4); }
.pricing-card.featured::before { content:'Most popular'; position:absolute; top:16px; right:16px; background:rgba(173,55,148,.15); color:var(--p); font-size:9px; letter-spacing:.1em; text-transform:uppercase; padding:3px 10px; border-radius:99px; border:1px solid rgba(173,55,148,.3); }
.pricing-price { font-family:var(--serif); font-size:42px; font-weight:500; color:#fff; line-height:1; margin:8px 0 4px; }
.pricing-period { font-size:12px; color:rgba(255,255,255,.35); }
.pricing-name { font-size:15px; font-weight:500; color:#fff; margin-top:12px; }
.pricing-desc { font-size:12px; color:rgba(255,255,255,.38); line-height:1.6; margin-bottom:8px; }
.pricing-perks { list-style:none; display:flex; flex-direction:column; gap:8px; margin:12px 0 20px; flex:1; }
.pricing-perks li { font-size:12px; color:rgba(255,255,255,.45); display:flex; align-items:flex-start; gap:8px; line-height:1.5; }
.pricing-perks li::before { content:'✓'; color:var(--t); flex-shrink:0; }
.pricing-btn {
  width:100%; padding:12px; font-family:var(--sans); font-size:13px;
  font-weight:500; border-radius:3px; cursor:pointer; border:1px solid;
  transition:background .2s, color .2s;
}

/* CTA BAND */
.cta-band {
  display:grid; grid-template-columns:1fr auto;
  align-items:center; gap:32px;
  padding:48px 40px; background:var(--dark2);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.cta-band h2 { font-family:var(--serif); font-size:clamp(22px,3vw,34px); font-weight:500; color:#fff; }
.cta-band p { font-size:14px; color:rgba(255,255,255,.4); margin-top:6px; }

/* FOOTER */
footer { background:#070707; border-top:1px solid var(--line); }
.footer-main { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px; padding:56px 40px 40px; }
.footer-brand img { height:34px; opacity:.9; margin-bottom:14px; mix-blend-mode:screen; }
.footer-tagline { font-size:12px; color:rgba(255,255,255,.28); line-height:1.7; margin-bottom:20px; }
.footer-social { display:flex; gap:14px; }
.footer-social a { font-size:14px; color:rgba(255,255,255,.22); transition:color .2s; font-weight:500; }
.footer-social a:hover { color:rgba(255,255,255,.6); }
.footer-col-title { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:16px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,.28); transition:color .2s; }
.footer-links a:hover { color:rgba(255,255,255,.65); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:18px 40px; border-top:1px solid var(--line); }
.footer-bottom-left { font-size:11px; color:rgba(255,255,255,.18); }
.footer-dots { display:flex; gap:8px; }
.footer-dots span { width:8px; height:8px; border-radius:50%; display:block; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr 1fr; }
  .footer-main { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav { padding:0 24px; }
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .page-hero-content { padding:36px 24px; }
  .breadcrumb { padding:12px 24px; }
  .content-section, .content-section.alt { padding:48px 24px; }
  .two-col { grid-template-columns:1fr; padding:48px 24px; }
  .two-col.reverse .two-col-img { order:0; }
  .two-col-img img { height:260px; }
  .treatments { padding:0 24px 48px; }
  .treatments-grid { grid-template-columns:1fr; }
  .cards-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .cta-band { grid-template-columns:1fr; padding:36px 24px; }
  .footer-main { grid-template-columns:1fr; padding:40px 24px; }
  .footer-bottom { flex-direction:column; gap:12px; padding:16px 24px; text-align:center; }
}
@media (max-width:480px) {
  .page-hero h1 { font-size:28px; }
}
