@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin-400-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/lora-latin-500-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #202827;
  --ink-deep: #1a2221;
  --ink-soft: #2d3836;
  --ivory: #f7f4ec;
  --paper: #fffdf8;
  --sage: #e4ece8;
  --sage-deep: #cfddd7;
  --teal-action: #2f7f77;
  --teal-clinical: #236b65;
  --teal-dark: #174d49;
  --gold: #b58a46;
  --gold-light: #d3b278;
  --text-light-secondary: #596461;
  --text-dark-secondary: #c2c8c5;
  --border-light: rgba(32, 40, 39, 0.14);
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(211, 178, 120, 0.35);
  --container: 1180px;
  --header-container: 1240px;
  --gutter: 24px;
  --radius-small: 12px;
  --radius-card: 20px;
  --focus-dark: #174d49;
  --focus-light: #d3b278;
  --section-boundary-half: 104px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--border-dark);
  background: rgba(26, 34, 33, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(var(--header-container), calc(100% - (var(--gutter) * 2)));
  min-height: 84px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  color: var(--paper);
  line-height: 1.2;
  text-decoration: none;
}

.brand-name {
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-location {
  margin-top: 5px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 30px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-navigation a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--paper);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: var(--teal-action);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.header-booking:hover {
  background: var(--teal-clinical);
}

.header-booking:active {
  background: var(--teal-dark);
}

.header-booking:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.opening {
  overflow: hidden;
  background: var(--ink);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 164px var(--gutter) 128px;
  border-bottom: 1px solid var(--border-dark);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  width: min(16vw, 210px);
  height: 1px;
  background: var(--border-gold);
  content: "";
}

.hero-stage::before {
  top: 50%;
  left: 0;
}

.hero-stage::after {
  top: 50%;
  right: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 980px);
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
blockquote {
  font-family: "Lora", Georgia, serif;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.headline-line {
  display: block;
}

.headline-line + .headline-line {
  margin-top: 0.13em;
}

.continue-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 72px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.continue-cue svg {
  color: var(--gold-light);
}

.continue-cue path,
.primary-action path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.external-link-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.continue-cue:hover,
.continue-cue:focus-visible {
  color: var(--paper);
}

.method-stage {
  position: relative;
  padding: 112px 0;
  border-bottom: 1px solid var(--border-dark);
  background: var(--ink-soft);
}

.method-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.method-container::before {
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 32px;
  background: var(--gold-light);
  content: "";
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.method-stage h2 {
  margin-bottom: 32px;
  color: var(--paper);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.method-explanation {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--text-dark-secondary);
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.7;
  text-align: left;
  text-wrap: pretty;
}

.method-explanation span {
  display: block;
}

.method-explanation span + span {
  margin-top: 12px;
}

.method-comfort {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(19px, 1.7vw, 21px);
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.method-comfort span {
  display: block;
}

.method-comfort-question {
  font-weight: 600;
}

.proof-stage {
  padding: 112px 0 var(--section-boundary-half);
  background: var(--ink-deep);
}

.proof-introduction {
  max-width: 820px;
  margin-bottom: 64px;
}

.proof-introduction h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.story-sequence {
  border-top: 1px solid var(--border-gold);
}

.story {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-dark);
}

.story-featured {
  position: relative;
  padding-block: 72px;
}

.story-featured::before {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 0;
  width: 2px;
  background: var(--gold-light);
  content: "";
}

.story-featured .story-header {
  padding-left: 32px;
}

.story-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: start;
}

.story-header h3 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  white-space: nowrap;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  color: rgba(255, 253, 248, 0.48);
  font-size: 13px;
  line-height: 1.55;
  text-decoration-color: rgba(255, 253, 248, 0.28);
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.review-source:hover,
.review-source:focus-visible {
  color: var(--paper);
}

.story-body {
  max-width: 760px;
}

.story-body p {
  margin-bottom: 16px;
  color: var(--text-dark-secondary);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.featured-quote {
  margin: 40px 0;
  padding: 32px 0 32px 32px;
  border-left: 1px solid var(--border-gold);
}

.story-body .quote-context {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

blockquote {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.story-body .story-outcome {
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.45;
}

.results-note {
  margin: 20px 0 0;
  color: rgba(194, 200, 197, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.proof-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 80px auto 0;
}

.google-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 430px);
  min-height: 116px;
  padding: 22px 26px;
  border: 1px solid rgba(32, 40, 39, 0.14);
  border-radius: var(--radius-small);
  background: #fff;
  color: #202124;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.google-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #5f6368;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.google-brand img {
  width: 20px;
  height: 20px;
}

.google-proof:hover,
.google-proof:focus-visible {
  border-color: rgba(32, 40, 39, 0.24);
  box-shadow: 0 1px 2px rgba(32, 40, 39, 0.08), 0 6px 16px rgba(32, 40, 39, 0.06);
}

.google-clinic-name {
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.google-score {
  font-family: Arial, sans-serif;
  color: #5f6368;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.google-stars {
  color: #fbbc04;
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.google-count {
  color: #5f6368;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.supporting-routes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 40px;
}

.supporting-routes a {
  position: relative;
  min-height: 44px;
  padding: 10px 0 8px;
  color: var(--text-dark-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.supporting-routes a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: rgba(211, 178, 120, 0.55);
  content: "";
  transition: background-color 160ms ease;
}

.supporting-routes a:hover,
.supporting-routes a:focus-visible {
  color: var(--paper);
}

.supporting-routes a:hover::after,
.supporting-routes a:focus-visible::after {
  background: var(--gold-light);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 240px;
  min-height: 56px;
  margin-top: 32px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: var(--teal-action);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.primary-action:hover {
  background: var(--teal-clinical);
}

.primary-action:active {
  background: var(--teal-dark);
}

.fit-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--border-light);
  background: var(--ivory);
  color: var(--ink);
}

.fit-section::before {
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--teal-clinical);
  content: "";
  opacity: 0.58;
}

.fit-introduction {
  max-width: 820px;
  margin-bottom: 64px;
}

.eyebrow-on-light {
  color: var(--teal-clinical);
}

.fit-introduction h2,
.concerns-introduction h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.fit-situations {
  border-top: 1px solid var(--border-light);
}

.fit-situations-heading {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--teal-clinical);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-wrap: pretty;
}

.fit-situation {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.fit-situation-heading {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-width: 0;
}

.fit-situation-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border: 1px solid rgba(181, 138, 70, 0.48);
  border-radius: 50%;
  color: var(--teal-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.fit-situation h4 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-wrap: pretty;
}

.fit-situation-copy {
  max-width: 660px;
}

.fit-situation-copy p {
  margin-bottom: 0;
  color: var(--text-light-secondary);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.fit-situation-copy p + p {
  margin-top: 12px;
}

.concerns {
  padding-top: 112px;
}

.concerns-introduction {
  max-width: 820px;
  margin-bottom: 48px;
}

.concern-groups {
  border-top: 1px solid var(--border-light);
}

.concern-group {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 64px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.concern-group h3 {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--teal-clinical);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.concern-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 32px;
  max-width: 780px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concern-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.concern-list li,
.concern-description p {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.concern-list li {
  padding: 7px 0 7px 22px;
}

.concern-list li::before {
  position: absolute;
  top: 1.05em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.concern-description {
  max-width: 780px;
}

.concern-description .imaging-note {
  margin-top: 18px;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  color: var(--text-light-secondary);
  font-size: 15px;
}

.screening-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
  margin-top: 80px;
  padding: 40px 48px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: var(--sage);
}

.screening-panel h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.screening-panel p {
  margin-bottom: 0;
  color: var(--text-light-secondary);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.screening-panel a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.screening-panel a:hover {
  color: var(--teal-clinical);
}

.treatment-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  background: var(--paper);
  color: var(--ink);
}

.treatment-section::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--teal-dark);
  content: "";
  opacity: 0.62;
}

.reasoning-stage {
  padding: var(--section-boundary-half) 0 88px;
  background: var(--paper);
}

.palpation-stage {
  padding: 56px 0 88px;
  background: transparent;
}

.testing-stage {
  padding: 56px 0 var(--section-boundary-half);
  background: transparent;
}

.palpation-stage .difference-block,
.testing-stage .difference-block {
  padding-top: 56px;
  border-top: 1px solid var(--border-light);
}

.treatment-introduction {
  max-width: 1160px;
  margin-bottom: 56px;
}

.treatment-introduction h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.reasoning-framework {
  max-width: 1000px;
  margin-inline: auto;
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--ivory);
}

.reasoning-label {
  margin-bottom: 20px;
  color: var(--text-light-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.scientific-loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scientific-loop-graphic {
  position: relative;
  padding-bottom: 50px;
}

.scientific-loop li {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-small);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.scientific-loop li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  color: var(--gold);
  content: "\2192";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.scientific-loop-return {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  color: var(--gold);
}

.scientific-loop-return svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scientific-return-path {
  fill: none;
  marker-end: url("#scientific-loop-arrowhead");
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.scientific-loop-return marker path {
  fill: currentColor;
}

.scientific-loop-return span {
  position: absolute;
  bottom: 0;
  left: 60%;
  padding: 0 10px;
  background: var(--ivory);
  color: var(--text-light-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scientific-loop-return span:empty {
  padding: 0;
  background: transparent;
}

.reasoning-question {
  max-width: 760px;
  margin: 56px 0 28px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.reasoning-examples {
  border-top: 1px solid var(--border-light);
}

.reasoning-example {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
}

.example-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.reasoning-example p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.research-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration-color: rgba(23, 77, 73, 0.42);
  text-underline-offset: 4px;
}

.research-link:hover {
  color: var(--teal-clinical);
}

.reasoning-conclusion {
  max-width: 820px;
  margin: 48px 0 0;
}

.reasoning-context {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.reasoning-failure {
  margin: 24px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.solution-bridge {
  max-width: 920px;
  margin: 0 0 64px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.difference-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 960px;
  margin-bottom: 40px;
}

.difference-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.difference-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.palpation-sequence {
  display: grid;
  row-gap: 48px;
}

.palpation-introduction {
  max-width: 700px;
  margin: 0;
}

.palpation-introduction p {
  margin-bottom: 0;
  color: var(--text-light-secondary);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.palpation-introduction p:first-child {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.4;
}

.palpation-introduction p + p {
  margin-top: 12px;
}

.adhesion-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: var(--sage);
  list-style: none;
}

.adhesion-flow li {
  position: relative;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 248, 0.72);
}

.adhesion-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 7px);
  color: var(--teal-clinical);
  content: "\2192";
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.flow-label {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-clinical);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.adhesion-flow strong {
  display: block;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  text-wrap: pretty;
}

.mapping-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0;
}

.mapping-statement p {
  margin-bottom: 0;
  color: var(--text-light-secondary);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.mapping-statement p:last-child {
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

.difference-block-testing .difference-heading {
  margin-bottom: 48px;
}

.treatment-cycle {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--ivory);
}

.cycle-example {
  margin: 12px 0 0;
  color: var(--teal-clinical);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cycle-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto 88px;
  gap: 28px;
  align-items: stretch;
}

.cycle-step {
  position: relative;
  grid-row: 1;
  min-height: 300px;
  padding: 24px 22px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.cycle-step-1 { grid-column: 1; }
.cycle-step-2 { grid-column: 2; }
.cycle-step-3 { grid-column: 3; }
.cycle-step-4 { grid-column: 4; }
.cycle-step-5 { grid-column: 5; }

.cycle-step-5::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(100% + 14px);
  height: calc(50% + 48px);
  border-left: 1px solid var(--teal-clinical);
  content: "";
}

.cycle-step:not(.cycle-step-5)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 7px);
  color: var(--teal-clinical);
  content: "\2192";
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.cycle-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--teal-clinical);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.cycle-step h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
  text-wrap: balance;
}

.cycle-step p {
  margin-bottom: 0;
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.cycle-step p + p {
  margin-top: 12px;
}

.cycle-step .cycle-entry {
  position: absolute;
  z-index: 3;
  top: calc(100% + 48px);
  right: calc(100% + 14px);
  width: 144px;
  margin-bottom: 0;
  padding: 4px 7px;
  background: var(--ivory);
  color: var(--teal-clinical);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(50%);
}

.cycle-loop-route {
  position: relative;
  grid-row: 2;
  grid-column: 3 / 5;
  min-height: 88px;
}

.cycle-loop-route svg {
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 28px);
  overflow: visible;
}

.loop-line,
.loop-arrow {
  fill: none;
  stroke: var(--teal-clinical);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.loop-label {
  position: absolute;
  top: 58px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 78%;
  padding: 3px 14px;
  background: var(--ivory);
  color: var(--text-light-secondary);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  transform: translateX(-50%);
}

.loop-label strong {
  color: var(--teal-clinical);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.cycle-decision-heading,
.cycle-complete-branch {
  display: none;
}

.branch-destination {
  display: none;
}

.comfort-note {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 56px;
  max-width: 1000px;
  margin: 64px auto 0;
  padding: 36px 40px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: #eef3f0;
}

.comfort-note h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.comfort-note p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.comfort-copy p + p {
  margin-top: 12px;
}

.case-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--border-dark);
  background: var(--ink-deep);
  color: var(--paper);
}

.case-section::before {
  position: absolute;
  top: 0;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--gold-light);
  content: "";
  opacity: 0.7;
}

.case-introduction {
  max-width: var(--container);
}

.case-introduction h2 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.case-headline-comparison {
  display: grid;
  gap: 54px;
  width: 100%;
  max-width: 1020px;
  margin: 56px auto 0;
}

.case-headline-group {
  justify-self: center;
  width: min(100%, 890px);
  max-width: 890px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
}

.case-headline-group span {
  display: block;
}

.case-headline-setup {
  color: var(--text-dark-secondary);
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1.22;
}

.case-headline-outcome {
  margin-top: 18px;
  color: var(--paper);
  font-size: clamp(37px, 4.2vw, 64px);
  line-height: 1.08;
}

.case-headline-turn {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--gold-light);
}

.case-headline-turn::before,
.case-headline-turn::after {
  height: 1px;
  background: var(--border-gold);
  content: "";
}

.case-headline-turn svg {
  width: 24px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.case-headline-result {
  justify-self: center;
}

.case-headline-result .case-headline-setup {
  color: var(--gold-light);
}

.case-history dt,
.follow-up-translation dt {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-chapter {
  padding: 96px 0;
  border-top: 1px solid var(--border-dark);
}

.case-introduction + .case-chapter {
  margin-top: 96px;
}

.case-chapter-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 900px;
  margin-bottom: 48px;
}

.case-chapter-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.case-chapter-label {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-chapter-heading h3 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(29px, 3.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.case-pattern-layout,
.case-hypothesis-layout,
.case-consent-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

.case-narrative {
  max-width: 640px;
}

.case-narrative p,
.case-outcome-introduction p,
.case-treatment-notes p,
.case-conclusion p {
  margin-bottom: 0;
  color: var(--text-dark-secondary);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.case-narrative p + p {
  margin-top: 18px;
}

.case-history {
  margin: 0;
  border-top: 1px solid var(--border-dark);
}

.case-history div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
}

.case-history dt {
  margin-bottom: 0;
}

.case-history dd {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

.case-hypothesis-test {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(207, 221, 215, 0.22);
  border-radius: var(--radius-card);
  background: var(--ink-soft);
}

.case-hypothesis-test span:nth-child(odd) {
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.case-hypothesis-test span:nth-child(even) {
  color: var(--gold-light);
  font-size: 20px;
}

.case-test-statement {
  max-width: 820px;
  margin: 56px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold-light);
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(21px, 2.4vw, 29px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.case-chapter-consent {
  padding-bottom: 88px;
}

.case-consent-layout {
  align-items: stretch;
}

.case-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 38px 42px;
  border: 1px solid rgba(207, 221, 215, 0.22);
  border-radius: var(--radius-card);
  background: var(--ink-soft);
}

.case-quote p {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.case-quote cite {
  margin-top: 20px;
  color: var(--gold-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-treatment-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  list-style: none;
}

.case-treatment-context {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-treatment-sequence li {
  position: relative;
  min-height: 250px;
  padding: 30px 28px 34px;
}

.case-treatment-sequence li:first-child {
  padding-left: 0;
}

.case-treatment-sequence li + li {
  border-left: 1px solid var(--border-dark);
}

.case-treatment-sequence li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% - 10px);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--ink-deep);
  color: var(--gold-light);
  content: "\2192";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.case-treatment-sequence .case-remap-step {
  background: rgba(211, 178, 120, 0.07);
}

.case-remap-next {
  display: block;
  margin-top: 8px;
}

.case-step-label {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-treatment-sequence strong {
  display: block;
  margin-bottom: 14px;
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
}

.case-treatment-sequence p {
  margin-bottom: 0;
  color: var(--text-dark-secondary);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.case-treatment-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  margin-top: 48px;
}

.case-treatment-notes p {
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.case-needle-total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 72px 0 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.case-needle-total span {
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.case-outcome-introduction {
  max-width: 780px;
}

.case-outcome-quote {
  margin: 28px 0;
}

.case-follow-up {
  margin-top: 64px;
  padding: 44px;
  border: 1px solid rgba(207, 221, 215, 0.22);
  border-radius: var(--radius-card);
  background: var(--ink-soft);
}

.case-follow-up-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  align-items: end;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-dark);
}

.case-follow-up-header h4 {
  margin: 0;
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.case-follow-up-treatment {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border-dark);
}

.case-follow-up-treatment span,
.case-follow-up-treatment strong,
.case-follow-up-treatment small {
  display: block;
}

.case-follow-up-treatment span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-follow-up-treatment strong {
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.case-follow-up-treatment small {
  margin-top: 8px;
  color: var(--text-dark-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.case-follow-up-evidence {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 72px;
  margin-top: 44px;
}

.follow-up-evidence {
  width: min(100%, 390px);
  margin: 0 auto;
}

.follow-up-image-crop {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.follow-up-image-crop img {
  display: block;
  width: 100%;
  height: auto;
}

.follow-up-evidence figcaption {
  margin-top: 16px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.follow-up-translation {
  padding: 0;
}

.follow-up-translation dl {
  margin: 0;
}

.follow-up-translation dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border-dark);
}

.follow-up-translation dl div:last-child {
  border-bottom: 0;
}

.follow-up-translation dt {
  margin-bottom: 0;
}

.follow-up-translation dd {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

.case-conclusion {
  max-width: 920px;
  margin-top: 96px;
  padding-left: 28px;
  border-left: 2px solid var(--gold-light);
}

.case-conclusion .case-conclusion-guide {
  color: var(--text-dark-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.case-conclusion .case-conclusion-proof {
  margin-top: 8px;
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.4;
}

.case-section :is(a, button):focus-visible {
  outline-color: var(--focus-light);
}

.practitioner-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--sage-deep);
  background: var(--sage);
  color: var(--ink);
}

.practitioner-section::before {
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0.72;
}

.practitioner-introduction h2 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.practitioner-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 72px;
  margin-top: 64px;
}

.practitioner-portrait {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(32, 40, 39, 0.14);
  border-radius: 24px;
  background: var(--paper);
}

.practitioner-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.practitioner-profile-copy {
  align-self: center;
}

.practitioner-identity h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.practitioner-thesis {
  max-width: 700px;
  margin: 30px 0 0;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(23px, 2.7vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.practitioner-credentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 64px 0 0;
  border-top: 1px solid rgba(32, 40, 39, 0.18);
  border-bottom: 1px solid rgba(32, 40, 39, 0.18);
}

.practitioner-credentials > div {
  min-height: 176px;
  padding: 26px 30px;
}

.practitioner-credentials > div:first-child {
  padding-left: 0;
}

.practitioner-credentials > div + div {
  border-left: 1px solid rgba(32, 40, 39, 0.18);
}

.practitioner-credentials dt {
  margin-bottom: 9px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.practitioner-credentials dd {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.practitioner-education {
  display: grid;
  gap: 17px;
}

.practitioner-education span,
.practitioner-education small {
  display: block;
}

.practitioner-education small {
  margin-top: 4px;
  color: var(--text-light-secondary);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.practitioner-credentials a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 7px;
  color: var(--teal-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-underline-offset: 3px;
}

.practitioner-bridge {
  max-width: 880px;
  margin: 56px auto 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.practitioner-chapters {
  display: grid;
  gap: 36px;
  margin-top: 88px;
}

.practitioner-chapter {
  padding: 68px;
  border: 1px solid rgba(32, 40, 39, 0.14);
  border-radius: 26px;
  background: var(--paper);
}

.practitioner-chapter-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 940px;
  margin-bottom: 48px;
}

.practitioner-chapter-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(181, 138, 70, 0.58);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.practitioner-chapter-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.14;
  text-wrap: balance;
}

.technique-first-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 840px;
  margin: 0 0 52px 72px;
}

.technique-first-examples blockquote {
  margin: 0;
  padding: 22px 27px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: var(--ivory);
}

.technique-first-examples p {
  margin: 0;
  color: var(--text-light-secondary);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: pretty;
}

.practitioner-narrative {
  max-width: 840px;
  margin-left: 72px;
}

.practitioner-narrative > p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.practitioner-narrative > p + p {
  margin-top: 22px;
}

.practitioner-narrative .practitioner-narrative-conclusion {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 500;
  line-height: 1.5;
}

.practitioner-care-narrative .practitioner-care-opening {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 500;
  line-height: 1.5;
}

.practitioner-care-commitments {
  margin-top: 42px;
  border-top: 1px solid rgba(32, 40, 39, 0.16);
}

.practitioner-care-commitment {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1.55fr);
  gap: 38px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(32, 40, 39, 0.16);
}

.practitioner-care-commitment h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.4;
  text-wrap: balance;
}

.practitioner-care-commitment ul {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding-left: 20px;
  color: var(--text-light-secondary);
}

.practitioner-care-commitment li {
  padding-left: 3px;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.practitioner-care-commitment li::marker {
  color: var(--gold);
}

.patient-alignment-statement {
  margin-top: 40px;
  padding: 27px 30px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: var(--sage);
}

.patient-alignment-statement p {
  margin: 0;
}

.patient-alignment-statement p:first-child {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.4;
}

.patient-alignment-statement p + p {
  margin-top: 9px;
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.review-evidence {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(32, 40, 39, 0.16);
}

.review-evidence h4 {
  margin: 0 0 24px;
  color: var(--teal-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.review-evidence-grid {
  border-top: 1px solid rgba(32, 40, 39, 0.14);
  counter-reset: practitioner-review;
}

.review-evidence-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(140px, 180px);
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 30px 0;
  border-bottom: 1px solid rgba(32, 40, 39, 0.14);
  counter-increment: practitioner-review;
}

.review-evidence-item::before {
  align-self: start;
  padding-top: 3px;
  color: var(--gold);
  content: counter(practitioner-review, decimal-leading-zero);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.review-evidence-copy {
  min-width: 0;
}

.review-evidence-label {
  margin: 0 0 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.review-evidence-item blockquote {
  min-width: 0;
  margin: 0;
}

.review-evidence-item blockquote p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: pretty;
}

.review-evidence-item footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.review-evidence-item footer span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.review-evidence-item footer a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.review-translation-note {
  margin: 2px 0 0;
  color: var(--text-light-secondary);
  font-size: 10px;
  line-height: 1.5;
}

.guarantee-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--border-light);
  background: var(--ivory);
  color: var(--ink);
}

.guarantee-section::before {
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0.72;
}

.guarantee-section .section-label {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.guarantee-introduction h2 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.guarantee-promise {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  margin-top: 72px;
  padding: 64px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: var(--ink-deep);
  color: var(--paper);
}

.guarantee-kicker {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.guarantee-promise h3 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(44px, 5.3vw, 70px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.guarantee-promise-copy {
  align-self: center;
  padding-left: 40px;
  border-left: 1px solid var(--border-gold);
}

.guarantee-promise-copy > p {
  margin: 0;
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: pretty;
}

.guarantee-promise-copy > p + p {
  margin-top: 8px;
}

.guarantee-promise-copy .guarantee-promise-emphasis {
  margin-top: 15px;
  color: var(--gold-light);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.guarantee-process,
.fee-chapter {
  margin-top: 88px;
}

.guarantee-chapter-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.guarantee-chapter-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-wrap: balance;
}

.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-steps li {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.guarantee-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--teal-clinical);
  content: "\2192";
  font-size: 15px;
  transform: translateY(-50%);
}

.guarantee-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(181, 138, 70, 0.58);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.guarantee-steps h4 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
}

.guarantee-steps p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.guarantee-steps .guarantee-step-assurance {
  margin-top: 18px;
  color: var(--teal-clinical);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.guarantee-terms {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1.7fr);
  gap: 44px;
  margin-top: 22px;
  padding: 26px 30px;
  border: 1px solid var(--sage-deep);
  border-radius: var(--radius-card);
  background: var(--sage);
}

.guarantee-terms-title {
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.guarantee-terms ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-terms li {
  position: relative;
  padding-left: 18px;
  color: var(--text-light-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.guarantee-terms li::before {
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.refund-proof {
  margin-top: 64px;
  border: 1px solid var(--sage-deep);
  border-radius: 24px;
  background: var(--paper);
}

.refund-proof summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px 38px;
  border-bottom-color: transparent;
  border-radius: 24px;
  background: var(--paper);
  cursor: pointer;
  list-style: none;
  transition:
    background-color 180ms cubic-bezier(0.2, 0.65, 0.3, 1),
    border-bottom-color 180ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.refund-proof summary::-webkit-details-marker {
  display: none;
}

.refund-proof summary:hover {
  background: rgba(228, 236, 232, 0.45);
}

.refund-proof summary:focus-visible {
  outline: 3px solid var(--focus-dark);
  outline-offset: 4px;
}

.refund-proof-summary-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.refund-proof-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.refund-proof-title {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.refund-proof-summary {
  margin-top: 9px;
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.refund-proof-control {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--teal-dark);
}

.refund-proof-control-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.refund-proof-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
  background: var(--ivory);
}

.refund-proof-icon::before,
.refund-proof-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--teal-clinical);
  content: "";
  transition: transform 180ms cubic-bezier(0.2, 0.65, 0.3, 1);
  transform: translate(-50%, -50%);
}

.refund-proof-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.refund-proof[open] .refund-proof-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.refund-proof.is-closing .refund-proof-icon::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  transform: translate(-50%, -50%) rotate(90deg);
}

.refund-proof[open] summary {
  border-bottom: 1px solid var(--sage-deep);
  border-radius: 24px 24px 0 0;
  background: var(--sage);
}

.refund-proof.is-closing summary {
  border-bottom-color: transparent;
  background: var(--paper);
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

.refund-proof.is-closing summary:hover {
  background: rgba(228, 236, 232, 0.45);
}

.refund-proof-content-inner {
  padding: 38px;
}

.refund-proof-privacy {
  margin: 0 0 26px;
  color: var(--text-light-secondary);
  font-size: 12px;
  line-height: 1.6;
}

.refund-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.refund-proof-card {
  display: flex;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--ivory);
  flex-direction: column;
}

.refund-proof-card header {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  min-height: 128px;
  margin-bottom: 18px;
}

.refund-proof-card header > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.refund-proof-card h4 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.refund-proof-card header p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.refund-proof-image {
  display: flex;
  color: var(--teal-dark);
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.refund-proof-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #111;
}

.refund-proof-image > span {
  align-self: flex-start;
  margin-top: 11px;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
}

.fee-chapter {
  padding-top: 80px;
  border-top: 1px solid var(--border-light);
}

.fee-heading {
  max-width: 720px;
}

.fee-table {
  width: 100%;
  overflow: hidden;
  border-spacing: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--paper);
  border-collapse: separate;
}

.fee-table tr + tr > * {
  border-top: 1px solid var(--border-light);
}

.fee-table th,
.fee-table td {
  padding: 30px 34px;
}

.fee-table th {
  color: var(--ink);
  font-weight: 400;
  text-align: left;
}

.fee-table th span {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.fee-table th small {
  display: block;
  margin-top: 7px;
  color: var(--text-light-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.fee-table td {
  width: 180px;
  border-left: 1px solid var(--border-light);
  color: var(--teal-dark);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  text-align: right;
}

.fee-table .fee-primary-row > * {
  padding-top: 38px;
  padding-bottom: 38px;
  background: rgba(228, 236, 232, 0.72);
}

.fee-table .fee-primary-row th span {
  font-size: 28px;
}

.fee-table .fee-primary-row td {
  font-size: clamp(42px, 4.5vw, 54px);
}

.fee-table .fee-secondary-row > * {
  padding-top: 23px;
  padding-bottom: 23px;
}

.fee-table .fee-secondary-row th span {
  font-size: 20px;
}

.fee-table .fee-secondary-row td {
  color: var(--teal-clinical);
  font-size: clamp(29px, 3.2vw, 36px);
}

.fee-secondary-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--text-light-secondary);
  font-size: inherit;
  line-height: 1.7;
}

.first-visit-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--sage-deep);
  background: var(--sage);
  color: var(--ink);
}

.first-visit-section::before {
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--teal-clinical);
  content: "";
  opacity: 0.62;
}

.first-visit-section .section-label {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.first-visit-introduction h2 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.first-visit-preparation {
  margin-top: 64px;
}

.first-visit-preparation > h3 {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.first-visit-preparation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 0;
  border-top: 1px solid rgba(32, 40, 39, 0.18);
  border-bottom: 1px solid rgba(32, 40, 39, 0.18);
}

.first-visit-preparation-grid > div {
  min-height: 132px;
  padding: 24px 28px;
}

.first-visit-preparation-grid > div:first-child {
  padding-left: 0;
}

.first-visit-preparation-grid > div + div {
  border-left: 1px solid rgba(32, 40, 39, 0.18);
}

.first-visit-preparation-grid dt {
  margin-bottom: 9px;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}

.first-visit-preparation-grid dd {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
}

.first-visit-journey {
  --first-visit-card-padding: 64px;
  --first-visit-number-size: 44px;
  position: relative;
  display: grid;
  gap: 32px;
  margin-top: 88px;
}

.first-visit-journey::before {
  position: absolute;
  z-index: 0;
  top: 64px;
  bottom: 64px;
  left: calc(var(--first-visit-card-padding) + 22px);
  width: 1px;
  background: rgba(35, 107, 101, 0.34);
  content: "";
}

.first-visit-chapter {
  position: relative;
  z-index: 1;
  padding: var(--first-visit-card-padding);
  border: 1px solid var(--border-light);
  border-radius: 26px;
  background: var(--paper);
}

.first-visit-chapter-heading {
  display: grid;
  grid-template-columns: var(--first-visit-number-size) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 980px;
  margin-bottom: 42px;
}

.first-visit-chapter-number {
  display: grid;
  place-items: center;
  width: var(--first-visit-number-size);
  height: var(--first-visit-number-size);
  border: 1px solid rgba(181, 138, 70, 0.58);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.first-visit-chapter-label {
  margin: 2px 0 9px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.first-visit-chapter-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.14;
  text-wrap: balance;
}

.first-visit-chapter-body {
  margin-left: calc(var(--first-visit-number-size) + 24px);
}

.first-visit-chapter-lead {
  margin: 0 0 24px;
  color: var(--text-light-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.first-visit-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(32, 40, 39, 0.16);
  list-style: none;
}

.first-visit-steps > li {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 38px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(32, 40, 39, 0.16);
}

.first-visit-steps > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.first-visit-steps h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.4;
  text-wrap: balance;
}

.first-visit-steps p {
  margin: 0;
  color: var(--text-light-secondary);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.first-visit-support-sentence {
  display: block;
}

.first-visit-support-sentence + .first-visit-support-sentence {
  margin-top: 10px;
}

.first-visit-chapter-aftercare .first-visit-steps {
  border-top: 0;
}

.first-visit-chapter-aftercare .first-visit-steps > li:first-child {
  padding: 30px;
  border: 1px solid var(--sage-deep);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-card);
  background: var(--sage);
}

.first-visit-chapter-aftercare .first-visit-steps > li:first-child h4 {
  font-size: clamp(22px, 2.2vw, 27px);
}

.first-visit-chapter-aftercare .first-visit-steps > li:nth-child(2) {
  margin-top: 22px;
  border-top: 1px solid rgba(32, 40, 39, 0.16);
}

.first-visit-section :is(a, button):focus-visible {
  outline-color: var(--focus-dark);
}

.guarantee-section :is(a, button):focus-visible {
  outline-color: var(--focus-dark);
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-boundary-half) 0;
  border-top: 1px solid var(--border-dark);
  background: var(--ink-deep);
  color: var(--paper);
}

.closing-section::before {
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(34vw, 420px);
  height: 1px;
  background: var(--gold-light);
  content: "";
  opacity: 0.72;
}

.closing-introduction {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.closing-section .section-label {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.closing-introduction h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(44px, 5.7vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.closing-booking-action {
  margin-top: 48px;
}

.closing-contact-route {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}

.closing-contact-route p {
  margin: 0;
  color: var(--text-dark-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.closing-contact-route a {
  margin: 6px 0 7px;
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration-color: rgba(211, 178, 120, 0.58);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.closing-contact-route a:hover,
.closing-contact-route a:focus-visible {
  color: var(--paper);
  text-decoration-color: var(--gold-light);
}

.closing-contact-route p:last-child {
  color: rgba(194, 200, 197, 0.72);
  font-size: 13px;
}

.closing-divider {
  height: 1px;
  margin: 56px 0 72px;
  background: var(--border-dark);
}

.closing-practical {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: 72px;
}

.closing-details {
  display: grid;
  gap: 56px;
}

.closing-details h3 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.closing-details address,
.closing-hours {
  margin: 0;
  color: var(--text-dark-secondary);
  font-size: 17px;
  font-style: normal;
  line-height: 1.7;
}

.closing-details address span,
.closing-hours span {
  display: block;
}

.closing-hours span:last-child {
  margin-top: 12px;
  color: rgba(194, 200, 197, 0.72);
  font-size: 14px;
}

.closing-map-link {
  display: block;
  border-radius: var(--radius-card);
  color: var(--gold-light);
  text-decoration: none;
}

.closing-map {
  margin: 0;
}

.closing-map-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  background: var(--ink-soft);
  transition: border-color 180ms ease;
}

.closing-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 180ms ease;
}

.closing-map figcaption {
  margin-top: 13px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration-color: rgba(211, 178, 120, 0.48);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.closing-map-link:hover .closing-map-frame,
.closing-map-link:focus-visible .closing-map-frame {
  border-color: var(--border-gold);
}

.closing-map-link:hover img,
.closing-map-link:focus-visible img {
  opacity: 1;
}

.closing-map-link:hover figcaption,
.closing-map-link:focus-visible figcaption {
  color: var(--paper);
  text-decoration-color: var(--gold-light);
}

.closing-section :is(a, button):focus-visible {
  outline: 2px solid var(--focus-light);
  outline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--border-dark);
  background: var(--ink-deep);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 2.2vw, 32px);
  width: min(var(--header-container), calc(100% - (var(--gutter) * 2)));
  min-height: 96px;
  margin-inline: auto;
  padding: 28px 0;
}

.site-footer-copyright {
  justify-self: start;
  margin: 0;
  color: rgba(255, 253, 248, 0.46);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer-phone {
  justify-self: center;
  color: rgba(255, 253, 248, 0.9);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration-color: rgba(255, 253, 248, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.site-footer-phone:hover {
  color: var(--paper);
  text-decoration-color: currentColor;
}

.site-footer-phone:focus-visible,
.site-footer-policy-link:not([aria-disabled="true"]):focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.site-footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 6px 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer-policy-link {
  color: inherit;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.site-footer-policy-link + .site-footer-policy-link::before {
  display: inline-block;
  margin: 0 9px;
  color: rgba(255, 253, 248, 0.3);
  content: "\00b7";
  text-decoration: none;
}

.site-footer-policy-link:not([aria-disabled="true"]):hover {
  color: var(--paper);
  text-decoration-color: currentColor;
}

.site-footer-policy-link[aria-current="page"] {
  color: var(--paper);
  text-decoration-color: rgba(211, 178, 120, 0.7);
}

.site-footer-policy-link[aria-disabled="true"] {
  cursor: default;
}

.practitioner-section :is(a, button):focus-visible {
  outline-color: var(--focus-dark);
}

.treatment-section :is(a, button):focus-visible {
  outline-color: var(--focus-dark);
}

.fit-section :is(a, button):focus-visible {
  outline-color: var(--focus-dark);
}

:is(a, button):focus-visible {
  outline: 3px solid var(--focus-light);
  outline-offset: 4px;
}

.js [data-hero] .headline-line,
.js [data-hero] .continue-cue {
  opacity: 0;
  transform: translateY(14px);
}

.js [data-hero].is-ready .headline-line,
.js [data-hero].is-ready .continue-cue {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js [data-hero].is-ready .headline-line:nth-child(2) {
  transition-delay: 90ms;
}

.js [data-hero].is-ready .headline-line:nth-child(3) {
  transition-delay: 180ms;
}

.js [data-hero].is-ready .continue-cue {
  transition-delay: 330ms;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-soft-break {
    display: none;
  }

  .site-footer-copyright {
    font-size: 11px;
  }

  .closing-practical {
    gap: 44px;
  }

  .closing-details {
    gap: 40px;
  }

  .first-visit-preparation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .first-visit-preparation-grid > div {
    min-height: 0;
  }

  .first-visit-preparation-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .first-visit-preparation-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .first-visit-preparation-grid > div:nth-child(even) {
    border-left: 1px solid rgba(32, 40, 39, 0.18);
  }

  .first-visit-preparation-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(32, 40, 39, 0.18);
  }

  .first-visit-journey {
    --first-visit-card-padding: 46px;
  }

  .guarantee-promise {
    gap: 44px;
    padding: 48px;
  }

  .guarantee-promise-copy {
    padding-left: 30px;
  }

  .guarantee-steps li {
    padding: 26px;
  }

  .guarantee-terms {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .refund-proof-content-inner {
    padding: 28px;
  }

  .refund-proof-card {
    padding: 16px;
  }

  .refund-proof-card header {
    grid-template-columns: 1fr;
    min-height: 164px;
  }

  .hero-stage::before,
  .hero-stage::after {
    width: 8vw;
  }

  .story {
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
    gap: 44px;
  }

  .fit-situation {
    gap: 48px;
  }

  .concern-group,
  .screening-panel {
    gap: 40px;
  }

  .adhesion-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adhesion-flow li:nth-child(2)::after {
    top: calc(100% + 5px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .cycle-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 24px;
  }

  .cycle-step,
  .cycle-loop-route {
    grid-column: auto;
    grid-row: auto;
  }

  .cycle-step {
    min-height: 250px;
  }

  .cycle-step .cycle-entry {
    position: static;
    width: auto;
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
    text-align: left;
    transform: none;
  }

  .cycle-step-5::before {
    display: none;
  }

  .cycle-step::after {
    display: none;
  }

  .cycle-loop-route {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding: 20px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    background: rgba(255, 253, 248, 0.62);
  }

  .cycle-loop-route svg {
    display: none;
  }

  .loop-label {
    position: static;
    display: flex;
    grid-row: 2;
    grid-column: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 100px;
    padding: 18px 14px;
    border: 1px solid var(--sage-deep);
    border-radius: var(--radius-small);
    background: var(--paper);
    text-align: center;
    transform: none;
  }

  .loop-label::after {
    color: var(--teal-clinical);
    content: "\21BA";
    font-size: 23px;
    line-height: 1;
  }

  .branch-destination {
    display: block;
    color: var(--text-light-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
  }

  .cycle-decision-heading {
    display: block;
    grid-row: 1;
    grid-column: 1 / -1;
    margin: 0 0 6px;
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
  }

  .cycle-complete-branch {
    display: flex;
    grid-row: 2;
    grid-column: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 100px;
    padding: 18px 14px;
    border: 1px solid var(--sage-deep);
    border-radius: var(--radius-small);
    background: var(--paper);
    text-align: center;
  }

  .cycle-complete-branch strong {
    color: var(--teal-clinical);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .cycle-complete-branch::after {
    color: var(--teal-clinical);
    content: "\2193";
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
  }

  .cycle-step-5 {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .cycle-step-5 .cycle-entry {
    display: none;
  }

  .case-pattern-layout,
  .case-hypothesis-layout,
  .case-consent-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .case-treatment-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-treatment-sequence li,
  .case-treatment-sequence li:first-child {
    min-height: 230px;
    padding: 28px;
  }

  .case-treatment-sequence li + li {
    border-left: 0;
  }

  .case-treatment-sequence li:nth-child(even) {
    border-left: 1px solid var(--border-dark);
  }

  .case-treatment-sequence li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-dark);
  }

  .case-treatment-sequence li:nth-child(1)::after,
  .case-treatment-sequence li:nth-child(3)::after {
    top: 50%;
    left: calc(100% - 10px);
    content: "\2192";
    transform: translateY(-50%);
  }

  .case-treatment-sequence li:nth-child(2)::after {
    top: calc(100% - 10px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .case-treatment-notes {
    gap: 40px;
  }

  .case-follow-up {
    padding: 36px;
  }

  .case-follow-up-header {
    gap: 40px;
  }

  .case-follow-up-evidence {
    gap: 52px;
  }

  .practitioner-profile {
    gap: 48px;
  }

  .practitioner-credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practitioner-credentials > div {
    min-height: 0;
  }

  .practitioner-credentials > div:nth-child(3) {
    padding-left: 0;
  }

  .practitioner-credentials > div:nth-child(even) {
    border-left: 1px solid rgba(32, 40, 39, 0.18);
  }

  .practitioner-credentials > div:nth-child(odd) {
    border-left: 0;
  }

  .practitioner-credentials > div:nth-child(n + 3) {
    border-top: 1px solid rgba(32, 40, 39, 0.18);
  }

  .practitioner-chapter {
    padding: 52px 46px;
  }

  .practitioner-narrative {
    margin-left: 0;
  }

  .technique-first-examples {
    margin-left: 0;
  }

}

@media (max-width: 1100px) {
  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(26, 34, 33, 0.96);
    opacity: 0;
    pointer-events: none;
    text-align: right;
    transform: translateY(-8px);
    transition:
      visibility 0s linear 200ms,
      opacity 180ms ease,
      transform 200ms ease;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-navigation a {
    min-height: 52px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-navigation a::after {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-booking {
    min-height: 42px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .closing-practical {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 48px;
  }

  .closing-divider {
    margin: 48px 0 56px;
  }

  .guarantee-promise {
    grid-template-columns: 1fr;
  }

  .guarantee-promise-copy {
    padding: 30px 0 0;
    border-top: 1px solid var(--border-gold);
    border-left: 0;
  }

  .guarantee-steps,
  .refund-proof-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-steps li {
    min-height: 0;
  }

  .guarantee-steps li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -14px;
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .guarantee-step-number {
    margin-bottom: 28px;
  }

  .refund-proof-card header {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 0;
  }

  .refund-proof-image {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
  }

  .desktop-heading-break {
    display: none;
  }

  .hero-stage {
    min-height: 680px;
  }

  .hero-stage::before,
  .hero-stage::after {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-featured::before {
    top: 72px;
    bottom: auto;
    width: 48px;
    height: 1px;
  }

  .story-featured .story-header {
    padding-top: 24px;
    padding-left: 0;
  }

  .fit-situation,
  .concern-group,
  .screening-panel {
    grid-template-columns: 1fr;
  }

  .fit-situation {
    gap: 20px;
  }

  .fit-title-break {
    display: none;
  }

  .concern-group {
    gap: 24px;
  }

  .concern-group h3 {
    max-width: 420px;
  }

  .screening-panel {
    gap: 20px;
  }

  .scientific-loop {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scientific-loop li {
    min-height: 56px;
  }

  .scientific-loop li:not(:last-child)::after {
    top: calc(100% + 5px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .scientific-loop-graphic {
    padding-bottom: 0;
  }

  .scientific-loop-return {
    position: static;
    height: auto;
    margin-top: 18px;
    text-align: center;
  }

  .scientific-loop-return svg {
    display: none;
  }

  .scientific-loop-return span {
    position: static;
    display: inline-block;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .scientific-loop-return span::before {
    margin-right: 0;
    color: var(--gold);
    content: "\21BA";
    font-size: 17px;
    vertical-align: -1px;
  }

  .reasoning-example {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .research-link {
    grid-column: 2;
    justify-self: start;
  }

  .adhesion-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .adhesion-flow li {
    min-height: 0;
  }

  .adhesion-flow li:not(:last-child)::after,
  .adhesion-flow li:nth-child(2)::after {
    display: block;
    top: calc(100% + 5px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .mapping-statement,
  .comfort-note {
    grid-template-columns: 1fr;
  }

  .mapping-statement {
    gap: 28px;
  }

  .mapping-statement p:last-child {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .comfort-note {
    gap: 20px;
  }

  .case-treatment-notes,
  .case-follow-up {
    grid-template-columns: 1fr;
  }

  .case-treatment-sequence li:nth-child(even) {
    border-left: 0;
  }

  .case-hypothesis-test {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-hypothesis-test span:nth-child(even) {
    display: grid;
    place-items: center;
    height: 20px;
    font-size: 0;
    transform: none;
  }

  .case-hypothesis-test span:nth-child(even)::before {
    content: "\2193";
    font-size: 20px;
    line-height: 1;
  }

  .case-treatment-sequence {
    grid-template-columns: 1fr;
  }

  .case-treatment-sequence li,
  .case-treatment-sequence li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-dark);
    border-left: 0;
  }

  .case-treatment-sequence li:last-child {
    border-bottom: 0;
  }

  .case-treatment-sequence li:nth-child(1)::after,
  .case-treatment-sequence li:nth-child(2)::after,
  .case-treatment-sequence li:nth-child(3)::after {
    top: calc(100% - 10px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .case-treatment-notes {
    gap: 28px;
  }

  .case-follow-up-header,
  .case-follow-up-evidence {
    grid-template-columns: 1fr;
  }

  .case-follow-up-header {
    align-items: start;
    gap: 28px;
  }

  .case-follow-up-treatment {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }

  .follow-up-evidence {
    width: min(100%, 360px);
  }

  .practitioner-profile {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .practitioner-thesis {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .practitioner-credentials {
    grid-template-columns: 1fr;
  }

  .practitioner-credentials > div,
  .practitioner-credentials > div:first-child {
    min-height: 0;
    padding: 21px 0;
  }

  .practitioner-credentials > div + div {
    border-top: 1px solid rgba(32, 40, 39, 0.18);
    border-left: 0;
  }

  .practitioner-credentials > div:nth-child(3) {
    padding-left: 0;
  }

  .review-evidence-item {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 10px 16px;
    padding: 24px 0;
  }

  .review-evidence-item footer {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 11px;
    margin-top: 4px;
  }

  .review-translation-note {
    flex-basis: 100%;
    margin-top: 0;
  }

}

@media (max-width: 680px) {
  :root {
    --section-boundary-half: 72px;
    --gutter: 16px;
  }

  .brand-name span {
    display: block;
  }

  .brand-location {
    display: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 30px 0;
    text-align: center;
  }

  .site-footer-copyright,
  .site-footer-phone,
  .site-footer-policies {
    justify-self: center;
  }

  .site-footer-policies {
    justify-content: center;
  }

  .closing-section {
    padding: var(--section-boundary-half) 0;
  }

  .closing-introduction h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .closing-booking-action {
    width: 100%;
    min-width: 0;
    margin-top: 40px;
  }

  .closing-contact-route {
    margin-top: 40px;
  }

  .closing-contact-route a {
    max-width: 100%;
  }

  .closing-divider {
    margin: 40px 0 48px;
  }

  .closing-details {
    gap: 38px;
  }

  .first-visit-introduction h2 {
    font-size: clamp(36px, 10.7vw, 48px);
  }

  .first-visit-preparation {
    margin-top: 48px;
  }

  .first-visit-journey {
    --first-visit-card-padding: 24px;
    --first-visit-number-size: 40px;
    gap: 24px;
    margin-top: 64px;
  }

  .first-visit-journey::before {
    display: none;
  }

  .first-visit-chapter {
    padding: 36px var(--first-visit-card-padding);
    border-radius: var(--radius-card);
  }

  .first-visit-chapter-heading {
    gap: 16px;
    margin-bottom: 32px;
  }

  .first-visit-chapter-heading h3 {
    font-size: clamp(29px, 8.5vw, 39px);
  }

  .first-visit-chapter-body {
    margin-left: 0;
  }

  .first-visit-steps > li {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 24px 0;
  }

  .first-visit-steps h4 {
    font-size: 21px;
    text-wrap: pretty;
  }

  .first-visit-steps p {
    font-size: 17px;
  }

  .first-visit-chapter-aftercare .first-visit-steps > li:first-child {
    padding: 24px 22px;
  }

  .non-mobile-soft-break {
    display: none;
  }

  .practitioner-care-commitment {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .practitioner-care-commitment h4 {
    font-size: 21px;
    text-wrap: pretty;
  }

  body {
    font-size: 17px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 100svh;
    padding: 136px var(--gutter) 104px;
  }

  h1 {
    font-size: clamp(31px, 9.8vw, 41px);
    line-height: 1.04;
  }

  .headline-line {
    white-space: nowrap;
  }

  .headline-line + .headline-line {
    margin-top: 0.17em;
  }

  .continue-cue {
    margin-top: 56px;
  }

  .method-stage {
    padding: 80px 0;
  }

  .proof-stage {
    padding: 80px 0 var(--section-boundary-half);
  }

  .fit-section {
    padding: var(--section-boundary-half) 0;
  }

  .reasoning-stage {
    padding: var(--section-boundary-half) 0 56px;
  }

  .palpation-stage,
  .testing-stage {
    padding: 40px 0 64px;
  }

  .testing-stage {
    padding-bottom: var(--section-boundary-half);
  }

  .palpation-stage .difference-block,
  .testing-stage .difference-block {
    padding-top: 40px;
  }

  .method-container::before {
    margin-bottom: 28px;
  }

  .method-stage h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .proof-introduction {
    margin-bottom: 48px;
  }

  .story,
  .story-featured {
    gap: 24px;
    padding: 48px 0;
  }

  .story-featured::before {
    top: 48px;
  }

  .story-featured .story-header {
    padding-top: 20px;
  }

  .story-body p {
    font-size: 17px;
  }

  .featured-quote {
    margin: 32px 0;
    padding: 24px 0 24px 20px;
  }

  .proof-close {
    margin-top: 64px;
  }

  .google-proof {
    min-height: 0;
    padding: 20px 22px;
  }

  .google-clinic-name {
    font-size: 22px;
  }

  .google-rating {
    gap: 7px;
  }

  .google-stars {
    font-size: 18px;
  }

  .supporting-routes {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
  }

  .primary-action {
    width: 100%;
  }

  .fit-introduction {
    margin-bottom: 48px;
  }

  .fit-situations-heading {
    margin-top: 20px;
  }

  .fit-situation {
    padding: 36px 0;
  }

  .fit-situation-copy p {
    font-size: 17px;
  }

  .concerns {
    padding-top: 80px;
  }

  .concerns-introduction {
    margin-bottom: 36px;
  }

  .concern-group {
    padding: 32px 0;
  }

  .concern-list-columns {
    grid-template-columns: 1fr;
  }

  .screening-panel {
    margin-top: 64px;
    padding: 28px 24px;
  }

  .treatment-introduction {
    margin-bottom: 40px;
  }

  .reasoning-framework {
    padding: 24px 20px;
  }

  .reasoning-question {
    margin-top: 48px;
  }

  .reasoning-example {
    padding: 24px 0;
  }

  .reasoning-example p {
    font-size: 16px;
  }

  .reasoning-conclusion {
    margin-top: 40px;
  }

  .reasoning-failure {
    padding-left: 18px;
  }

  .solution-bridge {
    margin-bottom: 48px;
  }

  .difference-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  .difference-number {
    width: 40px;
    height: 40px;
  }

  .palpation-sequence {
    row-gap: 36px;
  }

  .palpation-introduction p {
    font-size: 17px;
  }

  .adhesion-flow li {
    padding: 22px;
  }

  .adhesion-flow,
  .treatment-cycle {
    padding: 20px;
  }

  .cycle-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cycle-step,
  .cycle-step-5 {
    grid-column: 1;
    min-height: 0;
    padding: 24px;
  }

  .cycle-step:not(.cycle-step-5) {
    margin-bottom: 44px;
  }

  .cycle-step:not(.cycle-step-5)::after {
    display: block;
    top: calc(100% + 10px);
    left: 50%;
    content: "\2193";
    transform: translateX(-50%);
  }

  .cycle-loop-route {
    margin: -20px 0 44px;
    padding: 18px 20px;
  }

  .cycle-step .cycle-entry {
    margin-bottom: 14px;
  }

  .comfort-note {
    margin-top: 48px;
    padding: 28px 24px;
  }

  .case-section {
    padding: var(--section-boundary-half) 0;
  }

  .case-headline-comparison {
    gap: 38px;
    margin-top: 44px;
  }

  .case-headline-setup {
    font-size: clamp(23px, 6.5vw, 31px);
  }

  .case-headline-outcome {
    margin-top: 14px;
    font-size: clamp(35px, 10vw, 48px);
  }

  .case-introduction + .case-chapter {
    margin-top: 72px;
  }

  .case-chapter {
    padding: 72px 0;
  }

  .case-chapter-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }

  .case-chapter-number {
    width: 38px;
    height: 38px;
  }

  .case-narrative p,
  .case-outcome-introduction p,
  .case-treatment-notes p,
  .case-conclusion p {
    font-size: 17px;
  }

  .case-history div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-test-statement {
    margin-top: 44px;
    padding-left: 18px;
  }

  .case-quote,
  .follow-up-translation {
    padding: 28px 24px;
  }

  .case-treatment-notes {
    margin-top: 36px;
  }

  .case-treatment-sequence .case-remap-step {
    margin-inline: -14px;
    padding-inline: 14px;
    border-radius: var(--radius-small);
  }

  .case-needle-total {
    margin-top: 56px;
  }

  .case-follow-up {
    margin-top: 64px;
    padding: 28px 24px;
  }

  .case-follow-up-evidence {
    gap: 44px;
    margin-top: 36px;
  }

  .follow-up-translation dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-conclusion {
    margin-top: 64px;
    padding-left: 20px;
  }

  .case-conclusion .case-conclusion-proof {
    font-size: 24px;
  }

  .practitioner-section {
    padding: var(--section-boundary-half) 0;
  }

  .practitioner-introduction h2 {
    font-size: clamp(36px, 10.7vw, 48px);
  }

  .practitioner-profile {
    margin-top: 48px;
  }

  .practitioner-credentials {
    margin-top: 48px;
  }

  .practitioner-chapters {
    gap: 24px;
    margin-top: 64px;
  }

  .practitioner-chapter {
    padding: 36px 24px;
    border-radius: var(--radius-card);
  }

  .practitioner-chapter-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }

  .practitioner-chapter-number {
    width: 38px;
    height: 38px;
  }

  .practitioner-chapter-heading h3 {
    font-size: clamp(29px, 8.5vw, 39px);
  }

  .technique-first-examples {
    gap: 14px;
    margin-bottom: 40px;
  }

  .technique-first-examples blockquote {
    padding: 22px;
  }

  .practitioner-narrative > p {
    font-size: 17px;
  }

  .practitioner-narrative .practitioner-narrative-conclusion {
    padding-left: 18px;
    font-size: 21px;
  }

  .patient-alignment-statement {
    margin-top: 34px;
    padding: 24px 22px;
  }

  .review-evidence {
    margin-top: 48px;
  }

  .guarantee-introduction h2 {
    font-size: clamp(36px, 10.7vw, 48px);
  }

  .guarantee-promise {
    gap: 34px;
    margin-top: 48px;
    padding: 36px 24px;
    border-radius: var(--radius-card);
  }

  .guarantee-promise-copy {
    padding-top: 26px;
  }

  .guarantee-process,
  .fee-chapter {
    margin-top: 64px;
  }

  .guarantee-chapter-heading {
    margin-bottom: 32px;
  }

  .guarantee-chapter-heading h3 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .guarantee-steps {
    gap: 18px;
  }

  .guarantee-steps li {
    padding: 24px;
  }

  .guarantee-terms {
    padding: 24px 22px;
  }

  .guarantee-terms ul {
    grid-template-columns: 1fr;
  }

  .refund-proof {
    margin-top: 48px;
    border-radius: var(--radius-card);
  }

  .refund-proof summary {
    gap: 18px;
    padding: 26px 22px;
    border-radius: var(--radius-card);
  }

  .refund-proof[open] summary {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }

  .refund-proof-control-label {
    display: none;
  }

  .refund-proof-icon {
    width: 34px;
    height: 34px;
  }

  .refund-proof-content-inner {
    padding: 24px 18px;
  }

  .refund-proof-card {
    padding: 18px;
  }

  .fee-chapter {
    padding-top: 64px;
  }

  .fee-table th,
  .fee-table td {
    padding: 22px 20px;
  }

  .fee-table th span {
    font-size: 20px;
  }

  .fee-table td {
    width: 94px;
    font-size: 32px;
  }

  .fee-table .fee-primary-row > * {
    padding: 28px 20px;
  }

  .fee-table .fee-primary-row th span {
    font-size: 23px;
  }

  .fee-table .fee-primary-row td {
    font-size: 38px;
  }

  .fee-table .fee-secondary-row > * {
    padding: 20px;
  }

  .fee-table .fee-secondary-row th span {
    font-size: 18px;
  }

  .fee-table .fee-secondary-row td {
    font-size: 29px;
  }

}

/* Phone sizing for the Step 4 decision branch. */
@media (max-width: 520px) {
  .first-visit-preparation-grid {
    grid-template-columns: 1fr;
  }

  .first-visit-preparation-grid > div,
  .first-visit-preparation-grid > div:first-child,
  .first-visit-preparation-grid > div:nth-child(3),
  .first-visit-preparation-grid > div:nth-child(even) {
    padding: 21px 0;
    border-left: 0;
  }

  .first-visit-preparation-grid > div + div {
    border-top: 1px solid rgba(32, 40, 39, 0.18);
    border-left: 0;
  }

  .cycle-loop-route {
    padding: 18px 14px;
  }

  .loop-label,
  .cycle-complete-branch {
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 124px;
    padding: 16px 10px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 8px;
  }

  .header-booking {
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
