/* =====================================================
   SIJO PSYCHOLOGY & WELLNESS — DESIGN SYSTEM
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --cream: #F4EFE6;
  --cream-deep: #EAE2D3;
  --paper: #FAF6EE;
  --ink: #1A2332;
  --navy: #1A2332;
  --gold: #B87B6E;
  --gold-soft: #CC9489;
  --teal: #6E7C75;
  --sage: #8A9288;
  --beige: #D9C9B0;
  --beige-soft: #E6D9C2;
  --line: #D7CDBE;
  --line-soft: #E5DCCB;
  --muted: #7A7468;
  --muted-deep: #4F4A40;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r: 14px;
  --rlg: 22px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  line-height: 1.05;
}
h1 em, h2 em, h3 em { font-style: italic; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
input, textarea { font: inherit; }

/* ===================== NAV ===================== */
#site-header {
  position: sticky; top: 0; z-index: 100;
}

.nav-desktop {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}

.nav-mobile { display: none; }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer; text-decoration: none;
}
.logo-mark { width: 52px; height: 52px; object-fit: contain; display: block; }
.logo-mark.sm { width: 44px; height: 44px; }
.logo-mark.inverted { filter: brightness(0) invert(1); }
.logo-text {
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em;
  color: var(--navy); line-height: 1; display: flex; flex-direction: column;
}
.logo-text.sm { font-size: 19px; }
.logo-text.inverted { color: #F5F0E8; }
.logo-sub {
  display: block; font-style: normal; font-family: var(--sans);
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; font-weight: 500;
}
.logo-text.inverted .logo-sub { color: rgba(245,240,232,0.55); }

.nav-links {
  display: flex; gap: 36px; font-size: 13.5px;
  color: var(--navy); align-items: center;
}
.nav-item {
  cursor: pointer; text-decoration: none; color: var(--navy);
  position: relative; transition: color 0.15s;
  display: flex; align-items: center; gap: 5px;
}
.nav-item:hover, .nav-item.active { color: var(--gold); }
.has-drop { position: relative; }
.caret {
  width: 5px; height: 5px; display: inline-block;
  border-right: 1.2px solid currentColor; border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 2px;
}
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 8px; min-width: 220px;
  box-shadow: 0 12px 40px -8px rgba(26,35,50,0.16);
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 10;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { opacity: 1; pointer-events: all; }
.drop-item {
  display: block; padding: 11px 16px; border-radius: 8px;
  font-size: 13.5px; color: var(--navy); transition: background 0.1s, color 0.1s;
}
.drop-item:hover { background: var(--cream); color: var(--gold); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border: 1px solid var(--navy); border-radius: 999px;
  font-size: 13px; color: var(--navy); letter-spacing: 0.04em; font-weight: 500;
  transition: background 0.2s, color 0.2s; cursor: pointer;
}
.nav-cta:hover { background: var(--navy); color: var(--cream); }
.arr-sm {
  display: inline-block; width: 14px; height: 1px; background: currentColor;
  position: relative; vertical-align: middle;
}
.arr-sm::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===================== MOBILE MENU ===================== */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span { width: 22px; height: 1px; background: var(--navy); display: block; }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--cream); z-index: 200; flex-direction: column;
  padding: 24px 28px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mm-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 44px;
}
.mm-close { font-size: 26px; color: var(--navy); line-height: 1; }
.mm-link {
  display: block; font-family: var(--serif); font-size: 34px;
  color: var(--navy); padding: 10px 0;
  border-bottom: 1px solid var(--line-soft); cursor: pointer;
  transition: color 0.15s; background: none; text-align: left; width: 100%;
}
.mm-link:hover { color: var(--gold); }
.mm-sub { padding-left: 20px; }
.mm-sub-link { font-family: var(--sans); font-size: 15px; }
.mm-footer { margin-top: auto; padding-top: 32px; }
.btn-full { width: 100%; justify-content: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: opacity 0.2s;
  font-family: var(--sans);
}
.btn:hover { opacity: 0.82; }
.btn-primary { background: var(--navy); color: var(--cream); border: none; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-gold { background: var(--gold); color: #fff; border: none; }

/* ===================== EYEBROW ===================== */
.eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow-navy { color: var(--gold-soft); }
.eyebrow-navy::before { background: var(--gold-soft); }

/* ===================== IMAGE PLACEHOLDER ===================== */
.sj-img {
  background: repeating-linear-gradient(135deg, var(--beige-soft) 0 14px, var(--beige) 14px 28px);
  border-radius: var(--r); display: grid; place-items: center;
  position: relative; overflow: hidden; color: var(--muted-deep);
}
.sj-img::before {
  content: ""; position: absolute; inset: 16px;
  border: 1px dashed rgba(31,45,61,0.25); border-radius: 8px;
  pointer-events: none;
}
.sj-img .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--paper);
  padding: 6px 12px; border-radius: 4px; color: var(--muted-deep);
  position: relative; z-index: 1; border: 1px solid var(--line);
}

/* ===================== REAL PHOTO WRAPPER ===================== */
.sj-photo {
  border-radius: var(--r); overflow: hidden;
  background: var(--beige-soft); position: relative; display: block;
}
.sj-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo { width: 100%; height: clamp(320px,38vw,520px); border-radius: var(--rlg); }
.svc-photo-real { height: 100%; border-radius: 0; }
.home-process-v2-img.sj-photo { height: 240px; margin-bottom: 40px; }
.svc-page-hero-photo { height: 100%; min-height: clamp(260px,28vw,400px); border-radius: var(--rlg); }
.about-hero-photo { height: 100%; min-height: clamp(280px,32vw,460px); border-radius: var(--rlg); }
.clinician-photo { height: 280px; border-radius: var(--r); }
.about-office-photo { height: 520px; border-radius: var(--rlg); }

/* ===================== HERO CHIPS (icon variant) ===================== */
.hero-chips {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-chip { display: inline-flex; align-items: center; gap: 10px; }
.hero-chip-ico {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.hero-chip-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); line-height: 1.3;
  max-width: 130px;
}

/* ===================== CTA STRIP (low-band w/ bg image) ===================== */
.cta-strip {
  position: relative; height: 200px; overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.cta-strip-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cta-strip-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(244,239,230,0.96) 0%, rgba(244,239,230,0.62) 56%, rgba(244,239,230,0.10) 100%);
}
.cta-strip-inner {
  position: relative; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(22px,6vw,64px); gap: 24px;
}
.cta-strip-text { max-width: 560px; }
.cta-strip-heading {
  font-family: var(--serif); font-size: clamp(20px,2.2vw,26px);
  color: var(--navy); line-height: 1.25; margin: 0; letter-spacing: -0.01em;
}
.cta-strip-sub {
  margin-top: 8px; font-size: 14px; color: var(--muted-deep); line-height: 1.5;
}
@media (max-width: 768px) {
  .cta-strip { height: auto; padding: 32px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-chips { gap: 18px; }
  .hero-chip-lbl { max-width: none; }
}

/* ===================== TAGS ===================== */
.tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted-deep);
}

/* ===================== MONO LABEL ===================== */
.mono-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.mono-label-muted {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy); color: rgba(245,240,232,0.72);
  padding: 80px 64px 36px; font-size: 13px;
}
.footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(245,240,232,0.12);
}
.footer-col h4 {
  color: #F5F0E8; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-tagline { margin-top: 22px; max-width: 320px; line-height: 1.7; color: rgba(245,240,232,0.6); }
.footer-social { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.social-pill {
  padding: 7px 14px; border: 1px solid rgba(245,240,232,0.2);
  border-radius: 999px; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,240,232,0.7); cursor: pointer;
}
.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; letter-spacing: 0.04em;
  color: rgba(245,240,232,0.5); flex-wrap: wrap; gap: 12px;
}
.footer-legal-links { display: flex; gap: 28px; }

/* ===================== PAGE FADE ===================== */
#main { min-height: 60vh; }
.page { animation: fadeUp 0.22s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ===================== HOME — HERO ===================== */
.hero {
  padding: clamp(48px,7vw,88px) clamp(22px,6vw,64px) clamp(56px,8vw,96px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
}
.hero-headline { font-size: clamp(48px,5.5vw,84px); margin-top: 24px; line-height: 1.02; }
.hero-headline em { color: var(--gold); font-weight: 400; }
.hero-body { margin-top: 32px; font-size: 17px; line-height: 1.7; color: var(--muted-deep); max-width: 480px; }
.hero-btns { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.stat-n { font-family: var(--serif); font-size: 32px; color: var(--navy); }
.stat-l { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.hero-img-wrap { position: relative; }
.hero-float {
  position: absolute; left: -28px; bottom: 48px;
  background: var(--paper); border-radius: 14px; padding: 20px 24px;
  border: 1px solid var(--line); width: 260px;
  box-shadow: 0 24px 48px -28px rgba(20,32,46,0.25); z-index: 2;
}
.hero-float-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hero-float-title { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-top: 8px; line-height: 1.2; }
.hero-float-sub { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ===================== SCRIPT ACCENT & HERO PILLS ===================== */
.script-accent {
  font-family: "Dancing Script", cursive;
  color: var(--gold); font-size: 1.1em;
  font-style: normal; font-weight: 600; line-height: 1;
}
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-pill {
  padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted-deep); background: transparent;
}

/* ===================== SERVICES OVERVIEW ===================== */
.svc-overview { padding: clamp(56px,8vw,96px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.svc-overview-header { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; align-items: end; margin-bottom: 64px; }
.svc-overview-heading { font-size: clamp(36px,3.5vw,56px); margin-top: 20px; }
.svc-overview-heading em { color: var(--teal); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--rlg);
  padding: 36px 32px 32px; display: flex; flex-direction: column; gap: 20px;
  min-height: 340px; cursor: pointer; transition: box-shadow 0.2s;
}
.svc-card:hover { box-shadow: 0 12px 32px -8px rgba(26,35,50,0.12); }
.svc-card-header { display: flex; justify-content: space-between; align-items: baseline; }
.svc-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.16em; }
.svc-arrow { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--navy); display: grid; place-items: center; font-size: 12px; }
.svc-title { font-size: 28px; line-height: 1.15; }
.svc-desc { color: var(--muted-deep); font-size: 14.5px; line-height: 1.65; }
.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* ===================== SPECIALTY ===================== */
.specialty { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--navy); color: var(--cream); }
.specialty-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 96px; }
.specialty-heading { color: var(--cream); font-size: clamp(36px,4vw,56px); margin-top: 24px; line-height: 1.05; }
.specialty-heading em { color: var(--gold-soft); }
.specialty-body { margin-top: 28px; color: rgba(245,240,232,0.7); line-height: 1.75; font-size: 15.5px; max-width: 380px; }
.specialty-ref { margin-top: 40px; font-family: var(--mono); font-size: 12px; color: var(--gold-soft); letter-spacing: 0.16em; }
.specialty-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(245,240,232,0.12); }
.specialty-item { background: var(--navy); padding: 44px 36px; display: flex; flex-direction: column; gap: 14px; }
.specialty-item-n { font-family: var(--mono); font-size: 11px; color: var(--gold-soft); letter-spacing: 0.18em; }
.specialty-item-title { color: var(--cream); font-size: 26px; }
.specialty-item-desc { color: rgba(245,240,232,0.65); font-size: 14px; line-height: 1.65; }
.specialty-item-link { margin-top: auto; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); cursor: pointer; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-heading { font-size: clamp(36px,4vw,52px); margin-top: 20px; max-width: 720px; margin-inline: auto; line-height: 1.1; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 24px; align-items: start; }
.testimonial { border-radius: var(--rlg); padding: 32px 28px; }
.testimonial.feature { background: var(--paper); border: 1px solid var(--line); padding: 44px 36px; }
.testimonial.plain { border: 1px solid var(--line-soft); }
.testimonial-quote { font-family: var(--serif); font-size: 48px; color: var(--gold); line-height: 0.5; margin-bottom: 12px; }
.testimonial-text { font-family: var(--serif); line-height: 1.4; color: var(--navy); }
.testimonial.feature .testimonial-text { font-size: 24px; }
.testimonial.plain .testimonial-text { font-size: 20px; }
.testimonial-footer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.testimonial-name { font-size: 13px; color: var(--navy); font-weight: 500; }
.testimonial-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ===================== TEAM PREVIEW ===================== */
.team-preview { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); }
.team-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.team-heading { font-size: clamp(36px,4vw,56px); margin-top: 20px; line-height: 1.05; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card-cred { margin-top: 20px; }
.team-card-name { font-size: 24px; margin-top: 6px; }
.team-card-role { font-size: 13px; color: var(--muted-deep); margin-top: 6px; }
.team-card-bio { font-size: 13.5px; color: var(--muted-deep); margin-top: 12px; line-height: 1.6; }
.team-card-insurance { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.team-card-ins-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.team-card-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

/* ===================== CTA FULL ===================== */
.cta-full { padding: clamp(80px,8vw,140px) clamp(22px,6vw,64px) clamp(80px,10vw,160px); text-align: center; }
.cta-full-heading { font-size: clamp(44px,7vw,96px); margin-top: 28px; max-width: 1100px; margin-inline: auto; line-height: 1; }
.cta-full-heading em { color: var(--gold); }
.cta-full-body { margin-top: 32px; font-size: 17px; color: var(--muted-deep); max-width: 540px; margin-inline: auto; line-height: 1.7; }
.cta-full-btns { display: flex; gap: 14px; margin-top: 44px; justify-content: center; flex-wrap: wrap; }

/* ===================== ABOUT ===================== */
.about-hero { padding: 0; overflow: hidden; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(360px,42vw,560px); }
.about-hero-text { padding: clamp(40px,5vw,72px) clamp(32px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.about-hero-heading { font-size: clamp(34px,4.4vw,60px); line-height: 1.04; margin-top: 16px; }
.about-hero-heading em { color: var(--gold); }
.about-hero-body { margin-top: 24px; font-size: 16px; color: var(--muted-deep); line-height: 1.7; max-width: 440px; }
.about-hero-img { overflow: hidden; }
.about-hero-img .sj-img { height: 100%; border-radius: 0; }
.about-mission { padding: clamp(56px,6vw,96px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; }
.about-mission-heading { font-size: clamp(32px,3.5vw,48px); margin-top: 24px; line-height: 1.05; }
.about-mission-heading em { color: var(--teal); }
.about-mission-text { font-size: 18px; color: var(--muted-deep); line-height: 1.75; font-family: var(--serif); }
.about-values { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.about-values-header { text-align: center; margin-bottom: 64px; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-item { border-top: 1px solid var(--gold); padding-top: 24px; }
.value-n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); }
.value-title { font-size: 28px; margin-top: 12px; }
.value-desc { margin-top: 14px; color: var(--muted-deep); font-size: 14.5px; line-height: 1.65; }
.about-team { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); }
.about-team-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.clinician-list { display: flex; flex-direction: column; gap: 20px; }
.clinician-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--rlg);
  padding: 28px; display: grid; grid-template-columns: 260px 1fr 280px; gap: 36px; align-items: start;
}
.clinician-cred { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; }
.clinician-name { font-size: 32px; margin-top: 6px; }
.clinician-role { font-size: 13.5px; color: var(--muted-deep); margin-top: 6px; letter-spacing: 0.02em; }
.clinician-bio { margin-top: 20px; font-family: var(--serif); font-size: 18px; line-height: 1.55; color: var(--ink); }
.clinician-mods { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.clinician-aside { border-left: 1px solid var(--line); padding-left: 28px; }
.clinician-ins-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.clinician-ins-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.clinician-ins-item { font-size: 14px; color: var(--navy); display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft); }
.clinician-ins-check { color: var(--gold); }
.clinician-book {
  margin-top: 20px; width: 100%; padding: 12px 16px; border: 1px solid var(--navy);
  border-radius: 999px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); background: transparent; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.clinician-book:hover { background: var(--navy); color: var(--cream); }
.about-office { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.about-office-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-office-heading { font-size: clamp(32px,3.5vw,48px); margin-top: 20px; line-height: 1.05; }
.about-office-body { margin-top: 22px; color: var(--muted-deep); line-height: 1.7; font-size: 15.5px; }
.about-office-details { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-office-detail-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--muted); }

/* ===================== SERVICES PAGE ===================== */
.svc-page-header { padding: clamp(48px,5vw,72px) clamp(22px,6vw,64px) 0; border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.svc-page-breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
.svc-page-title-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: stretch; margin-top: 40px; }
.svc-page-title-left { padding-bottom: clamp(40px,5vw,64px); display: flex; flex-direction: column; justify-content: flex-start; }
.svc-page-heading { font-size: clamp(44px,5.5vw,80px); line-height: 1; }
.svc-page-heading em { color: var(--gold); }
.svc-page-intro { font-size: 16px; color: var(--muted-deep); line-height: 1.7; margin-top: 24px; }
.svc-page-hero-img { overflow: hidden; min-height: clamp(280px,35vw,500px); }
.svc-page-hero-img .sj-img { height: 100%; border-radius: 0; }
.svc-tabs { padding: 28px clamp(22px,6vw,64px); border-bottom: 1px solid var(--line-soft); display: flex; gap: 40px; flex-wrap: wrap; }
.svc-tab { font-size: 13px; letter-spacing: 0.04em; color: var(--muted); padding-bottom: 10px; cursor: pointer; transition: color 0.15s; }
.svc-tab.active { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gold); }
.svc-tab:hover { color: var(--navy); }
.svc-hero-img { padding: clamp(32px,4vw,48px) clamp(22px,6vw,64px) clamp(40px,5vw,64px); }
.svc-list-section { padding: clamp(40px,5vw,64px) clamp(22px,6vw,64px) clamp(56px,7vw,96px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.svc-list-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 96px; }
.svc-list-sidebar-heading { font-size: clamp(32px,3.5vw,44px); margin-top: 20px; line-height: 1.05; }
.svc-list-sidebar-heading em { color: var(--teal); }
.svc-list-item { padding: 32px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr 44px; gap: 24px; align-items: start; }
.svc-list-item:first-child { border-top: 1px solid var(--line); }
.svc-list-n { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.16em; padding-top: 8px; }
.svc-list-title { font-size: clamp(19px,2vw,26px); line-height: 1.2; }
.svc-list-desc { margin-top: 12px; color: var(--muted-deep); font-size: 15px; line-height: 1.65; max-width: 540px; }
.svc-list-meta { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.svc-list-arrow { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--navy); display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.svc-process { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.svc-process-header { text-align: center; margin-bottom: 64px; }
.svc-process-heading { font-size: clamp(36px,4vw,56px); margin-top: 20px; }
.svc-steps { display: grid; grid-template-columns: repeat(4,1fr); }
.svc-step { padding: 0 clamp(16px,2vw,28px); border-right: 1px solid var(--line); }
.svc-step:last-child { border-right: none; }
.svc-step-n { font-family: var(--serif); font-size: clamp(40px,4vw,56px); color: var(--gold); line-height: 1; }
.svc-step-title { font-size: 22px; margin-top: 16px; }
.svc-step-desc { margin-top: 12px; color: var(--muted-deep); font-size: 14px; line-height: 1.65; }
.svc-faq { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.svc-faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; }
.svc-faq-heading { font-size: clamp(36px,4vw,56px); margin-top: 20px; line-height: 1.05; }
.svc-faq-heading em { color: var(--gold); }
details { border-bottom: 1px solid var(--line); padding: 24px 0; }
details:first-of-type { border-top: 1px solid var(--line); }
details summary { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.faq-q { font-family: var(--serif); font-size: clamp(17px,1.8vw,24px); color: var(--navy); line-height: 1.25; }
.faq-n { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.16em; flex-shrink: 0; }
.faq-a { margin-top: 16px; color: var(--muted-deep); font-size: 15px; line-height: 1.7; max-width: 640px; }
.svc-cta { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); text-align: center; }
.svc-cta-heading { font-size: clamp(36px,4.5vw,64px); line-height: 1.05; max-width: 900px; margin-inline: auto; }
.svc-cta-heading em { color: var(--gold); }
.svc-cta-btns { display: flex; gap: 14px; margin-top: 40px; justify-content: center; }

/* ===================== BLOG ===================== */
.blog-header { padding: clamp(48px,5vw,72px) clamp(22px,6vw,64px) clamp(32px,4vw,48px); }
.blog-issue { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
.blog-heading { font-size: clamp(48px,7vw,96px); line-height: 1; margin-top: 28px; }
.blog-subhead { margin-top: 24px; font-size: 17px; color: var(--muted-deep); max-width: 600px; line-height: 1.7; }
.blog-cats { padding: 0 clamp(22px,6vw,64px) 28px; display: flex; gap: 8px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.blog-cat { padding: 10px 20px; border-radius: 999px; font-size: 13px; letter-spacing: 0.04em; border: 1px solid var(--line); background: transparent; color: var(--navy); cursor: pointer; transition: background 0.15s, color 0.15s; }
.blog-cat.active { background: var(--navy); color: var(--cream); }
.blog-featured { padding: clamp(40px,5vw,64px) clamp(22px,6vw,64px) clamp(56px,7vw,96px); }
.blog-featured-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.blog-featured-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.blog-featured-title { font-size: clamp(32px,4vw,60px); margin-top: 24px; line-height: 1.05; }
.blog-featured-excerpt { margin-top: 24px; color: var(--muted-deep); font-size: 17px; line-height: 1.7; }
.blog-featured-meta { margin-top: 32px; display: flex; gap: 24px; align-items: center; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.blog-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--gold); display: inline-block; flex-shrink: 0; }
.blog-grid-section { padding: clamp(56px,7vw,96px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.blog-grid-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { border-top: 1px solid var(--line); padding-top: 24px; cursor: pointer; }
.blog-card-cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.blog-card-title { font-size: clamp(19px,1.8vw,26px); margin-top: 12px; line-height: 1.18; }
.blog-card-footer { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.blog-subscribe { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); text-align: center; }
.blog-subscribe-heading { font-size: clamp(36px,4vw,56px); margin-top: 20px; max-width: 800px; margin-inline: auto; line-height: 1.05; }
.subscribe-form { margin-top: 40px; display: flex; max-width: 480px; margin-inline: auto; border: 1px solid var(--navy); border-radius: 999px; overflow: hidden; background: var(--paper); }
.subscribe-input { flex: 1; border: 0; background: transparent; padding: 14px 24px; font-size: 14px; font-family: inherit; outline: none; color: var(--navy); }
.subscribe-btn { background: var(--navy); color: var(--cream); padding: 14px 28px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; border: 0; cursor: pointer; font-family: inherit; }

/* ===================== BLOG POST ===================== */
.post-header { padding: clamp(40px,5vw,64px) clamp(22px,6vw,64px) 0; text-align: center; }
.post-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.post-title { font-size: clamp(36px,5.5vw,76px); margin-top: 28px; line-height: 1.05; max-width: 1000px; margin-inline: auto; }
.post-title em { color: var(--gold); }
.post-meta { margin-top: 32px; display: flex; gap: 24px; justify-content: center; color: var(--muted); font-size: 13px; align-items: center; flex-wrap: wrap; }
.post-hero { padding: clamp(32px,4vw,56px) clamp(22px,6vw,64px) clamp(40px,5vw,64px); }
.post-body-section { padding: 0 clamp(22px,6vw,64px) clamp(56px,7vw,96px); }
.post-layout { display: grid; grid-template-columns: 180px 1fr 180px; gap: 48px; }
.post-toc-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted); }
.post-toc-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 14px; font-size: 13px; }
.post-toc-item { padding-left: 14px; border-left: 1px solid var(--line); }
.post-toc-item.active { color: var(--gold); border-left-color: var(--gold); }
.post-article { font-family: var(--serif); font-size: clamp(17px,1.5vw,21px); line-height: 1.65; color: var(--ink); max-width: 720px; margin-inline: auto; }
.post-lede { font-size: clamp(19px,1.8vw,26px); line-height: 1.5; color: var(--navy); }
.post-drop { font-family: var(--serif); font-size: clamp(52px,5vw,76px); float: left; line-height: 0.9; padding-right: 12px; padding-top: 6px; color: var(--gold); }
.post-para { margin-top: 28px; }
.post-blockquote { margin: 44px 0; padding: 32px 40px; border-left: 2px solid var(--gold); background: var(--paper); font-style: italic; font-size: clamp(19px,1.8vw,26px); color: var(--navy); line-height: 1.4; }
.post-h2 { font-size: clamp(24px,2.5vw,36px); margin-top: 56px; line-height: 1.15; }
.post-share-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted); }
.post-share-links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; align-items: flex-end; }
.post-share-link { font-size: 12px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.post-author { padding: clamp(48px,6vw,72px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.post-author-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; max-width: 1100px; margin-inline: auto; flex-wrap: wrap; }
.post-author-name { font-size: 32px; margin-top: 10px; }
.post-author-bio { margin-top: 12px; color: var(--muted-deep); font-size: 15px; line-height: 1.65; max-width: 540px; }
.post-related { padding: clamp(56px,7vw,96px) clamp(22px,6vw,64px); }
.post-related-heading { font-size: 36px; margin-bottom: 40px; }
.post-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-related-card { border-top: 1px solid var(--line); padding-top: 24px; cursor: pointer; }
.post-related-cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.post-related-title { font-size: clamp(18px,1.8vw,24px); margin-top: 12px; line-height: 1.18; }

/* ===================== CONTACT ===================== */
.contact-header { padding: clamp(28px,3vw,48px) clamp(22px,6vw,64px) 0; }
.contact-heading { font-size: clamp(34px,4.4vw,60px); line-height: 1.05; margin-top: 16px; max-width: 760px; letter-spacing: -0.02em; }
.contact-heading em { color: var(--gold); }
.contact-subhead { margin-top: 20px; font-size: 16px; color: var(--muted-deep); line-height: 1.65; max-width: 580px; }
.contact-body { padding: clamp(48px,6vw,80px) clamp(22px,6vw,64px) clamp(72px,8vw,120px); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.contact-form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rlg); padding: clamp(32px,4vw,56px); }
.contact-form-heading { font-size: clamp(22px,2.5vw,36px); margin-top: 16px; line-height: 1.15; }
.form-fields { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-label { display: flex; flex-direction: column; gap: 8px; }
.form-label-text { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.form-input { background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 0; font-size: 16px; font-family: var(--serif); color: var(--navy); outline: none; }
.form-section-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.form-service-picks { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px; }
.service-pick { padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px; background: transparent; font-size: 14px; color: var(--navy); display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: border-color 0.15s; }
.service-pick.selected { border-color: var(--gold); background: var(--cream); }
.service-pick-radio { width: 16px; height: 16px; border-radius: 999px; border: 1px solid var(--line); flex-shrink: 0; }
.service-pick.selected .service-pick-radio { border: 5px solid var(--gold); }
.form-textarea { margin-top: 12px; border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; min-height: 140px; color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 17px; background: transparent; width: 100%; resize: none; outline: none; }
.form-pref-group { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.form-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.form-pill { padding: 8px 16px; border-radius: 999px; font-size: 13px; border: 1px solid var(--line); background: transparent; color: var(--navy); cursor: pointer; }
.form-pill.selected { background: var(--navy); color: var(--cream); }
.form-pill.selected-gold { border-color: var(--gold); background: var(--cream); }
.form-footer { margin-top: 48px; display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px; }
.form-privacy { font-size: 12px; color: var(--muted); max-width: 360px; line-height: 1.5; }
/* Contact thank-you */
.contact-thanks { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 420px; }
.thanks-icon { width: 52px; height: 52px; border-radius: 999px; background: var(--gold); color: var(--cream); display: grid; place-items: center; font-size: 22px; }
.thanks-heading { font-size: clamp(28px,3vw,44px); margin-top: 24px; line-height: 1.1; }
.thanks-heading em { color: var(--gold); }
.thanks-body { margin-top: 20px; font-size: 16px; color: var(--muted-deep); line-height: 1.7; max-width: 480px; }
.thanks-contact { margin-top: 32px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); padding-top: 24px; border-top: 1px solid var(--line); width: 100%; }
.thanks-dot { color: var(--line); }
/* Lead popup */
.popup-overlay { position: fixed; inset: 0; background: rgba(26,35,50,0.55); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px); }
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-modal { background: var(--paper); border-radius: 20px; width: 100%; max-width: 900px; display: grid; grid-template-columns: 1fr 1.2fr; overflow: hidden; position: relative; box-shadow: 0 48px 96px -24px rgba(20,32,46,0.4); max-height: 92vh; }
.popup-close { position: absolute; top: 20px; right: 20px; background: var(--line-soft); border: none; border-radius: 999px; width: 36px; height: 36px; font-size: 18px; cursor: pointer; color: var(--navy); display: grid; place-items: center; z-index: 2; }
.popup-left { background: var(--navy); color: var(--cream); padding: clamp(36px,4vw,56px); display: flex; flex-direction: column; justify-content: center; }
.popup-left .eyebrow { color: var(--gold-soft); }
.popup-heading { font-size: clamp(28px,3vw,44px); margin-top: 20px; line-height: 1.1; color: var(--cream); }
.popup-heading em { color: var(--gold); }
.popup-sub { margin-top: 20px; font-size: 15px; color: rgba(244,239,230,0.72); line-height: 1.7; }
.popup-detail { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.popup-detail-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: rgba(244,239,230,0.5); }
.popup-right { padding: clamp(32px,4vw,48px); overflow-y: auto; display: flex; flex-direction: column; gap: 0; }
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.popup-label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.popup-label.full { width: 100%; }
.popup-picks { margin-top: 12px; }
.popup-footer { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.popup-privacy { margin-top: 12px; font-size: 11px; color: var(--muted); line-height: 1.5; }
.popup-thanks { display: flex; flex-direction: column; gap: 16px; justify-content: center; height: 100%; padding: 20px 0; }
.popup-thanks-heading { font-size: clamp(24px,2.5vw,36px); line-height: 1.1; margin-top: 8px; }
.popup-thanks-heading em { color: var(--gold); }
.popup-thanks-body { font-size: 15px; color: var(--muted-deep); line-height: 1.7; }
.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { border: 1px solid var(--line); border-radius: var(--rlg); padding: 32px; }
.contact-info-card.cream { background: var(--cream-deep); }
.contact-info-card.navy { background: var(--navy); color: var(--cream); }
.contact-address { font-size: 24px; margin-top: 14px; line-height: 1.2; }
.contact-directions { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--clay); text-decoration: none; font-family: var(--mono); letter-spacing: 0.06em; }
.contact-directions:hover { text-decoration: underline; }
.about-office-directions { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--clay); text-decoration: none; font-family: var(--mono); letter-spacing: 0.06em; }
.about-office-directions:hover { text-decoration: underline; }
.contact-hours { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.contact-hours-row { display: flex; justify-content: space-between; }
.contact-hours-day { color: var(--muted); }
.contact-phone { font-size: 28px; margin-top: 14px; font-family: var(--serif); }
.contact-phone-note { margin-top: 12px; font-size: 13px; color: var(--muted-deep); line-height: 1.65; }
.crisis-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold-soft); }
.crisis-text { margin-top: 14px; font-size: 14px; line-height: 1.65; color: rgba(245,240,232,0.78); }
.contact-map { padding: 0 clamp(22px,6vw,64px) clamp(72px,8vw,120px); }
.contact-map iframe { height: 420px; border-radius: var(--rlg); }

/* ===================== HOME — SERVICES PHOTO FORWARD ===================== */
.svc-photo-section { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.svc-photo-header { text-align: center; margin-bottom: 56px; }
.svc-photo-heading { font-size: clamp(28px,3.2vw,46px); margin-top: 20px; max-width: 680px; margin-inline: auto; line-height: 1.15; }
.svc-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-photo-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--rlg); overflow: hidden; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; }
.svc-photo-card:hover { box-shadow: 0 12px 36px -8px rgba(26,35,50,0.13); transform: translateY(-2px); }
.svc-photo-img-wrap { height: 240px; overflow: hidden; }
.svc-photo-img-wrap .sj-img { height: 100%; border-radius: 0; }
.svc-photo-content { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; background: var(--cream); }
.svc-photo-title { font-size: 22px; line-height: 1.2; }
.svc-photo-desc { font-size: 13.5px; color: var(--muted-deep); line-height: 1.65; margin-top: 10px; }
.svc-photo-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-soft); }
.svc-photo-list li { font-size: 13px; color: var(--muted-deep); display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.svc-photo-list li::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: var(--gold); flex-shrink: 0; }
.svc-photo-link { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); font-weight: 500; cursor: pointer; margin-top: 22px; display: flex; align-items: center; gap: 6px; }

/* ===================== HOME — PROCESS V2 ===================== */
.home-process-v2 { display: grid; grid-template-columns: 1fr 1.25fr; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.home-process-v2-left { padding: clamp(56px,6vw,96px) clamp(32px,4vw,64px); display: flex; flex-direction: column; justify-content: flex-start; background: var(--cream-deep); }
.home-process-v2-img { border-radius: var(--r); margin-bottom: 40px; height: 240px; overflow: hidden; }
.home-process-v2-img .sj-img { height: 100%; border-radius: var(--r); }
.home-process-v2-heading { font-size: clamp(28px,3.2vw,46px); margin-top: 20px; line-height: 1.1; }
.home-process-v2-heading em { color: var(--teal); }
.home-process-v2-right { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line-soft); }
.home-process-v2-step { padding: clamp(28px,3vw,44px); border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 12px; background: var(--paper); }
.home-process-v2-step:nth-child(2), .home-process-v2-step:nth-child(4) { border-right: none; }
.home-process-v2-step:nth-child(3), .home-process-v2-step:nth-child(4) { border-bottom: none; }
.home-process-v2-n { font-family: var(--serif); font-size: 15px; color: var(--navy); font-weight: 400; }
.home-process-v2-desc { font-size: 14px; color: var(--muted-deep); line-height: 1.65; }

/* ===================== HOME — FORM V2 ===================== */
.home-form-v2 { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.home-form-v2-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.home-form-v2-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase; display: block; }
.home-form-v2-heading { font-size: clamp(28px,3.5vw,48px); line-height: 1.05; margin-top: 16px; }
.home-form-v2-heading em { color: var(--gold); }
.home-form-v2-body { margin-top: 20px; font-size: 15px; color: var(--muted-deep); line-height: 1.75; }
.home-form-v2-badge { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-deep); padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.home-form-v2-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rlg); padding: clamp(28px,3vw,44px); display: flex; flex-direction: column; gap: 0; }
.home-form-v2-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.home-form-v2-select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; font-size: 15px; font-family: var(--sans); color: var(--navy); background: var(--cream); outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7468' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.home-form-v2-radios { display: flex; gap: 10px; flex-wrap: wrap; }
.home-form-v2-radio { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 13px; color: var(--navy); transition: border-color 0.15s, background 0.15s; background: var(--cream); }
.home-form-v2-radio.selected { border-color: var(--gold); background: var(--cream-deep); }
.home-form-v2-radio-dot { width: 14px; height: 14px; border-radius: 999px; border: 1px solid var(--line); flex-shrink: 0; display: inline-block; }
.home-form-v2-radio.selected .home-form-v2-radio-dot { border: 4px solid var(--gold); }
.home-form-v2-textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; min-height: 100px; color: var(--navy); font-family: var(--serif); font-size: 16px; background: transparent; resize: none; outline: none; }
.home-form-v2-textarea::placeholder { color: var(--muted); font-style: italic; }
.home-form-v2-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.home-form-v2-input { border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; font-size: 15px; font-family: var(--sans); color: var(--navy); background: transparent; outline: none; width: 100%; }
.home-form-v2-input::placeholder { color: var(--muted); }
.home-form-v2-submit { width: 100%; padding: 16px; background: var(--navy); color: var(--cream); border-radius: 999px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; cursor: pointer; border: none; font-family: var(--sans); transition: opacity 0.2s; }
.home-form-v2-submit:hover { opacity: 0.85; }

/* ===================== HOME — FAQ V2 ===================== */
.home-faq-v2 { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); background: var(--paper); border-top: 1px solid var(--line-soft); }
.home-faq-v2-header { text-align: center; margin-bottom: 56px; }
.home-faq-v2-heading { font-size: clamp(36px,4.5vw,64px); margin-top: 20px; }
.home-faq-v2-grid { display: grid; grid-template-columns: 1fr 1fr; }
.home-faq-v2-item { padding: 24px 28px; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); cursor: pointer; transition: background 0.15s; }
.home-faq-v2-item:nth-child(even) { border-right: none; }
.home-faq-v2-item:nth-child(5), .home-faq-v2-item:nth-child(6) { border-bottom: none; }
.home-faq-v2-item:hover { background: var(--cream-deep); }
.home-faq-v2-item-q { font-family: var(--serif); font-size: clamp(15px,1.4vw,19px); color: var(--navy); line-height: 1.3; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.home-faq-v2-item-a { font-size: 14px; color: var(--muted-deep); line-height: 1.7; margin-top: 14px; display: none; }
.home-faq-v2-item.open .home-faq-v2-item-a { display: block; }
.home-faq-v2-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.home-faq-v2-item.open .home-faq-v2-icon { transform: rotate(45deg); }

/* ===================== SERVICE PAGE V3 (matches design) ===================== */
.svc-v3-hero { padding: clamp(28px,3vw,48px) clamp(22px,6vw,64px) clamp(40px,5vw,72px); }
.svc-v3-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px,5vw,72px); margin-top: 18px; align-items: center; }
.svc-v3-hero-title { font-family: var(--serif); font-size: clamp(34px,4.4vw,60px); line-height: 1.05; font-weight: 400; color: var(--navy); margin: 0; letter-spacing: -0.02em; }
.svc-v3-hero-title em { color: var(--gold); font-weight: 400; }
.svc-v3-hero-summary { margin-top: 22px; font-size: 17px; line-height: 1.65; color: var(--muted-deep); max-width: 540px; }
.svc-v3-hero-btns { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.svc-v3-hero-photo { height: clamp(280px,32vw,440px); border-radius: var(--rlg); overflow: hidden; }
.svc-v3-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.svc-v3-who { padding: clamp(56px,7vw,96px) clamp(22px,6vw,64px); margin: 0 clamp(22px,6vw,64px); background: var(--paper); border-radius: var(--rlg); }
.svc-v3-who-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px,5vw,64px); }
.svc-v3-who-heading { font-family: var(--serif); font-size: clamp(28px,3.2vw,36px); line-height: 1.15; margin: 12px 0 0; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; }
.svc-v3-who-note { margin-top: 16px; font-size: 15px; color: var(--muted-deep); line-height: 1.65; }
.svc-v3-who-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.svc-v3-who-item { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; align-items: baseline; }
.svc-v3-who-item-t { font-family: var(--serif); font-size: 22px; color: var(--navy); line-height: 1.25; }
.svc-v3-who-item-b { font-size: 14.5px; color: var(--muted-deep); line-height: 1.65; }

.svc-v3-mods { padding: clamp(72px,8vw,120px) clamp(22px,6vw,64px); }
.svc-v3-mods-header { text-align: center; margin-bottom: 44px; }
.svc-v3-mods-heading { font-family: var(--serif); font-size: clamp(30px,3.4vw,42px); margin-top: 14px; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; }
.svc-v3-mods-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.svc-v3-mod-card { padding: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; display: flex; gap: 18px; align-items: flex-start; }
.svc-v3-mod-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-deep); color: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; }
.svc-v3-mod-title { font-family: var(--serif); font-size: 19px; line-height: 1.25; color: var(--navy); margin: 2px 0 0; font-weight: 400; }
.svc-v3-mod-body { margin-top: 6px; font-size: 13.5px; color: var(--muted-deep); line-height: 1.6; }

.svc-v3-proc { padding: clamp(48px,6vw,84px) clamp(22px,6vw,64px); margin: 0 clamp(22px,6vw,64px) clamp(48px,6vw,84px); background: var(--cream-deep); border-radius: var(--rlg); }
.svc-v3-proc-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; align-items: flex-start; }
.svc-v3-proc-heading { font-family: var(--serif); font-size: clamp(24px,2.6vw,32px); margin-top: 12px; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }
.svc-v3-proc-steps { display: flex; justify-content: space-between; gap: 20px; padding-top: 6px; }
.svc-v3-proc-step { flex: 1; max-width: 170px; text-align: center; }
.svc-v3-proc-ico { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.svc-v3-proc-num { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.svc-v3-proc-body { font-size: 12.5px; color: var(--muted-deep); line-height: 1.55; }

.svc-v3-faq { padding: clamp(64px,8vw,100px) clamp(22px,6vw,64px); }
.svc-v3-faq-header { text-align: center; margin-bottom: 36px; }
.svc-v3-faq-heading { font-family: var(--serif); font-size: clamp(28px,3.2vw,38px); margin-top: 12px; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; }
.svc-v3-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
.svc-v3-faq-item { padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: border-color 0.15s; }
.svc-v3-faq-item:hover { border-color: var(--gold-soft); }
.svc-v3-faq-q { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px; line-height: 1.4; }
.svc-v3-faq-icon { font-size: 18px; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.svc-v3-faq-item.open .svc-v3-faq-icon { transform: rotate(45deg); }
.svc-v3-faq-a { margin-top: 12px; font-size: 13.5px; color: var(--muted-deep); line-height: 1.65; display: none; }
.svc-v3-faq-item.open .svc-v3-faq-a { display: block; }

.svc-v3-cta { padding: 0 clamp(22px,6vw,64px) clamp(72px,8vw,120px); }
.svc-v3-cta-card { background: var(--navy); color: #FAF6F1; border-radius: var(--rlg); padding: clamp(36px,5vw,56px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.svc-v3-cta-text { flex: 1; min-width: 280px; }
.svc-v3-cta-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }
.svc-v3-cta-heading { font-family: var(--serif); font-size: clamp(24px,2.5vw,32px); color: #FAF6F1; margin: 12px 0 8px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }
.svc-v3-cta-heading em { color: var(--gold-soft); }
.svc-v3-cta-body { font-size: 14px; color: #C7B8AC; line-height: 1.55; max-width: 480px; }

/* ===================== BLOG / RESOURCES V2 (matches design) ===================== */
.blog-v2-header { padding: clamp(28px,3vw,48px) clamp(22px,6vw,64px) clamp(36px,4vw,56px); }
.blog-v2-heading { font-family: var(--serif); font-size: clamp(36px,4.4vw,56px); line-height: 1.1; font-weight: 400; color: var(--navy); margin: 16px 0 0; max-width: 880px; letter-spacing: -0.02em; }
.blog-v2-heading em { color: var(--gold); }
.blog-v2-cats { display: flex; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.blog-v2-cat { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--navy); cursor: pointer; transition: all 0.15s; }
.blog-v2-cat:hover { border-color: var(--navy); }
.blog-v2-cat.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.blog-v2-featured-wrap { padding: 0 clamp(22px,6vw,64px) clamp(40px,5vw,56px); }
.blog-v2-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; cursor: pointer; background: var(--paper); border-radius: var(--rlg); overflow: hidden; transition: box-shadow 0.2s; }
.blog-v2-featured:hover { box-shadow: 0 18px 48px -12px rgba(26,35,50,0.14); }
.blog-v2-featured-photo { height: clamp(280px,32vw,400px); border-radius: 0; }
.blog-v2-featured-right { padding: clamp(28px,3.5vw,40px); display: flex; flex-direction: column; justify-content: center; }
.blog-v2-featured-cat { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.blog-v2-featured-title { font-family: var(--serif); font-size: clamp(24px,2.6vw,32px); line-height: 1.18; font-weight: 400; color: var(--navy); margin: 14px 0 0; letter-spacing: -0.01em; }
.blog-v2-featured-excerpt { margin-top: 14px; font-size: 15px; color: var(--muted-deep); line-height: 1.6; }
.blog-v2-featured-meta { margin-top: 22px; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.blog-v2-featured-cta { margin-top: 16px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

.blog-v2-grid-wrap { padding: 0 clamp(22px,6vw,64px) clamp(72px,8vw,120px); }
.blog-v2-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-v2-card { cursor: pointer; display: flex; flex-direction: column; transition: transform 0.2s; }
.blog-v2-card:hover { transform: translateY(-3px); }
.blog-v2-card-photo { height: 220px; border-radius: var(--r); margin-bottom: 18px; }
.blog-v2-card-cat { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.blog-v2-card-title { font-family: var(--serif); font-size: 21px; line-height: 1.25; font-weight: 400; color: var(--navy); margin: 10px 0 0; letter-spacing: -0.01em; }
.blog-v2-card-excerpt { margin-top: 10px; font-size: 13.5px; color: var(--muted-deep); line-height: 1.6; }
.blog-v2-card-foot { margin-top: 14px; font-family: var(--sans); font-size: 12px; color: var(--muted); }
.blog-v2-empty { grid-column: 1/-1; text-align: center; padding: 48px; color: var(--muted); font-family: var(--sans); font-size: 14px; }

/* contact aside photo */
.contact-side-photo { height: 220px; border-radius: var(--r); }

@media (max-width: 1024px) {
  .blog-v2-featured { grid-template-columns: 1fr; }
  .blog-v2-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .blog-v2-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .svc-v3-hero-grid { grid-template-columns: 1fr; }
  .svc-v3-hero-photo { height: clamp(220px,40vw,360px); }
  .svc-v3-who-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-v3-mods-grid { grid-template-columns: 1fr; }
  .svc-v3-proc-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-v3-proc-steps { flex-wrap: wrap; gap: 24px; justify-content: flex-start; }
  .svc-v3-proc-step { max-width: 200px; flex: 1 1 40%; }
  .svc-v3-faq-grid { grid-template-columns: 1fr; }
  .svc-v3-cta-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .clinician-card { grid-template-columns: 200px 1fr; }
  .clinician-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; grid-column: 1/-1; }
  .svc-overview-header { grid-template-columns: 1fr; gap: 32px; }
  .specialty-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-photo-grid { grid-template-columns: 1fr 1fr; }
  .home-process-v2 { grid-template-columns: 1fr; }
  .home-process-v2-right { border-left: none; border-top: 1px solid var(--line-soft); }
  .home-form-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-faq-v2-grid { grid-template-columns: 1fr; }
  .home-faq-v2-item { border-right: none !important; }
  .home-faq-v2-item:nth-child(5) { border-bottom: 1px solid var(--line-soft) !important; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-img { min-height: 300px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-page-title-grid { grid-template-columns: 1fr; }
  .svc-page-hero-img { min-height: 260px; }
  .popup-modal { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .popup-left { padding: 32px; }
  .svc-list-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-office-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-layout aside { display: none; }
  .blog-featured-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; background: var(--cream); border-bottom: 1px solid var(--line-soft); }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-float { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer { padding: 48px 22px 28px; }
  .svc-steps { grid-template-columns: 1fr 1fr; }
  .svc-step { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-related-grid { grid-template-columns: 1fr; }
  .form-fields { grid-template-columns: 1fr; }
  .form-service-picks { grid-template-columns: 1fr; }
  .form-pref-group { grid-template-columns: 1fr; }
  .clinician-card { grid-template-columns: 1fr; }
  .post-author-grid { grid-template-columns: 1fr; }
  .svc-photo-grid { grid-template-columns: 1fr; }
  .home-form-v2-fields-row { grid-template-columns: 1fr; }
  .home-process-v2-right { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; }
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page { max-width: 860px; margin: 0 auto; padding: 72px 48px 120px; }
.legal-header { padding-bottom: 48px; border-bottom: 1px solid var(--line); margin-bottom: 64px; }
.legal-breadcrumb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--muted); margin-bottom: 24px; }
.legal-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 400; color: var(--navy); line-height: 1.05; margin-bottom: 20px; }
.legal-meta { font-size: 13px; color: var(--muted-deep); line-height: 1.65; max-width: 640px; }
.legal-body { display: flex; flex-direction: column; gap: 48px; }
.legal-section { }
.legal-section-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.legal-p { font-size: 15px; color: var(--muted-deep); line-height: 1.8; margin-top: 12px; }
.legal-p:first-of-type { margin-top: 0; }
.legal-list { margin: 12px 0 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-list li { font-size: 15px; color: var(--muted-deep); line-height: 1.75; }
.footer-legal-links a { color: var(--muted); text-decoration: none; }
.footer-legal-links a:hover { color: var(--navy); }
@media (max-width: 768px) {
  .legal-page { padding: 48px 24px 80px; }
}
