:root {
  --paper: #f6f3ec;
  --paper-2: #ede8dc;
  --ink: #16302c;
  --ink-soft: #3c534e;
  --muted: #8a8271;
  --footer: #6e6656;
  --line: #e2dcce;
  --line-strong: #c9c0ad;
  --sage: #e7eee9;
  --teal: #1c5b52;
  --terracotta: #c4623c;
  --dark: #16302c;
  --cream: #efeadf;
  --white: #ffffff;
  --header-h: 72px;
  --wrap: 1180px;
  --gutter: 32px;
  --font-serif: "Newsreader", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --ease: 0.22s ease-in-out;
  --radius-pill: 999px;
  --radius-photo: 180px 180px 24px 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), opacity var(--ease), transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

a:hover,
a:focus-visible {
  color: var(--terracotta);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.15;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-open {
  background: var(--sage);
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--gutter);
  min-height: var(--header-h);
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-header .site-logo {
  font-size: calc(22px * 1.2);
}

.site-logo span,
.site-logo--footer span {
  color: var(--terracotta);
  font-weight: 600;
}

.site-logo:hover,
.site-logo:focus-visible {
  color: var(--ink);
}

.site-header.is-open .site-logo,
.site-header.is-open .menu-toggle {
  position: relative;
  z-index: 3;
}

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), top var(--ease), background-color var(--ease);
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

.site-header.is-open .menu-toggle__bars {
  background: transparent;
}

.site-header.is-open .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header__panel {
  display: none;
}

.site-header.is-open .site-header__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: var(--header-h) var(--gutter);
  background: var(--sage);
  border: 0;
}

.site-header.is-open .site-nav {
  text-align: center;
}

.site-header.is-open .site-nav__list {
  align-items: center;
  gap: calc(16px * 1.3);
}

.site-header.is-open .site-nav a {
  font-size: calc(16px * 1.3);
}

.site-header.is-open .btn--header {
  margin-top: 56px;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn--header {
  background: var(--ink);
  color: var(--paper);
  font-size: 14.5px;
  padding: 11px 20px;
  width: fit-content;
  white-space: nowrap;
}

.btn--header:hover,
.btn--header:focus-visible {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  font-size: 15.5px;
  padding: 15px 26px;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--terracotta);
  color: var(--white);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 15.5px;
  padding: 14px 26px;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}

.site-header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 48, 44, 0.28);
  z-index: -1;
}

.hero {
  display: grid;
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px var(--gutter) 56px;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: 0 0 auto;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero__lede {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 53ch;
}

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

.hero__photo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero__photo-shade {
  position: absolute;
  inset: 18px -14px -18px 18px;
  background: var(--sage);
  border-radius: var(--radius-photo);
}

.hero__photo img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-photo);
  object-fit: cover;
  aspect-ratio: 3 / 3.6;
  filter: saturate(0.95);
}

.reasons {
  background: var(--dark);
  color: var(--cream);
  padding: 56px var(--gutter);
}

.reasons__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.reasons h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 32px;
}

.reasons__grid {
  display: grid;
  gap: 20px;
}

.reasons__grid article {
  padding: 0;
}

.reasons h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--paper);
}

.reasons article p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(239, 234, 223, 0.72);
}

.doctor {
  display: grid;
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--gutter) 56px;
}

.doctor h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.doctor h2 strong {
  font-weight: 600;
}

.doctor__name p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.doctor__name strong {
  font-weight: 700;
  color: var(--ink);
}

.doctor__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  align-items: flex-start;
}

.doctor__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}

.doctor__links a:hover,
.doctor__links a:focus-visible {
  color: var(--terracotta);
}

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.areas {
  display: grid;
  font-size: 15.5px;
  line-height: 1.5;
}

.areas li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.areas li:last-child {
  border-bottom: 1px solid var(--line);
}

.orgs {
  display: grid;
  gap: 28px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px var(--gutter) 48px;
  border-top: 1px solid var(--line);
}

.orgs__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.orgs__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  background: var(--white);
  padding: 22px;
  opacity: 1;
  color: inherit;
}

.orgs__logos a:hover,
.orgs__logos a:focus-visible {
  opacity: 1;
  color: inherit;
}

.orgs__logos img {
  width: 100%;
  height: 100%;
  max-height: 72px;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity var(--ease);
}

.orgs__logos a:hover img,
.orgs__logos a:focus-visible img {
  opacity: 1;
}

.orgs__logos a:last-child {
  grid-column: 1 / -1;
  max-width: calc((100% - 10px) / 2);
  justify-self: center;
}

.booking-wrap {
  padding: 0 var(--gutter) 72px;
}

.booking {
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--sage);
  border-radius: 22px;
  padding: 36px 24px;
  display: grid;
  gap: 28px;
}

.booking h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.booking p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.booking__cards {
  display: grid;
  gap: 12px;
}

.booking__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.booking__card:hover,
.booking__card:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.booking__card span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

.booking__card strong {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px var(--gutter) 36px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--footer);
}

.site-logo--footer {
  font-size: 18px;
  margin: 0;
}

.bio-hero {
  display: grid;
  gap: 36px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px var(--gutter) 48px;
}

.bio-hero__photo {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.bio-hero__photo-shade {
  position: absolute;
  inset: 16px -12px -16px 16px;
  background: var(--sage);
  border-radius: 160px 160px 22px 22px;
}

.bio-hero__photo img {
  position: relative;
  width: 100%;
  border-radius: 160px 160px 22px 22px;
  object-fit: cover;
  aspect-ratio: 3 / 3.6;
  filter: saturate(0.95);
}

.bio-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.bio-hero h1 strong {
  font-weight: 600;
}

.bio-hero__role {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.bio-hero__role strong {
  font-weight: 700;
  color: var(--ink);
}

.bio-split {
  display: grid;
  gap: 28px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px var(--gutter);
}

.bio-split--lectures {
  border-top: 1px solid var(--line);
}

.bio-split h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bio-split h2.section-kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

.bio-prose {
  display: grid;
  gap: 22px;
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.pubs {
  background: var(--dark);
  color: var(--cream);
  padding: 56px var(--gutter);
}

.pubs__inner {
  display: grid;
  gap: 32px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.pubs h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.pubs__intro p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(239, 234, 223, 0.6);
}

.num-list {
  counter-reset: item;
  max-width: 78ch;
}

.num-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  counter-increment: item;
}

.num-list li > p {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.num-list li::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--terracotta);
  padding-top: 2px;
}

.num-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.num-list--dark li {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top-color: rgba(239, 234, 223, 0.16);
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(239, 234, 223, 0.82);
}

.num-list--dark li::before {
  font-size: 17px;
  padding-top: 0;
}

.num-list--dark li:last-child {
  border-bottom-color: rgba(239, 234, 223, 0.16);
}

.num-list--dark a {
  color: #e9a987;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.num-list--dark a:hover,
.num-list--dark a:focus-visible {
  color: var(--paper);
}

.cleveland-wrap {
  padding: 0 var(--gutter) 64px;
}

.cleveland {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  background: var(--sage);
  border-radius: 22px;
  padding: 36px 24px;
}

.cleveland h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.625rem);
  line-height: 1.2;
}

.cleveland p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.booking-wrap--plain {
  padding-bottom: 80px;
}

.booking--plain {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

@media (max-width: 639px) {
  :root {
    --gutter: 20px;
  }

  .site-header .site-logo {
    font-size: 22px;
  }
}

.page-404 {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px var(--gutter) 96px;
}

.page-404 h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .reasons__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }

  .reasons__grid article {
    padding: 0;
  }

  .areas {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  .areas li:nth-last-child(2):nth-child(even) {
    border-bottom: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    padding: 56px var(--gutter) 56px;
  }

  .hero__photo {
    margin: 0;
    max-width: none;
  }

  .booking__card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .booking__card strong {
    font-size: 1.25rem;
  }

  .bio-hero {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    padding: 56px var(--gutter) 56px;
  }

  .bio-hero__photo {
    margin: 0;
    max-width: none;
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --header-h: 76px;
  }

  .hero {
    gap: 40px;
    padding: 64px var(--gutter) 64px;
  }

  .hero__lede {
    font-size: 1.125rem;
  }

  .orgs__logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .orgs__logos a {
    padding: 24px;
  }

  .orgs__logos a:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .booking {
    padding: 48px 40px;
  }

  .booking--plain {
    padding: 48px 0 0;
  }
}

@media (min-width: 900px) {
  .doctor {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
    padding: 88px var(--gutter) 72px;
  }

  .booking {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px;
    border-radius: 28px;
  }

  .booking--plain {
    padding: 64px 0 0;
    border-radius: 0;
  }

  .booking__card strong {
    font-size: 1.5rem;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .bio-split {
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
    padding: 72px var(--gutter);
  }

  .bio-split h2,
  .bio-split .section-kicker {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    margin-bottom: 0;
  }

  .pubs__inner {
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    column-gap: 0;
    row-gap: 0;
    align-items: start;
  }

  .pubs__intro {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    padding-right: 48px;
  }

  .pubs .num-list {
    max-width: none;
  }

  .cleveland {
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 64px;
    border-radius: 28px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .site-header__backdrop {
    display: none !important;
  }

  .site-header__bar {
    padding: 18px var(--gutter);
  }

  .site-header__panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-header.is-open .site-header__panel {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .site-nav__list {
    text-align: start;
  }

  .site-header.is-open .btn--header {
    margin-top: 0;
  }

  .site-nav__list {
    flex-direction: row;
    gap: 28px;
  }

  .site-nav a {
    font-size: 14.5px;
  }

  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    padding: 88px var(--gutter) 72px;
  }

  .reasons {
    padding: 88px var(--gutter);
  }

  .reasons h2 {
    margin-bottom: 52px;
  }

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

  .reasons__grid article {
    padding: 0 28px;
  }

  .reasons__grid article + article {
    border-left: 1px solid rgba(239, 234, 223, 0.28);
  }

  .reasons__grid article:first-child {
    padding-left: 0;
  }

  .reasons__grid article:last-child {
    padding-right: 0;
  }

  .orgs {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 56px var(--gutter);
  }

  .orgs .section-kicker {
    margin-bottom: 0;
  }

  .orgs__logos {
    gap: 12px;
  }

  .booking-wrap {
    padding-bottom: 96px;
  }

  .bio-hero {
    gap: 64px;
    padding: 72px var(--gutter) 64px;
  }

  .pubs {
    padding: 80px var(--gutter);
  }

  .cleveland-wrap {
    padding-bottom: 80px;
  }

  .booking--plain {
    padding-top: 64px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
