:root {
  color-scheme: light;
  --ink: #261614;
  --ink-soft: #5d4540;
  --muted: #806d66;
  --page: #fff9f3;
  --surface: #fbf4ec;
  --surface-alt: #f3e6dc;
  --warm: #f0c3bb;
  --terracotta: #9b5a47;
  --wine: #5e2226;
  --line: rgba(94, 34, 38, .16);
  --shadow: 0 24px 30px rgba(54, 31, 26, .13);
  --shadow-subtle: 0 8px 12px rgba(38, 22, 20, .08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1312px;
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
main { display: flex; flex-direction: column; overflow: clip; }
section, footer, header { flex: none; }
[id] { scroll-margin-top: 28px; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:disabled { cursor: wait; opacity: .72; transform: none; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 128px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { top: 18px; }

:focus-visible {
  outline: 3px solid #bb7966;
  outline-offset: 3px;
}

h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 400;
  text-wrap: pretty;
}
h1 {
  margin-bottom: 0;
  font-size: 72px;
  letter-spacing: -1.4px;
  line-height: 76px;
}
h2 {
  margin-bottom: 0;
  font-size: 56px;
  letter-spacing: -1px;
  line-height: 64px;
}
h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.2px;
  line-height: 30px;
}

.eyebrow,
.card-kicker {
  margin-bottom: 0;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 16px;
  text-transform: uppercase;
}
.card-kicker { letter-spacing: 1.44px; }
.centered { text-align: center; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  background: var(--wine);
  box-shadow: 0 18px 17px rgba(94, 34, 38, .22);
  color: #fff;
}
.button-primary:hover { box-shadow: 0 20px 24px rgba(94, 34, 38, .3); }
.button-secondary {
  background: var(--surface);
  box-shadow: none;
  color: var(--wine);
}
.button-light {
  background: var(--surface);
  box-shadow: none;
  color: var(--wine);
}
.mobile-copy { display: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.section-order-hero { order: 1; }
.section-order-trust { order: 2; }
.section-order-how { order: 3; }
.section-order-services { order: 4; }
.section-order-care { order: 5; }
.section-order-reviews { order: 6; }
.section-order-contact { order: 7; }
.section-order-referral { order: 8; }
.section-order-about { order: 9; }
.section-order-faq { order: 10; }

.site-header {
  height: 92px;
  background: var(--surface);
}
.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  width: 320px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 43px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-copy strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 14px;
}
.site-nav {
  display: flex;
  width: 520px;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}
.site-nav a:hover { color: var(--wine); }
.header-action { white-space: nowrap; }

.hero {
  min-height: 754px;
  padding: 72px 0;
  background: var(--page);
}
.hero-inner {
  display: grid;
  grid-template-columns: 650px 520px;
  gap: 72px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 30px;
}
.reassurance {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
}
.hero-portrait {
  width: 520px;
  height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  background: var(--surface-alt);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.trust-strip {
  min-height: 76px;
  padding: 28px 0;
  background: var(--wine);
  color: #fff;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.how-it-works {
  min-height: 636px;
  padding: 88px 0;
  background: var(--surface);
}
.how-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.how-inner > h2 { margin-top: 40px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  box-shadow: var(--shadow-subtle);
}
.step-number {
  display: block;
  margin-bottom: 16px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}
.step-card h3 { margin-bottom: 16px; }
.step-card p {
  max-width: calc(100% - 24px);
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 21px;
}
.step-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--warm);
}
.step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--wine);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.services {
  min-height: 944px;
  padding: 88px 0;
  background: var(--page);
}
.services h2 { margin-top: 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  display: flex;
  min-height: 467px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 196px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.service-card h3 { font-size: 24px; line-height: 30px; }
.service-card > p:not(.card-kicker) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 21px;
}
.service-card > a {
  margin-top: auto;
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}
.services-referral {
  display: flex;
  min-height: 101px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}
.services-referral .card-kicker { margin-bottom: 8px; }

.care-options {
  min-height: 891px;
  padding: 88px 0;
  background: var(--surface-alt);
}
.care-options h2 { margin-top: 40px; }
.section-intro {
  margin: 40px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 26px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  display: flex;
  min-height: 489px;
  flex-direction: column;
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: rgba(155, 90, 71, .34);
  background: var(--warm);
}
.pricing-card .eyebrow { margin-bottom: 24px; }
.pricing-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 36px;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.price-line strong {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -.5px;
  line-height: 48px;
}
.price-line span {
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}
.pricing-card > p:not(.eyebrow, .price-line) {
  min-height: 63px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 21px;
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 21px;
}
.pricing-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--warm);
  color: var(--wine);
  content: "✓";
  font-size: 12px;
  font-weight: 600;
}
.pricing-card.featured li::before { background: var(--surface); }
.pricing-card .button { width: 100%; margin-top: auto; }

.reviews {
  min-height: auto;
  padding: 88px 0;
  background: var(--page);
}
.ruled {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ruled::before {
  width: 32px;
  height: 1px;
  background: var(--wine);
  content: "";
}
.reviews h2 { margin-top: 32px; }
.reviews-viewport {
  width: min(var(--max), calc(100% - 128px));
  margin-top: 32px;
  overflow: visible;
  padding: 0;
}
.reviews-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 300px;
  grid-column: span 2;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}
.review-card:nth-child(4) { grid-column: 2 / span 2; }
.review-card:nth-child(5) { grid-column: 4 / span 2; }
.stars {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
}
.review-card blockquote {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -.2px;
  line-height: 31px;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.review-card footer strong { font-size: 14px; line-height: 20px; }
.review-card footer span { color: var(--muted); font-size: 12px; line-height: 18px; }
.review-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}
.rating-pill {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
}
.rating-pill > span:first-child { margin-right: 4px; color: var(--wine); }
.reviews-link {
  color: var(--wine);
  text-decoration: none;
}

.request-call {
  min-height: 659px;
  padding: 88px 0;
  background: var(--warm);
}
.request-inner {
  display: grid;
  grid-template-columns: 450px 790px;
  gap: 72px;
  align-items: start;
}
.request-copy h2 {
  margin-top: 24px;
  font-size: 52px;
  letter-spacing: -.8px;
  line-height: 64px;
}
.request-copy > p:not(.eyebrow, .privacy-note) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 26px;
}
.privacy-note {
  margin: 18px 0 0;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}
.contact-form {
  min-height: 483px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--page);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}
label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
label > span,
legend {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
input, select, textarea {
  width: 100%;
  min-height: 53px;
  border: 1px solid rgba(94, 34, 38, .18);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
select { appearance: auto; color: var(--muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(94, 34, 38, .1);
}
textarea { min-height: 60px; resize: vertical; }
label small {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}
.message-field { margin-top: 20px; }
.contact-form .button { margin-top: 20px; }
.form-legal {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}
.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
}

.clinician-referral {
  min-height: 374px;
  padding: 72px 0;
  background: var(--wine);
  color: #fff;
}
.referral-inner {
  display: flex;
  max-width: 760px;
  min-height: 256px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.referral-inner .eyebrow { color: #fff; }
.referral-inner h2 {
  margin-top: 24px;
  color: #fff;
  font-size: 52px;
  letter-spacing: -.8px;
  line-height: 64px;
}
.referral-inner > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 26px;
}
.referral-inner .button { margin-top: 24px; }

.about {
  min-height: 796px;
  padding: 88px 0;
  background: var(--page);
}
.about-inner {
  display: grid;
  grid-template-columns: 520px 650px;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  width: 520px;
  height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface-alt);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}
.about-copy h2 {
  margin-top: 24px;
  font-size: 52px;
  letter-spacing: -.8px;
  line-height: 64px;
}
.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 26px;
}
.about-copy .text-link { margin-top: 24px; }

.faq {
  min-height: 662px;
  padding: 88px 0;
  background: var(--surface);
}
.faq-inner {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 80px;
}
.faq-copy h2 {
  margin-top: 20px;
  font-size: 52px;
  letter-spacing: -.8px;
  line-height: 64px;
}
.faq-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 26px;
}
.faq-copy .text-link { margin-top: 20px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
details {
  overflow: hidden;
  border: 1px solid rgba(94, 34, 38, .11);
  border-radius: 14px;
  background: #fff;
}
summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  color: var(--wine);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}
details[open] summary { min-height: 60px; padding-bottom: 12px; }
details[open] summary::after { content: "−"; }
details p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 21px;
}

.site-footer {
  min-height: 214px;
  padding: 56px 0;
  background: var(--wine);
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}
.footer-inner strong { font-size: 20px; line-height: 24px; }
.footer-inner p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 18px;
}
.footer-inner nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-inner a {
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: start center;
  padding: 40px 24px;
  background: rgba(30, 13, 12, .96);
  overscroll-behavior: contain;
}
.modal-backdrop[hidden] { display: none; }
.referral-dialog {
  width: min(920px, 100%);
  margin: auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 24px;
}
.referral-dialog h2 {
  margin-top: 24px;
  font-size: 48px;
  letter-spacing: -.5px;
  line-height: 56px;
}
.dialog-intro {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 24px;
}
.referral-form { margin-top: 24px; }
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
fieldset + fieldset {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
legend { width: 100%; margin-bottom: 14px; padding: 0; }
.referral-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.wide-field { margin-top: 16px; }
.wide-field textarea { min-height: 132px; }
.referral-submit-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 24px;
}
.referral-submit-row .button { flex: none; }

@media (max-width: 1279px) {
  .container { width: min(var(--max), calc(100% - 64px)); }
  .site-nav { width: auto; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr); gap: 48px; }
  .hero-copy { min-width: 0; }
  .hero-portrait { width: 100%; }
  .request-inner { grid-template-columns: minmax(340px, .75fr) minmax(560px, 1.25fr); gap: 48px; }
  .about-inner { grid-template-columns: minmax(420px, .85fr) minmax(0, 1fr); gap: 64px; }
  .about-portrait { width: 100%; }
  .reviews-viewport { width: min(var(--max), calc(100% - 64px)); }
}

@media (max-width: 1023px) {
  .site-nav { display: none; }
  .hero-inner,
  .request-inner,
  .about-inner,
  .faq-inner { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 620px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 450px; }
  .request-call,
  .about,
  .faq { min-height: auto; }
  .about-portrait { max-width: 620px; }
  .reviews-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-card,
  .review-card:nth-child(4) { grid-column: auto; }
  .review-card:nth-child(5) {
    width: calc(50% - 10px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  [id] { scroll-margin-top: 10px; }
  .container { width: calc(100% - 48px); }
  h1 {
    font-size: 44px;
    letter-spacing: -.5px;
    line-height: 48px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -.5px;
    line-height: 44px;
  }
  h3 { font-size: 22px; line-height: 26px; }
  .button { width: 100%; }
  .desktop-copy { display: none; }
  .mobile-copy { display: inline; }

  .site-header { height: 75px; }
  .brand { width: 320px; max-width: 100%; }
  .brand-copy strong { font-size: 15px; line-height: 19px; }
  .brand-copy small { font-size: 8px; line-height: 12px; }
  .brand img { width: 40px; height: 38px; }
  .header-action { display: none; }

  .hero {
    min-height: 898px;
    padding: 36px 0 48px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero-copy { gap: 20px; }
  .hero-lede { font-size: 16px; line-height: 26px; }
  .hero-actions { width: 100%; }
  .hero-referral { display: none; }
  .reassurance { width: 100%; line-height: 18px; }
  .hero-portrait {
    width: 100%;
    height: 380px;
    border-radius: 28px;
  }

  .trust-strip {
    min-height: 120px;
    padding: 20px 0;
  }
  .trust-inner {
    flex-direction: column;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }

  .how-it-works {
    min-height: 800px;
    padding: 48px 0;
  }
  .how-inner > .eyebrow { order: 1; }
  .how-inner > h2 { order: 2; margin-top: 24px; }
  .how-inner > .steps-grid { order: 3; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .step-card { min-height: 150px; padding: 20px; }
  .step-icon { top: 20px; right: 20px; }
  .step-number { margin-bottom: 12px; }
  .step-card h3 { margin-bottom: 12px; }
  .step-card p { max-width: calc(100% - 20px); }
  .services {
    min-height: 2408px;
    padding: 48px 0;
  }
  .services h2 { margin-top: 24px; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .service-card {
    min-height: 473px;
    gap: 14px;
    padding: 20px;
  }
  .service-card img { height: 220px; }
  .services-referral {
    min-height: 152px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
  }

  .request-call {
    min-height: 1065px;
    padding: 48px 0;
  }
  .request-inner { gap: 24px; }
  .request-copy h2 {
    margin-top: 18px;
    font-size: 36px;
    line-height: 44px;
  }
  .request-copy > p:not(.eyebrow, .privacy-note) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 24px;
  }
  .privacy-note { margin-top: 14px; }
  .contact-form {
    min-height: 629px;
    padding: 20px;
    border-radius: 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .message-field { margin-top: 16px; }
  .message-field textarea { min-height: 53px; }
  .contact-form .button { margin-top: 16px; }

  .care-options {
    min-height: 1885px;
    padding: 48px 0;
  }
  .care-options h2 { margin-top: 24px; }
  .section-intro { margin-top: 24px; font-size: 16px; line-height: 24px; }
  .pricing-grid { gap: 16px; margin-top: 24px; }
  .pricing-card { min-height: 489px; padding: 24px; }
  .pricing-card.featured { min-height: 468px; }
  .pricing-card .eyebrow { margin-bottom: 18px; }
  .pricing-card h3 { margin-bottom: 12px; font-size: 28px; line-height: 34px; }
  .price-line { margin-bottom: 16px; }
  .price-line strong { font-size: 40px; line-height: 46px; }
  .pricing-card > p:not(.eyebrow, .price-line) { min-height: auto; }

  .about {
    min-height: 1056px;
    padding: 48px 0;
  }
  .about-inner { gap: 24px; }
  .about-portrait { width: 100%; height: 380px; border-radius: 28px; }
  .about-copy h2 {
    margin-top: 18px;
    font-size: 36px;
    line-height: 44px;
  }
  .about-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 24px;
  }
  .about-copy .text-link {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--surface);
  }

  .clinician-referral {
    min-height: 372px;
    padding: 48px 0;
  }
  .referral-inner { min-height: 276px; }
  .referral-inner h2 {
    margin-top: 24px;
    font-size: 36px;
    line-height: 44px;
  }
  .referral-inner > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 16px;
    line-height: 24px;
  }
  .referral-inner .button { margin-top: 24px; }

  .reviews {
    min-height: auto;
    padding: 48px 0;
  }
  .reviews h2 { margin-top: 24px; }
  .reviews-viewport {
    width: auto;
    margin: 24px 0 0 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 24px 16px 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .reviews-viewport::-webkit-scrollbar { display: none; }
  .reviews-track {
    display: flex;
    width: max-content;
    align-items: stretch;
    gap: 16px;
  }
  .review-card {
    width: min(82vw, 320px);
    min-height: 300px;
    flex: none;
    grid-column: auto;
    padding: 24px;
    border-radius: 28px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .review-card:nth-child(5) { width: min(82vw, 320px); grid-column: auto; }
  .stars { margin-bottom: 14px; font-size: 12px; line-height: 18px; }
  .review-card blockquote {
    font-size: 20px;
    line-height: 28px;
  }
  .review-card footer { gap: 8px; }
  .review-card footer strong { font-size: 12px; line-height: 18px; }
  .review-card footer span { font-size: 11px; line-height: 16px; }
  .review-proof-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
  .rating-pill { min-height: 33px; padding: 7px 12px; font-size: 11px; line-height: 17px; }
  .reviews-link { font-size: 12px; }

  .faq {
    min-height: 939px;
    padding: 48px 0;
  }
  .faq-inner { gap: 24px; }
  .faq-copy h2 {
    margin-top: 18px;
    font-size: 36px;
    line-height: 44px;
  }
  .faq-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 24px;
  }
  .faq-copy .text-link {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--page);
  }
  .faq-list { gap: 10px; }
  summary { min-height: 68px; padding: 18px 20px; font-size: 14px; line-height: 20px; }
  details[open] summary { min-height: 56px; }
  details p { padding: 0 20px 18px; font-size: 13px; line-height: 20px; }

  .site-footer {
    min-height: 254px;
    padding: 40px 0;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 0; }
  .footer-inner p { max-width: 342px; }
  .footer-inner nav { margin-top: 18px; }

  .modal-backdrop {
    overflow: hidden;
    padding: 40px 24px;
  }
  .referral-dialog {
    width: 100%;
    max-height: calc(100dvh - 80px);
    margin: 0 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px;
    border-radius: 28px;
    -webkit-overflow-scrolling: touch;
  }
  .dialog-close { width: 40px; height: 40px; }
  .referral-dialog h2 { margin-top: 20px; font-size: 36px; line-height: 44px; }
  .dialog-intro { margin-top: 16px; font-size: 14px; line-height: 21px; }
  .referral-form { margin-top: 20px; }
  .referral-grid { grid-template-columns: 1fr; }
  .wide-field textarea { min-height: 118px; }
  .referral-submit-row { flex-direction: column-reverse; align-items: stretch; }
  .referral-submit-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
