:root {
  --ink: #18222f;
  --muted: #5b6573;
  --line: #dbe3e9;
  --paper: #f8faf9;
  --white: #ffffff;
  --teal: #0f6b68;
  --teal-dark: #0a4e4c;
  --copper: #a55b33;
  --blue: #2d5f8f;
  --shadow: 0 18px 44px rgba(24, 34, 47, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(219, 227, 233, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(24, 34, 47, 0.12);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted);
  max-width: 230px;
  font-size: 0.76rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.social a {
  text-decoration: none;
}

.nav a:hover,
.social a:hover {
  color: var(--teal);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 6vw, 84px) 52px;
  background: linear-gradient(135deg, #f8faf9 0%, #eef5f3 54%, #f7f4f0 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-specialty {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--teal-dark);
  font-size: clamp(1.22rem, 2.2vw, 1.85rem);
  font-weight: 720;
  line-height: 1.2;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 36px 0 0;
}

.quick-facts div,
.service-item,
.experience-item,
.care-option {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 227, 233, 0.9);
  border-radius: var(--radius);
}

.quick-facts div {
  padding: 16px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.hero-media {
  align-self: center;
  min-height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e8f0f2;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.intro-quote {
  max-width: 940px;
  margin: 0;
  padding: 4px 0 4px clamp(18px, 3vw, 32px);
  border-left: 3px solid var(--teal);
  color: #334155;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-style: italic;
  line-height: 1.7;
}

.intro-quote p {
  margin: 0 0 16px;
}

.intro-quote p:last-child {
  margin-bottom: 0;
}

.service-item p,
.experience-item p,
.care-option p,
.profile p,
.location p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.split > div:first-child p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
}

.service-list,
.experience-list {
  display: grid;
  gap: 14px;
}

.service-item,
.experience-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 20px;
}

.service-item span,
.experience-item span {
  color: var(--blue);
  font-weight: 850;
  font-size: 0.9rem;
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.profile-photo {
  margin: 0;
  overflow: hidden;
  background: #edf4f2;
  border-radius: var(--radius);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.credential-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.credential-list li {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  color: #334155;
}

.academic-list {
  gap: 9px;
}

.academic-block {
  margin-top: 24px;
}

.academic-block h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
  text-transform: uppercase;
}

.academic-list li {
  font-size: 0.96rem;
}

.publication-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.publication-list li {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}

.publication-list strong {
  display: block;
  font-weight: 720;
}

.publication-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #eef3f6;
}

.care-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.care-option {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 240px;
  min-width: 0;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(24, 34, 47, 0.08);
}

.care-option h3 {
  margin-bottom: 0;
}

.care-option span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.care-option .button {
  width: min(100%, 180px);
  align-self: end;
  justify-self: start;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 84px);
  color: var(--white);
  background: #18222f;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #d6e4ee;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .intro-quote {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 64px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-actions,
  .quick-facts {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 420px;
  }

  .service-item,
  .experience-item {
    grid-template-columns: 1fr;
  }

  .care-options {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}
