:root {
  --ink: #301905;
  --gold: #9f7e61;
  --sage: #9eac84;
  --warm: #f8f4ed;
  --pale-sage: #f5f7f1;
  --paper: #fdf9f4;
  --border: #e3d9cc;
  --muted: #8a7b6b;
  --line: #06c755;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(48, 25, 5, 0.12);
  --font-display: "Noto Serif TC", "Songti TC", serif;
  --font-body: "Noto Sans TC", "Taipei Sans TC", "PingFang TC", sans-serif;
  /* transitions-dev */
  --panel-open-dur: 400ms;
  --panel-close-dur: 350ms;
  --panel-translate-y: 100px;
  --panel-blur: 2px;
  --panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.t-panel-slide {
  transform: translateY(var(--panel-translate-y));
  opacity: 0;
  filter: blur(var(--panel-blur));
  pointer-events: none;
  transition:
    transform var(--panel-close-dur) var(--panel-ease),
    opacity   var(--panel-close-dur) var(--panel-ease),
    filter    var(--panel-close-dur) var(--panel-ease);
  will-change: transform, opacity, filter;
}
.t-panel-slide[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform var(--panel-open-dur) var(--panel-ease),
    opacity   var(--panel-open-dur) var(--panel-ease),
    filter    var(--panel-open-dur) var(--panel-ease);
}

@media (prefers-reduced-motion: reduce) {
  .t-panel-slide { transition: none !important; }
}

/* Subpage editorial system: high-end integrated medicine editorial pages. */
.article-page-body {
  position: relative;
  padding: clamp(70px, 8vw, 120px) 24px clamp(96px, 10vw, 150px);
  background:
    linear-gradient(180deg, rgba(253, 249, 244, 0.98), rgba(248, 244, 237, 0.98) 58%, rgba(245, 247, 241, 0.92)),
    var(--paper);
}

.article-page-body::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(159, 126, 97, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(159, 126, 97, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 58%);
}

.article-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 24px;
  padding-left: 18px;
  border-left: 1px solid rgba(159, 126, 97, 0.3);
}

.article-toc {
  display: grid;
  gap: 0;
}

.article-toc .eyebrow {
  margin-bottom: 12px;
}

.article-toc a {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.16);
  color: rgba(48, 25, 5, 0.7);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.article-toc a::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: rgba(159, 126, 97, 0.34);
  transform: translateY(-50%);
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--gold);
}

.article-toc a:hover::before,
.article-toc a:focus-visible::before {
  background: var(--gold);
}

.article-rail .service-side-nav {
  margin-top: 0;
}

.article-flow {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
  max-width: 880px;
}

.article-page-body .article-flow.reveal,
.article-page-body .article-flow .reveal {
  opacity: 1;
  transform: none;
}

.article-flow > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1021px) {
  .page-booking .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-booking .article-rail {
    display: none;
  }

  .page-booking .article-flow {
    max-width: none;
  }
}

.article-heading {
  margin-top: clamp(18px, 4vw, 48px);
  letter-spacing: 0;
}

.article-heading:first-child {
  margin-top: 0;
}

.article-heading-h1,
.article-heading-h2 {
  max-width: 13em;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.14;
}

.article-heading-h3 {
  max-width: 17em;
  padding-top: 20px;
  border-top: 1px solid rgba(159, 126, 97, 0.22);
  color: rgba(48, 25, 5, 0.94);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
}

.article-heading-h4,
.article-heading-h5,
.article-heading-h6 {
  margin-top: 8px;
  color: rgba(48, 25, 5, 0.88);
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.45;
}

.article-p {
  max-width: 66ch;
  margin: 0;
  color: rgba(48, 25, 5, 0.77);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 2;
}

.article-inline-link {
  min-height: 0;
  display: inline-flex;
  padding: 0;
  vertical-align: baseline;
}

.article-inline-link svg {
  width: 0.95em;
  height: 0.95em;
}

.booking-step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin: clamp(18px, 3vw, 34px) 0 clamp(8px, 2vw, 20px);
}

.booking-step-card {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(227, 217, 204, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 246, 239, 0.94)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(48, 25, 5, 0.06);
}

.booking-step-card h4 {
  margin: 0;
  color: rgba(48, 25, 5, 0.94);
  font-family: var(--font-sans);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 850;
  line-height: 1.34;
  text-align: center;
}

.booking-step-card h4 span {
  display: inline-grid;
  width: 1.4em;
  height: 1.4em;
  place-items: center;
  margin-right: 6px;
  border: 1px solid rgba(48, 25, 5, 0.5);
  border-radius: 999px;
  font-size: 0.75em;
  line-height: 1;
}

.booking-step-card p {
  margin: 20px 0 0;
  color: rgba(48, 25, 5, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.82;
}

.booking-step-card .btn {
  align-self: center;
  margin-top: 18px;
}

.article-marker {
  justify-self: start;
  margin: 8px 0 -6px;
  padding: 7px 12px;
  border-left: 3px solid rgba(159, 126, 97, 0.5);
  background: rgba(255, 253, 248, 0.62);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.article-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 16px 18px 16px 34px;
  border-top: 1px solid rgba(159, 126, 97, 0.18);
  color: rgba(48, 25, 5, 0.78);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
}

.article-list li::before {
  position: absolute;
  top: 25px;
  left: 10px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--sage);
}

.article-circled-list {
  display: grid;
  max-width: 68ch;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-circled-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(159, 126, 97, 0.18);
  color: rgba(48, 25, 5, 0.78);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.78;
}

.article-circled-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-circled-marker {
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  justify-content: center;
  color: rgba(48, 25, 5, 0.82);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.article-concept-examples {
  display: grid;
  max-width: 70ch;
  margin: 2px 0 0;
  border-top: 1px solid rgba(159, 126, 97, 0.2);
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
}

.article-concept-example {
  display: grid;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(20px, 2.5vw, 30px) 0;
  border-top: 1px solid rgba(159, 126, 97, 0.16);
}

.article-concept-example:first-child {
  border-top: 0;
}

.article-concept-label {
  margin: 0;
  color: rgba(48, 25, 5, 0.66);
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.5;
}

.article-concept-example h3 {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(48, 25, 5, 0.94);
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.25;
}

.article-concept-example p:not(.article-concept-label) {
  max-width: none;
  margin: 0;
  color: rgba(48, 25, 5, 0.76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.88;
}

.article-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border-top: 1px solid rgba(159, 126, 97, 0.28);
  border-bottom: 1px solid rgba(159, 126, 97, 0.28);
}

.article-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: rgba(48, 25, 5, 0.82);
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(159, 126, 97, 0.14);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  color: var(--gold);
  font-weight: 800;
}

.clinic-schedule-scroll {
  position: relative;
  width: min(100%, 1068px);
  margin: clamp(18px, 3vw, 34px) 0;
  overflow-x: auto;
  border: 1px solid rgba(159, 126, 97, 0.22);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.68);
  -webkit-overflow-scrolling: touch;
}

.clinic-schedule-scroll::after {
  position: sticky;
  right: 0;
  display: block;
  float: right;
  width: 36px;
  height: 1px;
  margin-top: -1px;
  content: "";
  pointer-events: none;
  box-shadow: -18px 0 24px rgba(253, 249, 244, 0.92);
}

.clinic-schedule-table {
  width: 100%;
  min-width: 820px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.clinic-schedule-table th,
.clinic-schedule-table td {
  min-width: 112px;
  padding: 24px 18px;
  border-right: 1px solid rgba(159, 126, 97, 0.2);
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
  text-align: center;
  vertical-align: middle;
}

.clinic-schedule-table tr:last-child th,
.clinic-schedule-table tr:last-child td {
  border-bottom: 0;
}

.clinic-schedule-table th:last-child,
.clinic-schedule-table td:last-child {
  border-right: 0;
}

.clinic-schedule-table thead th {
  padding: 18px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.clinic-schedule-corner,
.clinic-schedule-time {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 96px;
  min-width: 96px;
}

.clinic-schedule-corner {
  z-index: 3;
  background: var(--ink);
}

.clinic-schedule-corner::after,
.clinic-schedule-time::after {
  position: absolute;
  top: 0;
  right: -18px;
  bottom: 0;
  width: 18px;
  content: "";
  pointer-events: none;
}

.clinic-schedule-corner::after {
  background: linear-gradient(90deg, var(--ink), rgba(48, 25, 5, 0));
}

.clinic-schedule-time {
  color: var(--ink);
  background: #f8faf5;
  box-shadow: 1px 0 0 rgba(159, 126, 97, 0.2);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.clinic-schedule-time::after {
  background: linear-gradient(90deg, #f8faf5 32%, rgba(248, 250, 245, 0));
}

.schedule-cell-content {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px 6px;
  align-items: center;
  justify-content: center;
  color: rgba(48, 25, 5, 0.86);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.55;
}

.schedule-name {
  white-space: nowrap;
}

.schedule-west-badge {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.schedule-empty {
  color: rgba(48, 25, 5, 0.34);
  font-size: 18px;
  font-weight: 700;
}

.clinic-hours-list dt {
  color: rgba(159, 126, 97, 0.95);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.clinic-hours-list dd {
  margin: 7px 0 0;
  color: rgba(48, 25, 5, 0.82);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.clinic-hours-list {
  display: grid;
  width: min(100%, 720px);
  margin: clamp(18px, 3vw, 30px) 0;
  border-top: 1px solid rgba(159, 126, 97, 0.24);
}

.clinic-hours-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.16);
}

.clinic-hours-list dd {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  align-items: center;
}

.clinic-hours-list dd span {
  white-space: nowrap;
}

.hours-card .clinic-hours-list {
  width: 100%;
  margin: 0;
  border-top: 0;
}

.hours-card .clinic-hours-list div {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 26px;
}

.hours-card .clinic-hours-list .clinic-hours-holiday {
  background: rgba(159, 126, 97, 0.055);
}

.hours-card .clinic-hours-list .clinic-hours-holiday dt {
  color: rgba(159, 126, 97, 0.82);
}

.hours-card .clinic-hours-list .clinic-hours-holiday dd {
  color: rgba(48, 25, 5, 0.76);
}

.hours-card .clinic-hours-list dd {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.65;
}

.education-figure {
  display: grid;
  gap: 12px;
  width: min(100%, 920px);
  margin: 0 0 clamp(18px, 4vw, 44px);
}

.education-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 32px 92px rgba(48, 25, 5, 0.11);
}

.education-figure figcaption {
  margin: 0;
  color: rgba(48, 25, 5, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.about-integrated-figure {
  width: min(100%, 1040px);
}

.about-integrated-figure img {
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(159, 126, 97, 0.18);
  background: #f8f2ea;
  object-fit: contain;
  object-position: center;
}

.service-atlas-figure {
  display: grid;
  gap: 12px;
  width: min(100%, 980px);
  margin: 0 0 clamp(18px, 4vw, 48px);
}

.service-atlas-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
  box-shadow: 0 26px 78px rgba(48, 25, 5, 0.1);
}

.service-atlas-figure figcaption {
  max-width: 58ch;
  margin: 0;
  color: rgba(48, 25, 5, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.inline-practitioner {
  display: grid;
  grid-template-columns: clamp(104px, 11vw, 142px) minmax(0, 1fr);
  gap: clamp(18px, 3.5vw, 42px);
  align-items: center;
  width: min(100%, 760px);
  margin: clamp(8px, 2vw, 18px) 0 clamp(24px, 4vw, 42px);
  padding: clamp(18px, 2.6vw, 30px) 0;
  border-top: 1px solid rgba(159, 126, 97, 0.28);
  border-bottom: 1px solid rgba(159, 126, 97, 0.16);
}

.inline-practitioner figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: 999px 999px 4px 4px;
  background: rgba(253, 249, 244, 0.88);
  box-shadow: 0 16px 38px rgba(48, 25, 5, 0.1);
}

.inline-practitioner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.inline-practitioner span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.inline-practitioner h3 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
}

.inline-practitioner p {
  max-width: 26em;
  margin: 0;
  color: rgba(48, 25, 5, 0.7);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
}

.inline-practitioner-profile {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, 760px);
  margin: clamp(-14px, -1.4vw, -6px) 0 clamp(30px, 4.5vw, 56px);
  padding: clamp(18px, 2.6vw, 28px) 0 clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
}

.inline-practitioner-profile span {
  display: block;
  margin-bottom: 8px;
  color: rgba(159, 126, 97, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.inline-practitioner-profile li {
  color: rgba(48, 25, 5, 0.76);
  font-size: clamp(15px, 1.14vw, 17px);
  font-weight: 600;
  line-height: 1.72;
}

.inline-practitioner-profile ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.inline-practitioner-profile li {
  position: relative;
  padding-left: 17px;
}

.inline-practitioner-profile li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: rgba(158, 172, 132, 0.9);
}

.service-directory-body {
  padding: clamp(74px, 8vw, 126px) 24px clamp(96px, 10vw, 150px);
  background:
    linear-gradient(180deg, rgba(253, 249, 244, 0.98), rgba(247, 241, 232, 0.98)),
    var(--paper);
}

.service-directory {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.service-directory-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.service-directory-heading h2 {
  max-width: 5em;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.05;
}

.directory-visual {
  width: min(100%, 360px);
  margin: clamp(24px, 4vw, 42px) 0 0;
}

.directory-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: left center;
  box-shadow: 0 28px 78px rgba(48, 25, 5, 0.13);
}

.service-overview {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(159, 126, 97, 0.22);
}

.service-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr) 34px;
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.22);
  color: inherit;
}

.service-overview-card::before {
  position: absolute;
  inset: 18px auto 18px -20px;
  width: 3px;
  content: "";
  background: var(--sage);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  transform: scaleY(0.6);
}

.service-overview-card:hover::before,
.service-overview-card:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-overview-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.service-overview-card h2 {
  max-width: 10em;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
}

.service-overview-card strong {
  display: block;
  max-width: 42em;
  margin-top: 12px;
  color: rgba(48, 25, 5, 0.82);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}

.service-overview-card p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.service-overview-card i,
.service-overview-card svg {
  margin-top: 10px;
  color: var(--gold);
}

.doctors-opening .article-heading {
  margin-top: 0;
}

.doctors-opening .article-heading-h2 {
  max-width: 14em;
}

.team-roster-card {
  border-radius: 0;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 30px 86px rgba(48, 25, 5, 0.09);
}

.team-roster-card::after {
  display: none;
}

.team-roster-copy ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.team-roster-copy li {
  position: relative;
  padding-left: 16px;
  color: rgba(48, 25, 5, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.team-roster-copy li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: rgba(158, 172, 132, 0.9);
}

@media (max-width: 1020px) {
  .article-layout,
  .service-directory {
    grid-template-columns: 1fr;
  }

  .article-rail,
  .service-directory-heading {
    position: static;
  }

  .article-rail {
    order: 2;
    padding-left: 0;
    border-left: 0;
  }

  .article-flow {
    order: 1;
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 720px) {
  .article-page-body,
  .service-directory-body {
    padding: 58px 18px 86px;
  }

  .article-heading-h1,
  .article-heading-h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .article-heading-h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .article-p {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-list li {
    padding: 14px 0 14px 24px;
  }

  .article-circled-list {
    max-width: none;
    gap: 8px;
  }

  .article-circled-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 10px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .article-circled-marker {
    width: 30px;
    min-width: 30px;
    font-size: 26px;
  }

  .article-concept-examples {
    max-width: none;
  }

  .article-concept-example {
    padding: 18px 0;
  }

  .article-concept-example h3 {
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.28;
  }

  .article-concept-example p:not(.article-concept-label) {
    font-size: 16px;
    line-height: 1.86;
  }

  .education-figure img {
    box-shadow: 0 18px 52px rgba(48, 25, 5, 0.12);
  }

  .service-atlas-figure {
    margin-bottom: 30px;
  }

  .service-atlas-figure img {
    box-shadow: 0 16px 42px rgba(48, 25, 5, 0.1);
  }

  .inline-practitioner {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    margin: 0 0 22px;
    padding: 16px 0;
  }

  .inline-practitioner h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .inline-practitioner p {
    font-size: 15px;
    line-height: 1.6;
  }

  .inline-practitioner-profile {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin: -8px 0 28px;
    padding: 16px 0 26px;
  }

  .inline-practitioner-profile ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inline-practitioner-profile li {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-directory-heading h2 {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 52px);
  }

  .service-overview-card {
    grid-template-columns: 1fr 28px;
  }

  .service-overview-card span,
  .service-overview-card h2,
  .service-overview-card strong,
  .service-overview-card p {
    grid-column: 1 / 2;
  }
}

/* Final mobile reading guard */
@media (max-width: 720px) {
  .service-directory {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-directory-heading {
    position: static;
  }

  .service-directory-heading h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
  }

  .service-overview {
    gap: 0;
  }

  .service-overview-card {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 10px 16px;
    align-items: start;
    padding: 26px 0;
  }

  .service-overview-card > span,
  .service-overview-card > div {
    grid-column: 1 / 2;
  }

  .service-overview-card > i,
  .service-overview-card > svg {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
    justify-self: end;
  }

  .service-overview-card span {
    line-height: 1.45;
    word-break: keep-all;
  }

  .service-overview-card h2 {
    max-width: 100%;
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .service-overview-card strong {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.55;
  }

  .service-overview-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.75;
  }

  .floating-consult {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-consult span {
    display: none;
  }

  .floating-consult svg {
    width: 22px;
    height: 22px;
  }
}

/* Final homepage method override: keep this after legacy method rules. */
.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 150px) 0;
  border: 0;
  color: #f8f0e3;
  background:
    radial-gradient(circle at 8% 0%, rgba(143, 111, 77, 0.34), transparent 34%),
    linear-gradient(135deg, #241609 0%, #312114 48%, #18100a 100%);
}

.method-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 16, 10, 0.3), transparent 42%, rgba(24, 16, 10, 0.2)),
    radial-gradient(circle at 86% 18%, rgba(180, 147, 105, 0.18), transparent 30%);
}

.method-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(235, 213, 177, 0.36), transparent);
}

.method-section .method-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  width: min(1320px, calc(100% - 48px));
}

.method-section .method-still {
  position: relative;
  height: clamp(440px, 48vw, 660px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #1f150d url("images/method-integrated-care-still.png") left center / cover no-repeat;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.method-section .method-still::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(22, 13, 7, 0.46)),
    linear-gradient(90deg, rgba(22, 13, 7, 0.18), transparent 42%);
}

.method-section .method-still img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.035) translate3d(-0.8%, 0, 0);
  animation: methodStillDrift 16s ease-in-out infinite alternate;
}

.method-section .method-copy {
  display: grid;
  gap: clamp(22px, 2.8vw, 36px);
  max-width: 760px;
}

.method-section .reveal {
  opacity: 1;
  transform: none;
}

.method-section .method-copy .eyebrow {
  color: rgba(220, 187, 142, 0.82);
}

.method-section .method-copy h2 {
  max-width: 9em;
  color: #fff7eb;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 1.08;
  text-wrap: balance;
}

.method-section .method-lead {
  max-width: 42em;
  color: rgba(248, 240, 227, 0.76);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.95;
}

.method-section .method-cadence {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: clamp(8px, 1vw, 12px) 0 0;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 198, 157, 0.28);
  border-bottom: 1px solid rgba(229, 198, 157, 0.22);
}

.method-section .method-cadence span {
  color: rgba(255, 247, 235, 0.96);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.method-section .method-cadence span + span::before {
  content: "/";
  margin: 0 clamp(14px, 2.2vw, 26px);
  color: rgba(229, 198, 157, 0.48);
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 300;
}

.method-section .method-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.4vw, 42px);
}

.method-section .method-notes p {
  margin: 0;
  color: rgba(248, 240, 227, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.method-section .method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.method-section .method-actions .btn-line {
  box-shadow: 0 18px 46px rgba(0, 199, 95, 0.2);
}

.method-section .method-actions .text-link {
  color: rgba(255, 247, 235, 0.84);
}

@media (prefers-reduced-motion: reduce) {
  .method-section .method-still img {
    animation: none;
  }
}

@media (max-width: 900px) {
  .method-section {
    padding: 0 0 78px;
  }

  .method-section .method-stage {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .method-section .method-still {
    height: clamp(340px, 72vw, 520px);
    box-shadow: none;
  }

  .method-section .method-copy {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    padding-top: 54px;
  }

  .method-section .method-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .method-section {
    padding-bottom: 64px;
  }

  .method-section .method-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .method-section .method-cadence {
    row-gap: 10px;
  }

  .method-section .method-cadence span {
    font-size: clamp(25px, 8vw, 34px);
  }

  .method-section .method-cadence span + span::before {
    margin: 0 12px;
  }

  .method-section .method-notes {
    padding-right: 54px;
  }

  .method-section .method-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage text rhythm draft: superseded by the actual EOF guard below. */
.hero-content {
  width: min(760px, 100%);
}

.hero h1 {
  max-width: 9.4em;
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-copy {
  max-width: 52ch;
  line-height: 1.9;
}

.hero-facts dd {
  line-height: 1.45;
}

.intro-band .section-kicker,
.axis-section .axis-text,
.pain-section .section-heading,
.service-stack .services-sticky,
.team-section .section-heading,
.face-section .face-copy,
.booking-section .booking-copy {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.intro-band .section-kicker h2,
.axis-section .axis-text h2,
.pain-section .section-heading h2,
.service-stack .services-sticky h2,
.team-section .section-heading h2,
.face-section .face-copy h2,
.booking-section .booking-copy h2 {
  max-width: 10.8em;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.18;
  text-wrap: balance;
}

.axis-section .axis-text h2 {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}

.intro-copy p,
.axis-section .axis-text p,
.pain-section .section-heading p,
.service-stack .services-sticky p,
.team-section .section-heading p,
.face-section .face-copy p,
.booking-section .booking-copy p {
  max-width: 58ch;
  margin-top: 0;
  line-height: 1.92;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.pill-row {
  margin-top: 8px;
}

.axis-section .check-list {
  margin-top: 22px;
}

.method-section .method-stage {
  gap: clamp(48px, 6vw, 92px);
}

.method-section .method-copy {
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 700px;
}

.method-section .method-copy h2 {
  max-width: 10.4em;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.16;
}

.method-section .method-lead {
  max-width: 45em;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 2;
}

.method-section .method-cadence {
  margin-top: 0;
  padding: 18px 0;
}

.method-section .method-cadence span {
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.18;
}

.method-section .method-notes {
  gap: clamp(20px, 3vw, 34px);
}

.method-section .method-notes p {
  max-width: 34em;
  font-size: 15px;
  line-height: 1.95;
}

.path-card {
  min-height: 0;
  padding: clamp(28px, 3.5vw, 40px);
}

.path-card h3 {
  max-width: 13em;
  line-height: 1.28;
  text-wrap: balance;
}

.path-card p {
  margin-top: 18px;
  line-height: 1.82;
}

.service-card {
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  gap: 8px 24px;
  padding: 30px 0;
}

.service-card h3 {
  max-width: 13em;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.26;
  text-wrap: balance;
}

.service-card p {
  max-width: 44ch;
  line-height: 1.78;
}

.team-section .section-heading {
  max-width: 860px;
}

.team-section .team-editorial {
  margin-top: clamp(38px, 5vw, 58px);
}

.doctor-bio {
  display: grid;
  gap: 10px;
}

.doctor-bio h3,
.doctor-bio p {
  margin: 0;
}

.doctor-bio h3 {
  line-height: 1.1;
}

.doctor-bio p {
  max-width: 34ch;
  line-height: 1.76;
}

.booking-steps {
  line-height: 1.82;
}

@media (max-width: 1020px) {
  .hero h1 {
    font-size: clamp(50px, 10vw, 78px);
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    font-size: clamp(34px, 6.2vw, 52px);
  }

  .service-card {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 104px 18px 84px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: 7.2em;
    font-size: clamp(44px, 13.2vw, 64px);
    line-height: 1.14;
  }

  .hero-copy {
    max-width: 23em;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .hero-facts div {
    padding: 16px 18px;
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    max-width: 9.4em;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.24;
  }

  .intro-copy p,
  .axis-section .axis-text p,
  .pain-section .section-heading p,
  .service-stack .services-sticky p,
  .team-section .section-heading p,
  .face-section .face-copy p,
  .booking-section .booking-copy p {
    max-width: none;
    font-size: 16px;
    line-height: 1.9;
  }

  .method-section .method-copy {
    gap: 20px;
    padding-top: 46px;
  }

  .method-section .method-copy h2 {
    max-width: 8.8em;
    font-size: clamp(34px, 9.5vw, 43px);
    line-height: 1.22;
  }

  .method-section .method-lead {
    font-size: 16px;
    line-height: 1.92;
  }

  .method-section .method-cadence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    padding: 18px 0;
  }

  .method-section .method-cadence span {
    padding-left: 14px;
    border-left: 1px solid rgba(229, 198, 157, 0.34);
    font-size: clamp(24px, 7vw, 31px);
  }

  .method-section .method-cadence span + span::before {
    content: none;
  }

  .method-section .method-notes {
    gap: 16px;
    padding-right: 0;
  }

  .pathways {
    gap: 14px;
  }

  .path-card {
    padding: 26px 22px;
  }

  .path-card h3 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .path-card p {
    font-size: 15px;
    line-height: 1.82;
  }

  .service-card {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 24px 0 26px;
  }

  .service-card::after {
    position: absolute;
    top: 25px;
    right: 0;
    font-size: 25px;
  }

  .service-card span,
  .service-card h3,
  .service-card p {
    padding-right: 34px;
  }

  .service-card h3 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .service-card p {
    max-width: none;
    padding-right: 0;
    font-size: 15px;
  }

  .doctor-bio {
    gap: 8px;
  }

  .doctor-bio h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .doctor-bio p {
    max-width: none;
    font-size: 15px;
    line-height: 1.74;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 6.8em;
    font-size: clamp(42px, 12.2vw, 56px);
  }

  .hero-copy {
    font-size: 15.5px;
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }
}

/* Final text rhythm override v2: must stay at EOF. */
.subpage-hero {
  min-height: 68svh;
}

.service-route-intro {
  grid-template-columns: minmax(360px, 0.66fr) minmax(0, 0.94fr) !important;
  gap: clamp(56px, 6vw, 104px) !important;
  align-items: center !important;
  padding: clamp(58px, 6.4vw, 92px) 0 clamp(72px, 7vw, 106px) !important;
}

.service-route-copy {
  gap: clamp(20px, 2.1vw, 30px) !important;
  max-width: 720px;
}

.service-route-copy h2 {
  max-width: 11.6em !important;
  font-size: clamp(34px, 3.75vw, 56px) !important;
  line-height: 1.23 !important;
}

.service-route-copy p:not(.eyebrow) {
  max-width: 44em !important;
  line-height: 2 !important;
}

.service-intake-gate {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr) !important;
  gap: clamp(56px, 6.4vw, 104px) !important;
  padding: clamp(60px, 6.2vw, 88px) 0 !important;
}

.service-intake-copy {
  gap: clamp(20px, 2.2vw, 30px) !important;
}

.service-intake-copy h2 {
  max-width: 12em !important;
  font-size: clamp(30px, 3.25vw, 48px) !important;
  line-height: 1.26 !important;
}

.service-intake-copy > p:not(.eyebrow) {
  max-width: 45ch !important;
  line-height: 2 !important;
}

.service-intake-steps li {
  grid-template-columns: 86px minmax(0, 1fr) !important;
  gap: 26px !important;
  padding: 28px 0 !important;
}

.service-intake-steps p {
  font-size: clamp(16px, 1.08vw, 18px) !important;
  font-weight: 600 !important;
  line-height: 1.86 !important;
}

.service-route-group {
  gap: clamp(44px, 5.4vw, 88px) !important;
}

.service-directory-body .service-overview-card h2 {
  font-size: clamp(30px, 3.15vw, 46px) !important;
  line-height: 1.2 !important;
}

.service-directory-body .service-overview-card strong,
.service-directory-body .service-overview-card p {
  line-height: 1.84 !important;
}

.service-article-body .article-heading-h1,
.service-article-body .article-heading-h2 {
  max-width: 14.5em !important;
  font-size: clamp(30px, 3.35vw, 50px) !important;
  line-height: 1.27 !important;
}

@media (max-width: 1020px) {
  .service-route-intro,
  .service-intake-gate,
  .service-route-group {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .subpage-hero {
    min-height: 62svh;
    padding-bottom: 48px;
  }

  .page-title-wrap h1 {
    font-size: clamp(34px, 9.8vw, 48px) !important;
    line-height: 1.18 !important;
  }

  .service-route-intro {
    gap: 30px !important;
    padding: 42px 0 58px !important;
  }

  .service-route-copy h2,
  .service-intake-copy h2,
  .service-article-body .article-heading-h1,
  .service-article-body .article-heading-h2 {
    max-width: 11em !important;
    padding-right: 58px !important;
    font-size: clamp(29px, 7.7vw, 36px) !important;
    line-height: 1.3 !important;
  }

  .service-route-copy p:not(.eyebrow),
  .service-intake-copy > p:not(.eyebrow),
  .service-article-body .article-p {
    padding-right: 58px !important;
    font-size: 16px !important;
    line-height: 1.96 !important;
  }

  .service-intake-gate {
    gap: 30px !important;
    padding: 44px 0 58px !important;
  }

  .service-intake-steps,
  .service-fit-grid {
    padding-right: 58px !important;
  }

  .service-intake-steps li {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 19px 0 !important;
  }

  .service-intake-steps p {
    font-size: 16px !important;
    line-height: 1.82 !important;
  }

  .service-practitioner-heading h2 {
    padding-right: 58px !important;
    font-size: clamp(27px, 7.3vw, 34px) !important;
    line-height: 1.3 !important;
  }
}

/* Final text rhythm override v3: lift first content and prevent floating CTA collision. */
.service-directory-body,
.service-article-body {
  padding-top: clamp(44px, 5vw, 76px) !important;
}

.service-route-intro {
  align-items: start !important;
  padding-top: clamp(28px, 3.8vw, 52px) !important;
}

.service-route-visual {
  margin-top: 6px !important;
}

.service-intake-gate {
  padding-top: clamp(40px, 4.8vw, 68px) !important;
}

@media (max-width: 720px) {
  .service-directory-body,
  .service-article-body {
    padding-top: 40px !important;
  }

  .service-route-intro {
    padding-top: 28px !important;
  }

  .service-intake-gate {
    padding-top: 34px !important;
  }
}

/* Text rhythm correction: loosen service landing copy on desktop and mobile. */
.service-route-intro {
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 0.92fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  padding: clamp(54px, 6vw, 86px) 0 clamp(66px, 7vw, 100px);
}

.service-route-copy {
  gap: clamp(18px, 2vw, 28px);
  max-width: 700px;
}

.service-route-copy h2 {
  max-width: 11em;
  font-size: clamp(34px, 4.15vw, 60px);
  line-height: 1.18;
}

.service-route-title {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.service-route-copy p:not(.eyebrow) {
  max-width: 43em;
  line-height: 2;
}

.service-route-visual {
  align-self: center;
}

.service-route-group {
  grid-template-columns: minmax(250px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 82px);
  padding-top: clamp(42px, 5vw, 72px);
}

.service-route-group .service-overview-card {
  gap: clamp(24px, 3.2vw, 42px);
  padding: clamp(34px, 3.8vw, 52px) 0;
}

.service-directory-body .service-overview-card h2 {
  max-width: 12em;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.16;
}

.service-directory-body .service-overview-card strong {
  display: block;
  margin-top: 10px;
  line-height: 1.72;
}

.service-directory-body .service-overview-card p {
  margin-top: 14px;
  line-height: 1.85;
}

.service-intake-gate {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 6vw, 92px);
  margin-bottom: clamp(32px, 5vw, 64px);
  padding: clamp(56px, 6vw, 84px) 0;
}

.service-intake-copy {
  gap: clamp(18px, 2.2vw, 28px);
}

.service-intake-copy h2 {
  max-width: 11.5em;
  font-size: clamp(32px, 3.55vw, 52px);
  line-height: 1.22;
}

.service-intake-copy > p:not(.eyebrow) {
  max-width: 44ch;
  line-height: 2;
}

.service-intake-steps li {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
}

.service-intake-steps p {
  font-size: clamp(16px, 1.14vw, 19px);
  font-weight: 600;
  line-height: 1.82;
}

.service-fit-grid {
  gap: 10px;
  margin-top: 18px;
  background: transparent;
}

.service-fit-grid section {
  min-height: 0;
  border: 1px solid rgba(159, 126, 97, 0.18);
}

.service-practitioner-strip {
  gap: clamp(24px, 3.2vw, 38px);
  margin: clamp(28px, 4vw, 56px) 0;
  padding: clamp(38px, 5vw, 66px) 0;
}

.service-article-body .article-heading-h1,
.service-article-body .article-heading-h2 {
  max-width: 14em;
  font-size: clamp(30px, 3.75vw, 54px);
  line-height: 1.22;
}

.service-article-body .article-p {
  line-height: 1.96;
}

@media (max-width: 1020px) {
  .service-route-intro,
  .service-intake-gate,
  .service-route-group {
    grid-template-columns: 1fr;
  }

  .service-route-copy,
  .service-intake-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .subpage-hero {
    min-height: 64svh;
    padding-bottom: 52px;
  }

  .page-title-wrap h1 {
    font-size: clamp(36px, 10.4vw, 50px);
    line-height: 1.16;
  }

  .page-title-wrap p {
    font-size: 17px;
    line-height: 1.82;
  }

  .service-route-intro {
    gap: 30px;
    padding: 42px 0 56px;
  }

  .service-route-copy {
    gap: 16px;
  }

  .service-route-copy h2 {
    max-width: 10.5em;
    padding-right: 46px;
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.22;
  }

  .service-route-copy p:not(.eyebrow) {
    padding-right: 48px;
    font-size: 16px;
    line-height: 1.92;
  }

  .service-intake-gate {
    gap: 30px;
    margin-bottom: 34px;
    padding: 44px 0 54px;
  }

  .service-intake-copy h2,
  .service-article-body .article-heading-h1,
  .service-article-body .article-heading-h2 {
    max-width: 10.5em;
    padding-right: 46px;
    font-size: clamp(30px, 8.3vw, 40px);
    line-height: 1.24;
  }

  .service-intake-copy > p:not(.eyebrow),
  .service-article-body .article-p {
    padding-right: 48px;
    font-size: 16px;
    line-height: 1.92;
  }

  .service-intake-steps {
    padding-right: 46px;
  }

  .service-intake-steps li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .service-intake-steps span {
    font-size: 28px;
  }

  .service-intake-steps p {
    font-size: 16px;
    line-height: 1.78;
  }

  .service-fit-grid {
    gap: 12px;
    padding-right: 46px;
  }

  .service-practitioner-strip {
    margin: 32px 0;
    padding: 38px 0;
  }

  .service-practitioner-heading h2 {
    padding-right: 46px;
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.24;
  }

  .floating-consult {
    width: 52px;
    min-height: 52px;
    opacity: 0.94;
  }
}

/* Subpage revision v1: route-first medical landing gates, without SaaS/AI framing. */
.subpage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 28px;
}

.subpage-hero-actions .text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(253, 249, 244, 0.84);
}

.subpage-hero-actions .text-link svg,
.service-intake-actions .text-link svg,
.service-practitioner-heading .text-link svg {
  width: 17px;
  height: 17px;
}

.service-intake-gate {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 36px);
  padding: clamp(28px, 5vw, 58px) 0;
  border-top: 1px solid rgba(159, 126, 97, 0.34);
  border-bottom: 1px solid rgba(159, 126, 97, 0.24);
}

.service-intake-copy {
  display: grid;
  gap: 16px;
}

.service-intake-copy h2 {
  max-width: 10.5em;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.16;
  letter-spacing: 0;
}

.service-intake-copy > p:not(.eyebrow) {
  max-width: 42ch;
  margin: 0;
  color: rgba(48, 25, 5, 0.68);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.9;
}

.service-intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-top: 6px;
}

.service-intake-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(159, 126, 97, 0.22);
}

.service-intake-steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
}

.service-intake-steps span {
  color: rgba(159, 126, 97, 0.72);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1;
}

.service-intake-steps p {
  margin: 0;
  color: rgba(48, 25, 5, 0.82);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.7;
}

.service-fit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4px;
  background: rgba(159, 126, 97, 0.18);
}

.service-fit-grid section {
  min-height: 156px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(248, 244, 237, 0.86)),
    var(--paper);
}

.service-fit-grid span {
  display: block;
  margin-bottom: 12px;
  color: rgba(159, 126, 97, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.service-fit-grid p {
  margin: 0;
  color: rgba(48, 25, 5, 0.7);
  font-size: 15px;
  line-height: 1.78;
}

.service-practitioner-strip {
  display: grid;
  gap: 22px;
  margin: clamp(14px, 3vw, 32px) 0;
  padding: clamp(28px, 4.6vw, 52px) 0;
  border-top: 1px solid rgba(159, 126, 97, 0.24);
  border-bottom: 1px solid rgba(159, 126, 97, 0.18);
}

.service-practitioner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 22px;
  align-items: end;
}

.service-practitioner-heading .eyebrow,
.service-practitioner-heading h2 {
  grid-column: 1;
}

.service-practitioner-heading h2 {
  max-width: 13em;
  margin: 0;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.18;
}

.service-practitioner-heading .text-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.service-practitioner-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-practitioner-card {
  display: grid;
  grid-template-columns: minmax(82px, 0.42fr) minmax(112px, 1fr);
  gap: 14px;
  min-height: 154px;
  padding: 14px;
  border: 1px solid rgba(159, 126, 97, 0.2);
  background: rgba(255, 253, 248, 0.72);
}

.service-practitioner-card figure {
  margin: 0;
  overflow: hidden;
  background: #f8f4ed;
}

.service-practitioner-card img {
  width: 100%;
  height: 100%;
  min-height: 126px;
  object-fit: cover;
  object-position: center top;
}

.service-practitioner-card div {
  display: grid;
  align-content: center;
  gap: 5px;
}

.service-practitioner-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-practitioner-card h3 {
  margin: 0;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.service-practitioner-card p {
  margin: 0;
  color: rgba(48, 25, 5, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.service-safety-note {
  display: grid;
  gap: 16px;
  margin-top: clamp(18px, 4vw, 46px);
  padding: clamp(24px, 4vw, 42px) 0 0 clamp(22px, 3vw, 36px);
  border-top: 1px solid rgba(159, 126, 97, 0.24);
  border-left: 4px solid rgba(158, 172, 132, 0.66);
}

.service-safety-note h2 {
  max-width: 12em;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
}

.service-safety-note ul {
  display: grid;
  gap: 10px;
  max-width: 70ch;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-safety-note li {
  position: relative;
  padding-left: 18px;
  color: rgba(48, 25, 5, 0.72);
  line-height: 1.8;
}

.service-safety-note li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: var(--sage);
}

.service-directory-body .service-route-intro,
.service-directory-body .service-route-groups {
  grid-column: 1 / -1;
}

.service-route-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  margin-top: clamp(10px, 2vw, 24px);
  padding: clamp(26px, 4.8vw, 58px) 0 clamp(30px, 5vw, 68px);
  border-top: 1px solid rgba(159, 126, 97, 0.34);
}

.service-route-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.service-route-copy h2 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.08;
}

.service-route-copy p:not(.eyebrow) {
  max-width: 40em;
  margin: 0;
  color: rgba(48, 25, 5, 0.68);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.92;
}

.service-route-copy .btn {
  justify-self: start;
  margin-top: 6px;
}

.service-route-visual {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 78px rgba(48, 25, 5, 0.14);
}

.service-route-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-route-groups {
  display: grid;
  gap: clamp(34px, 6vw, 82px);
}

.service-route-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 54px);
  border-top: 1px solid rgba(159, 126, 97, 0.24);
}

.service-route-group-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.service-route-group-heading h2 {
  max-width: 16em;
  margin: 0;
  color: rgba(48, 25, 5, 0.78);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.82;
}

.service-route-group .service-overview {
  gap: 0;
}

.service-route-intro.reveal,
.service-route-group.reveal,
.service-intake-gate.reveal,
.service-practitioner-strip.reveal,
.service-safety-note.reveal {
  opacity: 1;
  transform: none;
}

.article-page-body,
.service-directory-body,
.doctors-page-body {
  padding-bottom: max(104px, calc(88px + env(safe-area-inset-bottom)));
}

@media (max-width: 1120px) {
  .service-practitioner-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .service-intake-gate,
  .service-route-intro,
  .service-route-group {
    grid-template-columns: 1fr;
  }

  .service-route-group-heading {
    position: static;
  }

  .service-route-copy h2,
  .service-intake-copy h2 {
    max-width: 100%;
  }

  .booking-step-cards {
    grid-template-columns: 1fr;
  }

  .booking-step-card {
    min-height: 0;
  }

  .booking-step-card h4 {
    text-align: left;
  }

  .booking-step-card .btn {
    align-self: flex-start;
  }
}

@media (max-width: 720px) {
  .subpage-hero-actions,
  .service-intake-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero-actions .btn,
  .service-intake-actions .btn,
  .service-route-copy .btn {
    width: 100%;
  }

  .service-intake-gate {
    padding: 34px 0;
  }

  .service-intake-steps li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .service-fit-grid {
    grid-template-columns: 1fr;
  }

  .service-fit-grid section {
    min-height: 0;
    padding: 20px 18px;
  }

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

  .service-practitioner-heading .text-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .service-practitioner-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 12px;
  }

  .service-practitioner-card img {
    min-height: 116px;
  }

  .service-route-intro {
    padding-top: 28px;
  }

  .service-route-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-route-visual {
    margin-right: -18px;
    margin-left: -18px;
    box-shadow: none;
  }

  .service-route-visual img {
    aspect-ratio: 4 / 3;
  }

  .service-safety-note {
    padding-left: 18px;
  }

  .article-page-body,
  .service-directory-body,
  .doctors-page-body {
    padding-bottom: max(132px, calc(104px + env(safe-area-inset-bottom)));
  }
}

/* Homepage method section v3: cinematic clinical spread, no template cards. */
.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 150px) 0;
  border: 0;
  color: #f8f0e3;
  background:
    radial-gradient(circle at 8% 0%, rgba(143, 111, 77, 0.34), transparent 34%),
    linear-gradient(135deg, #241609 0%, #312114 48%, #18100a 100%);
}

.method-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 16, 10, 0.3), transparent 42%, rgba(24, 16, 10, 0.2)),
    radial-gradient(circle at 86% 18%, rgba(180, 147, 105, 0.18), transparent 30%);
}

.method-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(235, 213, 177, 0.36), transparent);
}

.method-section .method-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  width: min(1320px, calc(100% - 48px));
}

.method-still {
  position: relative;
  min-height: clamp(440px, 48vw, 660px);
  margin: 0;
  overflow: hidden;
  background: #1f150d;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.method-still::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(22, 13, 7, 0.46)),
    linear-gradient(90deg, rgba(22, 13, 7, 0.18), transparent 42%);
}

.method-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.035) translate3d(-0.8%, 0, 0);
  animation: methodStillDrift 16s ease-in-out infinite alternate;
}

.method-copy {
  display: grid;
  gap: clamp(22px, 2.8vw, 36px);
  max-width: 760px;
}

.method-copy .eyebrow {
  color: rgba(220, 187, 142, 0.82);
}

.method-copy h2 {
  max-width: 9em;
  color: #fff7eb;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 1.08;
  text-wrap: balance;
}

.method-lead {
  max-width: 42em;
  color: rgba(248, 240, 227, 0.76);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.95;
}

.method-cadence {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: clamp(8px, 1vw, 12px) 0 0;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 198, 157, 0.28);
  border-bottom: 1px solid rgba(229, 198, 157, 0.22);
}

.method-cadence span {
  color: rgba(255, 247, 235, 0.96);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.method-cadence span + span::before {
  content: "/";
  margin: 0 clamp(14px, 2.2vw, 26px);
  color: rgba(229, 198, 157, 0.48);
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 300;
}

.method-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.4vw, 42px);
}

.method-notes p {
  margin: 0;
  color: rgba(248, 240, 227, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.method-actions .btn-line {
  box-shadow: 0 18px 46px rgba(0, 199, 95, 0.2);
}

.method-actions .text-link {
  color: rgba(255, 247, 235, 0.84);
}

@keyframes methodStillDrift {
  from {
    transform: scale(1.035) translate3d(-0.8%, 0, 0);
  }

  to {
    transform: scale(1.105) translate3d(1.2%, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-still img {
    animation: none;
  }
}

@media (max-width: 900px) {
  .method-section {
    padding: 0 0 78px;
  }

  .method-section .method-stage {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .method-still {
    min-height: clamp(340px, 72vw, 520px);
    box-shadow: none;
  }

  .method-copy {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    padding-top: 54px;
  }

  .method-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .method-section {
    padding-bottom: 64px;
  }

  .method-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .method-cadence {
    row-gap: 10px;
  }

  .method-cadence span {
    font-size: clamp(25px, 8vw, 34px);
  }

  .method-cadence span + span::before {
    margin: 0 12px;
  }

  .method-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .method-section .flow-line {
    grid-template-columns: 1fr;
  }

  .method-section .flow-line::before {
    display: none;
  }

  .method-section .flow-line span {
    padding: 11px 0 11px 28px;
  }

  .method-section .flow-actions {
    display: grid;
    justify-items: start;
    gap: 14px;
  }
}

/* Homepage method section v2: editorial statement instead of process widget. */
.method-section {
  padding: clamp(70px, 8vw, 112px) 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 232, 0.94)),
    var(--paper);
}

.method-section .method-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px) clamp(18px, 3vw, 34px);
  align-items: start;
}

.method-section .method-heading {
  grid-column: 1 / span 7;
}

.method-section .method-heading h2 {
  max-width: 9.2em;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.14;
}

.method-section .method-heading p:not(.eyebrow) {
  max-width: 39em;
  color: rgba(48, 25, 5, 0.62);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.9;
}

.method-section .clinic-flow {
  grid-column: 2 / -1;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: 0;
  padding: clamp(20px, 2.6vw, 30px) 0 0;
  border-top: 1px solid rgba(159, 126, 97, 0.22);
  background: transparent;
}

.method-section .clinic-flow::before {
  display: none;
}

.method-section .flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.method-section .flow-line::before,
.method-section .flow-line span::before {
  display: none;
}

.method-section .flow-line span {
  display: block;
  min-height: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
  color: rgba(48, 25, 5, 0.94);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.1;
}

.method-section .flow-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 62px);
  max-width: 860px;
  margin-top: 0;
}

.method-section .flow-detail p {
  max-width: none;
  margin: 0;
  color: rgba(48, 25, 5, 0.66);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.9;
}

.method-section .flow-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 2px;
}

@media (max-width: 920px) {
  .method-section .method-layout {
    grid-template-columns: 1fr;
  }

  .method-section .method-heading,
  .method-section .clinic-flow {
    grid-column: 1;
  }

  .method-section .clinic-flow {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .method-section {
    padding: 64px 18px 74px;
  }

  .method-section .method-heading h2 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .method-section .flow-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .method-section .flow-line span {
    padding-bottom: 10px;
    font-size: clamp(24px, 7.6vw, 32px);
  }

  .method-section .flow-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-section .flow-actions {
    display: grid;
    justify-items: start;
    gap: 14px;
  }
}

/* Restored cinematic homepage/global base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(106, 92, 56, 0.055) 0, transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(106, 92, 56, 0.045) 0, transparent 32%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: auto, auto, 240px 240px;
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(159, 126, 97, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 200;
  transform: translateY(-180%);
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(253, 249, 244, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(253, 249, 244, 0.9);
  box-shadow: 0 12px 40px rgba(48, 25, 5, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(48, 25, 5, 0.84);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  padding: 16px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.header-cta {
  padding: 11px 18px;
  background: var(--line);
  color: white;
  box-shadow: none;
}

.header-cta svg,
.btn svg,
.text-link svg,
.service-card svg,
.check-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(159, 126, 97, 0.45);
  border-radius: 999px;
  background: rgba(253, 249, 244, 0.82);
  color: var(--ink);
}

.menu-mark,
.menu-mark::before,
.menu-mark::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-mark {
  position: relative;
  margin: auto;
}

.menu-mark::before,
.menu-mark::after {
  position: absolute;
  left: 0;
  content: "";
  transition: transform 160ms ease, top 160ms ease, opacity 160ms ease;
}

.menu-mark::before {
  top: -6px;
}

.menu-mark::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-mark {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-mark::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-mark::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 24px 72px;
  isolation: isolate;
  background: var(--night);
}

.hero::before,
.hero::after {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: clamp(18px, 4vh, 44px);
  content: "";
  background: rgba(24, 13, 7, 0.92);
  pointer-events: none;
}

.hero::before {
  top: 0;
}

.hero::after {
  bottom: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.04);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-depth {
  position: absolute;
  inset: -6%;
  z-index: 2;
  pointer-events: none;
  background-image: url("images/hero-facebook-cover-20260626.jpg");
  background-position: center;
  background-size: cover;
}

.hero-depth-mid {
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%);
  filter: saturate(1.18) contrast(1.08) blur(1px);
  mix-blend-mode: screen;
  opacity: 0.2;
  animation: hero-depth-drift 9s ease-in-out infinite alternate;
}

.hero-depth-near {
  clip-path: polygon(76% 0, 100% 0, 100% 100%, 83% 100%);
  filter: brightness(1.28) saturate(1.18) blur(5px);
  mix-blend-mode: soft-light;
  opacity: 0.34;
  animation: hero-near-drift 6.6s ease-in-out infinite alternate;
}

.hero-media::after {
  position: absolute;
  inset: -28%;
  z-index: 3;
  content: "";
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgba(239, 231, 210, 0.14) 48%, transparent 61%);
  filter: blur(10px);
  transform: translateX(-42%) rotate(2deg);
  animation: hero-light-sweep 7.2s cubic-bezier(0.2, 0, 0, 1) infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 13, 7, 0.9) 0%, rgba(48, 25, 5, 0.68) 42%, rgba(48, 25, 5, 0.08) 78%),
    linear-gradient(180deg, rgba(24, 13, 7, 0.14) 0%, rgba(24, 13, 7, 0.02) 48%, rgba(24, 13, 7, 0.52) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  opacity: 0.16;
}

.hero-light {
  display: none;
}

.hero-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 28px;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(830px, 100%);
  margin: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(200, 156, 114, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 10em;
  color: var(--white);
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 700;
  text-shadow: 0 18px 52px rgba(24, 13, 7, 0.44);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(34px, 4.7vw, 62px);
  font-weight: 650;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(253, 249, 244, 0.84);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  padding: 12px 20px;
  border: 1px solid transparent;
}

.btn-line {
  background: var(--line);
  color: white;
  box-shadow: none;
}

.btn-ghost {
  border-color: rgba(253, 249, 244, 0.52);
  background: rgba(253, 249, 244, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.booking-section .btn-ghost {
  border-color: rgba(48, 25, 5, 0.28);
  background: rgba(255, 253, 248, 0.82);
  color: var(--espresso);
}

.booking-section .btn-ghost:hover {
  border-color: rgba(48, 25, 5, 0.42);
  background: rgba(255, 253, 248, 0.96);
}

.magnetic:hover {
  transform: translateY(-2px);
}

.hero-facts {
  width: min(820px, 100%);
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(239, 231, 210, 0.22);
  border-radius: 8px;
  background: rgba(24, 13, 7, 0.34);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.hero-facts div {
  padding: 18px 20px;
  border-right: 1px solid rgba(239, 231, 210, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: rgba(200, 156, 114, 0.96);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 600;
}

.section {
  padding: 96px 24px;
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.intro-band,
.team-section {
  background: var(--white);
}

.intro-grid,
.axis-grid,
.method-layout,
.face-layout,
.booking-grid {
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.axis-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.method-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.face-layout,
.booking-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
}

.intro-copy p,
.axis-text p,
.section-heading p,
.services-sticky p,
.face-copy p,
.booking-copy p {
  max-width: 65ch;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--pale-sage);
  font-size: 14px;
  font-weight: 600;
}

.axis-section,
.face-section {
  background: var(--warm);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check-list svg {
  color: var(--sage);
}

.diagram-card {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.diagram-card img {
  border-radius: 6px;
}

.pain-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 25, 5, 0.96), rgba(77, 45, 18, 0.94)),
    var(--ink);
}

.section-heading {
  max-width: 780px;
}

.pain-section .section-heading p,
.pain-section .eyebrow,
.pain-section .disclaimer {
  color: rgba(253, 249, 244, 0.78);
}

.pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.path-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(253, 249, 244, 0.16);
  border-radius: 8px;
  background: rgba(253, 249, 244, 0.08);
}

.path-card::before {
  position: absolute;
  inset: auto 34px 34px auto;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(158, 172, 132, 0.35);
  border-radius: 50%;
}

.path-label {
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  margin-top: 18px;
}

.path-card p {
  max-width: 53ch;
  color: rgba(253, 249, 244, 0.76);
}

.path-card a,
.text-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--gold);
  font-weight: 700;
}

.pain-section .path-card a {
  color: #d6c2ad;
}

.pain-section .path-card > * {
  position: relative;
  z-index: 1;
}

.pain-section .path-card h3 {
  max-width: calc(100% - 108px);
}

.pain-section .path-card h3 span {
  display: block;
  white-space: nowrap;
}

.disclaimer {
  margin-top: 22px;
  font-size: 14px;
}

.service-stack,
.booking-section {
  background: var(--paper);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 112px;
}

.service-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.service-card::after {
  content: "→";
  align-self: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
  transition: transform 180ms ease;
}

.service-card:hover::after {
  transform: translateX(6px);
}

.service-card span {
  grid-column: 2 / 3;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-card svg {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 3;
  color: var(--gold);
}

.service-card h3,
.service-card p {
  grid-column: 2 / 3;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.method-section {
  border-top: 1px solid rgba(48, 25, 5, 0.1);
  border-bottom: 1px solid rgba(48, 25, 5, 0.1);
  background:
    linear-gradient(90deg, rgba(245, 247, 241, 0.72), rgba(253, 249, 244, 0.96)),
    var(--paper);
}

.method-heading h2 {
  max-width: 10em;
}

.method-heading p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
}

.clinic-flow {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--border);
  background: rgba(253, 249, 244, 0.68);
}

.flow-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}

.flow-detail p {
  margin: 0;
  color: var(--muted);
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.team-editorial {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.doctor-profile {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(159, 126, 97, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(246, 239, 229, 0.86)),
    var(--white);
  box-shadow: 0 26px 68px rgba(48, 25, 5, 0.1);
}

.doctor-profile::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(159, 126, 97, 0.14);
  border-radius: 18px;
  pointer-events: none;
}

.profile-lead {
  grid-column: span 6;
  grid-template-columns: 1fr;
}

.profile-compact {
  grid-column: span 4;
  grid-template-columns: 1fr;
}

.doctor-profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.72;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid rgba(159, 126, 97, 0.14);
  background: #f8f4ed;
}

.profile-lead img {
  aspect-ratio: 16 / 12.2;
}

.profile-compact img {
  aspect-ratio: 4 / 4.65;
}

.doctor-bio {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: clamp(22px, 3vw, 34px);
}

.doctor-bio span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.doctor-bio h3 {
  margin-top: 10px;
  font-size: clamp(32px, 3.6vw, 52px);
}

.profile-compact .doctor-bio h3 {
  font-size: clamp(28px, 2.8vw, 38px);
}

.doctor-bio p {
  max-width: 30ch;
  color: var(--muted);
}

.face-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.face-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(159, 126, 97, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(48, 25, 5, 0.08);
}

.booking-steps {
  display: grid;
  gap: 10px;
  padding-left: 24px;
  margin: 26px 0 0;
  color: var(--muted);
}

.booking-steps li::marker {
  color: var(--gold);
  font-weight: 700;
}

.hours-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-head {
  padding: 24px 26px;
  border-bottom: 1px solid var(--border);
}

.hours-head p,
.hours-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

thead th,
tbody th {
  color: var(--gold);
  font-weight: 700;
}

td {
  font-size: 14px;
  font-weight: 600;
}

.muted {
  color: #b9ae9f;
}

.hours-note {
  padding: 18px 26px 24px;
}

.subpage-line-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) 24px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(48, 25, 5, 0.94), rgba(83, 50, 25, 0.9)),
    var(--ink);
}

.subpage-line-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 156, 114, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(253, 249, 244, 0.08) 1px, transparent 1px);
  background-size: auto, 92px 92px;
  pointer-events: none;
}

.subpage-line-cta-inner {
  position: relative;
  display: grid;
  max-width: 920px;
  gap: 18px;
}

.subpage-line-cta .eyebrow {
  color: rgba(229, 184, 130, 0.92);
}

.subpage-line-cta h2 {
  max-width: 9em;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.12;
  letter-spacing: 0;
}

.subpage-line-cta p:not(.eyebrow) {
  max-width: 42em;
  margin: 0;
  color: rgba(253, 249, 244, 0.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}

.subpage-line-cta .btn {
  width: fit-content;
  margin-top: 10px;
}

.site-footer {
  color: var(--white);
  line-break: strict;
  background:
    radial-gradient(circle at 78% 0%, rgba(106, 58, 20, 0.32), transparent 34%),
    linear-gradient(180deg, #241103 0%, var(--ink) 100%);
}

.footer-panel {
  width: min(1140px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr) minmax(250px, 0.82fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  padding: clamp(52px, 7vw, 84px) 0 clamp(42px, 6vw, 72px);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-logo {
  width: min(188px, 72vw);
  margin: 0 0 18px;
  opacity: 0.95;
}

.footer-tagline,
.footer-clinic-name,
.footer-promise,
.footer-hours-row p,
.footer-hours-note {
  margin: 0;
}

.footer-tagline {
  color: rgba(253, 249, 244, 0.78);
  font-size: clamp(15px, 1.25vw, 17px);
  font-style: italic;
  line-height: 1.5;
}

.footer-clinic-name {
  margin-top: 22px;
  color: rgba(253, 249, 244, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.footer-promise {
  margin-top: 8px;
  color: rgba(253, 249, 244, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-social {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.footer-social-facebook {
  background: #a98b71;
}

.footer-social-line {
  background: var(--line);
}

.footer-social svg,
.footer-contact-list svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.footer-social-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(253, 249, 244, 0.96);
  color: #a98b71;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.footer-section {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.footer-section h2 {
  margin: 0;
  color: rgba(253, 249, 244, 0.96);
  font-family: var(--font-body);
  font-size: clamp(21px, 1.8vw, 25px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.footer-hours {
  display: grid;
  gap: 16px;
}

.footer-hours-row {
  display: grid;
  gap: 7px;
}

.footer-hours-row strong {
  color: rgba(253, 249, 244, 0.86);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-hours-row p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(253, 249, 244, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.footer-hours-row span {
  white-space: nowrap;
}

.footer-hours-row.footer-hours-holiday {
  padding-top: 2px;
}

.footer-hours-row.footer-hours-holiday strong {
  color: rgba(253, 249, 244, 0.72);
}

.footer-hours-row.footer-hours-holiday p {
  color: rgba(253, 249, 244, 0.56);
}

.footer-hours-note {
  color: rgba(253, 249, 244, 0.42);
  font-size: 13px;
  line-height: 1.8;
}

.footer-contact-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: rgba(253, 249, 244, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

.footer-contact-list svg {
  margin-top: 4px;
  color: #cfb59c;
}

.footer-contact-list a {
  min-height: 0;
  color: rgba(253, 249, 244, 0.82);
}

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(253, 249, 244, 0.12);
  color: rgba(253, 249, 244, 0.58);
  text-align: center;
  font-size: 13px;
}

.floating-consult {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--line);
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(6, 199, 85, 0.24);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-consult svg {
  width: 20px;
  height: 20px;
}

.floating-consult.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.reveal-ready {
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes hero-depth-drift {
  from {
    opacity: 0.14;
    background-position: 54% 49%;
  }
  to {
    opacity: 0.26;
    background-position: 47% 51%;
  }
}

@keyframes hero-near-drift {
  from {
    opacity: 0.22;
    background-position: 58% 50%;
  }
  to {
    opacity: 0.42;
    background-position: 44% 52%;
  }
}

@keyframes hero-light-sweep {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-46%) rotate(2deg);
  }
  42% {
    opacity: 0.8;
  }
  64%,
  100% {
    opacity: 0;
    transform: translateX(42%) rotate(2deg);
  }
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(253, 249, 244, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 106px 18px 64px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 22%, rgba(253, 249, 244, 0.2), transparent 36%),
      linear-gradient(180deg, rgba(24, 13, 7, 0.86) 0%, rgba(48, 25, 5, 0.76) 48%, rgba(24, 13, 7, 0.76) 100%);
  }

  .hero-facts,
  .pathways,
  .intro-grid,
  .axis-grid,
  .method-layout,
  .services-layout,
  .face-layout,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .services-sticky {
    position: static;
  }

  .profile-lead,
  .profile-compact {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: calc(100% - 32px);
    min-height: 70px;
  }

  .brand img {
    width: 142px;
  }

  .footer-panel {
    width: min(330px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 30px 0 18px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-logo {
    width: min(158px, 68vw);
    margin-bottom: 14px;
  }

  .footer-clinic-name {
    margin-top: 16px;
  }

  .footer-socials {
    gap: 10px;
    margin-top: 18px;
  }

  .footer-social {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 14px;
  }

  .footer-section {
    gap: 12px;
    padding-top: 0;
  }

  .footer-hours {
    gap: 10px;
  }

  .footer-hours-row {
    gap: 4px;
  }

  .footer-hours-row p {
    gap: 7px 14px;
  }

  .footer-bottom {
    padding: 14px 24px;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(239, 231, 210, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 18px;
  }

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

  .flow-detail,
  .team-editorial {
    grid-template-columns: 1fr;
  }

  .profile-lead,
  .profile-compact {
    grid-column: span 1;
  }

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

  .floating-consult {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    padding: 0;
  }

  .floating-consult span {
    display: none;
  }
}

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

/* JoyMony page system */
.site-nav .nav-item {
  position: relative;
}

.site-nav .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav .nav-parent svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 230px;
  padding: 10px 0;
  border: 1px solid rgba(159, 126, 97, 0.24);
  border-radius: 8px;
  background: rgba(253, 249, 244, 0.96);
  box-shadow: 0 20px 48px rgba(48, 25, 5, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 16px;
  color: rgba(48, 25, 5, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(158, 172, 132, 0.12);
  color: var(--ink);
}

.eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
}

.clinic-flow {
  border-color: rgba(159, 126, 97, 0.22);
  background: rgba(253, 249, 244, 0.52);
}

.flow-line {
  position: relative;
  border: 0;
  gap: 18px;
}

.flow-line::before {
  position: absolute;
  top: 14px;
  left: 3px;
  right: 3px;
  height: 1px;
  content: "";
  background: rgba(159, 126, 97, 0.34);
}

.flow-line span {
  position: relative;
  min-height: auto;
  place-items: start;
  padding-top: 36px;
  border: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.flow-line span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 13px;
  height: 13px;
  content: "";
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(159, 126, 97, 0.34);
}

.service-cards {
  counter-reset: none;
}

.service-card {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 18px;
  background: transparent !important;
  box-shadow: none;
  counter-increment: none;
}

.service-card::before {
  content: none !important;
}

.service-card svg {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 23px;
  height: 23px;
  margin-top: 3px;
  color: var(--gold);
}

.service-card span,
.service-card h3,
.service-card p {
  grid-column: 2;
}

.service-card:hover {
  padding-left: 0;
  transform: none;
}

.service-card:hover svg {
  color: var(--sage);
}

.page-main {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 132px 24px 72px;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
  overflow: hidden;
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04) brightness(0.78);
  transform: scale(1.035);
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 13, 7, 0.88), rgba(48, 25, 5, 0.64) 48%, rgba(48, 25, 5, 0.1)),
    linear-gradient(180deg, rgba(24, 13, 7, 0.12), rgba(24, 13, 7, 0.78));
}

.subpage-hero .container {
  display: grid;
  gap: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(253, 249, 244, 0.78);
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-title-wrap {
  max-width: 840px;
}

.page-title-wrap h1 {
  max-width: 9.8em;
}

.page-title-wrap p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(253, 249, 244, 0.82);
  font-size: clamp(18px, 1.6vw, 21px);
}

.page-title-wrap .page-lead {
  margin-top: 14px;
  color: rgba(247, 217, 173, 0.95);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.page-about .page-title-wrap h1 {
  max-width: 7em;
}

.page-body {
  padding: 76px 24px 104px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.page-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.page-aside h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.page-aside p {
  margin: 0;
  color: var(--muted);
}

.service-side-nav {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(159, 126, 97, 0.24);
}

.service-side-nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
  color: rgba(48, 25, 5, 0.78);
  font-weight: 600;
}

.service-side-nav a:hover,
.service-side-nav a[aria-current="page"] {
  color: var(--gold);
}

.doctors-page-body {
  background:
    linear-gradient(180deg, rgba(253, 249, 244, 0.98), rgba(248, 244, 237, 0.98) 54%, rgba(245, 247, 241, 0.9)),
    var(--paper);
}

.doctors-layout {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
}

.doctors-opening {
  max-width: 1040px;
  display: grid;
  gap: 22px;
}

.doctors-opening h2 {
  max-width: 12.5em;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.15;
  letter-spacing: 0;
}

.doctors-opening > p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

.team-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.team-proof-row span {
  padding: 9px 14px;
  border: 1px solid rgba(159, 126, 97, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: rgba(48, 25, 5, 0.76);
  font-weight: 700;
}

.doctors-roster {
  display: grid;
  gap: clamp(44px, 7vw, 88px);
}

.team-roster-group {
  display: grid;
  gap: 24px;
}

.team-roster-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(159, 126, 97, 0.22);
}

.team-roster-heading h2 {
  max-width: 12em;
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0;
}

.team-roster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-roster-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(159, 126, 97, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(245, 238, 228, 0.88)),
    var(--white);
  box-shadow: 0 28px 74px rgba(48, 25, 5, 0.1);
}

.team-roster-card::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(159, 126, 97, 0.13);
  border-radius: 20px;
  pointer-events: none;
}

.team-roster-card figure {
  margin: 0;
  display: grid;
  align-items: end;
  background: #f8f4ed;
}

.team-roster-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
}

.team-roster-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 12px;
  padding: clamp(26px, 4vw, 42px);
}

.team-roster-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.team-roster-copy h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.team-roster-copy strong {
  max-width: 30ch;
  color: rgba(48, 25, 5, 0.86);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.team-roster-copy p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.team-roster-copy .team-roster-list-label {
  margin-top: 2px;
  color: rgba(48, 25, 5, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-tags {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(159, 126, 97, 0.16);
}

.team-tags span {
  color: rgba(48, 25, 5, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.team-tags p {
  margin: 0;
  color: rgba(48, 25, 5, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.team-tags ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(48, 25, 5, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.team-tags li {
  position: relative;
  padding-left: 14px;
}

.team-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(159, 126, 97, 0.48);
}

/* Subpage service and practitioner directories: restrained medical editorial system. */
.service-directory-body {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(159, 126, 97, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(159, 126, 97, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf3 0%, #f7efe6 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

.service-directory-body::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(158, 172, 132, 0.16), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(159, 126, 97, 0.13), transparent 24%);
}

.service-directory-body .service-directory {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
}

.service-directory-body .service-directory-heading {
  padding-top: 14px;
  border-top: 1px solid rgba(159, 126, 97, 0.36);
}

.service-directory-body .directory-visual {
  width: min(100%, 330px);
}

.service-directory-body .directory-visual img {
  aspect-ratio: 4 / 4.35;
  box-shadow: 0 24px 62px rgba(48, 25, 5, 0.11);
}

.service-directory-body .service-overview {
  counter-reset: sub-service;
  border-top: 1px solid rgba(159, 126, 97, 0.28);
}

.service-directory-body .service-overview-card {
  grid-template-columns: 78px minmax(140px, 0.26fr) minmax(0, 1fr) 42px;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(28px, 4.2vw, 54px) 0;
  counter-increment: sub-service;
}

.service-directory-body .service-overview-card::before {
  position: static;
  width: auto;
  height: auto;
  grid-column: 1;
  content: counter(sub-service, decimal-leading-zero);
  background: none;
  color: rgba(159, 126, 97, 0.72);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1;
  opacity: 1;
  transform: none;
}

.service-directory-body .service-overview-card > span {
  grid-column: 2;
  max-width: 12em;
  padding-top: 4px;
  color: rgba(159, 126, 97, 0.86);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.service-directory-body .service-overview-card > div {
  grid-column: 3;
}

.service-directory-body .service-overview-card h2 {
  max-width: 11em;
  font-size: clamp(34px, 4vw, 58px);
}

.service-directory-body .service-overview-card strong {
  max-width: 40em;
  color: rgba(48, 25, 5, 0.86);
}

.service-directory-body .service-overview-card p {
  max-width: 58ch;
}

.service-directory-body .service-overview-card > i,
.service-directory-body .service-overview-card > svg {
  grid-column: 4;
  width: 28px;
  height: 28px;
  margin-top: 8px;
  color: rgba(159, 126, 97, 0.9);
}

.doctors-page-body {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(159, 126, 97, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(159, 126, 97, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf3 0%, #f7efe6 56%, #f4f6ef 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

.doctors-page-body .doctors-layout {
  position: relative;
  z-index: 1;
}

.doctors-page-body .doctors-opening .btn {
  width: auto;
  justify-self: start;
}

.doctors-page-body .team-roster-group {
  gap: 0;
}

.doctors-page-body .team-roster-heading {
  padding: 0 0 22px;
  border-bottom-color: rgba(159, 126, 97, 0.32);
}

.doctors-page-body .team-roster-grid {
  gap: 0;
  border-top: 0;
  border-left: 1px solid rgba(159, 126, 97, 0.2);
}

.doctors-page-body .team-roster-card {
  grid-template-columns: minmax(168px, 0.34fr) minmax(0, 0.66fr);
  min-height: 330px;
  border: 0;
  border-right: 1px solid rgba(159, 126, 97, 0.2);
  border-bottom: 1px solid rgba(159, 126, 97, 0.2);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: none;
}

.doctors-page-body .team-roster-card::after {
  display: none;
}

.doctors-page-body .team-roster-card figure {
  border-right: 1px solid rgba(159, 126, 97, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(241, 234, 222, 0.76));
}

.doctors-page-body .team-roster-card img {
  min-height: 330px;
  object-fit: contain;
  object-position: center bottom;
  padding: 14px 10px 0;
}

.doctors-page-body .team-roster-copy {
  align-self: center;
  gap: 10px;
  padding: clamp(24px, 3.2vw, 40px);
}

.doctors-page-body .team-roster-copy span {
  color: rgba(159, 126, 97, 0.86);
  letter-spacing: 0.04em;
}

.doctors-page-body .team-roster-copy h3 {
  font-size: clamp(36px, 4vw, 56px);
}

.doctors-page-body .team-roster-copy strong {
  max-width: 32ch;
}

.doctors-page-body .team-roster-copy ul {
  margin-top: 8px;
}

@media (max-width: 1020px) {
  .service-directory-body .service-directory {
    grid-template-columns: 1fr;
  }

  .service-directory-body .service-directory-heading {
    position: static;
  }

  .service-directory-body .service-overview-card {
    grid-template-columns: 64px minmax(120px, 0.3fr) minmax(0, 1fr) 34px;
  }

  .doctors-page-body .team-roster-grid {
    grid-template-columns: 1fr;
  }

  .doctors-page-body .team-roster-card {
    grid-template-columns: minmax(150px, 0.32fr) minmax(0, 0.68fr);
  }
}

@media (max-width: 720px) {
  .service-directory-body .directory-visual {
    display: none;
  }

  .service-directory-body .service-overview-card {
    grid-template-columns: 46px minmax(0, 1fr) 30px;
    gap: 8px 14px;
    padding: 28px 0;
  }

  .service-directory-body .service-overview-card::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 24px;
  }

  .service-directory-body .service-overview-card > span,
  .service-directory-body .service-overview-card > div {
    grid-column: 2;
  }

  .service-directory-body .service-overview-card > i,
  .service-directory-body .service-overview-card > svg {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    width: 24px;
    height: 24px;
  }

  .service-directory-body .service-overview-card h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .doctors-page-body .team-roster-heading {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .doctors-page-body .team-roster-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 168px;
  }

  .doctors-page-body .team-roster-card img {
    min-height: 168px;
    padding: 0;
    object-fit: cover;
    object-position: center top;
  }

  .doctors-page-body .team-roster-copy {
    padding: 18px;
  }

  .doctors-page-body .team-roster-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .doctors-page-body .team-roster-copy strong {
    font-size: 16px;
  }

}

/* Medical team page final pass: editorial roster with safe portrait framing. */
.doctors-page-body .doctors-opening.reveal,
.doctors-page-body .team-roster-group.reveal {
  opacity: 1;
  transform: none;
}

.doctors-page-body .doctors-roster {
  gap: clamp(38px, 6vw, 76px);
}

.doctors-page-body .team-roster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-left: 0;
}

.doctors-page-body .team-roster-card {
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(159, 126, 97, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 230, 0.92)),
    var(--white);
  box-shadow: 0 18px 48px rgba(48, 25, 5, 0.08);
}

.doctors-page-body .team-roster-card figure {
  height: clamp(330px, 28vw, 390px);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-right: 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.16);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 253, 248, 0.92), rgba(243, 235, 223, 0.78) 62%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(239, 231, 218, 0.72));
}

.doctors-page-body .team-roster-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 20px clamp(34px, 6vw, 70px) 0;
  object-fit: contain;
  object-position: center bottom;
}

.doctors-page-body .team-roster-copy {
  align-self: stretch;
  align-content: start;
  gap: 10px;
  padding: clamp(24px, 3vw, 36px);
}

.doctors-page-body .team-roster-copy h3 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.doctors-page-body .team-roster-copy strong {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.5;
}

.doctors-page-body .team-roster-copy ul {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  color: rgba(48, 25, 5, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.doctors-page-body .team-tags {
  margin-top: 4px;
}

@media (max-width: 1020px) {
  .doctors-page-body .team-roster-grid {
    grid-template-columns: 1fr;
  }

  .doctors-page-body .team-roster-card {
    grid-template-columns: 1fr;
  }

  .doctors-page-body .team-roster-card figure {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .doctors-page-body .team-roster-grid {
    gap: 18px;
  }

  .doctors-page-body .team-roster-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .doctors-page-body .team-roster-card figure {
    height: clamp(300px, 92vw, 390px);
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(159, 126, 97, 0.16);
  }

  .doctors-page-body .team-roster-card img {
    height: 100%;
    padding: 18px clamp(28px, 11vw, 46px) 0;
    object-fit: contain;
    object-position: center bottom;
  }

  .doctors-page-body .team-roster-copy {
    padding: 22px 20px 24px;
  }

.doctors-page-body .team-roster-copy h3 {
  font-size: clamp(32px, 10vw, 42px);
}
}

/* Homepage method section: remove template-like card/dot treatment. */
.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 140px) 24px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 244, 237, 0.94)),
    var(--paper);
}

.method-section::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(159, 126, 97, 0.28), transparent);
}

.method-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(52px, 8vw, 116px);
  align-items: end;
}

.method-heading h2 {
  max-width: 8.8em;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.12;
}

.method-heading p:not(.eyebrow) {
  max-width: 38em;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.9;
}

.clinic-flow {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 0 0 0 clamp(24px, 3vw, 42px);
  border: 0;
  background: transparent;
}

.clinic-flow::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(159, 126, 97, 0.68), rgba(159, 126, 97, 0.08));
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.flow-line::before {
  display: none;
}

.flow-line span {
  position: relative;
  display: block;
  min-height: 0;
  padding: 11px 0 11px 28px;
  border-top: 1px solid rgba(159, 126, 97, 0.18);
  color: rgba(48, 25, 5, 0.92);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.18;
}

.flow-line span:last-child {
  border-bottom: 1px solid rgba(159, 126, 97, 0.18);
}

.flow-line span::before {
  display: none;
}

.flow-detail {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

.flow-detail p {
  max-width: 40em;
  color: rgba(48, 25, 5, 0.68);
  line-height: 1.9;
}

.flow-actions {
  margin-top: 0;
}

@media (max-width: 860px) {
  .method-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .clinic-flow {
    padding-left: 22px;
  }
}

@media (max-width: 620px) {
  .method-section {
    padding: 72px 18px;
  }

  .method-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .flow-line span {
    font-size: clamp(24px, 8vw, 34px);
  }
}

.source-copy {
  display: grid;
  gap: 42px;
}

.copy-chapter {
  display: grid;
  gap: 16px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(159, 126, 97, 0.22);
}

.copy-chapter:last-child {
  border-bottom: 0;
}

.copy-chapter h2 {
  max-width: 14em;
  font-size: clamp(28px, 3.6vw, 48px);
}

.copy-chapter p,
.copy-chapter li {
  max-width: 72ch;
  color: rgba(48, 25, 5, 0.76);
  font-size: 17px;
}

.copy-chapter p {
  margin: 0;
}

.copy-chapter ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.copy-chapter li {
  position: relative;
  padding-left: 20px;
}

.copy-chapter li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: var(--sage);
}

.service-overview {
  display: grid;
  gap: 18px;
}

.service-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(159, 126, 97, 0.22);
}

.service-overview-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.service-overview-card h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.service-overview-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.service-overview-card i,
.service-overview-card svg {
  color: var(--gold);
}

.coming-copy {
  min-height: 300px;
  display: grid;
  place-items: center start;
  border-top: 1px solid rgba(159, 126, 97, 0.22);
  border-bottom: 1px solid rgba(159, 126, 97, 0.22);
}

.coming-copy p {
  max-width: 44ch;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 36px);
  font-family: var(--font-display);
  line-height: 1.35;
}

@media (max-width: 1020px) {
  .site-nav.is-open {
    max-height: calc(100svh - 96px);
    overflow: auto;
  }

  .site-nav.is-open .nav-item {
    width: 100%;
  }

  .site-nav.is-open .nav-parent svg {
    display: none;
  }

  .site-nav.is-open .nav-dropdown {
    position: static;
    width: 100%;
    padding: 0 0 10px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav.is-open .nav-dropdown a {
    min-height: 38px;
    padding: 8px 0;
    color: rgba(48, 25, 5, 0.7);
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
  }

  .team-roster-grid {
    grid-template-columns: 1fr;
  }

  .team-roster-card {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .subpage-hero {
    min-height: 68svh;
    padding: 106px 18px 56px;
  }

  .page-title-wrap {
    max-width: 100%;
  }

  .page-title-wrap h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.12;
  }

  .page-about .page-title-wrap h1 {
    max-width: 7em;
  }

  .page-title-wrap .page-lead {
    font-size: clamp(24px, 7vw, 34px);
  }

  .subpage-hero::after {
    background:
      linear-gradient(180deg, rgba(24, 13, 7, 0.74), rgba(48, 25, 5, 0.66) 52%, rgba(24, 13, 7, 0.88)),
      linear-gradient(90deg, rgba(24, 13, 7, 0.7), rgba(24, 13, 7, 0.22));
  }

  .page-body {
    padding: 56px 18px 78px;
  }

  .doctors-opening h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .team-roster-heading {
    display: grid;
    gap: 6px;
    align-items: start;
  }

  .team-roster-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 20px;
  }

  .team-roster-card::after {
    inset: 12px;
    border-radius: 15px;
  }

  .team-roster-card img {
    min-height: 320px;
  }

  .team-roster-copy {
    padding: 26px 24px 30px;
  }

  .team-roster-copy h3 {
    font-size: clamp(34px, 12vw, 48px);
  }

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

  .flow-line::before {
    display: none;
  }

  .flow-line span {
    padding-top: 28px;
  }

  .service-card {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
  }

  .service-overview-card {
    grid-template-columns: 1fr auto;
  }

  .service-overview-card span,
  .service-overview-card h2,
  .service-overview-card p {
    grid-column: 1 / 2;
  }

  .directory-visual {
    width: min(100%, 420px);
    margin-top: 16px;
  }

  .directory-visual img {
    aspect-ratio: 16 / 10;
  }

  .clinic-schedule-scroll {
    width: calc(100vw - 32px);
    margin: 22px 0 30px;
  }

  .clinic-schedule-table {
    min-width: 760px;
  }

  .clinic-schedule-table th,
  .clinic-schedule-table td {
    min-width: 104px;
    padding: 18px 12px;
  }

  .clinic-schedule-table thead th {
    padding: 15px 12px;
    font-size: 16px;
  }

  .clinic-schedule-corner,
  .clinic-schedule-time {
    width: 76px;
    min-width: 76px;
  }

  .clinic-schedule-time {
    font-size: 18px;
  }

  .schedule-cell-content {
    font-size: 16px;
    line-height: 1.45;
  }

  .schedule-west-badge {
    min-width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .clinic-hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-card .clinic-hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 22px;
  }
}

/* Final mobile reading guard */
@media (max-width: 720px) {
  .service-directory {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-directory-heading {
    position: static;
  }

  .service-directory-heading h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
  }

  .service-overview {
    gap: 0;
  }

  .service-overview-card {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 10px 16px;
    align-items: start;
    padding: 26px 0;
  }

  .service-overview-card > span,
  .service-overview-card > div {
    grid-column: 1 / 2;
  }

  .service-overview-card > i,
  .service-overview-card > svg {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
    justify-self: end;
  }

  .service-overview-card span {
    line-height: 1.45;
    word-break: keep-all;
  }

  .service-overview-card h2 {
    max-width: 100%;
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .service-overview-card strong {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.55;
  }

  .service-overview-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.75;
  }

  .floating-consult {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-consult span {
    display: none;
  }

  .floating-consult svg {
    width: 22px;
    height: 22px;
  }
}

/* Final homepage method override v2: placed at EOF after all legacy method rules. */
.method-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 150px) 0;
  border: 0;
  color: #f8f0e3;
  background:
    radial-gradient(circle at 8% 0%, rgba(143, 111, 77, 0.34), transparent 34%),
    linear-gradient(135deg, #241609 0%, #312114 48%, #18100a 100%);
}

.method-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 16, 10, 0.3), transparent 42%, rgba(24, 16, 10, 0.2)),
    radial-gradient(circle at 86% 18%, rgba(180, 147, 105, 0.18), transparent 30%);
}

.method-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(235, 213, 177, 0.36), transparent);
}

.method-section .method-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
  width: min(1320px, calc(100% - 48px));
}

.method-section .method-still {
  position: relative;
  height: clamp(440px, 48vw, 660px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #1f150d url("images/method-integrated-care-still.png") left center / cover no-repeat;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.method-section .method-still::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(22, 13, 7, 0.46)),
    linear-gradient(90deg, rgba(22, 13, 7, 0.18), transparent 42%);
}

.method-section .method-still img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.035) translate3d(-0.8%, 0, 0);
  animation: methodStillDrift 16s ease-in-out infinite alternate;
}

.method-section .method-copy {
  display: grid;
  gap: clamp(22px, 2.8vw, 36px);
  max-width: 760px;
}

.method-section .reveal {
  opacity: 1;
  transform: none;
}

.method-section .method-copy .eyebrow {
  color: rgba(220, 187, 142, 0.82);
}

.method-section .method-copy h2 {
  max-width: 9em;
  color: #fff7eb;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 1.08;
  text-wrap: balance;
}

.method-section .method-lead {
  max-width: 42em;
  color: rgba(248, 240, 227, 0.76);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.95;
}

.method-section .method-cadence {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: clamp(8px, 1vw, 12px) 0 0;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 198, 157, 0.28);
  border-bottom: 1px solid rgba(229, 198, 157, 0.22);
}

.method-section .method-cadence span {
  color: rgba(255, 247, 235, 0.96);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.method-section .method-cadence span + span::before {
  content: "/";
  margin: 0 clamp(14px, 2.2vw, 26px);
  color: rgba(229, 198, 157, 0.48);
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 300;
}

.method-section .method-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.4vw, 42px);
}

.method-section .method-notes p {
  margin: 0;
  color: rgba(248, 240, 227, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.method-section .method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.method-section .method-actions .btn-line {
  box-shadow: 0 18px 46px rgba(0, 199, 95, 0.2);
}

.method-section .method-actions .text-link {
  color: rgba(255, 247, 235, 0.84);
}

@media (prefers-reduced-motion: reduce) {
  .method-section .method-still img {
    animation: none;
  }
}

@media (max-width: 900px) {
  .method-section {
    padding: 0 0 78px;
  }

  .method-section .method-stage {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .method-section .method-still {
    height: clamp(340px, 72vw, 520px);
    box-shadow: none;
  }

  .method-section .method-copy {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    padding-top: 54px;
  }

  .method-section .method-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .method-section {
    padding-bottom: 64px;
  }

  .method-section .method-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .method-section .method-cadence {
    row-gap: 10px;
  }

  .method-section .method-cadence span {
    font-size: clamp(25px, 8vw, 34px);
  }

  .method-section .method-cadence span + span::before {
    margin: 0 12px;
  }

  .method-section .method-notes {
    padding-right: 54px;
  }

  .method-section .method-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage text rhythm override v2: actual EOF guard after all legacy homepage rules. */
.hero-content {
  width: min(760px, 100%);
}

.hero h1 {
  max-width: 9.4em;
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-copy {
  max-width: 52ch;
  line-height: 1.9;
}

.hero-facts dd {
  line-height: 1.45;
}

.intro-band .section-kicker,
.axis-section .axis-text,
.pain-section .section-heading,
.service-stack .services-sticky,
.team-section .section-heading,
.face-section .face-copy,
.booking-section .booking-copy {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.intro-band .section-kicker h2,
.axis-section .axis-text h2,
.pain-section .section-heading h2,
.service-stack .services-sticky h2,
.team-section .section-heading h2,
.face-section .face-copy h2,
.booking-section .booking-copy h2 {
  max-width: 10.8em;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.18;
  text-wrap: balance;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-copy p,
.axis-section .axis-text p,
.pain-section .section-heading p,
.service-stack .services-sticky p,
.team-section .section-heading p,
.face-section .face-copy p,
.booking-section .booking-copy p {
  max-width: 58ch;
  margin-top: 0;
  line-height: 1.92;
}

.pill-row {
  margin-top: 8px;
}

.axis-section .check-list {
  margin-top: 22px;
}

.method-section .method-stage {
  gap: clamp(48px, 6vw, 92px);
}

.method-section .method-copy {
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 700px;
}

.method-section .method-copy h2 {
  max-width: 10.4em;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.16;
}

.method-section .method-lead {
  max-width: 45em;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 2;
}

.method-section .method-cadence {
  margin-top: 0;
  padding: 18px 0;
}

.method-section .method-cadence span {
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.18;
}

.method-section .method-notes {
  gap: clamp(20px, 3vw, 34px);
}

.method-section .method-notes p {
  max-width: 34em;
  font-size: 15px;
  line-height: 1.95;
}

.path-card {
  min-height: 0;
  padding: clamp(28px, 3.5vw, 40px);
}

.path-card h3 {
  max-width: 13em;
  line-height: 1.28;
  text-wrap: balance;
}

.path-card p {
  margin-top: 18px;
  line-height: 1.82;
}

.service-card {
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  gap: 8px 24px;
  padding: 30px 0;
}

.service-card h3 {
  max-width: 13em;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.26;
  text-wrap: balance;
}

.service-card p {
  max-width: 44ch;
  line-height: 1.78;
}

.team-section .section-heading {
  max-width: 860px;
}

.team-section .team-editorial {
  margin-top: clamp(38px, 5vw, 58px);
}

.doctor-bio {
  display: grid;
  gap: 10px;
}

.doctor-bio h3,
.doctor-bio p {
  margin: 0;
}

.doctor-bio h3 {
  line-height: 1.1;
}

.doctor-bio p {
  max-width: 34ch;
  line-height: 1.76;
}

.booking-steps {
  line-height: 1.82;
}

@media (max-width: 1020px) {
  .hero h1 {
    font-size: clamp(50px, 10vw, 78px);
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    font-size: clamp(34px, 6.2vw, 52px);
  }

  .service-card {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 104px 18px 84px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: 7.2em;
    font-size: clamp(44px, 13.2vw, 64px);
    line-height: 1.14;
  }

  .hero-copy {
    max-width: 23em;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .hero-facts div {
    padding: 16px 18px;
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    max-width: 9.4em;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.24;
  }

  .intro-copy p,
  .axis-section .axis-text p,
  .pain-section .section-heading p,
  .service-stack .services-sticky p,
  .team-section .section-heading p,
  .face-section .face-copy p,
  .booking-section .booking-copy p {
    max-width: none;
    font-size: 16px;
    line-height: 1.9;
  }

  .method-section .method-copy {
    gap: 20px;
    padding-top: 46px;
  }

  .method-section .method-copy h2 {
    max-width: 8.8em;
    font-size: clamp(34px, 9.5vw, 43px);
    line-height: 1.22;
  }

  .method-section .method-lead {
    font-size: 16px;
    line-height: 1.92;
  }

  .method-section .method-cadence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    padding: 18px 0;
  }

  .method-section .method-cadence span {
    padding-left: 14px;
    border-left: 1px solid rgba(229, 198, 157, 0.34);
    font-size: clamp(24px, 7vw, 31px);
  }

  .method-section .method-cadence span + span::before {
    content: none;
  }

  .method-section .method-notes {
    gap: 16px;
    padding-right: 0;
  }

  .pathways {
    gap: 14px;
  }

  .path-card {
    padding: 26px 22px;
  }

  .path-card h3 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .path-card p {
    font-size: 15px;
    line-height: 1.82;
  }

  .service-card {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 24px 0 26px;
  }

  .service-card::after {
    position: absolute;
    top: 25px;
    right: 0;
    font-size: 25px;
  }

  .service-card span,
  .service-card h3,
  .service-card p {
    padding-right: 34px;
  }

  .service-card h3 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .service-card p {
    max-width: none;
    padding-right: 0;
    font-size: 15px;
  }

  .doctor-bio {
    gap: 8px;
  }

  .doctor-bio h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .doctor-bio p {
    max-width: none;
    font-size: 15px;
    line-height: 1.74;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 6.8em;
    font-size: clamp(42px, 12.2vw, 56px);
  }

  .hero-copy {
    font-size: 15.5px;
  }

  .intro-band .section-kicker h2,
  .axis-section .axis-text h2,
  .pain-section .section-heading h2,
  .service-stack .services-sticky h2,
  .team-section .section-heading h2,
  .face-section .face-copy h2,
  .booking-section .booking-copy h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }
}

/* CJK heading flow guard: keep protected phrases from splitting into orphan characters. */
.heading-phrase {
  display: inline-block;
  white-space: nowrap;
}

.page-about .page-title-wrap h1 {
  max-width: min(100%, 10em);
}

.article-heading {
  line-break: strict;
  text-wrap: balance;
}

.service-practitioner-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.service-practitioner-heading h2 {
  max-width: min(100%, 17em);
  text-wrap: balance;
  line-break: strict;
}

.service-practitioner-heading .heading-phrase {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .service-practitioner-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-practitioner-heading .text-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

/* Service directory layout polish v1: tighten the first route block and make cards scan like a clinic index. */
.service-directory-body {
  padding-top: clamp(42px, 5vw, 76px);
}

.service-directory-body .service-directory {
  display: block;
}

.service-directory-body .service-route-intro {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 4.4vw, 70px);
  align-items: center;
  margin-top: 0;
  padding: clamp(18px, 3vw, 36px) 0 clamp(56px, 6vw, 86px);
}

.service-directory-body .service-route-copy {
  max-width: 650px;
  gap: clamp(14px, 1.6vw, 20px);
}

.service-directory-body .service-route-copy h2 {
  max-width: 10.2em;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.16;
  text-wrap: balance;
}

.service-directory-body .service-route-copy p:not(.eyebrow) {
  max-width: 34em;
}

.service-directory-body .service-route-visual {
  align-self: start;
  margin-top: 0;
  box-shadow: 0 22px 66px rgba(48, 25, 5, 0.13);
}

.service-directory-body .service-route-visual img {
  display: block;
  aspect-ratio: 4 / 3;
  object-position: center;
}

.service-directory-body .service-route-groups {
  gap: clamp(46px, 5vw, 74px);
}

.service-directory-body .service-route-group {
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  padding-top: clamp(34px, 4vw, 52px);
}

.service-directory-body .service-route-group-heading h2 {
  max-width: 15em;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.68;
  text-wrap: balance;
}

.service-directory-body .service-route-group .service-overview {
  border-top: 0;
}

.service-directory-body .service-route-group .service-overview-card {
  grid-template-columns: 56px minmax(0, 1fr) 34px;
  gap: 14px 24px;
  padding: clamp(24px, 3.6vw, 44px) 0;
}

.service-directory-body .service-route-group .service-overview-card::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: clamp(25px, 2.4vw, 36px);
}

.service-directory-body .service-route-group .service-overview-card > span {
  grid-column: 2;
  max-width: none;
  padding-top: 0;
}

.service-directory-body .service-route-group .service-overview-card > div {
  grid-column: 2;
}

.service-directory-body .service-route-group .service-overview-card h2 {
  max-width: 100%;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.16;
}

.service-directory-body .service-route-group .service-overview-card strong {
  max-width: 38em;
  line-height: 1.62;
}

.service-directory-body .service-route-group .service-overview-card p {
  max-width: 54ch;
  line-height: 1.82;
}

.service-directory-body .service-route-group .service-overview-card > i,
.service-directory-body .service-route-group .service-overview-card > svg {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin-top: 4px;
}

@media (max-width: 1020px) {
  .service-directory-body .service-route-intro,
  .service-directory-body .service-route-group {
    grid-template-columns: 1fr;
  }

  .service-directory-body .service-route-group-heading h2 {
    max-width: 18em;
  }
}

@media (max-width: 720px) {
  .service-directory-body {
    padding-top: 42px;
  }

  .service-directory-body .service-route-intro {
    gap: 26px;
    padding: 0 0 46px;
    border-top: 0;
  }

  .service-directory-body .service-route-copy h2 {
    max-width: 8.4em;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.22;
  }

  .service-directory-body .service-route-copy p:not(.eyebrow) {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.86;
  }

  .service-directory-body .service-route-visual img {
    aspect-ratio: 4 / 3;
  }

  .service-directory-body .service-route-group {
    gap: 20px;
    padding-top: 36px;
  }

  .service-directory-body .service-route-group-heading h2 {
    max-width: 13.5em;
    font-size: clamp(21px, 6vw, 28px);
    line-height: 1.48;
  }

  .service-directory-body .service-route-group .service-overview-card {
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 8px 14px;
    padding: 24px 0;
  }

  .service-directory-body .service-route-group .service-overview-card::before {
    grid-row: 1 / span 3;
    font-size: 25px;
  }

  .service-directory-body .service-route-group .service-overview-card > span,
  .service-directory-body .service-route-group .service-overview-card > div {
    grid-column: 2;
  }

  .service-directory-body .service-route-group .service-overview-card > i,
  .service-directory-body .service-route-group .service-overview-card > svg {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
  }

  .service-directory-body .service-route-group .service-overview-card h2 {
    font-size: clamp(25px, 7.2vw, 33px);
  }
}

/* Layout polish v1.1: make long service copy readable without returning to boxy cards. */
.service-directory-body .service-route-group .service-overview-card > span {
  color: rgba(160, 117, 82, 0.78);
}

.service-directory-body .service-route-group .service-overview-card strong {
  color: rgba(60, 42, 27, 0.88);
}

.service-directory-body .service-route-group .service-overview-card p {
  color: rgba(78, 65, 54, 0.72);
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .service-directory-body .service-route-group .service-overview-card {
    padding: 28px 0 31px;
  }

  .service-directory-body .service-route-group .service-overview-card strong {
    line-height: 1.72;
  }

  .service-directory-body .service-route-group .service-overview-card p {
    margin-top: 12px;
    line-height: 1.92;
  }
}

/* Home polish v1: remove AI-like framed facts, replace the axis diagram, and soften booking copy rhythm. */
.hero-clinic-rail {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  align-items: center;
  max-width: 760px;
  margin: clamp(34px, 4.8vw, 54px) 0 0;
  padding: 18px 0 0;
  color: rgba(255, 247, 235, 0.88);
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0;
}

.hero-clinic-rail::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(229, 198, 157, 0.56), rgba(229, 198, 157, 0.16), transparent);
}

.hero-clinic-rail span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.hero-clinic-rail span + span::before {
  width: 5px;
  height: 5px;
  margin: 0 18px;
  content: "";
  border-radius: 999px;
  background: rgba(220, 187, 142, 0.82);
  box-shadow: 0 0 0 5px rgba(220, 187, 142, 0.1);
}

/* Cinematic hero restore: visible light pass, pointer parallax, and scroll cue. */
.hero {
  --hero-mx: 0;
  --hero-my: 0;
  --hero-scroll: 0;
  --hero-glow-x: 64%;
  --hero-glow-y: 32%;
}

.hero-media {
  transform: translate3d(calc(var(--hero-mx) * -12px), calc(var(--hero-my) * -8px), 0);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-media img {
  animation-duration: 18s;
  filter: saturate(1.18) contrast(1.09) brightness(1.04);
  will-change: transform;
}

.hero-media::before {
  position: absolute;
  inset: -18%;
  z-index: 4;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 31%, rgba(255, 245, 219, 0.06) 38%, rgba(255, 245, 219, 0.32) 48%, rgba(171, 132, 82, 0.12) 54%, transparent 65%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: calc(0.34 + var(--hero-scroll) * 0.22);
  transform: translate3d(calc(var(--hero-mx) * 18px - 22%), calc(var(--hero-my) * 10px), 0) rotate(-6deg);
  animation: hero-scan-pass 8.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.hero-depth {
  translate: calc(var(--hero-mx) * 18px) calc(var(--hero-my) * 12px);
  will-change: transform, opacity, background-position, translate;
}

.hero-depth-near {
  translate: calc(var(--hero-mx) * 34px) calc(var(--hero-my) * 20px);
}

.hero-light {
  position: absolute;
  inset: -18%;
  z-index: 2;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(255, 238, 201, 0.36), rgba(255, 238, 201, 0.12) 18%, transparent 42%),
    linear-gradient(103deg, transparent 18%, rgba(250, 232, 198, 0.16) 45%, rgba(250, 232, 198, 0.03) 55%, transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(calc(var(--hero-mx) * 22px), calc(var(--hero-my) * 16px), 0) rotate(-4deg);
  animation: hero-aurora-pass 9.5s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
  will-change: transform, opacity, background-position;
}

.hero-stage::before {
  position: absolute;
  inset: clamp(92px, 12vh, 136px) clamp(16px, 4vw, 58px) clamp(42px, 8vh, 82px);
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 246, 226, 0.16);
  border-radius: clamp(18px, 2.4vw, 30px);
  pointer-events: none;
  background:
    radial-gradient(circle at calc(var(--hero-glow-x) - 8%) calc(var(--hero-glow-y) + 5%), rgba(255, 238, 201, 0.1), transparent 36%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.08), transparent 28%, transparent 72%, rgba(255, 253, 248, 0.06));
  box-shadow:
    0 0 0 1px rgba(48, 25, 5, 0.18),
    0 32px 100px rgba(24, 13, 7, 0.32) inset;
  opacity: calc(0.62 - var(--hero-scroll) * 0.22);
  transform: scale(calc(1 + var(--hero-scroll) * 0.018));
  will-change: opacity, transform;
}

.hero-stage::after {
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  top: clamp(128px, 22vh, 210px);
  z-index: 2;
  width: clamp(140px, 18vw, 310px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 246, 226, 0.12);
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 238, 201, 0.14) 49%, transparent 51%),
    conic-gradient(from 40deg, transparent 0 68deg, rgba(255, 238, 201, 0.18) 76deg, transparent 92deg 360deg);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: calc(0.42 - var(--hero-scroll) * 0.18);
  transform: translate3d(calc(var(--hero-mx) * 20px), calc(var(--hero-my) * 14px), 0) rotate(calc(var(--hero-scroll) * 28deg));
  animation: hero-focus-breathe 5.6s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.hero-content > .eyebrow,
.hero-content h1 span,
.hero-copy,
.hero-actions,
.hero-clinic-rail {
  will-change: opacity, transform;
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 8;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 220, 188, 0.38);
  border-radius: 999px;
  background: rgba(48, 25, 5, 0.24);
  color: rgba(255, 247, 235, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(24, 13, 7, 0.28);
  animation: hero-cue-float 1.9s ease-in-out infinite;
}

.hero-scroll-cue svg,
.hero-scroll-mark {
  width: 20px;
  height: 20px;
}

.hero-scroll-cue svg {
  stroke-width: 1.8;
}

.hero-scroll-mark {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-actions .btn-line {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-line::after {
  position: absolute;
  inset: -80% -34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.42) 48%, transparent 61%);
  transform: translateX(-82%) rotate(8deg);
  animation: hero-button-sheen 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes hero-scan-pass {
  0% {
    opacity: 0.12;
    transform: translate3d(calc(var(--hero-mx) * 14px - 48%), calc(var(--hero-my) * 8px - 2%), 0) rotate(-7deg);
  }
  46% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.18;
    transform: translate3d(calc(var(--hero-mx) * 22px + 44%), calc(var(--hero-my) * 12px + 2%), 0) rotate(-5deg);
  }
}

@keyframes hero-aurora-pass {
  0% {
    opacity: 0.38;
    background-position: 0% 0%, -28% 50%;
    transform: translate3d(calc(var(--hero-mx) * 18px - 18px), calc(var(--hero-my) * 12px - 10px), 0) rotate(-6deg);
  }
  48% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.56;
    background-position: 100% 0%, 42% 50%;
    transform: translate3d(calc(var(--hero-mx) * 26px + 16px), calc(var(--hero-my) * 18px + 10px), 0) rotate(-2deg);
  }
}

@keyframes hero-focus-breathe {
  0% {
    opacity: 0.18;
    scale: 0.96;
  }
  100% {
    opacity: 0.46;
    scale: 1.04;
  }
}

@keyframes hero-button-sheen {
  0%,
  48% {
    transform: translateX(-82%) rotate(8deg);
  }
  76%,
  100% {
    transform: translateX(82%) rotate(8deg);
  }
}

@keyframes hero-cue-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.axis-section .diagram-card {
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
}

.axis-section .diagram-card img {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow:
    0 18px 54px rgba(48, 25, 5, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.booking-section .booking-copy h2 span {
  display: block;
}

.booking-section .booking-steps li {
  line-height: 1.9;
}

@media (max-width: 760px) {
  .hero-clinic-rail {
    display: grid;
    gap: 8px;
    max-width: 100%;
    margin-top: 30px;
    padding-top: 16px;
    font-size: 14.5px;
  }

  .hero-clinic-rail span + span::before {
    display: none;
  }

  .hero-scroll-cue {
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }

  .hero-stage::before {
    inset: 92px 12px 56px;
    border-radius: 18px;
    opacity: 0.36;
  }

  .hero-stage::after {
    right: -44px;
    top: 118px;
    width: 176px;
    opacity: 0.22;
  }

  .axis-section .diagram-card {
    border-radius: 14px;
  }

  .axis-section .diagram-card img {
    border-radius: 14px;
  }

  .booking-section .booking-copy h2 {
    max-width: 8.8em;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .hero {
    --hero-mx: 0 !important;
    --hero-my: 0 !important;
    --hero-scroll: 0 !important;
    --hero-glow-x: 64%;
    --hero-glow-y: 30%;
  }

  .hero-media,
  .hero-media img,
  .hero-media::before,
  .hero-media::after,
  .hero-light,
  .hero-stage::after,
  .hero-actions .btn-line::after,
  .hero-scroll-cue {
    animation: none !important;
    transition: none !important;
    will-change: auto;
  }

  .hero-media {
    transform: none !important;
  }

  .hero-media img {
    filter: saturate(1.08) contrast(1.04) brightness(0.98);
    transform: scale(1.035) !important;
  }

  .hero-depth {
    display: none;
  }

  .hero-media::before {
    inset: -14%;
    background:
      radial-gradient(ellipse at 66% 24%, rgba(255, 240, 205, 0.18), transparent 42%),
      linear-gradient(115deg, transparent 24%, rgba(255, 245, 219, 0.08) 50%, transparent 72%);
    filter: blur(18px);
    opacity: 0.18;
    transform: none !important;
  }

  .hero-media::after {
    background: linear-gradient(112deg, transparent 34%, rgba(239, 231, 210, 0.06) 50%, transparent 66%);
    filter: blur(18px);
    opacity: 0.16;
    transform: none !important;
  }

  .hero-light {
    display: block;
    background:
      radial-gradient(ellipse at 66% 28%, rgba(255, 238, 201, 0.2), rgba(255, 238, 201, 0.08) 24%, transparent 50%);
    filter: blur(20px);
    opacity: 0.3;
    transform: none !important;
  }

  .hero-grain {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
    background-size: 12px 12px;
    mix-blend-mode: normal;
    opacity: 0.035;
  }

  .hero-stage::after {
    opacity: 0.12;
    transform: none !important;
  }

  .hero-actions .btn-line::after {
    opacity: 0;
  }

  .hero-scroll-cue {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media img,
  .hero-media::before,
  .hero-media::after,
  .hero-depth,
  .hero-light,
  .hero-stage::after,
  .hero-actions .btn-line::after,
  .hero-scroll-cue {
    animation: none !important;
    transform: none !important;
    translate: none !important;
    transition: none !important;
  }
}

/* Kaiping review follow-up: on touch/mobile, remove residual hero glare that looked like screen flicker. */
@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .hero-static-motion .hero-media::before,
  .hero-static-motion .hero-media::after,
  .hero-static-motion .hero-light,
  .hero-static-motion .hero-grain {
    display: none !important;
  }

  .hero-static-motion .hero-media img {
    filter: saturate(1.02) contrast(1.01) brightness(0.92);
    transform: scale(1.02) !important;
  }

  .hero-static-motion .hero-overlay {
    background:
      linear-gradient(180deg, rgba(24, 13, 7, 0.82) 0%, rgba(48, 25, 5, 0.74) 54%, rgba(24, 13, 7, 0.78) 100%);
  }
}

/* Home service list: split mobile service entries into a compact two-column index instead of one long run. */
@media (max-width: 720px) {
  .service-stack .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border-top: 0;
  }

  .service-stack .service-card {
    min-height: 154px;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 15px 14px 18px;
    border: 1px solid rgba(159, 126, 97, 0.22);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.76) !important;
  }

  .service-stack .service-card::after {
    content: none;
    display: none;
  }

  .service-stack .service-card svg,
  .service-stack .service-card span,
  .service-stack .service-card h3,
  .service-stack .service-card p {
    grid-column: 1;
  }

  .service-stack .service-card svg {
    grid-row: auto;
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .service-stack .service-card span {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .service-stack .service-card h3 {
    margin: 0;
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.18;
    letter-spacing: 0;
  }

  .service-stack .service-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 13.5px;
    line-height: 1.58;
  }
}

/* Service article hierarchy: keep h4/h5 explanations visually attached to their copy. */
.service-article-body .article-subsection {
  display: grid;
  max-width: 70ch;
  gap: clamp(8px, 1vw, 13px);
}

.service-article-body .article-subsection .article-heading {
  margin: 0;
}

.service-article-body .article-subsection .article-p,
.service-article-body .article-subsection .article-marker {
  max-width: none;
  margin: 0;
}

.service-article-body .article-subsection-h4 {
  gap: clamp(10px, 1.1vw, 14px);
}

.service-article-body .article-subsection-h4 .article-heading-h4 {
  color: rgba(48, 25, 5, 0.92);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.service-article-body .article-subsection-h4 .article-p {
  line-height: 1.88;
}

.service-article-body .article-subsection-h5 {
  max-width: 64ch;
  margin-left: clamp(12px, 2vw, 28px);
  padding: clamp(12px, 1.6vw, 18px) 0 clamp(12px, 1.6vw, 18px) clamp(16px, 2vw, 24px);
  border-left: 2px solid rgba(159, 126, 97, 0.38);
  background: linear-gradient(90deg, rgba(159, 126, 97, 0.08), rgba(159, 126, 97, 0));
  gap: 6px;
}

.service-article-body .article-subsection-h5 .article-heading-h5 {
  color: rgba(48, 25, 5, 0.9);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.45;
}

.service-article-body .article-subsection-h5 .article-p {
  color: rgba(48, 25, 5, 0.72);
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.82;
}

@media (max-width: 720px) {
  .service-article-body .article-subsection {
    max-width: none;
  }

  .service-article-body .article-subsection .article-p,
  .service-article-body .article-subsection .article-marker {
    padding-right: 0 !important;
  }

  .service-article-body .article-subsection-h5 {
    margin-left: 0;
    padding-left: 16px;
  }
}
