@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-500.ttf") format("truetype");
}

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

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.ttf") format("truetype");
}

:root {
  --navy: #0b1b33;
  --navy-2: #13294b;
  --gold: #c9a46a;
  --gold-soft: #ead9b6;
  --sand: #f4efe7;
  --page: #f8f6f2;
  --evergreen: #1f3b34;
  --cabernet: #5a1622;
  --ink: #162033;
  --muted: #5d6674;
  --line: rgba(11, 27, 51, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 27, 51, 0.13);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--page);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
}

::selection {
  background: rgba(201, 164, 106, 0.38);
  color: var(--navy);
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

/* Image rule: no stretching. Photo boxes crop with object-fit: cover; they never use fill/squash sizing. */
.section-photo,
.profile-photo img,
.clinical-photo img {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 242, 0.98);
  box-shadow: 0 14px 32px rgba(11, 27, 51, 0.1);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: 50%;
  background: var(--navy);
}

.brand-text {
  display: grid;
  gap: 0;
  color: var(--navy);
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.brand-line {
  font-size: 0.72rem;
  color: var(--evergreen);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  background: rgba(201, 164, 106, 0.18);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin-left: 4px;
}

.nav-cta:hover {
  background: var(--navy-2) !important;
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(78vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  --parallax-y: 0px;
  background:
    linear-gradient(135deg, rgba(11, 27, 51, 0.92) 0%, rgba(19, 41, 75, 0.72) 45%, rgba(31, 59, 52, 0.66) 100%),
    url("/assets/mountain-field.svg") center calc(50% + var(--parallax-y)) / cover no-repeat;
}

.hero::before,
.profile-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(234, 217, 182, 0.18) 49.8% 50.2%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(234, 217, 182, 0.12) 49.8% 50.2%, transparent 50.2%);
  mask-image: radial-gradient(circle at 78% 30%, #000 0 24%, transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(248, 246, 242, 0), var(--page));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 118px;
}

.hero-kicker,
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker,
.eyebrow {
  color: var(--cabernet);
}

.hero-kicker::before,
.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  color: var(--navy);
}

.hero h1 {
  width: min(760px, 100%);
  color: var(--white);
  font-size: clamp(3.15rem, 8.2vw, 6.9rem);
  line-height: 0.9;
  font-weight: 700;
}

.hero-copy {
  width: min(690px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.hero .btn-primary {
  background: var(--gold);
  color: #081326;
}

.btn-primary:hover {
  background: var(--navy-2);
}

.hero .btn-primary:hover {
  background: #d9bb84;
}

.btn-secondary {
  border-color: var(--gold);
  color: var(--navy);
  background: transparent;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-dark {
  background: var(--evergreen);
  color: var(--white);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 620ms ease, box-shadow 620ms ease;
}

.reveal-on-scroll.is-visible {
  transform: translateY(0);
}

.section-tight {
  padding: clamp(44px, 7vw, 72px) 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split-wide {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.section h2,
.page-title {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 700;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.body-copy p {
  margin: 0 0 18px;
  color: #303b4d;
}

.intro-band {
  position: relative;
  margin-top: -72px;
  z-index: 2;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.signal {
  min-height: 154px;
  padding: 26px;
  background: var(--white);
}

.signal strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.signal span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.feature-panel {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-panel-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-color: rgba(234, 217, 182, 0.22);
}

.feature-panel-dark h2,
.feature-panel-dark h3 {
  color: var(--white);
}

.portrait-visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(11, 27, 51, 0.08), rgba(11, 27, 51, 0.58)),
    url("/assets/mountain-field.svg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.portrait-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  z-index: 2;
}

.portrait-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 27, 51, 0.04), rgba(11, 27, 51, 0.68));
}

.section-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
}

.portrait-caption {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.portrait-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.82);
  max-width: 410px;
}

.clinical-background {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.clinical-heading h2 {
  margin-bottom: 0;
}

.clinical-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.clinical-photo img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 340px);
  object-position: center center;
}

.clinical-photo figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  padding: 8px 11px;
  border: 1px solid rgba(201, 164, 106, 0.48);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(244, 239, 231, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-grid,
.focus-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.focus-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

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

.service-card,
.focus-item,
.process-step,
.contact-method {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 245px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3,
.process-step h3,
.contact-method h3 {
  font-size: clamp(1.48rem, 2.2vw, 2rem);
  line-height: 1.04;
}

.service-card p,
.process-step p,
.contact-method p,
.fine-print {
  color: var(--muted);
}

.service-card .tag {
  color: var(--cabernet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--navy);
  font-weight: 700;
}

.process-step {
  position: relative;
  padding: 28px 22px 24px;
}

.faq-item {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.04;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
}

.band {
  background: var(--sand);
}

.dark-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.dark-band h2,
.dark-band .lead {
  color: var(--white);
}

.dark-band .lead {
  opacity: 0.82;
}

.quote {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.03;
}

.feature-panel-dark .quote {
  color: rgba(255, 255, 255, 0.94);
}

.page-hero {
  position: relative;
  --parallax-y: 0px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .page-title,
.page-hero .lead {
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  opacity: 0.86;
}

.profile-hero {
  position: relative;
  --parallax-y: 0px;
  background:
    linear-gradient(135deg, rgba(11, 27, 51, 0.98) 0%, rgba(19, 41, 75, 0.9) 50%, rgba(31, 59, 52, 0.84) 100%),
    url("/assets/mountain-field.svg") center calc(50% + var(--parallax-y)) / cover no-repeat;
  color: var(--white);
}

.profile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(248, 246, 242, 0), var(--page));
}

.profile-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(88vh - 78px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0 clamp(104px, 13vw, 148px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.profile-copy h1 {
  width: min(810px, 100%);
  color: var(--white);
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  line-height: 0.92;
  font-weight: 700;
}

.profile-copy .hero-copy {
  color: rgba(255, 255, 255, 0.88);
}

.profile-hero .btn-primary {
  background: var(--gold);
  color: #081326;
}

.profile-hero .btn-primary:hover {
  background: #d9bb84;
}

.profile-hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.credential-ribbon {
  width: min(680px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.credential-ribbon li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(234, 217, 182, 0.58);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(234, 217, 182, 0.42);
  border-radius: 8px;
  background: rgba(248, 246, 242, 0.1);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.profile-photo-shell {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 27, 51, 0.02), rgba(11, 27, 51, 0.72)),
    url("/assets/mountain-field.svg") center / cover no-repeat;
}

.profile-photo,
.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-photo img {
  object-fit: cover;
  object-position: center 20%;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(11, 27, 51, 0.04), rgba(11, 27, 51, 0.74)),
    url("/assets/mountain-field.svg") center / cover no-repeat;
}

.profile-photo.is-missing + .portrait-fallback {
  display: grid;
}

.portrait-fallback-static {
  display: grid;
}

.portrait-fallback img {
  width: min(190px, 58%);
  padding: 16px;
  border-radius: 50%;
  background: rgba(11, 27, 51, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.profile-card-body {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--white);
  color: var(--navy);
}

.profile-card-body strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.profile-card-body span {
  color: var(--muted);
}

.inline-photo {
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inline-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
}

.inline-photo figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 34px;
}

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

.pillar-card {
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pillar-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--cabernet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pillar-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.12rem);
  line-height: 1.02;
}

.pillar-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.profile-callout {
  padding: clamp(28px, 5vw, 48px);
}

.profile-callout .section-kicker,
.on-dark-kicker {
  color: var(--gold-soft);
}

.profile-callout .quote {
  max-width: 880px;
  font-size: clamp(2.35rem, 4.3vw, 4.45rem);
}

.on-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 22px 22px 22px 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(201, 164, 106, 0.18);
}

.timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 54px;
  bottom: -23px;
  width: 2px;
  background: rgba(201, 164, 106, 0.34);
}

.timeline span {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(28px, 5vw, 54px) 0;
  border-top: 1px solid var(--line);
}

.service-detail h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.service-detail ul,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: #313c4f;
}

.service-detail li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-method {
  padding: 22px;
}

.contact-method h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  overflow-wrap: anywhere;
}

.contact-method p {
  margin-bottom: 0;
}

.phone-number {
  display: inline-block;
  margin: 12px 0 2px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.phone-number a,
.contact-method h3 a {
  text-decoration: none;
}

.contact-method h3 a {
  border-bottom: 1px solid rgba(11, 27, 51, 0.34);
}

.phone-number a:hover,
.contact-method h3 a:hover {
  color: var(--cabernet);
}

.form-panel {
  min-height: 600px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1;
}

.form-panel iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
}

.form-fallback {
  display: grid;
  gap: 18px;
}

.has-live-form .form-fallback {
  display: none;
}

.secure-contact-shell {
  position: relative;
}

.secure-contact-guard {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin: 20px 0;
  border: 1px solid rgba(201, 164, 106, 0.5);
  border-radius: 8px;
  background: rgba(244, 239, 231, 0.86);
}

.spruce-intake-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

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

.spruce-intake-form label,
.spruce-intake-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.spruce-intake-form label span,
.spruce-intake-form legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.spruce-intake-form input[type="text"],
.spruce-intake-form input:not([type]),
.spruce-intake-form input[type="email"],
.spruce-intake-form input[type="tel"] {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.spruce-intake-form fieldset {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choice-row,
.consent-row {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.choice-row input,
.consent-row input {
  margin-top: 5px;
}

.choice-row span,
.consent-row span {
  font-weight: 500 !important;
  color: var(--muted) !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.privacy-note {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(244, 239, 231, 0.86);
  color: #354154;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.policy-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.04;
}

.policy-card p {
  color: var(--muted);
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(150px, 0.5fr));
  gap: 28px;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer h2 {
  font-size: 2rem;
}

.footer h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 12;
  display: none;
  min-width: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #081326;
  box-shadow: 0 16px 28px rgba(11, 27, 51, 0.28);
  text-decoration: none;
}

.mobile-call svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .split,
  .split-wide,
  .clinical-background,
  .profile-hero-inner,
  .cta-split,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .service-grid,
  .process-grid,
  .faq-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-hero-inner {
    min-height: auto;
  }

  .profile-card {
    width: min(560px, 100%);
  }

  .profile-photo-shell {
    min-height: 360px;
  }

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

  .portrait-visual {
    aspect-ratio: 4 / 3;
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .brand-line {
    font-size: 0.64rem;
  }

  .main-nav a {
    min-height: 36px;
    padding: 0 7px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .main-nav {
    justify-content: space-between;
    gap: 2px;
    overflow: visible;
  }

  .main-nav .nav-cta {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 68px 0 112px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .signal {
    min-height: auto;
  }

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

  .credential-ribbon li {
    font-size: 0.72rem;
  }

  .profile-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .profile-photo-shell {
    min-height: 320px;
  }

  .portrait-visual {
    padding: 18px;
  }

  .portrait-visual::before {
    inset: 16px;
  }

  .clinical-photo img {
    height: 260px;
  }

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

  .pillar-card {
    min-height: auto;
  }

  .timeline article {
    padding-left: 58px;
  }

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

  .mobile-call {
    display: inline-flex;
  }
}
