@font-face {
  font-family: "Geist";
  src: url("./assets/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./assets/geist-mono-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f7f4ed;
  --paper-2: #ede8db;
  --paper-translucent: rgb(247 244 237 / 86%);
  --ink: #1a1a17;
  --ink-2: #3a3a35;
  --ink-3: #6b6b62;
  --rule: rgb(42 42 36 / 23%);
  --navy: #1b2d5c;
  --navy-2: #2d4781;
  --brass: #b5854a;
  --brass-2: #d4a878;
  --dark: #101113;
  --dark-2: #1f2436;
  --white: #f4f1e9;
  --shell: min(1440px, calc(100vw - 112px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 32px 80px rgb(20 20 16 / 14%);
}

html.dark {
  --paper: #14172a;
  --paper-2: #1c2038;
  --paper-translucent: rgb(20 23 42 / 86%);
  --ink: #ece8de;
  --ink-2: #b5b1a6;
  --ink-3: #8f8a80;
  --rule: rgb(181 177 166 / 24%);
  --navy: #8ba2d9;
  --navy-2: #a0b3dd;
  --brass: #d4a878;
  --brass-2: #e6c3a0;
  color-scheme: dark;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink-2);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 .1,0 0 0 0 .1,0 0 0 0 .1,0 0 0 .025 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    var(--paper);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: color 280ms ease, background-color 280ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

em {
  color: var(--navy);
  font-style: normal;
}

::selection {
  color: white;
  background: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.eyebrow,
.proof-label,
.footer-label,
.article-meta {
  color: var(--navy);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-translucent);
  backdrop-filter: blur(22px) saturate(130%);
}

.header-shell {
  width: var(--shell);
  height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 30px;
}

.wordmark {
  width: fit-content;
  color: var(--ink);
  line-height: 1;
}

.wordmark span {
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.wordmark small {
  display: block;
  margin-top: 4px;
  font-size: 0.55rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 38px);
}

.desktop-nav a,
.language {
  position: relative;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
}

.header-cta:hover {
  color: white;
  background: var(--navy);
}

.icon-button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

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

.theme-icon {
  font-size: 1rem;
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
}

.menu-toggle span {
  position: absolute;
  top: 15px;
  left: 6px;
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

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

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: calc(100svh - 84px);
  overflow-y: auto;
  padding: 46px 28px;
  color: var(--ink);
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(1.75rem, 8vw, 3rem);
  letter-spacing: -0.035em;
}

.mobile-menu a span {
  color: var(--brass);
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.hero {
  min-height: calc(100svh - 84px);
  padding: clamp(60px, 7vw, 118px) 0 clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(64px, 9vw, 150px);
}

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

.hero-eyebrow {
  margin-bottom: 38px;
  opacity: 0;
  animation: hero-in 820ms 80ms var(--ease) forwards;
}

.hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3.65rem, 6vw, 6.9rem);
  font-weight: 470;
  letter-spacing: -0.066em;
  line-height: 0.91;
  text-wrap: balance;
  opacity: 0;
  animation: hero-in 980ms 160ms var(--ease) forwards;
}

.hero h1 em {
  display: block;
}

.hero-lede {
  max-width: 555px;
  margin-top: 38px;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.55;
  opacity: 0;
  animation: hero-in 880ms 260ms var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  animation: hero-in 880ms 340ms var(--ease) forwards;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

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

.button-primary:hover {
  color: white;
  background: var(--navy);
}

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

.button-secondary:hover {
  background: var(--paper-2);
}

.hero-proof {
  max-width: 640px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 28px;
  opacity: 0;
  animation: hero-in 880ms 440ms var(--ease) forwards;
}

.proof-label {
  display: block;
  margin-bottom: 7px;
}

.hero-proof strong {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 520;
}

.hero-portrait {
  width: min(100%, 540px);
  justify-self: end;
  opacity: 0;
  animation: portrait-in 1150ms 180ms var(--ease) forwards;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #080808;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 10%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1200ms var(--ease), filter 700ms ease;
}

.hero-portrait:hover img {
  transform: scale(1.025);
  filter: saturate(0.9);
}

.portrait-index,
.availability {
  position: absolute;
  z-index: 2;
  color: rgb(255 255 255 / 75%);
  font-family: "Geist Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-index {
  top: 20px;
  left: 20px;
}

.availability {
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(0 0 0 / 45%);
  backdrop-filter: blur(10px);
}

.availability::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brass-2);
  box-shadow: 0 0 0 4px rgb(212 168 120 / 14%);
}

.hero-portrait figcaption {
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-3);
  font-family: "Geist Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credential-rail {
  overflow: hidden;
  border-block: 1px solid var(--rule);
}

.credential-track {
  min-height: 68px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 44px);
  white-space: nowrap;
  font-family: "Geist Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-track span {
  color: var(--brass);
}

.credential-track strong {
  color: var(--ink-3);
  font-weight: 480;
}

.credential-track i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass);
}

.editorial-intro,
.expertise,
.patient-path,
.journal-teaser {
  padding-block: clamp(110px, 11vw, 190px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 40px;
}

.section-marker > span,
.manifesto-label > span {
  display: block;
  margin-bottom: 22px;
  color: var(--brass);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 270;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.intro-statement h2,
.section-heading h2,
.preconsult h2,
.journal-copy h2 {
  color: var(--ink);
  font-size: clamp(3rem, 5.4vw, 6.25rem);
  font-weight: 410;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.intro-statement h2 {
  max-width: 11ch;
}

.intro-statement h2 em,
.section-heading h2 em,
.preconsult h2 em {
  display: block;
}

.intro-columns {
  max-width: 960px;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 6vw, 100px);
}

.intro-columns p {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.text-link {
  position: relative;
  width: fit-content;
  margin-top: 46px;
  padding-bottom: 7px;
  display: inline-flex;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 590;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.expertise {
  padding-top: 30px;
}

.section-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 40px;
}

.section-heading > div:last-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div:last-child > p {
  max-width: 250px;
  padding-bottom: 10px;
  color: var(--ink-3);
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(480px, 1.26fr);
  border-block: 1px solid var(--rule);
}

.service-list {
  border-right: 1px solid var(--rule);
}

.service-row {
  width: 100%;
  min-height: 148px;
  padding: 30px 34px 30px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 380ms var(--ease), background 250ms ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:hover,
.service-row.is-active {
  padding-left: 22px;
  background: var(--paper-2);
}

.service-row .service-number {
  align-self: start;
  padding-top: 8px;
  color: var(--brass);
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.service-row > span:nth-child(2) {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-row small {
  display: block;
  margin-bottom: 11px;
  color: var(--navy);
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  font-weight: 560;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-row b {
  font-weight: 400;
  transition: transform 260ms var(--ease);
}

.service-row:hover b,
.service-row.is-active b {
  transform: translate(3px, -3px);
}

.service-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #111;
}

.service-image-wrap,
.service-image {
  width: 100%;
  height: 100%;
}

.service-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 38%;
  filter: grayscale(1) contrast(1.04);
  transition: opacity 300ms ease, transform 900ms var(--ease), filter 800ms ease;
}

.service-visual:hover .service-image {
  transform: scale(1.02);
  filter: grayscale(0.15) saturate(0.8);
}

.service-visual-number {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 2;
  color: rgb(255 255 255 / 65%);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.service-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(72%, 560px);
  padding: clamp(28px, 4vw, 58px);
  background: rgb(247 244 237 / 82%);
  backdrop-filter: blur(24px) saturate(115%);
}

.dark .service-card {
  background: rgb(20 23 42 / 86%);
}

.service-card h3 {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.6vw, 3rem);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.service-card > p:last-child {
  max-width: 46ch;
}

.service-image.is-changing,
.service-card.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.manifesto {
  position: relative;
  min-height: min(920px, 90svh);
  overflow: hidden;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background: #090a0c;
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 6 8 / 96%) 0%, rgb(5 6 8 / 78%) 48%, rgb(5 6 8 / 18%) 100%);
}

.manifesto-image {
  position: absolute;
  inset: 0;
  background: url("./assets/longevity-bg.jpg") center 35% / cover no-repeat;
  filter: grayscale(1) contrast(1.06);
  opacity: 0.75;
  transform: scale(1.02);
}

.manifesto-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 10vw, 180px);
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 40px;
  align-items: center;
}

.manifesto-label .eyebrow {
  color: var(--brass-2);
}

.manifesto blockquote {
  max-width: 940px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.7vw, 7rem);
  font-weight: 360;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.manifesto blockquote em {
  color: var(--brass-2);
}

.manifesto-signature {
  align-self: end;
  padding-bottom: 8px;
}

.manifesto-signature span,
.manifesto-signature p {
  display: block;
  color: rgb(244 241 233 / 68%);
  font-family: "Geist Mono", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}

.manifesto-signature span {
  margin-bottom: 20px;
  color: var(--brass-2);
}

.path-heading {
  margin-bottom: 80px;
}

.path-heading > div:last-child {
  display: block;
}

.path-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.path-list li {
  min-height: 150px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  align-items: center;
  gap: 40px;
  transition: padding 320ms var(--ease), color 220ms ease, background 220ms ease;
}

.path-list li:hover {
  padding-inline: 24px;
  color: var(--ink);
  background: var(--paper-2);
}

.path-list > li > span,
.path-list small {
  color: var(--brass);
  font-family: "Geist Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-list h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1;
}

.path-list p {
  max-width: 58ch;
}

.path-list small {
  justify-self: end;
  color: var(--ink-3);
}

.journal-teaser {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 40px;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}

.journal-copy {
  padding: clamp(44px, 6vw, 90px);
}

.journal-copy h2 {
  margin: 28px 0 26px;
  font-size: clamp(2.5rem, 4.4vw, 5.1rem);
}

.journal-copy > p {
  max-width: 57ch;
}

.journal-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 36px;
  color: var(--white);
  background: var(--navy);
}

.journal-art > span {
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.journal-art strong {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 360;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-align: right;
}

.journal-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.journal-orbit::before,
.journal-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
}

.journal-orbit::after {
  inset: 29%;
  background: var(--brass);
  border: 0;
  box-shadow: 0 0 80px rgb(181 133 74 / 45%);
}

.preconsult {
  padding-block: clamp(100px, 10vw, 160px);
  color: var(--white);
  background: var(--dark-2);
}

.preconsult-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.preconsult .eyebrow {
  color: var(--brass-2);
}

.preconsult h2 {
  max-width: 9ch;
  margin: 28px 0 34px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.2vw, 6rem);
}

.preconsult h2 em {
  color: var(--brass-2);
}

.preconsult-intro > p:last-of-type {
  max-width: 55ch;
  color: rgb(244 241 233 / 70%);
  font-size: 1.08rem;
}

.contact-details {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.contact-details span,
.contact-details small {
  display: block;
  color: rgb(244 241 233 / 55%);
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a {
  width: fit-content;
  margin: 11px 0 8px;
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--brass-2);
}

.triage-form {
  position: relative;
  min-height: 680px;
  padding: clamp(34px, 4.2vw, 62px);
  color: var(--ink-2);
  background: var(--paper);
  box-shadow: 0 35px 90px rgb(0 0 0 / 28%);
}

.form-status {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--ink-3);
  font-family: "Geist Mono", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-status i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--rule);
}

.form-status b {
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: scaleX(0.5);
  transform-origin: left;
  transition: transform 450ms var(--ease);
}

.triage-form.is-step-two .form-status b {
  transform: scaleX(1);
}

.triage-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.triage-form legend {
  max-width: 19ch;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.triage-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.triage-form fieldset legend {
  width: 100%;
}

.triage-form fieldset label {
  position: relative;
  cursor: pointer;
}

.triage-form fieldset input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.triage-form fieldset label span {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.78rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.triage-form fieldset label:hover span,
.triage-form fieldset input:checked + span {
  color: var(--paper);
  border-color: var(--navy);
  background: var(--navy);
}

.triage-form fieldset input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.form-error {
  margin-top: 16px;
  color: #a12f2f;
  font-size: 0.76rem;
}

.button-light {
  margin-top: 34px;
  color: var(--paper);
  background: var(--ink);
}

.button-light:hover {
  color: white;
  background: var(--navy);
}

.privacy-note {
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 0.7rem;
}

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

.form-contact[hidden] {
  display: none;
}

.field-label {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: "Geist Mono", monospace;
  font-size: 0.61rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-label span {
  color: var(--ink-3);
  text-transform: none;
}

.form-contact input,
.form-contact textarea {
  width: 100%;
  margin-bottom: 24px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  resize: vertical;
}

.form-contact input::placeholder,
.form-contact textarea::placeholder {
  color: var(--ink-3);
}

.form-success {
  position: absolute;
  inset: 0;
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--paper);
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass);
}

.form-success h3 {
  color: var(--ink);
  font-size: 2.3rem;
  font-weight: 430;
  letter-spacing: -0.04em;
}

.form-success p {
  max-width: 45ch;
  margin: 14px auto 24px;
}

.text-button {
  width: fit-content;
  margin-inline: auto;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.site-footer {
  color: rgb(244 241 233 / 76%);
  background: #0b0c0e;
}

.footer-shell {
  padding-block: 78px;
  display: grid;
  grid-template-columns: 5fr 3fr 2fr 2fr;
  gap: 44px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-shell > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 7px;
  color: var(--brass-2);
}

.footer-shell a {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.footer-base {
  min-height: 70px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-family: "Geist Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-base span:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes portrait-in {
  from { opacity: 0; transform: translateY(32px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1.04fr 0.78fr;
    gap: 64px;
  }

  .manifesto-content {
    grid-template-columns: 2fr 8fr 2fr;
  }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 48px, 760px); }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-portrait {
    width: 80%;
    justify-self: end;
  }

  .credential-track {
    justify-content: flex-start;
    padding-inline: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .editorial-intro,
  .section-heading,
  .journal-teaser {
    grid-template-columns: 1fr;
  }

  .section-marker {
    display: flex;
    align-items: baseline;
    gap: 18px;
  }

  .section-marker > span {
    margin-bottom: 0;
  }

  .intro-statement {
    padding-left: 11%;
  }

  .section-heading > div:last-child {
    display: block;
    padding-left: 11%;
  }

  .section-heading > div:last-child > p {
    margin-top: 24px;
  }

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

  .service-list {
    border-right: 0;
  }

  .service-visual {
    min-height: 680px;
  }

  .manifesto-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .manifesto-label {
    display: flex;
    align-items: baseline;
    gap: 18px;
  }

  .manifesto-label > span {
    margin: 0;
  }

  .manifesto-signature {
    max-width: 300px;
    padding-left: 11%;
  }

  .path-list li {
    grid-template-columns: 60px 1fr;
  }

  .path-list small {
    display: none;
  }

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

  .journal-art {
    min-height: 430px;
  }

  .preconsult-shell {
    grid-template-columns: 1fr;
  }

  .preconsult-intro {
    max-width: 660px;
  }

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

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

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

  .header-shell {
    height: 72px;
    gap: 12px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .wordmark span {
    max-width: 218px;
    overflow: hidden;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .wordmark small {
    font-size: 0.49rem;
  }

  .header-actions {
    gap: 5px;
  }

  .language,
  .theme-toggle {
    display: none;
  }

  .mobile-menu {
    height: calc(100svh - 72px);
  }

  .hero {
    padding-top: 52px;
    gap: 48px;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.15rem, 14vw, 4.2rem);
    letter-spacing: -0.062em;
    line-height: 0.92;
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 1rem;
  }

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

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

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

  .hero-portrait {
    width: 100%;
  }

  .hero-portrait figcaption {
    display: block;
  }

  .hero-portrait figcaption span {
    display: block;
    margin-bottom: 4px;
  }

  .editorial-intro,
  .expertise,
  .patient-path,
  .journal-teaser {
    padding-block: 96px;
  }

  .intro-statement,
  .section-heading > div:last-child,
  .manifesto-signature {
    padding-left: 0;
  }

  .intro-statement h2,
  .section-heading h2,
  .preconsult h2,
  .journal-copy h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
    line-height: 0.97;
  }

  .intro-columns {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-row {
    min-height: 126px;
    padding-right: 8px;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
  }

  .service-row:hover,
  .service-row.is-active {
    padding-left: 12px;
  }

  .service-row > span:nth-child(2) {
    font-size: 1.18rem;
  }

  .service-visual {
    min-height: 540px;
  }

  .service-card {
    width: calc(100% - 24px);
    padding: 28px;
  }

  .manifesto {
    min-height: 760px;
  }

  .manifesto::after {
    background: linear-gradient(180deg, rgb(5 6 8 / 82%) 0%, rgb(5 6 8 / 92%) 100%);
  }

  .manifesto-content {
    padding-block: 90px;
  }

  .manifesto blockquote {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .path-heading {
    margin-bottom: 48px;
  }

  .path-list li {
    min-height: 140px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .path-list li:hover {
    padding-inline: 10px;
  }

  .journal-teaser {
    padding-top: 0;
  }

  .journal-copy {
    padding: 34px 26px 46px;
  }

  .journal-art {
    min-height: 360px;
  }

  .journal-orbit {
    width: 300px;
  }

  .preconsult {
    padding-block: 90px;
  }

  .preconsult-shell {
    gap: 60px;
  }

  .triage-form {
    min-height: 650px;
    padding: 30px 24px;
  }

  .form-status {
    margin-bottom: 38px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-base {
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-base span:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
