@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --blush: #e8b8be;
  --rose: #e3999f;
  --pale-blush: #f8e1e5;
  --ink: #0e0c19;
  --paper: #fffdfb;
  --ivory: #f4efeb;
  --soft-ink: #514b57;
  --mist: #ded8d5;
  --line: rgba(14, 12, 25, 0.18);
  --line-soft: rgba(14, 12, 25, 0.1);
  --line-light: rgba(255, 253, 251, 0.24);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page: min(1320px, calc(100vw - 80px));
  --reading: 720px;
  --gutter: clamp(24px, 5.2vw, 84px);
  --section: clamp(112px, 11vw, 168px);
  --ease: cubic-bezier(0.2, 0.72, 0.26, 1);
  --header-height: 116px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body.menu-open {
  overflow: hidden;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

ul,
ol {
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

::selection {
  background: var(--blush);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 3000;
  padding: 12px 18px;
  transform: translateY(-180%);
  border: 1px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease);
}

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

.wrap {
  width: var(--page);
  margin-inline: auto;
}

.reading-width {
  max-width: var(--reading);
}

.soft-copy {
  margin-top: 28px;
  color: var(--soft-ink);
}

.section-offset {
  margin-top: 70px;
}

.text-link--spaced {
  margin-top: 18px;
}

.text-link--spaced-lg {
  margin-top: 34px;
}

.lede--spaced {
  margin-top: 30px;
}

.section {
  padding-block: var(--section);
}

.section--compact {
  padding-block: clamp(82px, 8vw, 120px);
}

.section--paper {
  background: var(--paper);
}

.section--ivory {
  background: var(--ivory);
}

.section--blush {
  background: var(--pale-blush);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.96);
  backdrop-filter: blur(18px);
}

.utility-bar {
  min-height: 34px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  width: var(--page);
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  text-decoration: none;
}

.header-inner {
  display: grid;
  width: var(--page);
  min-height: 82px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 152px 1fr auto;
  gap: clamp(18px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  width: 132px;
  align-items: center;
  text-decoration: none;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 0.4s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.button::after {
  display: inline-block;
  margin-left: 11px;
  content: "↗";
  font-size: 14px;
  line-height: 1;
  transition: transform 0.35s var(--ease);
}

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

.button:hover::after {
  transform: translate(3px, -3px);
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  background: transparent;
  color: var(--paper);
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.button--rose {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--ink);
}

.button--rose:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.text-link:hover::after {
  width: 64px;
}

.menu-toggle {
  display: none;
  width: 50px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__lines {
  position: relative;
  width: 22px;
  height: 14px;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition:
    top 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.menu-toggle__lines::before {
  top: 2px;
}

.menu-toggle__lines::after {
  top: 11px;
}

.menu-open .menu-toggle__lines::before {
  top: 7px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle__lines::after {
  top: 7px;
  transform: rotate(-45deg);
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-right: 12px;
  content: "";
  vertical-align: middle;
  background: currentColor;
  opacity: 0.62;
}

.display-title,
.page-title,
.section-title,
.card-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.display-title {
  max-width: 820px;
  font-size: clamp(62px, 7.8vw, 124px);
}

.page-title {
  max-width: 880px;
  font-size: clamp(56px, 6.6vw, 104px);
}

.section-title {
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1;
}

.card-title {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
}

.display-title em,
.page-title em,
.section-title em,
.card-title em {
  color: var(--rose);
  font-weight: 400;
}

.lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.72;
}

.section--ink .lede,
.page-hero--ink .lede {
  color: rgba(255, 253, 251, 0.74);
}

.micro-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.rule-heading {
  display: grid;
  align-items: end;
  padding-bottom: clamp(38px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
}

.rule-heading .lede {
  font-size: 17px;
}

.section--ink .rule-heading {
  border-color: var(--line-light);
}

.hero-home {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  background: var(--pale-blush);
  grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
}

.hero-home__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(84px, 8.5vw, 138px) var(--gutter) clamp(48px, 5vw, 74px);
}

.hero-home__main {
  max-width: 760px;
}

.hero-home .display-title {
  font-size: clamp(58px, 6.8vw, 110px);
}

.hero-home__intro {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.76;
}

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

.hero-home__visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ivory);
}

.hero-home__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: imageBreath 16s ease-in-out infinite alternate;
}

.hero-home__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-home__facts {
  display: grid;
  margin-top: clamp(64px, 8vh, 112px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.hero-fact {
  padding: 24px 18px 0 0;
}

.hero-fact + .hero-fact {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-fact strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-fact span {
  display: block;
  color: var(--soft-ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.oncology-preview {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: clamp(64px, 10vw, 148px);
}

.oncology-preview__copy .section-title {
  max-width: 760px;
}

.oncology-preview__copy > .lede {
  margin-top: 34px;
}

.ledger {
  margin-top: 58px;
  border-top: 1px solid currentColor;
}

.ledger-row {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid currentColor;
  grid-template-columns: 46px minmax(160px, 0.65fr) minmax(0, 1fr);
  gap: 20px;
}

.section--ink .ledger,
.section--ink .ledger-row {
  border-color: var(--line-light);
}

.ledger-row b {
  padding-top: 5px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.ledger-row h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.12;
}

.ledger-row p {
  margin-bottom: 0;
  color: rgba(255, 253, 251, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.oncology-preview__visual {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.image-frame:hover img {
  transform: scale(1.025);
}

.oncology-preview__visual .image-frame {
  aspect-ratio: 2 / 3;
}

.image-caption {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section--ink .image-caption {
  border-color: var(--line-light);
}

.care-note {
  margin: 36px 0 0;
  padding: 22px 0 0 58px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 251, 0.68);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 116px);
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.64fr);
  gap: 0;
}

.signature-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-visual__label {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 12px 15px;
  background: var(--paper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(44px, 5.2vw, 78px);
  background: var(--pale-blush);
}

.signature-copy .card-title {
  max-width: 440px;
}

.signature-copy > div > p {
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 16px;
}

.component-list {
  margin: 52px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.component-list li {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.component-list li::after {
  color: var(--rose);
  content: "＋";
  font-size: 17px;
  font-weight: 400;
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: clamp(64px, 11vw, 160px);
}

.portrait-field {
  position: relative;
  display: flex;
  min-height: 830px;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 42px 0;
  overflow: hidden;
  background: var(--pale-blush);
}

.portrait-field::before {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  animation: softOrbit 10s linear infinite;
}

.portrait-field img {
  position: relative;
  z-index: 1;
  width: min(100%, 676px);
  max-width: 676px;
}

.story-copy .section-title {
  max-width: 680px;
}

.story-copy .lede {
  margin-top: 34px;
}

.credential-list {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.credential-list div {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 136px 1fr;
  gap: 26px;
}

.credential-list dt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credential-list dd {
  color: var(--soft-ink);
  font-size: 14px;
}

.cta-stage {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
}

.cta-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 140px) var(--gutter);
}

.cta-stage__copy .section-title {
  max-width: 760px;
}

.cta-stage__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(255, 253, 251, 0.72);
}

.cta-stage__copy .hero-actions {
  margin-top: 40px;
}

.cta-stage__image {
  min-height: 680px;
}

.cta-stage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(690px, calc(100svh - var(--header-height)), 900px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

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

.page-hero--blush {
  background: var(--pale-blush);
}

.page-hero--ink {
  background: var(--ink);
  color: var(--paper);
}

.page-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(112px, 12vw, 168px) var(--gutter);
}

.page-hero__copy .page-title {
  max-width: 850px;
}

.page-hero__copy .lede {
  max-width: 720px;
  margin-top: 34px;
}

.page-hero__copy .hero-actions {
  margin-top: 38px;
}

.page-hero__visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--ivory);
}

.page-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageBreath 17s ease-in-out infinite alternate;
}

.page-hero__visual--contain {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 68px 44px 0;
  background: var(--pale-blush);
}

.page-hero__visual--contain > img {
  width: min(100%, 676px);
  max-width: 676px;
  height: auto;
  max-height: 830px;
  object-fit: contain;
  animation: none;
}

.page-hero__index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero--ink .page-hero__index {
  background: var(--pale-blush);
}

.chapter-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.96);
  scrollbar-width: none;
}

.chapter-nav::-webkit-scrollbar {
  display: none;
}

.chapter-nav__inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
}

.chapter-nav a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  padding-inline: 22px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.chapter-nav a:hover {
  background: var(--pale-blush);
}

.split-intro {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 150px);
}

.split-intro__label {
  position: sticky;
  top: calc(var(--header-height) + 94px);
}

.split-intro__copy h2 {
  max-width: 840px;
}

.split-intro__copy .lede {
  margin-top: 34px;
}

.split-intro__copy > p:not(.lede) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--soft-ink);
}

.who-grid {
  display: grid;
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1.15fr 0.85fr;
}

.who-card {
  min-height: 310px;
  padding: clamp(36px, 4.5vw, 66px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.who-card:nth-child(3) {
  grid-column: 1 / -1;
}

.who-card b {
  display: block;
  margin-bottom: 34px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.who-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.who-card p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 15px;
}

.adaptation-grid {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(5, 1fr);
}

.adaptation-item {
  min-height: 260px;
  padding: 34px 22px 28px;
  border-right: 1px solid var(--line-light);
}

.adaptation-item:last-child {
  border-right: 0;
}

.adaptation-item span {
  display: block;
  margin-bottom: 48px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.adaptation-item h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.adaptation-item p {
  margin-bottom: 0;
  color: rgba(255, 253, 251, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.visit-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 148px);
}

.visit-visual {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  display: flex;
  min-height: 690px;
  align-items: center;
  justify-content: center;
  padding: 64px 36px;
  background: var(--pale-blush);
}

.clinical-frame {
  position: relative;
  width: min(370px, 100%);
  max-width: 370px;
  flex: 0 1 370px;
  border: 16px solid var(--paper);
  box-shadow: 24px 30px 0 var(--blush);
}

.clinical-frame img {
  width: 100%;
  max-width: 370px;
  height: auto;
}

.clinical-frame::after {
  position: absolute;
  right: -16px;
  bottom: -48px;
  padding: 8px 0;
  color: var(--soft-ink);
  content: "Lynn Morgan, LE";
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-sequence {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.visit-step {
  display: grid;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 56px 0.72fr 1fr;
  gap: 20px;
}

.visit-step b {
  padding-top: 6px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.visit-step h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.visit-step p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 14px;
}

.safety-band {
  display: grid;
  align-items: center;
  padding: clamp(46px, 5vw, 72px);
  background: var(--rose);
  grid-template-columns: 0.68fr 1.2fr;
  gap: clamp(44px, 8vw, 110px);
}

.safety-band h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.safety-band p {
  margin-bottom: 0;
  font-size: 15px;
}

.treatment-hero-note {
  display: grid;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.treatment-hero-note div {
  min-width: 0;
}

.treatment-hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.treatment-hero-note span {
  display: block;
  color: var(--soft-ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.treatment-feature {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.7fr);
}

.treatment-feature__image {
  min-height: 720px;
  overflow: hidden;
}

.treatment-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6.5vw, 100px);
  background: var(--pale-blush);
}

.treatment-feature__copy .section-title {
  max-width: 560px;
}

.treatment-feature__copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--soft-ink);
}

.treatment-ledger {
  border-top: 1px solid var(--line);
}

.treatment-entry {
  display: grid;
  padding: clamp(34px, 4.4vw, 60px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 84px minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 48px);
  align-items: start;
}

.treatment-entry__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pale-blush);
  color: var(--rose);
}

.treatment-entry__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
}

.treatment-entry__tag {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
}

.treatment-entry__tag .badge-new {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--rose);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.14em;
  vertical-align: middle;
}

.treatment-entry h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.treatment-feature__copy .section-title,
.page-title { overflow-wrap: break-word; }

.treatment-entry__description p {
  margin-bottom: 0;
  color: var(--soft-ink);
  max-width: 62ch;
}

.treatment-entry__description .text-link {
  display: inline-block;
  margin-top: 16px;
}

.treatment-entry__description .suitability-note {
  margin-top: 22px;
}

/* Treatment Enhancements — un-numbered card row (Lynn's 2026-08-14 menu) */
.enhancement-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(34px, 4vw, 54px);
}

.enhancement-menu__item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.enhancement-menu__item h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 500;
  line-height: 1.15;
}

.enhancement-menu__item p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .enhancement-menu { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .enhancement-menu { grid-template-columns: 1fr; }
}

/* Location map strip (site footer areas) */
.map-strip { border-top: 1px solid var(--line); }
.map-strip iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  border: 0;
}

.enhancement-field {
  display: grid;
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
}

.enhancement-field__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 6vw, 88px);
  border-right: 1px solid var(--line-light);
}

.enhancement-field__intro h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
}

.enhancement-field__intro p {
  margin: 34px 0 0;
  color: rgba(255, 253, 251, 0.7);
}

.enhancement-list {
  margin: 0;
  list-style: none;
  counter-reset: enhancements;
}

.enhancement-list li {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 24px clamp(34px, 5vw, 76px);
  border-bottom: 1px solid var(--line-light);
  counter-increment: enhancements;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.05;
  grid-template-columns: 54px 1fr;
}

.enhancement-list li:last-child {
  border-bottom: 0;
}

.enhancement-list li::before {
  align-self: start;
  padding-top: 9px;
  color: var(--rose);
  content: "0" counter(enhancements);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.collagen-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.62fr);
  gap: clamp(64px, 10vw, 150px);
}

.collagen-intro__copy .lede {
  margin-top: 34px;
}

.definition-block {
  padding: clamp(40px, 5vw, 70px);
  background: var(--pale-blush);
}

.definition-block span {
  display: block;
  margin-bottom: 46px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.definition-block p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.15;
}

.concern-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.concern-grid div {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concern-grid b {
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.concern-grid span {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1;
}

.approach-pair {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.approach-card {
  min-height: 460px;
  padding: clamp(44px, 5vw, 72px);
  border-right: 1px solid var(--line-light);
}

.approach-card:last-child {
  border-right: 0;
}

.approach-card b {
  display: block;
  margin-bottom: 68px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.approach-card h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 0.98;
}

.approach-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 251, 0.7);
}

.expectation-strip {
  display: grid;
  align-items: start;
  padding: clamp(48px, 6vw, 88px);
  background: var(--blush);
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}

.expectation-strip h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
}

.expectation-strip p {
  max-width: 760px;
  margin-bottom: 0;
}

.meet-quote {
  display: grid;
  align-items: center;
  min-height: 560px;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(54px, 9vw, 136px);
}

.meet-quote__marker {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(120px, 15vw, 240px);
  line-height: 0.6;
}

.meet-quote blockquote {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
}

.meet-quote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.philosophy-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1.15fr 0.85fr;
}

.philosophy-card {
  min-height: 340px;
  padding: clamp(42px, 5vw, 72px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.philosophy-card:nth-child(3) {
  grid-column: 1 / -1;
}

.philosophy-card span {
  display: block;
  margin-bottom: 46px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.philosophy-card h3 {
  max-width: 660px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.philosophy-card p {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--soft-ink);
}

.lynn-details {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 150px);
}

.lynn-details__visual {
  display: flex;
  min-height: 700px;
  align-items: center;
  justify-content: center;
  padding: 70px 36px;
  background: var(--pale-blush);
}

.lynn-details__copy .section-title {
  max-width: 720px;
}

.lynn-details__copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--soft-ink);
}

.location-hero {
  display: grid;
  min-height: 720px;
  background: var(--pale-blush);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.location-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(92px, 10vw, 150px) var(--gutter);
}

.location-hero__copy .page-title {
  font-size: clamp(55px, 6.6vw, 96px);
}

.location-hero__copy address {
  margin-top: 32px;
  color: var(--soft-ink);
  font-style: normal;
}

.location-hero__map {
  position: relative;
  min-height: 720px;
  background: var(--ivory);
}

.location-hero__map iframe,
.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.36) contrast(0.95) sepia(0.08);
}

.map-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-facts {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.visit-fact {
  min-height: 310px;
  padding: clamp(38px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-fact b {
  display: block;
  margin-bottom: 48px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.visit-fact h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.visit-fact p,
.visit-fact address {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 14px;
  font-style: normal;
}

.town-field {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(54px, 10vw, 150px);
}

.town-list {
  display: grid;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.town-list li {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 251, 0.76);
  font-family: var(--serif);
  font-size: 25px;
}

.town-list li:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line-light);
}

.town-list li:nth-child(even) {
  padding-left: 28px;
}

.town-list li::after {
  color: var(--rose);
  content: "·";
}

.contact-hero {
  display: grid;
  min-height: 780px;
  background: var(--pale-blush);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.contact-hero__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(82px, 9vw, 132px) var(--gutter) 68px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.contact-hero__intro::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 380px;
  height: 620px;
  content: "";
  opacity: 0.42;
  background: url("/assets/orchid-detail.webp") center / cover no-repeat;
  animation: petalDrift 12s ease-in-out infinite alternate;
}

.contact-hero__intro > * {
  position: relative;
  z-index: 1;
}

.contact-hero__intro .page-title {
  max-width: 690px;
  font-size: clamp(54px, 6vw, 90px);
}

.contact-hero__intro .lede {
  margin-top: 32px;
  color: rgba(255, 253, 251, 0.74);
}

.direct-contact {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.direct-contact div {
  padding: 24px 24px 0 0;
}

.direct-contact div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.direct-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.direct-contact a {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  text-decoration: none;
}

.form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 118px);
}

.form-panel__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.form-panel__heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.form-panel__heading span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  transition: border-color 0.25s ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 24px,
    calc(100% - 8px) 24px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft-ink);
  font-size: 12px;
  line-height: 1.65;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 20px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 12px;
}

.contact-process {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-process article {
  min-height: 280px;
  padding: clamp(38px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-process article:last-child {
  border-right: 0;
}

.contact-process b {
  display: block;
  margin-bottom: 44px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.contact-process h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.contact-process p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 14px;
}

.faq-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(58px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.faq-intro .section-title {
  font-size: clamp(44px, 4.8vw, 72px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--soft-ink);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 98px;
  padding: 32px 56px 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 49px;
  right: 3px;
  width: 24px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 740px;
  margin: -5px 0 32px;
  padding-right: 48px;
  color: var(--soft-ink);
  font-size: 15px;
}

.site-footer {
  padding: clamp(72px, 8vw, 116px) 0 30px;
  background: var(--ink);
  color: var(--paper);
}

.footer-main {
  display: grid;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1.15fr 0.54fr 0.54fr 0.54fr;
  gap: clamp(36px, 6vw, 86px);
}

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

.footer-logo {
  width: 174px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 26px 0 0;
  color: rgba(255, 253, 251, 0.64);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.footer-column h2 {
  margin-bottom: 24px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 253, 251, 0.7);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  color: rgba(255, 253, 251, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-booking-bar {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-reveal].is-visible {
  animation: revealUp 0.9s var(--ease) forwards;
}

.js [data-reveal-delay="1"].is-visible {
  animation-delay: 0.1s;
}

.js [data-reveal-delay="2"].is-visible {
  animation-delay: 0.2s;
}

.js [data-reveal-delay="3"].is-visible {
  animation-delay: 0.3s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageBreath {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.035);
  }
}

@keyframes softOrbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(8px);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}

@keyframes petalDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(-18px, -22px, 0) rotate(2deg);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineTravel {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  48% {
    transform: scaleX(1);
    transform-origin: left;
  }
  52% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 56px, 1180px);
  }

  .header-inner {
    grid-template-columns: 142px 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 9px;
  }

  .header-actions .button {
    padding-inline: 17px;
  }

  .adaptation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adaptation-item:nth-child(3) {
    border-right: 0;
  }

  .adaptation-item:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }

  .treatment-entry {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .concern-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr repeat(3, 0.5fr);
    gap: 42px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 100px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 100px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    padding: 34px var(--gutter) 120px;
    overflow-y: auto;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
  }

  .menu-open .primary-nav {
    display: flex;
    animation: menuIn 0.4s var(--ease) both;
  }

  .primary-nav a {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(28px, 6vw, 46px);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

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

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-home {
    grid-template-columns: 1fr;
  }

  .hero-home__copy {
    min-height: 720px;
  }

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

  .oncology-preview {
    grid-template-columns: 1fr;
  }

  .oncology-preview__visual {
    position: relative;
    top: auto;
    width: min(680px, 100%);
    margin-left: auto;
  }

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

  .signature-visual {
    min-height: 620px;
  }

  .signature-copy {
    min-height: 580px;
  }

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

  .portrait-field {
    width: min(720px, 100%);
  }

  .cta-stage {
    grid-template-columns: 1fr;
  }

  .cta-stage__image {
    min-height: 520px;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    min-height: 650px;
  }

  .page-hero__visual {
    min-height: 680px;
  }

  .page-hero__visual--contain {
    min-height: 760px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-intro__label {
    position: relative;
    top: auto;
  }

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

  .visit-visual {
    position: relative;
    top: auto;
  }

  .adaptation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adaptation-item:nth-child(3) {
    border-right: 1px solid var(--line-light);
  }

  .adaptation-item:nth-child(even) {
    border-right: 0;
  }

  .adaptation-item:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

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

  .treatment-feature__copy {
    min-height: 580px;
  }

  .collagen-intro {
    grid-template-columns: 1fr;
  }

  .definition-block {
    max-width: 760px;
    margin-left: auto;
  }

  .lynn-details {
    grid-template-columns: 1fr;
  }

  .lynn-details__visual {
    width: min(720px, 100%);
  }

  .location-hero {
    grid-template-columns: 1fr;
  }

  .location-hero__copy {
    min-height: 620px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero__intro {
    min-height: 700px;
  }

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

  .faq-intro {
    position: relative;
    top: auto;
    max-width: 720px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
    --gutter: 24px;
    --section: 92px;
    --header-height: 82px;
  }

  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

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

  .brand,
  .brand img {
    width: 112px;
  }

  .menu-toggle {
    width: 48px;
    min-height: 48px;
  }

  .primary-nav {
    top: var(--header-height);
  }

  .section--compact {
    padding-block: 76px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .eyebrow::before {
    width: 25px;
    margin-right: 9px;
  }

  .display-title {
    font-size: clamp(50px, 16vw, 72px);
  }

  .page-title {
    font-size: clamp(48px, 14.8vw, 68px);
  }

  .section-title {
    font-size: clamp(44px, 13vw, 62px);
  }

  .card-title {
    font-size: 40px;
  }

  .lede {
    font-size: 18px;
  }

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

  .hero-home {
    min-height: 0;
  }

  .hero-home__copy {
    min-height: auto;
    padding: 86px 24px 52px;
  }

  .hero-home .display-title {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-home__intro {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 31px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: space-between;
  }

  .hero-home__facts {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .hero-fact,
  .hero-fact + .hero-fact {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .hero-home__visual {
    min-height: 540px;
  }

  .hero-home__caption {
    align-items: flex-start;
    padding: 16px 18px;
    flex-direction: column;
    gap: 5px;
  }

  .ledger-row {
    grid-template-columns: 36px 1fr;
  }

  .ledger-row p {
    grid-column: 2;
  }

  .care-note {
    padding-left: 0;
  }

  .oncology-preview__visual {
    width: 100%;
  }

  .signature-visual {
    min-height: 470px;
  }

  .signature-copy {
    min-height: auto;
    padding: 42px 26px;
  }

  .component-list {
    margin-top: 40px;
  }

  .portrait-field {
    min-height: 600px;
    padding: 52px 14px 0;
  }

  .credential-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-stage {
    min-height: 0;
  }

  .cta-stage__copy {
    padding: 80px 24px;
  }

  .cta-stage__image {
    min-height: 500px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero__copy {
    min-height: auto;
    padding: 88px 24px 74px;
  }

  .page-hero__visual {
    min-height: 550px;
  }

  .page-hero__visual--contain {
    min-height: 590px;
    padding: 52px 12px 0;
  }

  .page-hero__index {
    padding: 16px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .chapter-nav {
    top: var(--header-height);
  }

  .chapter-nav__inner {
    justify-content: flex-start;
    padding-inline: 8px;
  }

  .chapter-nav a {
    padding-inline: 15px;
  }

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

  .who-card,
  .who-card:nth-child(3) {
    min-height: 0;
    grid-column: auto;
  }

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

  .adaptation-item,
  .adaptation-item:nth-child(3),
  .adaptation-item:nth-child(even) {
    min-height: 0;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .adaptation-item:first-child {
    border-top: 0;
  }

  .adaptation-item span {
    margin-bottom: 28px;
  }

  .visit-visual {
    min-height: 570px;
    padding: 50px 22px;
  }

  .clinical-frame {
    border-width: 10px;
    box-shadow: 16px 22px 0 var(--blush);
  }

  .visit-step {
    grid-template-columns: 38px 1fr;
  }

  .visit-step p {
    grid-column: 2;
  }

  .safety-band {
    padding: 44px 28px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .treatment-hero-note {
    grid-template-columns: 1fr;
  }

  .treatment-feature__image {
    min-height: 500px;
  }

  .treatment-feature__copy {
    min-height: auto;
    padding: 58px 26px;
  }

  .treatment-entry {
    min-height: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }

  .treatment-entry__icon { width: 52px; height: 52px; }
  .treatment-entry__icon svg { width: 24px; height: 24px; }

  .enhancement-field {
    grid-template-columns: 1fr;
  }

  .enhancement-field__intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .enhancement-list li {
    min-height: 94px;
    padding-inline: 26px;
    font-size: 29px;
  }

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

  .concern-grid div {
    min-height: 158px;
  }

  .approach-pair {
    grid-template-columns: 1fr;
  }

  .approach-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .approach-card b {
    margin-bottom: 42px;
  }

  .expectation-strip {
    padding: 44px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meet-quote {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .meet-quote__marker {
    min-height: 220px;
  }

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

  .philosophy-card,
  .philosophy-card:nth-child(3) {
    min-height: 0;
    grid-column: auto;
  }

  .lynn-details__visual {
    min-height: 570px;
    padding: 50px 20px;
  }

  .location-hero__copy {
    min-height: 600px;
    padding: 88px 24px;
  }

  .location-hero__map {
    min-height: 600px;
  }

  .location-hero__map iframe,
  .map-panel iframe {
    min-height: 600px;
  }

  .map-label {
    align-items: flex-start;
    padding: 16px 18px;
    flex-direction: column;
    gap: 4px;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .visit-fact {
    min-height: 0;
  }

  .town-field {
    grid-template-columns: 1fr;
  }

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

  .town-list li,
  .town-list li:nth-child(odd),
  .town-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .contact-hero__intro {
    min-height: 690px;
    padding: 82px 24px 58px;
  }

  .contact-hero__intro::after {
    right: -120px;
    opacity: 0.28;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .direct-contact div,
  .direct-contact div + div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .form-panel {
    padding: 76px 24px;
  }

  .form-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultation-form {
    grid-template-columns: 1fr;
  }

  .field--full,
  .form-note,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .contact-process {
    grid-template-columns: 1fr;
  }

  .contact-process article {
    min-height: 0;
    border-right: 0;
  }

  .faq-list summary {
    min-height: 86px;
    padding: 27px 48px 22px 0;
    font-size: 25px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    top: 42px;
    width: 20px;
  }

  .faq-list details p {
    padding-right: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 26px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1400;
    display: grid;
    height: 64px;
    background: var(--ink);
    color: var(--paper);
    grid-template-columns: 0.38fr 1fr;
  }

  .mobile-booking-bar a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--line-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-booking-bar a + a {
    border-left: 1px solid var(--line-light);
    background: var(--rose);
    color: var(--ink);
  }
}

@media (max-width: 420px) {
  :root {
    --page: calc(100vw - 30px);
    --gutter: 20px;
  }

  .hero-home__copy,
  .page-hero__copy,
  .location-hero__copy,
  .contact-hero__intro,
  .form-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .display-title,
  .hero-home .display-title {
    font-size: 49px;
  }

  .page-title {
    font-size: 47px;
  }

  .section-title {
    font-size: 43px;
  }

  .page-hero__visual--contain {
    min-height: 540px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ── Suitability notice ───────────────────────────────────────────────────
   Used where a treatment is NOT appropriate for a group the rest of this site
   actively invites in. Lynn's practice is built on oncology-aware care, so a
   client in active treatment reading the ultrasound page has every reason to
   assume it is meant for her. It is not — Lynn said so explicitly. This has to
   read as a plain statement of fact at normal reading size, not fine print. */
.suitability-note {
  margin: 32px 0 0;
  padding: 22px 26px;
  border: 1px solid var(--rose);
  border-left: 4px solid var(--rose);
  border-radius: 2px;
  background: var(--pale-blush);
  color: var(--ink);
}

/* Direct child only — the label. An inline <strong> inside a paragraph must stay
   inline, or the sentence breaks and the period orphans onto its own line. */
.suitability-note > strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suitability-note p strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-underline-offset: 3px;
}

.suitability-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.suitability-note p + p {
  margin-top: 10px;
}

/* ── Before/after gallery (consent-blocked page only) ─────────────────────── */
.ba-grid {
  display: grid;
  margin-top: 36px;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

.ba-card {
  margin: 0;
}

.ba-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}

.ba-card figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.55;
}

.ba-card figcaption strong {
  color: var(--ink);
  font-weight: 600;
}
