/* HRT field guide — a single connected care route, not a stack of modules. */
body[data-page="hrt"] {
  --therapy-sea: #477594;
  --therapy-night: #0f2135;
  --therapy-ink: #172f4a;
  --therapy-paper: #f7f0e3;
  --therapy-rice: #efe6d4;
  --therapy-signal: #b94d42;
  --therapy-time: #c5a441;
  --therapy-muted: rgba(23, 47, 74, 0.68);
}

.therapy-page {
  min-height: 100vh;
  overflow: clip;
  background: var(--therapy-rice);
}

.therapy-kicker {
  margin: 0 0 24px;
  color: var(--therapy-signal);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.therapy-hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  padding: clamp(56px, 6vw, 92px) clamp(22px, 6vw, 92px) 0;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  background: var(--therapy-paper);
  border-bottom: 2px solid var(--therapy-ink);
}

.therapy-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(23, 47, 74, 0.045) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(23, 47, 74, 0.035) 38px 39px);
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.therapy-hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.therapy-hero h1 {
  max-width: 8.2ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 124px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.therapy-hero__lead {
  max-width: 41em;
  margin: 36px 0 0;
  padding-left: 22px;
  border-left: 7px solid var(--therapy-sea);
  font-size: 13px;
  line-height: 1.9;
}

.therapy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.therapy-hero__actions a {
  min-height: 46px;
  display: inline-flex;
  padding: 0 18px;
  align-items: center;
  color: var(--therapy-paper);
  background: var(--therapy-ink);
  border: 1px solid var(--therapy-ink);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms var(--motion-out);
}

.therapy-hero__actions a:last-child {
  color: var(--therapy-ink);
  background: transparent;
}

.therapy-hero__actions a:hover { transform: translateY(-3px); }
.therapy-hero__actions a:last-child:hover { color: var(--therapy-paper); background: var(--therapy-sea); }

.therapy-map {
  position: relative;
  z-index: 1;
  min-height: min(640px, calc(100svh - 138px));
  align-self: stretch;
}

.therapy-map::before {
  position: absolute;
  top: 8%;
  right: 2%;
  bottom: 8%;
  left: 4%;
  content: "";
  background: rgba(71, 117, 148, 0.08);
  border: 1px solid rgba(23, 47, 74, 0.18);
  border-radius: 50% 44% 48% 54%;
  transform: rotate(-4deg);
}

.therapy-map svg {
  position: absolute;
  inset: 2% 0 0;
  width: 100%;
  height: 96%;
  overflow: visible;
}

.therapy-map__water,
.therapy-map__route {
  fill: none;
  stroke-linecap: round;
}

.therapy-map__water {
  stroke: rgba(71, 117, 148, 0.14);
  stroke-width: 34;
}

.therapy-map__route {
  stroke: var(--therapy-sea);
  stroke-width: 3;
  stroke-dasharray: 8 12;
}

.therapy-map circle {
  fill: var(--therapy-time);
  stroke: var(--therapy-ink);
  stroke-width: 3;
}

body.has-js .therapy-map__route {
  stroke-dasharray: 8 12;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.7s var(--motion-out) 180ms;
}

body.has-js .therapy-map.is-revealed .therapy-map__route { stroke-dashoffset: 0; }

.therapy-map__core {
  position: absolute;
  z-index: 2;
  top: 36%;
  left: 35%;
  width: min(230px, 31%);
  aspect-ratio: 1;
  display: flex;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--therapy-paper);
  background: var(--therapy-ink);
  border: 9px solid var(--therapy-paper);
  border-radius: 50%;
  outline: 2px solid var(--therapy-ink);
  text-align: center;
}

.therapy-map__core span,
.therapy-map__core small {
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.therapy-map__core strong {
  margin: 10px 0;
  color: var(--therapy-time);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 49px);
  line-height: 1;
}

.therapy-map__stop {
  position: absolute;
  z-index: 3;
  width: 168px;
  display: block;
  padding: 13px 15px;
  color: var(--therapy-ink);
  background: var(--therapy-paper);
  border: 1px solid var(--therapy-ink);
  box-shadow: 5px 5px 0 var(--therapy-time);
  text-decoration: none;
  transition: transform 180ms var(--motion-out), box-shadow 180ms var(--motion-out);
}

.therapy-map__stop:hover,
.therapy-map__stop:focus-visible { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--therapy-signal); }
.therapy-map__stop span { display: block; color: var(--therapy-signal); font-size: 9px; font-weight: 900; }
.therapy-map__stop b { display: block; margin-top: 5px; font-family: var(--display); font-size: 17px; line-height: 1.15; }
.therapy-map__stop--change { top: 5%; left: 4%; }
.therapy-map__stop--route { top: 12%; right: 0; }
.therapy-map__stop--monitor { right: 3%; bottom: 15%; }
.therapy-map__stop--decision { bottom: 2%; left: 5%; }

.therapy-boundary {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: stretch;
  display: grid;
  margin: 0 calc(clamp(22px, 6vw, 92px) * -1);
  grid-template-columns: repeat(3, 1fr);
  color: var(--therapy-paper);
  background: var(--therapy-ink);
  border-top: 2px solid var(--therapy-ink);
}

.therapy-boundary p {
  min-height: 94px;
  display: grid;
  margin: 0;
  padding: 20px clamp(22px, 3vw, 42px);
  grid-template-columns: 32px 1fr;
  align-content: center;
  border-right: 1px solid rgba(247, 240, 227, 0.22);
  color: rgba(247, 240, 227, 0.72);
  font-size: 9px;
  line-height: 1.55;
}

.therapy-boundary p:last-child { border-right: 0; }
.therapy-boundary span { grid-row: 1 / 3; color: var(--therapy-time); font-family: var(--display); font-size: 19px; }
.therapy-boundary strong { color: var(--therapy-paper); font-size: 11px; }

.care-journey {
  position: relative;
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  background: var(--therapy-rice);
}

.care-rail {
  position: sticky;
  z-index: 18;
  top: 68px;
  height: calc(100vh - 68px);
  display: flex;
  padding: 44px 28px 30px;
  flex-direction: column;
  color: var(--therapy-paper);
  background: var(--therapy-night);
  border-right: 1px solid rgba(247, 240, 227, 0.18);
}

.care-rail > p {
  margin: 0 0 30px;
  color: rgba(247, 240, 227, 0.46);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.care-rail nav { position: relative; display: grid; gap: 5px; }

.care-rail a {
  position: relative;
  z-index: 2;
  min-height: 60px;
  display: grid;
  padding: 10px 8px 10px 25px;
  grid-template-columns: 25px 1fr;
  align-items: center;
  color: rgba(247, 240, 227, 0.46);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms var(--motion-out);
}

.care-rail a::before {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--therapy-night);
  border: 1px solid rgba(247, 240, 227, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
}

.care-rail a span { font-family: var(--utility); font-size: 9px; }
.care-rail a strong { font-family: var(--display); font-size: 16px; }
.care-rail a:hover { color: var(--therapy-paper); transform: translateX(3px); }
.care-rail a[aria-current="location"] { color: var(--therapy-time); }
.care-rail a[aria-current="location"]::before { background: var(--therapy-time); border-color: var(--therapy-time); box-shadow: 0 0 0 5px rgba(197, 164, 65, 0.14); }

.care-rail__meter {
  position: absolute;
  top: 89px;
  bottom: 122px;
  left: 34px;
  width: 1px;
  overflow: hidden;
  background: rgba(247, 240, 227, 0.2);
}

.care-rail__meter i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--therapy-time);
  transform: scaleY(var(--journey-progress, 0));
  transform-origin: top;
}

.care-rail > small {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(247, 240, 227, 0.45);
  border-top: 1px solid rgba(247, 240, 227, 0.2);
  font-size: 9px;
  line-height: 1.7;
}

.care-flow { min-width: 0; }

.care-station {
  position: relative;
  min-height: 100vh;
  padding: clamp(82px, 8vw, 128px) clamp(28px, 7vw, 108px);
  scroll-margin-top: 0;
  border-bottom: 2px solid var(--therapy-ink);
}

.change-station { background: var(--therapy-paper); }
.route-station { color: var(--therapy-paper); background: var(--therapy-night); }
.followup-station { background: var(--therapy-rice); }
.prepare-station { background: var(--therapy-paper); }

.station-heading {
  display: grid;
  margin-bottom: clamp(52px, 7vw, 92px);
  grid-template-columns: 54px minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: clamp(20px, 4vw, 65px);
  align-items: end;
}

.station-heading > span {
  align-self: start;
  color: var(--therapy-signal);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.station-heading p {
  margin: 0 0 14px;
  color: var(--therapy-sea);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.station-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5.5vw, 78px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.station-heading > aside {
  padding: 18px 0 0 18px;
  color: var(--therapy-muted);
  border-top: 1px solid currentColor;
  border-left: 6px solid var(--therapy-sea);
  font-size: 11px;
  line-height: 1.8;
}

.route-station .station-heading > span,
.route-station .station-heading p { color: var(--therapy-time); }
.route-station .station-heading > aside { color: rgba(247, 240, 227, 0.64); border-left-color: var(--therapy-time); }

.change-landscape {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(480px, 1.12fr);
  border: 2px solid var(--therapy-ink);
}

.change-course {
  position: relative;
  margin: 0;
  padding: 30px 32px 30px 46px;
  list-style: none;
  background: var(--therapy-rice);
  border-right: 1px solid var(--therapy-ink);
}

.change-course::before {
  position: absolute;
  top: 58px;
  bottom: 58px;
  left: 77px;
  width: 3px;
  content: "";
  background: var(--therapy-sea);
}

.change-course li {
  position: relative;
  z-index: 1;
  min-height: 130px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
}

.change-course time {
  width: 64px;
  min-height: 64px;
  display: grid;
  padding: 7px 4px;
  place-items: center;
  background: var(--therapy-paper);
  border: 2px solid var(--therapy-sea);
  border-radius: 50%;
  text-align: center;
}

.change-course time b { display: block; color: var(--therapy-signal); font-family: var(--display); font-size: 25px; line-height: 0.8; }
.change-course time span { font-size: 7px; font-weight: 900; }
.change-course h3 { margin: 4px 0 8px; font-family: var(--display); font-size: 23px; }
.change-course p { margin: 0; color: var(--therapy-muted); font-size: 10px; line-height: 1.7; }

.change-boundaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.change-boundaries section { min-height: 520px; padding: clamp(28px, 4vw, 54px); }
.change-boundaries__yes { background: rgba(71, 117, 148, 0.15); border-right: 1px solid var(--therapy-ink); }
.change-boundaries__no { background: var(--therapy-paper); }
.change-boundaries section > span { color: var(--therapy-signal); font-size: 9px; font-weight: 900; }
.change-boundaries h3 { margin: 24px 0 34px; font-family: var(--display); font-size: clamp(30px, 3.1vw, 47px); line-height: 1; }
.change-boundaries ul { margin: 0; padding: 0; list-style: none; }
.change-boundaries li { min-height: 53px; display: flex; padding: 10px 0; align-items: center; border-top: 1px solid var(--therapy-ink); font-size: 10px; }
.change-boundaries > aside { grid-column: 1 / -1; padding: 19px 24px; color: var(--therapy-paper); background: var(--therapy-signal); font-size: 10px; line-height: 1.7; }

.therapy-formula {
  display: grid;
  margin-bottom: 28px;
  padding: 32px clamp(26px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: 50px;
  align-items: center;
  color: var(--therapy-ink);
  background: var(--therapy-time);
  border: 2px solid var(--therapy-paper);
}

.therapy-formula > div { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.therapy-formula span { width: 100%; font-size: 9px; font-weight: 900; }
.therapy-formula strong { font-family: var(--display); font-size: clamp(27px, 3.1vw, 45px); line-height: 1; }
.therapy-formula b { color: var(--therapy-signal); font-family: var(--display); font-size: 28px; }
.therapy-formula p { margin: 0; padding-left: 20px; border-left: 1px solid var(--therapy-ink); font-size: 10px; line-height: 1.8; }

.route-exchange {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  color: var(--therapy-ink);
  background: var(--therapy-paper);
  border: 2px solid var(--therapy-paper);
}

.route-switch {
  display: grid;
  align-content: stretch;
  background: var(--therapy-sea);
}

.route-switch button {
  position: relative;
  min-height: 150px;
  display: grid;
  padding: 23px;
  grid-template-columns: 31px 1fr;
  align-content: center;
  text-align: left;
  color: rgba(247, 240, 227, 0.7);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247, 240, 227, 0.28);
}

.route-switch button:last-child { border-bottom: 0; }
.route-switch button::after { position: absolute; top: 0; right: -2px; bottom: 0; width: 6px; content: ""; background: var(--therapy-time); transform: scaleY(0); transition: transform 180ms var(--motion-out); }
.route-switch button[aria-selected="true"] { color: var(--therapy-ink); background: var(--therapy-time); }
.route-switch button[aria-selected="true"]::after { transform: scaleY(1); }
.route-switch span { font-family: var(--utility); font-size: 9px; }
.route-switch strong { font-family: var(--display); font-size: 27px; }
.route-switch small { grid-column: 2; margin-top: 8px; font-size: 8px; font-weight: 800; }

.route-stage { position: relative; min-height: 450px; padding: clamp(28px, 4vw, 56px); }
.route-panel { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr); gap: clamp(30px, 5vw, 75px); align-items: center; }
body.has-js [data-route-ready="true"] .route-panel:not(.is-active) { display: none; }
.route-panel__copy > span { color: var(--therapy-signal); font-family: var(--utility); font-size: 9px; font-weight: 900; letter-spacing: 0.1em; }
.route-panel h4 { margin: 13px 0 19px; font-family: var(--display); font-size: clamp(48px, 6vw, 82px); line-height: 0.9; }
.route-panel__copy > p { margin: 0; color: var(--therapy-muted); font-size: 11px; line-height: 1.8; }
.route-panel dl { margin: 26px 0 0; border-top: 1px solid var(--therapy-ink); }
.route-panel dl > div { min-height: 42px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(23, 47, 74, 0.25); font-size: 9px; }
.route-panel dd { margin: 0; font-weight: 900; }

.route-trace { width: 100%; overflow: visible; }
.route-trace rect { fill: rgba(71, 117, 148, 0.14); stroke: none; }
.route-trace path { fill: none; stroke: var(--therapy-signal); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.route-trace text { fill: rgba(23, 47, 74, 0.58); font-family: var(--utility); font-size: 10px; }
body.has-js .route-panel.is-active .route-trace path { stroke-dasharray: 900; animation: route-trace-in 850ms var(--motion-out) both; }
@keyframes route-trace-in { from { stroke-dashoffset: 900; } to { stroke-dashoffset: 0; } }

.route-stage__note { margin: 25px 0 0; padding-top: 14px; color: rgba(23, 47, 74, 0.55); border-top: 1px solid rgba(23, 47, 74, 0.22); font-size: 8px; }

.ethinyl-warning {
  display: grid;
  margin-top: 28px;
  padding: 24px 28px;
  grid-template-columns: 130px minmax(280px, 1fr) minmax(220px, 0.58fr);
  gap: 26px;
  align-items: center;
  color: var(--therapy-paper);
  background: var(--therapy-signal);
  border: 2px solid var(--therapy-paper);
}

.ethinyl-warning span { font-size: 9px; font-weight: 900; }
.ethinyl-warning strong { font-family: var(--display); font-size: clamp(21px, 2.2vw, 31px); line-height: 1.15; }
.ethinyl-warning p { margin: 0; padding-left: 20px; border-left: 1px solid rgba(247, 240, 227, 0.55); font-size: 9px; line-height: 1.7; }

.therapy-deep-link {
  min-height: 58px;
  display: flex;
  margin-top: 26px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.therapy-deep-link:hover { color: var(--therapy-ink); background: var(--therapy-time); }
.therapy-deep-link span { font-size: 19px; }

.followup-console {
  display: grid;
  grid-template-columns: minmax(460px, 1.2fr) minmax(300px, 0.8fr);
  border: 2px solid var(--therapy-ink);
}

.followup-tracks { border-right: 1px solid var(--therapy-ink); }

.followup-track {
  position: relative;
  min-height: 320px;
  display: grid;
  padding: clamp(31px, 4vw, 56px);
  grid-template-columns: 90px 1fr;
  gap: 24px;
}

.followup-track + .followup-track { border-top: 1px solid var(--therapy-ink); }
.followup-track > span { color: var(--therapy-signal); font-size: 9px; font-weight: 900; }
.followup-track h3 { margin: 0 0 17px; font-family: var(--display); font-size: clamp(29px, 3.1vw, 45px); line-height: 1; }
.followup-track p { margin: 0; max-width: 54em; color: var(--therapy-muted); font-size: 11px; line-height: 1.8; }
.followup-track ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 26px 0 0; padding: 0; list-style: none; }
.followup-track li { padding: 6px 9px; background: rgba(71, 117, 148, 0.12); border: 1px solid rgba(23, 47, 74, 0.28); font-size: 8px; font-weight: 850; }
.followup-track--safety { color: var(--therapy-paper); background: var(--therapy-ink); }
.followup-track--safety > span { color: var(--therapy-time); }
.followup-track--safety p { color: rgba(247, 240, 227, 0.68); }
.followup-track--safety li { background: rgba(197, 164, 65, 0.15); border-color: rgba(247, 240, 227, 0.28); }

.followup-rhythm { margin: 0; padding: 0; list-style: none; }
.followup-rhythm li { position: relative; min-height: 160px; padding: 27px 29px 24px 55px; border-bottom: 1px solid var(--therapy-ink); }
.followup-rhythm li:last-child { border-bottom: 0; }
.followup-rhythm li::before { position: absolute; top: 32px; left: 25px; width: 12px; height: 12px; content: ""; background: var(--therapy-paper); border: 2px solid var(--therapy-sea); border-radius: 50%; }
.followup-rhythm li::after { position: absolute; top: 44px; bottom: -33px; left: 30px; width: 2px; content: ""; background: var(--therapy-sea); }
.followup-rhythm li:last-child::after { display: none; }
.followup-rhythm time { color: var(--therapy-signal); font-size: 9px; font-weight: 900; }
.followup-rhythm strong { display: block; margin: 10px 0 6px; font-family: var(--display); font-size: 21px; }
.followup-rhythm p { margin: 0; color: var(--therapy-muted); font-size: 9px; line-height: 1.65; }

.urgent-signal {
  grid-column: 1 / -1;
  display: grid;
  padding: 26px clamp(28px, 4vw, 55px);
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  color: var(--therapy-paper);
  background: var(--therapy-signal);
  border-top: 2px solid var(--therapy-ink);
}

.urgent-signal > span { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--therapy-paper); border-radius: 50%; font-family: var(--display); font-size: 24px; }
.urgent-signal strong { font-family: var(--display); font-size: 24px; }
.urgent-signal p { margin: 4px 0 0; font-size: 10px; }

.followup-station .therapy-deep-link:hover { color: var(--therapy-paper); background: var(--therapy-ink); }

.visit-brief {
  --visit-folio: 220px;
  display: grid;
  grid-template-columns: var(--visit-folio) minmax(0, 1fr);
  border: 2px solid var(--therapy-ink);
  box-shadow: 12px 12px 0 rgba(23, 47, 74, 0.08);
}

.visit-brief__folio {
  min-width: 0;
  display: flex;
  padding: 30px 27px;
  flex-direction: column;
  color: var(--therapy-paper);
  background: var(--therapy-ink);
}

.visit-brief__index { display: flex; justify-content: space-between; gap: 10px; font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.visit-brief__index b { color: var(--therapy-time); }
.visit-brief__title { margin: 58px 0 20px; color: var(--therapy-time); font-family: var(--display); font-size: clamp(46px, 5vw, 64px); font-weight: 900; line-height: 0.87; letter-spacing: -0.07em; }
.visit-brief__folio > p { margin: 0; color: rgba(247, 240, 227, 0.72); font-size: 9px; line-height: 1.75; }

.visit-brief__agreement {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 240, 227, 0.28);
}

.visit-brief__agreement span,
.visit-brief__agreement small { display: block; font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.visit-brief__agreement strong { display: block; margin: 7px 0 9px; font-family: var(--display); font-size: 19px; }
.visit-brief__agreement small { color: rgba(247, 240, 227, 0.5); }

.visit-brief__questions {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit-question {
  position: relative;
  min-width: 0;
  min-height: 268px;
  display: flex;
  padding: 28px 30px 26px;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--therapy-ink);
  border-bottom: 1px solid var(--therapy-ink);
  transition: background 180ms ease;
}

.visit-question:nth-child(2n + 1) { border-left: 0; }
.visit-question:nth-last-child(-n + 2) { border-bottom: 0; }
.visit-question--goal { background: rgba(71, 117, 148, 0.14); }
.visit-question--fertility { background: rgba(197, 164, 65, 0.14); }
.visit-question--care { background: rgba(247, 240, 227, 0.38); }
.visit-question--limits { background: rgba(185, 77, 66, 0.09); }
.visit-question:hover { background: rgba(247, 240, 227, 0.82); }

.visit-question header { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.visit-question header b { color: var(--therapy-signal); font-family: var(--display); font-size: 26px; line-height: 1; }
.visit-question header span { font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.visit-question h3 { max-width: 10ch; margin: 28px 0 12px; font-family: var(--display); font-size: clamp(25px, 2.4vw, 34px); line-height: 1.04; }
.visit-question p { max-width: 35em; margin: 0 0 20px; color: var(--therapy-muted); font-size: 9px; line-height: 1.7; }
.visit-question a { margin-top: auto; font-size: 8px; font-weight: 900; }

.visit-brief__prompt {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--visit-folio) repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--therapy-ink);
  background: rgba(247, 240, 227, 0.5);
}

.visit-brief__prompt > * { min-width: 0; padding: 20px 22px; }
.visit-brief__prompt > * + * { border-left: 1px solid var(--therapy-ink); }
.visit-brief__prompt header { color: var(--therapy-paper); background: var(--therapy-signal); }
.visit-brief__prompt header span { display: block; margin-bottom: 6px; font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.visit-brief__prompt header strong { font-family: var(--display); font-size: 15px; line-height: 1.15; }
.visit-brief__prompt div { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-content: center; }
.visit-brief__prompt div span { grid-row: 1 / 3; color: var(--therapy-signal); font-family: var(--display); font-size: 18px; }
.visit-brief__prompt div p { margin: 0; font-size: 8px; font-weight: 900; }
.visit-brief__prompt div i { display: block; min-width: 0; margin-top: 7px; border-bottom: 1px dashed rgba(23, 47, 74, 0.48); }

.therapy-source-note {
  display: grid;
  margin-top: 28px;
  padding: 23px 28px;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: rgba(247, 240, 227, 0.68);
  background: var(--therapy-ink);
  border-left: 9px solid var(--therapy-time);
}

.therapy-source-note p { margin: 0; font-size: 9px; line-height: 1.75; }
.therapy-source-note a { color: var(--therapy-paper); font-weight: 900; }

@media (max-width: 1120px) {
  .therapy-hero { grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr); }
  .therapy-map__stop { width: 145px; }
  .therapy-map__stop b { font-size: 15px; }
  .care-journey { grid-template-columns: 188px minmax(0, 1fr); }
  .care-rail { padding-right: 18px; padding-left: 20px; }
  .care-rail__meter { left: 26px; }
  .change-landscape { grid-template-columns: 1fr; }
  .change-course { border-right: 0; border-bottom: 1px solid var(--therapy-ink); }
  .change-course li { min-height: 112px; }
  .change-boundaries section { min-height: 430px; }
  .route-panel { grid-template-columns: 0.8fr 1.2fr; }
}

@media (max-width: 920px) {
  .therapy-hero { min-height: auto; grid-template-columns: 1fr; }
  .therapy-hero__copy { padding-bottom: 0; }
  .therapy-hero h1 { max-width: 10ch; }
  .therapy-map { min-height: 590px; }
  .therapy-boundary { margin-top: 30px; }
  .care-journey { display: block; }
  .care-rail {
    top: 68px;
    height: 62px;
    display: grid;
    padding: 0 18px;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 240, 227, 0.2);
  }
  .care-rail > p { margin: 0; }
  .care-rail nav { display: flex; justify-content: center; gap: 8px; }
  .care-rail a { min-height: 44px; padding: 0 8px; grid-template-columns: auto auto; gap: 7px; }
  .care-rail a::before,
  .care-rail__meter { display: none; }
  .care-rail a strong { font-size: 13px; }
  .care-rail > small { margin: 0; padding: 0; border: 0; line-height: 1.2; text-align: right; }
  .care-station { scroll-margin-top: 62px; }
  .station-heading { grid-template-columns: 42px minmax(0, 1fr) minmax(190px, 0.38fr); }
  .route-exchange { grid-template-columns: 170px minmax(0, 1fr); }
  .route-panel { grid-template-columns: 1fr; }
  .route-trace { max-height: 240px; }
  .followup-console { grid-template-columns: 1fr; }
  .followup-tracks { border-right: 0; border-bottom: 1px solid var(--therapy-ink); }
  .followup-rhythm { display: grid; grid-template-columns: 1fr 1fr; }
  .followup-rhythm li { border-right: 1px solid var(--therapy-ink); }
  .followup-rhythm li:nth-child(2n) { border-right: 0; }
  .followup-rhythm li::after { display: none; }
  .visit-brief { --visit-folio: 190px; }
  .visit-brief__folio { padding: 26px 23px; }
  .visit-brief__title { margin-top: 42px; }
  .visit-question { padding-right: 24px; padding-left: 24px; }
  .visit-brief__prompt > * { padding: 18px; }
}

@media (max-width: 720px) {
  .therapy-hero { padding: 68px 16px 0; }
  .therapy-hero::before { mask-image: none; opacity: 0.7; }
  .therapy-hero h1 { font-size: clamp(57px, 17vw, 78px); }
  .therapy-hero__lead { padding-left: 16px; }
  .therapy-map { min-height: 500px; margin-top: 28px; }
  .therapy-map::before { inset: 5% 0 7%; }
  .therapy-map__core { top: 38%; left: 34%; width: 150px; border-width: 6px; }
  .therapy-map__core strong { font-size: 30px; }
  .therapy-map__stop { width: 132px; padding: 10px; box-shadow: 3px 3px 0 var(--therapy-time); }
  .therapy-map__stop b { font-size: 13px; }
  .therapy-map__stop--change { top: 4%; left: 0; }
  .therapy-map__stop--route { top: 11%; right: 0; }
  .therapy-map__stop--monitor { right: 0; bottom: 13%; }
  .therapy-map__stop--decision { bottom: 0; left: 0; }
  .therapy-boundary { grid-template-columns: 1fr; margin-right: -16px; margin-left: -16px; }
  .therapy-boundary p { min-height: 78px; border-right: 0; border-bottom: 1px solid rgba(247, 240, 227, 0.2); }
  .therapy-boundary p:last-child { border-bottom: 0; }

  .care-rail { padding: 0 8px; grid-template-columns: 1fr; overflow: hidden; }
  .care-rail > p,
  .care-rail > small { display: none; }
  .care-rail nav { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3px; }
  .care-rail a { min-width: 0; padding: 0 4px; grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .care-rail a span { display: none; }
  .care-rail a strong { font-size: clamp(11px, 3.05vw, 12px); white-space: nowrap; }
  .care-station { min-height: 0; padding: 82px 16px; }
  .station-heading { display: block; margin-bottom: 48px; }
  .station-heading > span { display: block; margin-bottom: 17px; writing-mode: initial; }
  .station-heading h2 { font-size: clamp(41px, 12.5vw, 57px); }
  .station-heading > aside { margin-top: 28px; }

  .change-course { padding: 26px 18px 24px 26px; }
  .change-course::before { left: 54px; }
  .change-course li { min-height: 145px; grid-template-columns: 62px 1fr; gap: 17px; }
  .change-course time { width: 56px; min-height: 56px; }
  .change-boundaries { grid-template-columns: 1fr; }
  .change-boundaries section { min-height: 0; }
  .change-boundaries__yes { border-right: 0; border-bottom: 1px solid var(--therapy-ink); }

  .therapy-formula { grid-template-columns: 1fr; gap: 24px; }
  .therapy-formula p { padding: 18px 0 0; border-top: 1px solid var(--therapy-ink); border-left: 0; }
  .route-exchange { grid-template-columns: 1fr; }
  .route-switch { grid-template-columns: repeat(3, 1fr); }
  .route-switch button { min-height: 104px; padding: 13px 10px; grid-template-columns: 1fr; text-align: center; border-right: 1px solid rgba(247, 240, 227, 0.28); border-bottom: 0; }
  .route-switch button:last-child { border-right: 0; }
  .route-switch button::after { top: auto; right: 0; bottom: -2px; left: 0; width: auto; height: 6px; transform: scaleX(0); }
  .route-switch button[aria-selected="true"]::after { transform: scaleX(1); }
  .route-switch span { display: none; }
  .route-switch small { grid-column: auto; }
  .route-stage { min-height: 0; padding: 28px 18px; }
  .route-panel h4 { font-size: 54px; }
  .route-trace { margin-top: 20px; }
  .ethinyl-warning { grid-template-columns: 1fr; gap: 13px; }
  .ethinyl-warning p { padding: 13px 0 0; border-top: 1px solid rgba(247, 240, 227, 0.5); border-left: 0; }

  .followup-track { min-height: 0; grid-template-columns: 1fr; gap: 14px; }
  .followup-rhythm { grid-template-columns: 1fr; }
  .followup-rhythm li { min-height: 0; border-right: 0; }
  .urgent-signal { grid-template-columns: 38px 1fr; padding: 22px 18px; }
  .urgent-signal > span { width: 34px; height: 34px; font-size: 19px; }

  .visit-brief { display: block; box-shadow: 7px 7px 0 rgba(23, 47, 74, 0.08); }
  .visit-brief__folio { min-height: 330px; }
  .visit-brief__title { margin: 44px 0 18px; }
  .visit-brief__questions { grid-template-columns: 1fr; }
  .visit-question { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--therapy-ink); border-left: 0; }
  .visit-question:nth-last-child(-n + 2) { border-bottom: 1px solid var(--therapy-ink); }
  .visit-question:last-child { border-bottom: 0; }
  .visit-brief__prompt { grid-template-columns: 1fr; }
  .visit-brief__prompt > * + * { border-top: 1px solid var(--therapy-ink); border-left: 0; }
  .visit-brief__prompt div { min-height: 74px; }
  .therapy-source-note { grid-template-columns: 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .therapy-map__route,
  .route-trace path { animation: none !important; transition: none !important; stroke-dashoffset: 0 !important; }
  .therapy-map__stop,
  .therapy-hero__actions a,
  .care-rail a,
  .visit-question { transition: none; }
}
