:root {
  --ink: #0a1612;
  --ink-soft: #152821;
  --sage: #2a6b5a;
  --sage-bright: #3d9a7e;
  --sage-glow: rgba(61, 154, 126, 0.18);
  --mist: #e4efe9;
  --cream: #f7f4ee;
  --paper: #fffcf7;
  --line: rgba(10, 22, 18, 0.1);
  --text: #182621;
  --muted: #5c6e66;
  --white: #fff;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

/* Nav */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 5px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; opacity: 0.9; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,14,12,.82) 0%, rgba(6,14,12,.45) 48%, rgba(6,14,12,.2) 100%),
    linear-gradient(180deg, rgba(6,14,12,.25) 0%, rgba(6,14,12,.05) 40%, rgba(6,14,12,.88) 100%),
    url("/assets/hero.jpg") center/cover no-repeat;
  transform: scale(1.03);
  animation: heroDrift 20s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(0,-1%,0); }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(20px, 4vw, 56px) clamp(52px, 9vw, 96px);
  max-width: 760px;
  opacity: 0;
  transform: translateY(22px);
  animation: riseIn .95s cubic-bezier(.22,1,.36,1) .12s forwards;
}
@keyframes riseIn { to { opacity: 1; transform: none; } }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(2.7rem, 7.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 36ch;
  color: rgba(255,255,255,.88);
  margin-bottom: 30px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll {
  position: absolute; z-index: 2; right: clamp(20px, 4vw, 56px); bottom: 28px;
  font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55); writing-mode: vertical-rl;
  animation: pulseFade 2.8s ease-in-out infinite;
}
@keyframes pulseFade {
  0%, 100% { opacity: .45; }
  50% { opacity: .9; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 12px 22px;
  border-radius: 999px; font-weight: 650; font-size: 0.95rem;
  border: 0; cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--sage-bright); color: #fff;
  box-shadow: 0 10px 28px rgba(61,154,126,.35);
}
.btn-primary:hover { background: #48b090; }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); }
.btn-outline {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust article {
  padding: clamp(22px, 3vw, 32px) clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust article:last-child { border-right: 0; }
.trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.trust span { color: rgba(255,255,255,.65); font-size: 0.92rem; }

/* Sections */
.section { padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 56px); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-head { max-width: 580px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.wide { max-width: 720px; }
.section-kicker {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 14px; color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.band-mist { background: var(--mist); }
.band-paper { background: var(--paper); }
.band-ink { background: var(--ink); color: #fff; }
.band-ink .section-head h2 { color: #fff; }
.band-ink .section-head p { color: rgba(255,255,255,.72); }
.band-ink .section-kicker { color: var(--sage-bright); }

/* Pathways */
.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pathway {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  isolation: isolate;
  transition: transform .25s;
}
.pathway:hover { transform: translateY(-3px); }
.pathway::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.pathway:hover::before { transform: scale(1.05); }
.pathway::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,16,14,.15), rgba(8,16,14,.88));
}
.pathway.glp1::before { background-image: url("/assets/path-glp1.jpg"); }
.pathway.medical::before { background-image: url("/assets/path-medical.jpg"); }
.pathway.virtual::before { background-image: url("/assets/path-virtual.jpg"); }
.pathway h3 {
  font-family: var(--font-display);
  font-size: 1.55rem; letter-spacing: -0.02em; margin-bottom: 8px;
}
.pathway p { color: rgba(255,255,255,.82); font-size: 0.95rem; margin-bottom: 16px; max-width: 28ch; }
.pathway .btn { align-self: flex-start; min-height: 42px; font-size: 0.88rem; }

/* Cities */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.city-chip {
  appearance: none; border: 1px solid var(--line); background: #fff;
  color: var(--ink); padding: 18px 16px; text-align: left; cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  font-weight: 650;
}
.city-chip span {
  display: block; margin-top: 5px; font-size: 0.78rem; font-weight: 500; color: var(--muted);
}
.city-chip:hover, .city-chip.active {
  border-color: var(--sage); background: #f1faf6;
  transform: translateY(-1px); box-shadow: 0 10px 24px rgba(10,22,18,.06);
}

/* Clinics */
.clinic-tools {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 8px;
}
.clinic-tools select, .clinic-tools input {
  min-height: 46px; padding: 10px 14px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); min-width: 190px;
}
.clinic-count {
  margin: 8px 0 18px; color: var(--muted); font-size: 0.9rem; font-weight: 600;
}
.clinic-list { display: grid; gap: 12px; }
.clinic-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 18px;
  align-items: stretch;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0; transform: translateY(12px);
  animation: riseIn .55s ease forwards;
}
.clinic-row:nth-child(1){animation-delay:.04s}
.clinic-row:nth-child(2){animation-delay:.08s}
.clinic-row:nth-child(3){animation-delay:.12s}
.clinic-row:nth-child(4){animation-delay:.16s}
.clinic-row:nth-child(5){animation-delay:.2s}
.clinic-row:nth-child(6){animation-delay:.24s}
.clinic-mono {
  grid-row: 1 / -1;
  width: 72px;
  min-height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--ink) 0%, #1f3d34 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: -0.02em;
}
.clinic-row.featured .clinic-mono {
  background: linear-gradient(160deg, #1d4f40 0%, var(--sage-bright) 100%);
}
.clinic-main {
  padding: 18px 20px 0 0;
  min-width: 0;
}
.clinic-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
}
.clinic-heading { min-width: 0; flex: 1 1 220px; }
.clinic-name {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: -0.02em; color: var(--ink);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  line-height: 1.2;
}
.clinic-meta { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }
.clinic-blurb {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.95rem;
  max-width: 68ch;
  line-height: 1.55;
}
.clinic-detail {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 68ch;
  line-height: 1.45;
}
.clinic-detail strong { color: var(--ink); font-weight: 650; }
.clinic-lock {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.seo-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 22px 20px;
}
.seo-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.seo-block p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.seo-block a { color: var(--sage); font-weight: 700; font-size: 0.9rem; }
.seo-block a:hover { text-decoration: underline; }
.match-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}
.match-promise span {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 650;
  color: rgba(255,255,255,.88);
}
.dir-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  background: var(--mist);
  border-left: 3px solid var(--sage);
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 72ch;
}
.clinic-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px 20px 18px 0;
  min-width: 0;
}
.tag {
  font-size: 0.74rem; font-weight: 650; color: var(--sage);
  background: var(--sage-glow); padding: 6px 10px;
  white-space: nowrap;
}
.mode-pill,
.featured-mark {
  display: inline-flex; align-items: center;
  font-size: 0.66rem; font-weight: 750; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 8px; line-height: 1;
}
.mode-pill { color: var(--ink); background: var(--mist); }
.featured-mark { color: #fff; background: var(--sage); }
.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}
.clinic-actions .btn {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.86rem;
}
.empty-state { padding: 40px 0; color: var(--muted); }

/* Split editorial */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split-media {
  min-height: 420px;
  background: center/cover no-repeat url("/assets/consult.jpg");
  box-shadow: 0 30px 70px rgba(10,22,18,.16);
}
.split-media.alt { background-image: url("/assets/care.jpg"); background-position: center top; }
.check-list { display: grid; gap: 14px; margin-top: 22px; }
.check-list li {
  list-style: none; padding-left: 28px; position: relative; color: var(--muted);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--sage-bright); box-shadow: 0 0 0 4px var(--sage-glow);
}
.check-list strong { display: block; color: var(--ink); margin-bottom: 2px; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-body); font-size: 1.4rem; color: var(--sage);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: 12px; color: var(--muted); max-width: 68ch; font-size: 1rem;
}

/* Match */
.match {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.match-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(6px);
}
.match-panel h3 {
  font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 8px;
}
.match-panel > p { color: rgba(255,255,255,.7); margin-bottom: 22px; }
.form-grid { display: grid; gap: 12px; }
.form-grid.two { grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label {
  display: grid; gap: 6px; font-size: 0.85rem; font-weight: 650;
  color: rgba(255,255,255,.82);
}
.form-grid input, .form-grid select, .form-grid textarea {
  min-height: 46px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07); color: #fff;
}
.form-grid textarea { min-height: 96px; resize: vertical; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255,255,255,.42); }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,.55); margin-top: 10px; }
.form-status { margin-top: 12px; min-height: 1.2em; font-size: 0.92rem; font-weight: 650; }
.form-status.ok { color: #8fe0c4; }
.form-status.err { color: #ffb4b4; }
.match-points { display: grid; gap: 18px; padding-top: 8px; }
.match-points li { list-style: none; color: rgba(255,255,255,.78); }
.match-points strong {
  display: block; font-family: var(--font-display); font-size: 1.25rem;
  color: #fff; margin-bottom: 4px;
}

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  counter-reset: step;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.1rem; color: var(--sage);
  display: block; margin-bottom: 10px; letter-spacing: -0.02em;
}
.step h3 {
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; color: var(--ink);
}
.step p { color: var(--muted); }

.partner-cta {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end;
  gap: 20px; border-top: 1px solid var(--line); padding-top: 36px; margin-top: 40px;
}
.partner-cta h3 {
  font-family: var(--font-display); font-size: 1.65rem; color: var(--ink); margin-bottom: 6px;
}
.partner-cta p { color: var(--muted); max-width: 44ch; }

.footer {
  padding: 40px clamp(20px, 4vw, 56px) 52px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between; color: var(--muted); font-size: 0.9rem;
  background: var(--paper);
}
.footer a:hover { color: var(--sage); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.disclaimer {
  max-width: 1140px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 36px;
  font-size: 0.78rem; color: var(--muted);
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(8,16,14,.88), rgba(8,16,14,.55)),
    url("/assets/clinic-space.jpg") center/cover no-repeat;
  color: #fff;
  padding: 120px clamp(20px, 4vw, 56px) 64px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  letter-spacing: -0.03em; max-width: 14ch; margin: 28px 0 14px;
}
.page-hero p { max-width: 48ch; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.prose { max-width: 760px; }
.prose p + p { margin-top: 14px; }
.prose h2 {
  font-family: var(--font-display); font-size: 1.7rem; margin: 32px 0 12px; color: var(--ink);
}
.pricing {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 28px;
}
.price-block {
  border: 1px solid var(--line); background: #fff; padding: 26px;
  transition: transform .2s, box-shadow .2s;
}
.price-block:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(10,22,18,.08); }
.price-block h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 6px; }
.price-block .amount {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--sage); margin: 14px 0;
}
.price-block ul {
  list-style: none; display: grid; gap: 8px; color: var(--muted);
  font-size: 0.95rem; margin-bottom: 18px;
}

@media (max-width: 960px) {
  .pathways, .split, .match, .steps, .trust, .seo-grid, .match-promise { grid-template-columns: 1fr; }
  .trust article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .clinic-row { grid-template-columns: 56px 1fr; }
  .clinic-mono { width: 56px; font-size: 1rem; }
  .clinic-main { padding: 14px 14px 0 0; }
  .clinic-tags { padding: 12px 14px 16px 0; }
  .clinic-top { flex-direction: column; align-items: stretch; }
  .clinic-actions { margin-left: 0; justify-content: flex-start; }
  .clinic-actions .btn { flex: 1 1 auto; }
  .form-grid.two { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-scroll { display: none; }
  .split-media { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media, .hero-content, .clinic-row, .hero-scroll, .pathway::before { animation: none !important; transition: none !important; }
  .hero-content, .clinic-row { opacity: 1; transform: none; }
}
