@font-face {
  font-family: "UP Display";
  src: url("assets/fahkwang-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "UP Sans";
  src: url("assets/avenir-light.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #151514;
  --gold: #b89b55;
  --gold-soft: #d8c79d;
  --ivory: #f7f4ee;
  --paper: #ffffff;
  --eucalyptus: #49645a;
  --graphite: #303331;
  --mist: #e7e4de;
  --header-height: 78px;
  --shell: min(1200px, calc(100% - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "UP Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "UP Display", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.4vw, 6.6rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

p {
  max-width: 64ch;
}

:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

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

.content-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--eucalyptus);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid rgba(21, 21, 20, 0.1);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  width: 160px;
  min-height: 48px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 34px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding-block: 11px;
  font-size: 0.92rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 220ms var(--ease);
}

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

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

.mobile-current,
.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.button-small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 58px;
  padding: 16px 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
  border-bottom: 1px solid rgba(21, 21, 20, 0.45);
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  transition: transform 220ms var(--ease);
}

.text-link:hover svg {
  transform: translateY(3px);
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(21, 21, 20, 0.25);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.icon-button:hover {
  border-color: var(--gold);
  background: rgba(184, 155, 85, 0.12);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.7;
}

.site-header .menu-toggle {
  display: none;
}

.icon-button-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--paper);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 70;
  display: none;
  padding: 30px 24px max(30px, env(safe-area-inset-bottom));
  transform: translateX(100%);
  background: var(--ivory);
  transition: transform 300ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: grid;
  margin-bottom: 32px;
}

.mobile-menu nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--mist);
  font-family: "UP Display", sans-serif;
  font-size: 1.65rem;
}

.progress-nav {
  --active-index: 0;
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 60;
  display: grid;
  width: 118px;
  padding: 8px 10px;
  transform: translateY(-50%);
  border: 1px solid rgba(21, 21, 20, 0.14);
  border-radius: 6px;
  background: rgba(247, 244, 238, 0.9);
  box-shadow: 0 18px 48px rgba(21, 21, 20, 0.09);
  backdrop-filter: blur(12px);
}

.progress-nav a {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  height: 40px;
  color: rgba(21, 21, 20, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.progress-nav a span {
  font-variant-numeric: tabular-nums;
}

.progress-nav a[aria-current="step"] {
  color: var(--ink);
}

.progress-light {
  position: absolute;
  top: 8px;
  right: 6px;
  left: 6px;
  z-index: 1;
  height: 40px;
  transform: translateY(calc(var(--active-index) * 40px));
  border-left: 2px solid var(--gold);
  background: rgba(184, 155, 85, 0.13);
  box-shadow: 12px 0 28px rgba(184, 155, 85, 0.28);
  transition: transform 360ms var(--ease);
}

.sculpture-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms var(--ease);
}

.sculpture-layer.is-visible {
  opacity: 1;
}

.sculpture-layer canvas {
  width: 100%;
  height: 100%;
}

.sculpture-fallback {
  position: absolute;
  top: 22%;
  right: 3%;
  width: min(48vw, 720px);
  opacity: 0.16;
  transform: rotate(-8deg);
}

.webgl-ready .sculpture-fallback {
  display: none;
}

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

.sculpture-narrative {
  position: relative;
}

.story-panel {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
}

.hero {
  min-height: 92svh;
  padding-top: var(--header-height);
}

.hero-inner {
  display: flex;
  min-height: calc(92svh - var(--header-height));
  align-items: center;
}

.hero-copy {
  width: min(56%, 680px);
  padding: 80px 0 104px;
}

.hero-lead {
  max-width: 52ch;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin-top: 58px;
  border-top: 1px solid rgba(21, 21, 20, 0.22);
}

.hero-facts div {
  display: grid;
  padding: 18px 18px 0 0;
  gap: 2px;
}

.hero-facts strong {
  font-family: "UP Display", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.hero-facts span {
  color: rgba(21, 21, 20, 0.64);
  font-size: 0.78rem;
}

.next-chapter {
  position: absolute;
  right: 48px;
  bottom: 20px;
  display: grid;
  min-width: 220px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 21, 20, 0.24);
  font-family: "UP Display", sans-serif;
  font-size: 0.9rem;
}

.next-chapter span {
  color: var(--eucalyptus);
  font-family: "UP Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-inner {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.align-right {
  justify-content: flex-end;
}

.narrative-copy {
  width: min(48%, 580px);
}

.narrative-copy > p:not(.eyebrow),
.faq-heading > p:not(.eyebrow) {
  color: rgba(21, 21, 20, 0.7);
  font-size: 1.08rem;
}

.question-list {
  margin-top: 42px;
  border-top: 1px solid rgba(21, 21, 20, 0.22);
}

.question-list details,
.faq-list details {
  border-bottom: 1px solid rgba(21, 21, 20, 0.18);
}

.question-list summary,
.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: "UP Display", sans-serif;
  font-size: 1.06rem;
  list-style: none;
}

.question-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.question-list details p,
.faq-list details p {
  max-width: 52ch;
  margin-bottom: 24px;
  color: rgba(21, 21, 20, 0.7);
}

.care-panel {
  min-height: 110svh;
  padding: 140px 0;
}

.care-inner {
  display: grid;
  min-height: 90svh;
  align-content: space-between;
}

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

.force-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(260px, 360px);
  justify-content: space-between;
  gap: 34px;
}

.force-block {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.force-block-care {
  border-color: var(--gold);
}

.force-index {
  color: var(--eucalyptus);
  font-size: 0.8rem;
  font-weight: 700;
}

.force-block h3 {
  margin: 22px 0 14px;
}

.force-block p {
  color: rgba(21, 21, 20, 0.7);
}

.force-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.force-signal svg {
  width: 18px;
  color: var(--eucalyptus);
}

.evaluation-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid rgba(21, 21, 20, 0.22);
  list-style: none;
}

.evaluation-path li {
  display: grid;
  padding: 22px 26px 0 0;
  gap: 8px;
}

.evaluation-path li + li {
  padding-left: 26px;
  border-left: 1px solid rgba(21, 21, 20, 0.18);
}

.evaluation-path span {
  color: var(--eucalyptus);
  font-size: 0.76rem;
  font-weight: 700;
}

.evaluation-path strong {
  font-family: "UP Display", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.evaluation-path p {
  margin-bottom: 0;
  color: rgba(21, 21, 20, 0.68);
  font-size: 0.9rem;
}

.proof-section {
  padding: 146px 0 156px;
  background: var(--ink);
  color: var(--paper);
}

.proof-intro {
  margin-bottom: 110px;
}

.proof-intro h2 {
  max-width: 12ch;
}

.doctor-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
}

.doctor-portrait {
  margin-bottom: 0;
}

.doctor-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.doctor-portrait figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
}

.doctor-copy h3 {
  max-width: 13ch;
}

.doctor-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.proof-lines {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-lines div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 20px 0;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-lines strong {
  color: var(--gold-soft);
  font-size: 0.86rem;
}

.proof-lines span {
  color: rgba(255, 255, 255, 0.72);
}

.clinic-figure {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  margin: 150px auto 0;
}

.clinic-figure img {
  width: 100%;
  min-height: 460px;
  max-height: 760px;
  object-fit: cover;
}

.clinic-figure figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 4px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.86rem;
}

.clinic-figure figcaption span {
  color: var(--eucalyptus);
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  margin-top: 140px;
  gap: clamp(64px, 9vw, 144px);
}

.testimonial-heading h3 {
  max-width: 12ch;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 14px;
}

.testimonial-controls span {
  min-width: 48px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.testimonial-stack {
  position: relative;
  height: 390px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 350px;
  align-content: space-between;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  transform: translate(26px, 26px) rotate(2deg) scale(0.94);
  border-radius: 6px;
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 420ms var(--ease),
    opacity 320ms ease,
    background 320ms ease;
}

.testimonial-card::before {
  color: var(--gold);
  font-family: "UP Display", serif;
  font-size: 3.3rem;
  line-height: 0.7;
  content: "“";
}

.testimonial-card p {
  margin: 18px 0 22px;
  font-family: "UP Display", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.28;
}

.testimonial-card footer {
  color: var(--gold-soft);
  font-weight: 700;
}

.testimonial-card.is-behind {
  transform: translate(18px, 18px) rotate(1deg) scale(0.97);
  opacity: 0.42;
}

.testimonial-card.is-behind > * {
  visibility: hidden;
}

.testimonial-card.is-behind::before {
  opacity: 0;
}

.testimonial-card.is-active {
  z-index: 3;
  transform: translate(0, 0) rotate(0) scale(1);
  background: var(--ivory);
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
}

.faq-section {
  padding: 150px 0;
  background: linear-gradient(
    to bottom,
    var(--paper) 0%,
    var(--paper) 76%,
    rgba(255, 255, 255, 0) 100%
  );
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
}

.faq-heading h2 {
  max-width: 9ch;
}

.faq-list {
  border-top: 1px solid rgba(21, 21, 20, 0.18);
}

.faq-list summary {
  min-height: 78px;
  font-size: 1.14rem;
}

.faq-list summary svg {
  width: 19px;
  flex: 0 0 auto;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.conversion-section {
  display: grid;
  min-height: 90svh;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.conversion-inner {
  display: flex;
  align-items: center;
  min-height: 90svh;
  padding: 150px 0 120px;
}

.conversion-copy {
  width: min(56%, 720px);
}

.conversion-copy h2 {
  max-width: 10ch;
}

.conversion-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-bottom: 30px;
  color: rgba(21, 21, 20, 0.7);
  font-size: 1.12rem;
}

.conversion-meta {
  display: flex;
  margin-top: 28px;
  gap: 24px;
  color: rgba(21, 21, 20, 0.62);
  font-size: 0.84rem;
}

.site-footer {
  padding: 48px 0;
  background: var(--graphite);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr minmax(280px, 520px);
  align-items: center;
  gap: 34px;
}

.footer-inner img {
  width: 150px;
  padding: 8px;
  border-radius: 4px;
  background: var(--ivory);
}

.footer-inner div {
  display: grid;
}

.footer-inner div span,
.footer-inner p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-inner p {
  margin-bottom: 0;
}

@media (min-width: 901px) {
  .testimonial-layout,
  .faq-layout {
    padding-right: 118px;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1040px);
  }

  .progress-nav {
    right: 12px;
  }

  .hero-copy {
    width: 59%;
  }

  .force-grid {
    grid-template-columns: minmax(240px, 320px) minmax(240px, 320px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
    --shell: calc(100% - 40px);
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    width: 124px;
  }

  .brand img {
    width: 120px;
  }

  .desktop-nav,
  .header-cta,
  .progress-nav {
    display: none;
  }

  .mobile-current,
  .site-header .menu-toggle {
    display: inline-grid;
  }

  .mobile-current {
    margin-right: 2px;
    color: rgba(21, 21, 20, 0.62);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
  }

  .mobile-menu {
    display: block;
  }

  .sculpture-fallback {
    top: 13%;
    right: 50%;
    width: min(78vw, 500px);
    transform: translateX(50%) rotate(-6deg);
  }

  .story-panel {
    min-height: 105svh;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-inner {
    min-height: calc(92svh - var(--header-height));
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: clamp(230px, 34svh, 300px) 0 42px;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 11.5vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  .hero-lead {
    max-width: 44ch;
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 14px;
  }

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

  .hero-facts div {
    padding-top: 12px;
  }

  .next-chapter {
    right: 20px;
    bottom: 12px;
    left: 20px;
    min-width: 0;
  }

  .story-inner {
    min-height: 105svh;
    align-items: flex-end;
    padding-top: 330px;
    padding-bottom: 90px;
  }

  .narrative-copy {
    width: 100%;
  }

  .care-panel {
    min-height: 128svh;
    padding: 120px 0 80px;
  }

  .care-inner {
    min-height: 110svh;
    align-content: space-between;
  }

  .care-heading {
    max-width: 640px;
  }

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

  .proof-section,
  .faq-section {
    padding: 110px 0;
  }

  .proof-intro {
    margin-bottom: 76px;
  }

  .doctor-layout,
  .testimonial-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .doctor-layout {
    gap: 56px;
  }

  .doctor-portrait {
    max-width: 560px;
  }

  .clinic-figure {
    width: calc(100% - 32px);
    margin-top: 100px;
  }

  .clinic-figure img {
    min-height: 420px;
  }

  .testimonial-layout {
    margin-top: 110px;
    gap: 52px;
  }

  .testimonial-heading h3 {
    max-width: 17ch;
  }

  .faq-layout {
    gap: 54px;
  }

  .faq-heading h2 {
    max-width: 12ch;
  }

  .conversion-copy {
    width: 72%;
  }

  .footer-inner {
    grid-template-columns: 150px 1fr;
  }

  .footer-inner p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-current {
    max-width: 104px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero-copy {
    padding-top: clamp(220px, 32svh, 270px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .hero-actions .button {
    padding-inline: 14px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts strong,
  .hero-facts span {
    overflow-wrap: anywhere;
  }

  .hero-facts strong {
    font-size: 0.82rem;
  }

  .hero-facts span {
    font-size: 0.68rem;
  }

  .story-inner {
    padding-top: 300px;
  }

  .question-list summary {
    min-height: 60px;
    font-size: 0.96rem;
  }

  .care-panel {
    min-height: 150svh;
  }

  .care-inner {
    min-height: 132svh;
  }

  .force-grid {
    grid-template-columns: 1fr;
  }

  .evaluation-path {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .evaluation-path li {
    padding: 18px 0;
  }

  .evaluation-path li + li {
    padding-left: 0;
    border-top: 1px solid rgba(21, 21, 20, 0.18);
    border-left: 0;
  }

  .force-block {
    max-width: 360px;
  }

  .force-block-care {
    justify-self: end;
  }

  .doctor-layout {
    gap: 44px;
  }

  .proof-lines div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .clinic-figure {
    width: 100%;
  }

  .clinic-figure img {
    min-height: 360px;
  }

  .clinic-figure figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .testimonial-stack {
    height: 430px;
  }

  .testimonial-card {
    min-height: 390px;
    padding: 30px 24px;
  }

  .testimonial-card p {
    font-size: 1.35rem;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1rem;
  }

  .conversion-section,
  .conversion-inner {
    min-height: 92svh;
  }

  .conversion-inner {
    align-items: flex-end;
    padding-top: 330px;
    padding-bottom: 80px;
  }

  .conversion-copy {
    width: 100%;
  }

  .conversion-copy .button {
    width: 100%;
  }

  .conversion-meta {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner p {
    grid-column: auto;
  }
}

@media (max-height: 740px) and (max-width: 620px) {
  .hero {
    min-height: 94svh;
  }

  .hero-inner {
    min-height: calc(94svh - var(--header-height));
  }

  .hero-copy {
    padding-top: 190px;
  }

  h1 {
    font-size: 2.45rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .progress-light {
    box-shadow: none;
  }
}
