:root {
  --paper: #e8e4dc;
  --paper-light: #faf8f3;
  --ink: #3d4b3c;
  --muted: #536563;
  --teal: #536563;
  --rule: #c2c6be;
  --clay: #80601f;
  --gold: #d2a24a;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
::selection {
  background: #d5daca;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 5px;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1512px;
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 15px;
}
.reading-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--clay);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}
.site-header {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 19px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 65px;
  letter-spacing: -4px;
  line-height: 0.8;
}
.brand-dot {
  color: var(--clay);
}
.brand-descriptor {
  font-size: 10px;
  line-height: 1.7;
  font-weight: 550;
  letter-spacing: 1.5px;
  border-left: 1px solid #a9b1a6;
  padding-left: 17px;
}
.header-note {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  margin-right: 32px;
}
.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--ink);
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.button span {
  font-size: 23px;
  line-height: 1;
  transition: transform 0.25s;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button:active {
  transform: translateY(1px);
}
.button-small {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 13px;
  gap: 28px;
}
.button-outline {
  background: transparent;
}
.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.button-primary {
  color: var(--paper-light);
  background: var(--ink);
}
.button-primary:hover {
  background: #40594d;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 55px;
  padding-top: 48px;
  padding-bottom: 81px;
  align-items: start;
}
.hero-copy {
  padding-top: 24px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.35px;
  font-weight: 550;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: center;
}
.short-rule {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--clay);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
}
h1 {
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  margin-top: 36px;
}
em {
  font-weight: 400;
  font-style: italic;
  color: #64705b;
}
h1 em {
  font-size: 0.91em;
  white-space: nowrap;
}
.hero-description {
  max-width: 490px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 27px 0 27px;
}
.hero-price {
  font-size: 12px;
  margin-top: 16px;
  color: var(--muted);
}
.hero-price span {
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
.hero-visual {
  height: 618px;
  position: relative;
  margin-top: 2px;
  padding-bottom: 32px;
}
.photo-window {
  position: absolute;
  inset: 0 0 32px;
  overflow: hidden;
  border-radius: 2px 140px 2px 2px;
  background: #b5a68f;
}
.hero-photo {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.04);
  filter: saturate(0.72);
}
.image-index {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.7px;
  color: var(--muted);
}
.hero-caption {
  position: absolute;
  bottom: 61px;
  left: -28px;
  right: 28px;
  padding: 24px;
  background: rgba(247, 245, 238, 0.96);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 30px #273d3710;
}
.hero-caption > span:last-child {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}
.hero-caption small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  margin-top: 8px;
  color: var(--muted);
}
.caption-mark {
  height: 42px;
  width: 42px;
  display: grid;
  place-content: center;
  border: 1px solid #b4bbac;
  border-radius: 50%;
  font-size: 22px;
  transition: transform 0.3s;
}
.hero-caption:hover .caption-mark {
  transform: rotate(45deg);
}
.scroll-cue {
  position: absolute;
  bottom: 31px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.scroll-cue > span:last-child {
  font-size: 18px;
  margin-left: 10px;
}
.scroll-line {
  height: 1px;
  width: 40px;
  background: var(--clay);
}
.credentials {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 97px;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 12px;
}
.credentials > span:first-child {
  font-size: 9px;
  letter-spacing: 1.2px;
  max-width: 160px;
  margin-right: auto;
}
.credentials p {
  color: var(--muted);
  font-size: 11px;
}
.credentials strong {
  font-weight: 450;
}
.credential-divider {
  height: 22px;
  width: 1px;
  background: var(--rule);
}
.section-space {
  padding-block: 110px;
}
h2 {
  font-size: clamp(40px, 4.15vw, 64px);
  letter-spacing: -1.8px;
  line-height: 1.12;
}
.intro .eyebrow {
  margin-bottom: 30px;
}
.intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  column-gap: 90px;
}
.intro .eyebrow {
  grid-column: 1/-1;
}
.intro > p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  align-self: end;
  max-width: 460px;
}
.initial-visit {
  border-top: 1px solid var(--rule);
}
.initial-visit h2 {
  margin: 20px 0;
}
@media (min-width: 1600px) {
  .hero {
    gap: 75px;
  }
  .hero-visual {
    height: 700px;
  }
  .hero-copy {
    padding-top: 50px;
  }
  .hero-description {
    font-size: 19px;
    max-width: 530px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-note {
    display: none;
  }
  .hero {
    gap: 30px;
    grid-template-columns: 1.18fr 1fr;
  }
  .hero-copy {
    padding-top: 12px;
  }
  h1 {
    font-size: clamp(44px, 5.6vw, 65px);
    letter-spacing: -2px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-visual {
    height: 560px;
  }
  .hero-caption {
    left: -15px;
    right: 15px;
    padding: 20px;
  }
  .hero-caption > span:last-child {
    font-size: 23px;
  }
  .credentials {
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 22px;
  }
  .credentials > span:first-child {
    max-width: none;
    flex-basis: 100%;
  }
  .intro {
    gap: 30px;
  }
  .intro > p {
    font-size: 17px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 92px;
    gap: 10px;
  }
  .brand {
    gap: 11px;
  }
  .brand-name {
    font-size: 50px;
  }
  .brand-descriptor {
    font-size: 8px;
    letter-spacing: 0.6px;
    padding-left: 11px;
  }
  .button-small {
    font-size: 12px;
    padding: 9px 12px;
    gap: 14px;
    min-height: 44px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 70px;
    gap: 35px;
  }
  .hero-copy {
    padding-top: 8px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
    gap: 8px;
  }
  h1 {
    font-size: clamp(42px, 8.8vw, 62px);
    line-height: 1.07;
    letter-spacing: -1.6px;
    margin-top: 25px;
  }
  h1 em {
    font-size: 0.95em;
  }
  .hero-description {
    font-size: 17px;
    line-height: 1.75;
    margin-top: 23px;
    max-width: 100%;
  }
  .hero-price {
    font-size: 12px;
  }
  .hero-price span {
    font-size: 12px;
  }
  .hero-visual {
    height: 450px;
    width: 100%;
    margin: 0;
  }
  .photo-window {
    border-radius: 2px 100px 2px 2px;
  }
  .hero-caption {
    left: 14px;
    right: 14px;
    bottom: 55px;
    padding: 20px;
  }
  .hero-caption > span:last-child {
    font-size: 24px;
  }
  .hero-caption small {
    font-size: 11px;
  }
  .image-index {
    font-size: 9px;
  }
  .scroll-cue {
    bottom: 24px;
    font-size: 9px;
  }
  .credentials {
    gap: 13px 15px;
    font-size: 12px;
    min-height: 140px;
  }
  .credentials > span:first-child {
    font-size: 10px;
  }
  .credentials p {
    flex-basis: 100%;
    font-size: 12px;
  }
  .credential-divider {
    height: 15px;
  }
  .section-space {
    padding-block: 70px;
  }
  .intro {
    display: block;
  }
  .intro .eyebrow {
    margin-bottom: 24px;
  }
  h2 {
    font-size: 43px;
    letter-spacing: -1.5px;
  }
  .intro > p {
    margin-top: 25px;
    font-size: 17px;
  }
  .intro h2 em {
    display: inline-block;
  }
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/newsreader-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/newsreader-italic.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/dm-sans-regular.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 450 600;
  font-display: swap;
  src: url("../assets/dm-sans-medium.ttf") format("truetype");
}
body {
  font-synthesis: none;
}
.hero-description {
  font-size: 18px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.15px;
}
.hero-price,
.hero-price span {
  font-size: 13px;
}
.image-index,
.scroll-cue {
  font-size: 12px;
  letter-spacing: 1.1px;
}
.image-index {
  font-size: 10px;
}
.hero-caption small {
  font-size: 13px;
}
.credentials {
  font-size: 14px;
  gap: 20px;
}
.credentials > span:first-child {
  font-size: 12px;
  letter-spacing: 1px;
  max-width: 185px;
}
.credentials p {
  font-size: 13px;
}
.hero-photo {
  object-position: 72% 50%;
}
.hero {
  padding-bottom: 85px;
  grid-template-columns: 1.15fr 1fr;
}
.hero-visual {
  height: 645px;
}
.hero-copy {
  min-width: 0;
}
.care-journey {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 8%;
  padding-bottom: 110px;
  align-items: center;
}
.interaction-hint {
  font-size: 12px;
  letter-spacing: 1.25px;
  display: flex;
  justify-content: space-between;
  padding: 0 0 25px;
  color: var(--muted);
}
.interaction-hint span {
  font-size: 19px;
}
.journey-tab {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--rule);
  padding: 29px 0;
  color: var(--ink);
  cursor: pointer;
  transition:
    padding 0.3s,
    background 0.3s;
}
.journey-tab:last-child {
  border-bottom: 1px solid var(--rule);
}
.journey-tab::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 25%;
  height: 50%;
  width: 2px;
  background: var(--clay);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.journey-tab[aria-selected="true"]::before {
  transform: scaleY(1);
}
.journey-tab[aria-selected="true"] {
  padding-left: 12px;
}
.journey-tab[aria-selected="true"] .step-number {
  color: var(--clay);
}
.step-number {
  font-family: var(--serif);
  font-size: 23px;
  color: #687067;
  transition: color 0.3s;
}
.journey-tab strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 31px;
  line-height: 1.3;
}
.journey-tab small {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 6px;
}
.step-arrow {
  font-size: 24px;
  margin-left: auto;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.journey-tab:hover .step-arrow,
.journey-tab[aria-selected="true"] .step-arrow {
  opacity: 1;
  transform: translate(0);
}
.journey-assurance {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-top: 25px;
}
.journey-stage {
  position: relative;
  min-height: 670px;
  background: #e2e5da;
  padding: 40px 45px 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
}
.journey-stage::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #bdc7b4;
  bottom: 32px;
  left: 0;
}
.document-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fbfaf5;
  padding: 26px 33px 25px;
  box-shadow:
    0 8px 24px #273d3712,
    4px 5px 0 #efeee6,
    4px 6px 0 #bac2b8;
  transform: rotate(-2deg);
  transition: transform 0.5s;
}
.journey-stage:hover .document-card {
  transform: rotate(0);
}
.document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  gap: 20px;
}
.document-logo {
  font-family: var(--serif);
  font-size: 39px;
  letter-spacing: -2px;
  line-height: 1;
}
.document-header > span:last-child {
  font-size: 10px;
  letter-spacing: 1px;
}
.document-content {
  padding: 27px 0;
}
.document-kicker {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--clay);
}
.document-content h3 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 15px 0;
}
.document-content > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  min-height: 78px;
}
.document-content ul {
  list-style: none;
  margin: 21px 0 0;
  padding: 0;
}
.document-content li {
  font-size: 14px;
  padding: 13px 0;
  border-top: 1px solid #dfe1d7;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.document-content li span {
  font-size: 11px;
  color: var(--clay);
}
.document-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 17px;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 1px;
}
.stage-caption {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.4px;
}
.conditions {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}
.conditions .eyebrow {
  color: #c3c9bb;
}
.conditions h2 {
  margin-top: 32px;
}
.conditions em {
  color: #c1ccad;
}
.conditions-intro > p {
  font-size: 18px;
  line-height: 1.8;
  color: #d2d6cb;
  max-width: 410px;
  margin-top: 26px;
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #8b9d88;
  gap: 32px;
  font-size: 15px;
  margin-top: 30px;
  padding: 6px 0 10px;
}
.text-link span {
  font-size: 23px;
  transition: transform 0.3s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.condition-list {
  padding-top: 12px;
}
.condition-list details {
  border-top: 1px solid #607064;
}
.condition-list details:last-child {
  border-bottom: 1px solid #607064;
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 17px;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.condition-list summary {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.3;
  padding: 26px 0;
}
.condition-num {
  font-family: var(--sans);
  font-size: 12px;
  color: #c3c9bb;
  margin-right: 8px;
}
.plus {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-left: auto;
}
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 0;
  top: 8px;
  width: 17px;
  height: 1px;
  transition: transform 0.3s;
}
.plus::after {
  transform: rotate(90deg);
}
details[open] > summary .plus::after {
  transform: rotate(0deg);
}
.detail-content {
  padding: 0 0 27px 41px;
  font-size: 16px;
  line-height: 1.8;
}
.conditions .detail-content {
  color: #e0e3d8;
}
.detail-note {
  font-size: 14px;
  line-height: 1.8;
  padding-top: 12px;
  color: #c3cdbd;
}
details[open] .detail-content {
  animation: detail-in 0.3s ease;
}
.team-section {
  display: grid;
  grid-template-columns: 0.88fr 1.1fr;
  gap: 11%;
  align-items: center;
}
.doctor-photo-wrap {
  position: relative;
  padding-bottom: 42px;
  align-self: center;
}
.doctor-photo {
  width: 100%;
  display: block;
  aspect-ratio: 0.85;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 110px 2px 2px 2px;
  filter: saturate(0.65);
}
.photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
}
.photo-caption span {
  max-width: 47%;
}
.photo-caption span:last-child {
  text-align: right;
  color: var(--muted);
}
.team-copy h2 {
  margin: 30px 0;
}
.team-copy > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.team-copy .team-lead {
  font-size: 19px;
  color: var(--ink);
}
.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0;
}
.specialty-list span {
  font-size: 12px;
  padding: 7px 12px;
  border: 1px solid #b7c0b0;
  border-radius: 2px;
}
.coach-note {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 29px;
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
.coach-monogram {
  display: grid;
  place-content: center;
  background: #e0e3d8;
  flex: 0 0 50px;
  height: 50px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
}
.coach-note h3 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.coach-note p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.pricing-section {
  background: #e7e8dd;
}
.pricing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 53px;
}
.pricing-heading h2 {
  margin-top: 28px;
}
.pricing-heading > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 350px;
  padding-bottom: 7px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px 30px;
  border: 1px solid #bfc7b7;
  margin-right: -1px;
  background: #efefe6;
  min-width: 0;
}
.price-card.first-consult {
  background: var(--paper-light);
  border-top: 3px solid var(--clay);
  padding-top: 34px;
}
.card-label {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--muted);
  min-height: 22px;
}
.price-card h3 {
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -0.75px;
  margin: 22px 0 25px;
}
.price {
  border-bottom: 1px solid #cad0c1;
  padding-bottom: 25px;
  margin-bottom: 23px;
}
.price > span {
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.price > small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}
.price > span > small {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
}
.price-card > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  min-height: 87px;
}
.check-list {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 9px;
}
.check-list li::before {
  content: "✓";
  color: var(--clay);
  font-size: 13px;
}
.price-card .button {
  width: 100%;
  font-size: 14px;
  min-height: 52px;
  margin-top: auto;
}
.program-details {
  margin-top: auto;
  font-size: 14px;
  border-top: 1px solid #bec7b8;
  padding-top: 16px;
}
.program-details summary {
  justify-content: space-between;
  min-height: 35px;
}
.program-details p {
  padding: 15px 0 5px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.credit-note {
  margin-top: 33px;
  border: 1px solid #bdc5b4;
  border-radius: 2px;
  display: flex;
  padding: 23px 27px;
  gap: 21px;
  align-items: center;
}
.credit-symbol {
  font-size: 32px;
  color: var(--clay);
  line-height: 1;
}
.credit-note strong {
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.credit-note p span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding-top: 5px;
}
.pricing-fineprint {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 1000px;
  margin-top: 19px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 8%;
}
.faq-section h2 {
  font-size: 48px;
  margin-top: 28px;
}
.faq-list details {
  border-top: 1px solid var(--rule);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-list summary {
  font-size: 17px;
  line-height: 1.6;
  padding: 23px 0;
  font-weight: 500;
  gap: 25px;
}
.faq-list .detail-content {
  padding-left: 0;
  color: var(--muted);
  font-size: 16px;
}
.closing-section {
  background: var(--ink);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.closing-content {
  padding-block: 94px;
  text-align: center;
  position: relative;
}
.closing-content .eyebrow {
  justify-content: center;
  color: #c7cebf;
}
.closing-content h2 {
  font-size: clamp(44px, 5.3vw, 78px);
  margin-top: 29px;
  line-height: 1.08;
}
.closing-content h2 em {
  color: #c3cdaf;
}
.closing-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: #d6d9cc;
  margin: 25px 0 30px;
}
.button-light {
  background: var(--paper-light);
  color: var(--ink);
  border-color: var(--paper-light);
}
.button-light:hover {
  background: #dce2ce;
  border-color: #dce2ce;
}
.closing-note {
  display: block;
  font-size: 12px;
  color: #d0d5c5;
  margin-top: 16px;
}
.closing-content::before,
.closing-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16%;
  height: 1px;
  background: #647462;
}
.closing-content::before {
  left: 0;
}
.closing-content::after {
  right: 0;
}
.site-footer {
  padding-top: 60px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 75px;
  padding-bottom: 49px;
}
.footer-top > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.footer-contact {
  margin-left: auto;
}
.footer-contact > span {
  font-size: 10px;
  letter-spacing: 0.8px;
}
.footer-contact p {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.back-top {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  cursor: pointer;
  min-height: 44px;
  padding: 8px 0 8px 12px;
}
.back-top span {
  font-size: 22px;
  margin-left: 22px;
}
.consult-dialog {
  width: calc(100% - 32px);
  max-width: 610px;
  max-height: calc(100dvh - 40px);
  border: 1px solid #aebaa9;
  background: var(--paper-light);
  color: var(--ink);
  padding: 43px;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 20px 70px #0003;
}
.consult-dialog::backdrop {
  background: #192d27b8;
  backdrop-filter: blur(5px);
}
.consult-dialog[open] {
  animation: dialog-in 0.35s ease;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  height: 44px;
  width: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.consult-dialog h2 {
  font-size: 48px;
  margin: 22px 0 19px;
}
.consult-dialog > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.dialog-list {
  padding: 0;
  list-style: none;
  margin: 25px 0;
}
.dialog-list li {
  border-top: 1px solid var(--rule);
  padding: 13px 0;
}
.dialog-list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.dialog-list span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.dialog-credit {
  background: #e8ebdf;
  padding: 17px 20px;
  font-size: 14px;
  line-height: 1.75;
}
.consult-dialog .prototype-note {
  font-size: 12px;
  line-height: 1.8;
  margin: 20px 0;
}
.dialog-done {
  width: 100%;
  min-height: 52px;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal-pending {
  opacity: 0;
  transform: translateY(22px);
}
.motion-ready .reveal {
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.motion-ready .hero-copy > * {
  animation: hero-in 0.9s both;
  animation-delay: calc(var(--order, 0) * 90ms);
}
.motion-ready .photo-window {
  animation: photo-in 1.1s cubic-bezier(0.2, 0.6, 0.3, 1) both;
}
.motion-ready .hero-caption {
  animation: hero-in 1s 0.4s both;
}
.motion-ready .photo-window:hover .hero-photo {
  scale: 1.035;
  transition: scale 1.5s ease;
}
.hero-photo {
  transition: scale 1.5s ease;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes photo-in {
  from {
    opacity: 0;
    clip-path: inset(12% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-visual {
    height: 700px;
  }
  .document-card {
    padding: 30px 40px;
  }
  .journey-stage {
    min-height: 720px;
  }
  .document-content > p {
    font-size: 17px;
  }
  .document-content li {
    font-size: 16px;
  }
  .document-content h3 {
    font-size: 45px;
  }
  .journey-tab strong {
    font-size: 35px;
  }
  .price-card {
    padding: 42px 39px 36px;
  }
  .price-card.first-consult {
    padding-top: 40px;
  }
}
@media (max-width: 1200px) {
  .credentials {
    gap: 12px;
  }
  .credentials > span:first-child {
    flex-basis: 100%;
    max-width: none;
  }
  .credentials {
    padding-block: 23px;
  }
  .hero {
    gap: 30px;
  }
  .hero-visual {
    height: 645px;
  }
  .hero h1 {
    font-size: 5.45vw;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .image-index {
    font-size: 9px;
  }
  .care-journey {
    gap: 5%;
  }
  .journey-stage {
    padding: 35px 27px 55px;
  }
  .document-card {
    padding: 25px;
  }
  .team-section {
    gap: 7%;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-card.first-consult {
    padding-top: 26px;
  }
  .price-card h3 {
    font-size: 35px;
  }
  .card-label {
    font-size: 10px;
  }
  .price-card > p {
    min-height: 115px;
  }
  .check-list li {
    font-size: 13px;
  }
  .pricing-heading > p {
    max-width: 290px;
  }
  .faq-section h2 {
    font-size: 43px;
  }
  .footer-top {
    gap: 40px;
  }
  .closing-content::before,
  .closing-content::after {
    width: 8%;
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 5.7vw;
  }
  .hero h1 em {
    white-space: normal;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-visual {
    height: 640px;
  }
  .hero .eyebrow {
    font-size: 9px;
    flex-wrap: wrap;
  }
  .hero-caption {
    padding: 16px;
    gap: 12px;
  }
  .hero-caption > span:last-child {
    font-size: 24px;
  }
  .hero-caption small {
    font-size: 12px;
  }
  .caption-mark {
    flex: 0 0 35px;
    height: 35px;
  }
  .hero-price,
  .hero-price span {
    font-size: 12px;
  }
  .hero-copy .button {
    font-size: 14px;
    gap: 20px;
    padding: 14px 18px;
  }
  .credentials {
    font-size: 12px;
  }
  .credentials > span:first-child {
    font-size: 11px;
  }
  .credentials p {
    font-size: 12px;
  }
  .care-journey {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .journey-stage {
    padding: 29px 20px 53px;
    min-height: 645px;
  }
  .document-content h3 {
    font-size: 34px;
  }
  .document-content > p {
    font-size: 14px;
    min-height: 100px;
  }
  .document-content li {
    font-size: 12px;
    gap: 8px;
  }
  .document-header > span:last-child {
    font-size: 8px;
  }
  .document-card {
    padding: 23px 20px;
  }
  .document-footer {
    font-size: 8px;
  }
  .journey-tab {
    gap: 13px;
  }
  .journey-tab strong {
    font-size: 27px;
  }
  .journey-tab small {
    font-size: 12px;
  }
  .journey-assurance {
    font-size: 13px;
  }
  .interaction-hint {
    font-size: 10px;
  }
  .conditions-grid {
    gap: 6%;
  }
  .condition-list summary {
    font-size: 24px;
    gap: 10px;
  }
  .condition-num {
    margin-right: 2px;
  }
  .conditions-intro > p {
    font-size: 16px;
  }
  .conditions h2 {
    font-size: 44px;
  }
  .detail-content {
    padding-left: 25px;
    font-size: 15px;
  }
  .team-copy h2 {
    font-size: 44px;
  }
  .team-copy .team-lead {
    font-size: 17px;
  }
  .team-copy > p {
    font-size: 15px;
  }
  .coach-note {
    gap: 12px;
  }
  .coach-monogram {
    flex-basis: 40px;
    height: 40px;
  }
  .coach-note h3 {
    font-size: 23px;
  }
  .coach-note p {
    font-size: 13px;
  }
  .photo-caption {
    font-size: 9px;
  }
  .specialty-list span {
    font-size: 11px;
  }
  .pricing-heading {
    gap: 30px;
  }
  .pricing-heading h2 {
    font-size: 44px;
  }
  .pricing-heading > p {
    font-size: 15px;
    max-width: 250px;
  }
  .pricing-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .price-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
    padding: 30px;
    margin: 0;
  }
  .price-card.first-consult {
    padding-top: 28px;
  }
  .price-card .card-label {
    grid-column: 1/-1;
    font-size: 12px;
  }
  .price-card h3 {
    font-size: 40px;
    margin-bottom: 23px;
  }
  .price-card .price {
    grid-column: 1;
    grid-row: 3/5;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .price-card > p {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    font-size: 16px;
    margin-top: 22px;
  }
  .price-card .check-list {
    grid-column: 2;
    grid-row: 3;
    margin: 0 0 15px;
  }
  .check-list li {
    font-size: 14px;
  }
  .price-card .button,
  .price-card .program-details {
    grid-column: 2;
    grid-row: 4;
    margin-top: 0;
  }
  .faq-section {
    gap: 35px;
  }
  .faq-section h2 {
    font-size: 40px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-contact {
    flex-basis: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .footer-contact p {
    margin-top: 0;
  }
  .footer-top > p {
    margin-left: auto;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero {
    gap: 35px;
    padding-bottom: 74px;
  }
  .hero h1 {
    font-size: clamp(42px, 8.8vw, 62px);
  }
  .hero h1 em {
    white-space: nowrap;
  }
  .hero .eyebrow {
    font-size: 10px;
    flex-wrap: nowrap;
    letter-spacing: 0.7px;
  }
  .hero-visual {
    height: 440px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-copy .button {
    font-size: 15px;
    gap: 40px;
    padding: 15px 24px;
  }
  .hero-caption {
    padding: 20px;
  }
  .hero-caption small {
    font-size: 12px;
  }
  .image-index {
    font-size: 10px;
  }
  .scroll-cue {
    font-size: 10px;
  }
  .credentials {
    font-size: 13px;
    gap: 10px 15px;
  }
  .credentials > span:first-child {
    font-size: 11px;
  }
  .credentials strong {
    flex-basis: 100%;
  }
  .credentials .credential-divider {
    display: none;
  }
  .credentials p {
    font-size: 13px;
    flex-basis: 100%;
    padding-bottom: 3px;
  }
  .care-journey {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 65px;
  }
  .journey-controls,
  .journey-stage {
    width: 100%;
  }
  .journey-tab {
    gap: 18px;
    padding: 23px 0;
  }
  .journey-tab::before {
    left: -10px;
  }
  .journey-tab strong {
    font-size: 29px;
  }
  .journey-tab small {
    font-size: 14px;
  }
  .journey-assurance {
    font-size: 14px;
  }
  .interaction-hint {
    font-size: 11px;
    padding-bottom: 20px;
  }
  .journey-stage {
    padding: 33px 27px 52px;
    min-height: 610px;
  }
  .document-card {
    padding: 25px;
    max-width: 430px;
  }
  .document-content h3 {
    font-size: 38px;
  }
  .document-content > p {
    font-size: 15px;
    min-height: 0;
  }
  .document-content li {
    font-size: 14px;
    gap: 13px;
  }
  .document-header > span:last-child {
    font-size: 10px;
  }
  .document-footer {
    font-size: 9px;
  }
  .stage-caption {
    font-size: 11px;
  }
  .conditions-grid {
    display: block;
  }
  .conditions h2 {
    font-size: 43px;
    margin-top: 24px;
  }
  .conditions-intro > p {
    font-size: 17px;
  }
  .condition-list {
    margin-top: 39px;
  }
  .condition-list summary {
    font-size: 27px;
    padding: 24px 0;
    gap: 12px;
  }
  .condition-num {
    font-size: 11px;
  }
  .detail-content {
    font-size: 16px;
    padding-left: 27px;
  }
  .detail-note {
    font-size: 14px;
  }
  .team-section {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }
  .doctor-photo-wrap {
    width: 100%;
    max-width: 470px;
    padding-bottom: 45px;
  }
  .doctor-photo {
    aspect-ratio: 1.02;
    object-position: 50% 25%;
    border-top-left-radius: 85px;
  }
  .photo-caption {
    font-size: 10px;
  }
  .team-copy h2 {
    margin-top: 25px;
    font-size: 43px;
  }
  .team-copy > p {
    font-size: 17px;
  }
  .team-copy .team-lead {
    font-size: 19px;
  }
  .specialty-list span {
    font-size: 12px;
  }
  .coach-note {
    gap: 17px;
  }
  .coach-monogram {
    flex-basis: 47px;
    height: 47px;
  }
  .coach-note h3 {
    font-size: 26px;
  }
  .coach-note p {
    font-size: 15px;
  }
  .pricing-heading {
    display: block;
    margin-bottom: 35px;
  }
  .pricing-heading h2 {
    font-size: 43px;
    margin-top: 25px;
  }
  .pricing-heading > p {
    font-size: 17px;
    max-width: none;
    margin-top: 22px;
  }
  .pricing-grid {
    gap: 20px;
  }
  .price-card {
    display: flex;
    padding: 29px 25px;
  }
  .price-card.first-consult {
    padding-top: 27px;
  }
  .price-card .card-label {
    font-size: 11px;
  }
  .price-card h3 {
    font-size: 40px;
    margin-top: 20px;
  }
  .price-card .price {
    border-bottom: 1px solid #cad0c1;
    margin: 0 0 22px;
    padding-bottom: 23px;
  }
  .price-card > p {
    margin-top: 0;
    font-size: 16px;
  }
  .price-card .check-list {
    margin: 22px 0 25px;
  }
  .price-card .button,
  .price-card .program-details {
    margin-top: auto;
  }
  .price > span {
    font-size: 48px;
  }
  .credit-note {
    padding: 22px 20px;
    align-items: flex-start;
    gap: 15px;
  }
  .credit-note strong {
    font-size: 15px;
  }
  .credit-note p span {
    font-size: 14px;
    padding-top: 9px;
  }
  .pricing-fineprint {
    font-size: 12px;
  }
  .faq-section {
    display: block;
  }
  .faq-section h2 {
    font-size: 43px;
  }
  .faq-list {
    margin-top: 35px;
  }
  .faq-list summary {
    font-size: 16px;
    padding: 23px 0;
  }
  .faq-list .detail-content {
    font-size: 16px;
  }
  .closing-content {
    padding-block: 70px;
  }
  .closing-content h2 {
    font-size: 44px;
    letter-spacing: -1.4px;
  }
  .closing-content > p {
    font-size: 17px;
  }
  .closing-content > p br {
    display: none;
  }
  .closing-content::before,
  .closing-content::after {
    display: none;
  }
  .closing-content .button {
    font-size: 14px;
    gap: 20px;
    padding: 15px 20px;
  }
  .closing-note {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    gap: 30px;
    display: block;
    padding-bottom: 30px;
  }
  .footer-top > p {
    margin: 25px 0 30px;
    font-size: 15px;
  }
  .footer-contact {
    display: block;
  }
  .footer-contact > span {
    font-size: 10px;
  }
  .footer-contact p {
    font-size: 15px;
    margin-top: 10px;
  }
  .footer-bottom {
    font-size: 11px;
    padding: 15px 0;
  }
  .back-top {
    font-size: 12px;
  }
  .back-top span {
    margin-left: 10px;
  }
  .consult-dialog {
    padding: 36px 25px 25px;
  }
  .consult-dialog h2 {
    font-size: 41px;
  }
  .consult-dialog .eyebrow {
    font-size: 10px;
  }
  .consult-dialog > p {
    font-size: 15px;
  }
  .dialog-list span {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand-descriptor {
    display: none;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .short-rule {
    width: 13px;
  }
  .hero-caption > span:last-child {
    font-size: 21px;
  }
  .hero-caption small {
    font-size: 11px;
  }
  .image-index {
    font-size: 9px;
  }
  .condition-list summary {
    font-size: 24px;
  }
  .document-card {
    padding: 20px;
  }
  .document-header > span:last-child {
    font-size: 8px;
  }
  .document-content h3 {
    font-size: 34px;
  }
  .document-content li {
    font-size: 12px;
  }
  .journey-stage {
    padding-inline: 20px;
  }
  .closing-content h2 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready .reveal-pending {
    opacity: 1;
    transform: none;
  }
  .document-card,
  .journey-stage:hover .document-card {
    transform: none;
  }
  .hero-photo {
    transform: none !important;
    scale: 1 !important;
  }
}

/* Original Kaya identity: forest green, muted teal, ivory, and gold. */
.site-header {
  height: 150px;
}
.brand {
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 140px;
  height: auto;
}
.document-logo {
  display: block;
  width: 82px;
  height: auto;
  flex-shrink: 0;
}
em {
  color: var(--teal);
}
.short-rule,
.scroll-line,
.reading-progress,
.journey-tab::before {
  background: var(--gold);
}
.price-card.first-consult {
  border-top-color: var(--gold);
}
.button-primary:hover {
  background: var(--teal);
}
.hero-caption {
  background: rgba(250, 248, 243, 0.97);
}
.journey-stage,
.pricing-section {
  background: #dcded6;
}
.journey-stage::after {
  background: #bcc4be;
}
.price-card {
  background: #eeece5;
  border-color: #bec5be;
}
.coach-monogram,
.dialog-credit {
  background: #e0e3db;
}
.conditions,
.closing-section {
  background: var(--teal);
  color: var(--paper-light);
}
.conditions .eyebrow,
.conditions em,
.conditions-intro > p,
.conditions .detail-content,
.conditions .detail-note,
.condition-num,
.closing-content .eyebrow,
.closing-content h2 em,
.closing-content > p,
.closing-note {
  color: var(--paper);
}
.condition-list details,
.condition-list details:last-child {
  border-color: #8f9c94;
}
.conditions .text-link {
  border-color: var(--gold);
}
.closing-content::before,
.closing-content::after {
  background: var(--gold);
}
.site-footer {
  background: var(--teal);
  color: var(--paper);
  padding-top: 0;
}
.footer-top {
  border-top: 1px solid #8f9c94;
  padding-top: 46px;
  align-items: center;
}
.footer-top .brand-logo {
  width: 160px;
}
.footer-top > p,
.footer-bottom,
.back-top {
  color: var(--paper);
}
.footer-bottom {
  border-top-color: #8f9c94;
}
@media (max-width: 700px) {
  .site-header {
    height: 116px;
  }
  .brand-logo {
    width: 108px;
  }
  .document-logo {
    width: 76px;
  }
  .footer-top {
    padding-top: 35px;
  }
  .footer-top .brand-logo {
    width: 140px;
  }
  .footer-top > p {
    margin-top: 22px;
  }
}
