@font-face {
  font-family: Instrument;
  src: url("fonts/instrument-serif.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("fonts/instrument-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM;
  src: url("fonts/dm-sans.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM;
  src: url("fonts/dm-sans-semibold.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --paper: #f7f6ef;
  --forest: #263f35;
  --muted: #617066;
  --sage: #697961;
  --line: #d8dcd1;
  --gold: #a48b54;
  --pale: #e9ede3;
  --white: #fffefa;
  color: var(--forest);
  background: var(--paper);
  font-family: DM, Arial, sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
.serif {
  font-family: Instrument, Georgia, serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(64px, 6.8vw, 100px);
  line-height: 0.98;
  letter-spacing: -2px;
}
h2 {
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
h3 {
  font-size: 40px;
  line-height: 1.08;
}
em {
  font-weight: 400;
  color: var(--sage);
}
p {
  line-height: 1.8;
}
address {
  font-style: normal;
  line-height: 1.9;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.9px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
}
.topline {
  background: var(--forest);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.4px;
}
.topline > .wrap {
  min-height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topline a {
  text-decoration: none;
}
.topline a span {
  margin-left: 12px;
}
.site-header {
  min-height: 111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 9.25rem;
  padding-block: 14px;
  text-align: center;
  text-decoration: none;
  font-family: Instrument, Georgia, serif;
  font-size: 2.75rem;
  line-height: 0.95;
  flex-shrink: 0;
}
.brand svg {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}
.brand > span {
  width: 100%;
}
.brand-sub {
  display: flex;
  justify-content: space-between;
  font-family: DM, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 4px 1px 0;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
}
.site-header nav a {
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  border-color: var(--forest);
}
.menu-toggle {
  display: none;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 20;
  padding: 14px;
  background: var(--forest);
  color: white;
}
.skip-link:focus {
  top: 15px;
}
.home-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 64px 66px;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.tiny-line {
  width: 25px;
  height: 1px;
  background: var(--gold);
}
.hero-description {
  font-size: 14px;
  max-width: 455px;
  margin-top: 27px;
  color: #536158;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.button {
  min-height: 49px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--forest);
  color: var(--paper);
  font-size: 12px;
  text-decoration: none;
  border: 1px solid var(--forest);
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #3a5548;
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.button-outline {
  background: transparent;
  color: var(--forest);
}
.button-outline:hover {
  background: var(--pale);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #aab3a5;
}
.text-link span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.text-link:hover {
  border-bottom-color: var(--forest);
}
.hero-footnote {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 25px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.25px;
}
.small-cross {
  font-size: 26px;
  color: var(--sage);
  font-weight: 400;
  line-height: 1;
}
.portrait-hero {
  max-width: 415px;
  width: 100%;
  justify-self: end;
  position: relative;
}
.portrait-frame {
  position: relative;
  padding: 12px 12px 0;
  background: #e9e7db;
  border-radius: 145px 145px 0 0;
}
.portrait-frame > img {
  width: 100%;
  aspect-ratio: 1/0.99;
  object-fit: cover;
  border-radius: 135px 135px 0 0;
  object-position: center 32%;
}
.portrait-tag {
  position: absolute;
  bottom: 15px;
  left: 25px;
  padding: 8px 10px;
  background: var(--paper);
  font-size: 8px;
  letter-spacing: 1.3px;
}
.portrait-hero figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest);
  color: var(--paper);
  padding: 22px 25px;
}
.portrait-hero .serif {
  font-size: 29px;
  display: block;
}
.portrait-hero figcaption div > span:last-child {
  font-size: 10px;
  display: block;
  margin-top: 7px;
  color: #c9d1c5;
  letter-spacing: 0.5px;
}
.portrait-hero figcaption a {
  border: 1px solid #65776a;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
}
.portrait-hero figcaption a:hover {
  background: #3a5548;
}
.home-hero-open {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
}
.open-portrait {
  position: relative;
  container-type: inline-size;
  display: block;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 46% 46% 10px 10px / 34% 34% 10px 10px;
}
.open-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
}
.portrait-label {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgb(24 57 45 / 42%);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgb(0 0 0 / 35%);
}
.portrait-label-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: Instrument, Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.1;
}
.portrait-label-credentials {
  display: grid;
  gap: 3px;
  text-align: right;
}
.portrait-label-arrow {
  font-family: DM, Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}
@container (max-width: 490px) {
  .portrait-label {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .portrait-label-credentials {
    grid-column: 1;
    text-align: left;
  }
}
@media (max-width: 720px) {
  .home-hero.home-hero-open {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .open-portrait {
    max-width: 520px;
    height: 390px;
    justify-self: center;
  }
}
.home-landscape {
  position: relative;
}
.landscape {
  position: relative;
  overflow: hidden;
}
.landscape > img {
  width: 100%;
  aspect-ratio: 4.17;
  object-fit: cover;
}
.landscape figcaption {
  position: absolute;
  bottom: 13px;
  right: 16px;
  background: rgb(24 57 45 / 42%);
  color: var(--paper);
  padding: 6px 9px;
  font-size: 9px;
  letter-spacing: 0.2px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.landscape figcaption span {
  margin-inline: 5px;
}
.home-landscape .landscape figcaption {
  top: 14px;
  bottom: auto;
}
.landscape-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 25px 32px;
  color: var(--white);
  background: #263f35;
}
.landscape-note > span {
  font-family: Instrument, Georgia, serif;
  font-size: 35px;
  line-height: 1;
  display: flex;
  gap: 8px;
}
.landscape-note br {
  display: none;
}
.landscape-note em {
  color: #c8d1bd;
}
.landscape-note p {
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.section-heading > p {
  max-width: 330px;
  font-size: 13px;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature {
  padding: 31px 24px 30px 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: background 0.2s;
}
.feature + .feature {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.feature:last-child {
  padding-right: 0;
}
.feature-number {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.1px;
  display: block;
  color: var(--muted);
}
.feature h3 {
  margin-block: 27px 16px;
  font-size: 2.125rem;
}
.feature p {
  font-size: 13px;
  color: var(--muted);
  max-width: 270px;
  margin-bottom: 29px;
}
.feature-link {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  align-items: center;
}
.feature-link span {
  font-size: 25px;
  font-weight: 400;
  transition: transform 0.2s;
}
.feature:hover .feature-link span {
  transform: translate(3px, -3px);
}
.resource-section {
  background: var(--pale);
  padding: 64px 0;
}
.resource-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 880px;
}
.book-display {
  display: flex;
  justify-content: center;
}
.book-display img {
  width: 157px;
  transform: rotate(-6deg);
  box-shadow: 12px 14px 0 #d3d9cc;
}
.resource-inner .eyebrow {
  margin-bottom: 18px;
}
.resource-inner p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  max-width: 390px;
  margin-block: 23px 19px;
}
.quote-section {
  text-align: center;
  max-width: 790px;
  padding-block: 65px 75px;
}
.quote-mark {
  font-family: Instrument, Georgia, serif;
  font-size: 70px;
  color: var(--gold);
  line-height: 1;
}
.quote-section blockquote {
  font-family: Instrument, Georgia, serif;
  font-size: 31px;
  line-height: 1.4;
  margin: 0 0 23px;
}
.quote-section .eyebrow {
  font-size: 8px;
  letter-spacing: 1.3px;
}
.visit-band {
  background: var(--forest);
  color: var(--paper);
  padding-block: 51px;
}
.visit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.visit-inner .eyebrow {
  color: #bcc8b5;
  margin-bottom: 12px;
  font-size: 9px;
}
.visit-inner h2 {
  font-size: 43px;
}
.visit-inner em {
  color: #c4d0b9;
}
.visit-inner .button {
  color: var(--forest);
  background: var(--paper);
  border-color: var(--paper);
  white-space: nowrap;
}
.site-footer {
  padding-block: 53px 22px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-top p,
.footer-top address {
  font-size: 11px;
  color: var(--muted);
}
.footer-top address a {
  text-decoration: none;
}
.footer-top .text-link {
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-bottom small {
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
  font-size: 9px;
}
.footer-bottom nav a {
  text-decoration: none;
}
.back-top {
  font-size: 22px;
  text-decoration: none;
}
.page-intro {
  padding-block: 66px 57px;
}
.page-intro .eyebrow {
  margin-bottom: 24px;
}
.page-intro h1 {
  font-size: clamp(58px, 6.5vw, 89px);
}
.intro-copy {
  font-size: 14px;
  max-width: 535px;
  margin-top: 25px;
  color: var(--muted);
}
.service-content {
  padding-bottom: 85px;
}
.foundation-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 28px;
  background: var(--pale);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.foundation-note .small-cross {
  flex-shrink: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  margin-bottom: 70px;
}
.service-group h2 {
  font-size: 33px;
  margin: 19px 0 23px;
}
.service-group hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 13px;
}
.service-group ul {
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.8;
}
.service-group li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}
.about-layout,
.reading-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 95px;
  align-items: start;
  padding-bottom: 85px;
}
.about-photos figure {
  margin-bottom: 32px;
}
.about-photos figcaption {
  font-size: 11px;
  margin-top: 11px;
  color: var(--muted);
}
.doctor-photo {
  width: 290px;
}
.family-photos {
  max-width: 220px;
}
.family-photos img {
  width: 100%;
}
.prose {
  font-size: 15px;
  line-height: 1.9;
  max-width: 760px;
  color: #46564b;
  overflow-wrap: break-word;
}
.prose p {
  margin-bottom: 22px;
  line-height: 1.9;
}
.prose h2 {
  color: var(--forest);
  font-size: 35px;
  line-height: 1.15;
  margin: 40px 0 20px;
  scroll-margin-top: 30px;
}
.prose h2.bio-title {
  font-size: 49px;
  margin: 12px 0 27px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose li {
  padding-left: 5px;
  margin-bottom: 12px;
}
.prose ul,
.prose ol {
  padding-left: 23px;
  margin-block: 18px 27px;
}
.prose small {
  font-size: 12px;
}
.prose .eyebrow {
  font-size: 10px;
  margin: 0;
  color: var(--muted);
}
.gallery-section {
  background: var(--pale);
}
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.photo-gallery img {
  width: 100%;
  aspect-ratio: 4.17;
  object-fit: cover;
  transition: filter 0.2s;
}
.photo-gallery a:hover img {
  filter: brightness(1.12);
}
.photo-gallery figcaption {
  font-size: 11px;
  margin-top: 11px;
  color: var(--muted);
}
.photo-dialog {
  width: min(950px, 95vw);
  max-height: 90vh;
  padding: 55px 24px 20px;
  border: 0;
  background: var(--paper);
  color: var(--forest);
}
.photo-dialog::backdrop {
  background: #16271fd9;
}
.photo-dialog img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
}
.photo-dialog p {
  font-size: 13px;
  margin-top: 16px;
}
.dialog-close {
  position: absolute;
  right: 20px;
  top: 12px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.reading-aside .diagram {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 23px;
}
.diagram img {
  width: 100%;
}
.diagram figcaption {
  font-size: 11px;
  line-height: 1.7;
  padding-top: 20px;
  color: var(--muted);
}
.section-bottom {
  padding-bottom: 85px;
}
.atlas-cover {
  width: 180px;
  margin-bottom: 32px;
}
.contents {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.contents summary {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.contents nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 13px;
}
.contents a {
  font-size: 11px;
  line-height: 1.5;
  text-decoration: none;
  padding: 7px 0;
  color: var(--muted);
}
.contents a:hover {
  color: var(--forest);
  text-decoration: underline;
}
.booklet > p:first-child {
  font-size: 13px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 35px;
  padding-bottom: 60px;
}
.promise-grid article {
  padding: 27px 0 31px;
  border-top: 1px solid var(--line);
}
.promise-grid h2 {
  font-size: 31px;
  margin: 19px 0 14px;
}
.promise-grid p {
  font-size: 12px;
  color: var(--muted);
}
.promise-original {
  background: var(--pale);
  padding: 55px 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 65px;
}
.promise-original .eyebrow {
  margin-bottom: 20px;
}
.promise-original p:not(.eyebrow) {
  font-size: 13px;
  margin: 25px 0 15px;
}
.promise-original img {
  width: 280px;
  margin-inline: auto;
}
.promise-original figcaption {
  font-size: 10px;
  text-align: center;
  margin-top: 13px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 20px 0 65px;
}
.contact-address .eyebrow,
.hours > .eyebrow {
  margin-bottom: 20px;
}
.contact-address h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.contact-address address {
  font-size: 15px;
}
.contact-phone {
  font-family: Instrument, Georgia, serif;
  font-size: 35px;
  display: block;
  text-decoration: none;
  margin: 20px 0;
}
.contact-phone span {
  font-size: 23px;
  margin-left: 10px;
}
.contact-address .button {
  margin-top: 10px;
}
.hours {
  padding: 30px 40px;
  background: var(--pale);
}
.hours h2 {
  font-size: 37px;
  margin-bottom: 20px;
}
.hours table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
.hours th,
.hours td {
  padding: 11px 0;
  border-top: 1px solid #cdd4c5;
  text-align: left;
  font-weight: 400;
}
.hours td {
  text-align: right;
}
.map-section {
  margin-bottom: 60px;
}
.map-section iframe {
  width: 100%;
  border: 0;
  background: var(--pale);
}
.map-section > p {
  font-size: 11px;
  color: var(--muted);
  padding-top: 13px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1500px) {
  .home-hero {
    padding-block: 80px;
  }
  .hero-description {
    font-size: 15px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 17px;
    font-size: 11px;
  }
  .home-hero {
    gap: 50px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .portrait-hero .serif {
    font-size: 25px;
  }
  .feature-number {
    font-size: 8px;
  }
  .about-layout,
  .reading-layout {
    gap: 60px;
    grid-template-columns: 250px minmax(0, 1fr);
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top p {
    max-width: 150px;
  }
  .visit-inner h2 {
    font-size: 37px;
  }
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 90px;
    position: relative;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 20px;
  }
  .brand {
    width: 8rem;
    font-size: 2.375rem;
    padding-block: 0;
  }
  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 23px;
    padding-top: 20px;
    font-size: 13px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 15px;
    border: 0;
    background: transparent;
    font-size: 12px;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
  }
  .home-hero {
    gap: 30px;
    padding-block: 42px;
    grid-template-columns: 1.2fr 1fr;
  }
  .home-hero h1 {
    font-size: 65px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
  }
  .hero-actions {
    display: block;
  }
  .hero-actions .text-link {
    margin-top: 15px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .portrait-frame {
    padding: 8px 8px 0;
  }
  .portrait-frame > img {
    aspect-ratio: 0.82;
  }
  .portrait-tag {
    font-size: 6px;
    left: 17px;
    padding: 7px;
  }
  .portrait-hero figcaption {
    padding: 17px;
  }
  .portrait-hero .serif {
    font-size: 23px;
  }
  .portrait-hero figcaption a {
    width: 29px;
    height: 29px;
    font-size: 19px;
  }
  .portrait-hero figcaption div > span:last-child {
    font-size: 8px;
  }
  .home-landscape .landscape > img {
    aspect-ratio: 3;
  }
  .landscape-note {
    position: relative;
    padding: 20px;
  }
  .landscape-note > span {
    font-size: 29px;
  }
  .landscape-note p {
    font-size: 9px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 260px;
    font-size: 12px;
  }
  .feature {
    padding-right: 20px;
  }
  .feature + .feature {
    padding-left: 20px;
  }
  .feature h3 {
    font-size: 33px;
  }
  .feature p {
    font-size: 11px;
  }
  .feature-number {
    font-size: 7px;
  }
  .feature-link {
    font-size: 10px;
  }
  .resource-inner {
    gap: 40px;
  }
  .resource-section {
    padding: 50px 0;
  }
  .visit-inner {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > * {
    width: calc(50% - 15px);
  }
  .footer-top p {
    max-width: none;
  }
  .footer-top .text-link {
    width: auto;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }
  .page-intro {
    padding-block: 43px;
  }
  .about-layout,
  .reading-layout {
    gap: 38px;
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .prose {
    font-size: 13px;
  }
  .prose h2.bio-title {
    font-size: 38px;
  }
  .service-grid {
    gap: 25px;
  }
  .service-group h2 {
    font-size: 29px;
  }
  .service-group ul {
    font-size: 12px;
  }
  .promise-original {
    padding: 35px;
    gap: 40px;
  }
  .contact-grid {
    gap: 30px;
  }
  .hours {
    padding: 27px;
  }
  .hours table {
    font-size: 11px;
  }
  .contact-address h2 {
    font-size: 41px;
  }
  .contact-phone {
    font-size: 29px;
  }
}
@media (max-width: 600px) {
  .topline > .wrap {
    min-height: 33px;
    font-size: 9px;
  }
  .topline a span {
    margin-left: 4px;
  }
  .home-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 39px;
  }
  .home-hero h1 {
    font-size: 77px;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 420px;
    margin-top: 22px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 23px;
  }
  .hero-actions .text-link {
    margin-top: 0;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 20px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 18px;
  }
  .portrait-hero {
    max-width: 360px;
    justify-self: center;
  }
  .portrait-frame {
    padding: 10px 10px 0;
    border-radius: 130px 130px 0 0;
  }
  .portrait-frame > img {
    aspect-ratio: 1.15;
    border-radius: 120px 120px 0 0;
    object-position: center 30%;
  }
  .portrait-tag {
    font-size: 7px;
    left: 21px;
  }
  .portrait-hero .serif {
    font-size: 27px;
  }
  .portrait-hero figcaption {
    padding: 19px 22px;
  }
  .portrait-hero figcaption div > span:last-child {
    font-size: 9px;
  }
  .portrait-hero figcaption a {
    width: 35px;
    height: 35px;
  }
  .home-landscape .landscape > img {
    aspect-ratio: 2.9;
  }
  .landscape figcaption {
    font-size: 7px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }
  .home-landscape .landscape figcaption {
    top: 10px;
  }
  .landscape-note {
    padding: 19px;
    gap: 20px;
  }
  .landscape-note > span {
    display: block;
    line-height: 1.05;
    font-size: 30px;
  }
  .landscape-note br {
    display: block;
  }
  .landscape-note p {
    max-width: 145px;
    line-height: 1.6;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 48px;
  }
  .section-heading > p {
    margin-top: 22px;
    font-size: 13px;
    max-width: 350px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature + .feature {
    border-left: 0;
    padding: 25px 0;
  }
  .feature + .feature {
    border-top: 1px solid var(--line);
  }
  .feature-number {
    font-size: 9px;
  }
  .feature h3 {
    font-size: 38px;
    margin: 21px 0 13px;
  }
  .feature h3 br {
    display: none;
  }
  .feature p {
    max-width: 320px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .feature-link {
    font-size: 11px;
  }
  .resource-inner {
    grid-template-columns: 100px 1fr;
    gap: 28px;
  }
  .book-display img {
    width: 95px;
    box-shadow: 7px 8px 0 #d3d9cc;
  }
  .resource-inner h2 {
    font-size: 39px;
  }
  .resource-inner .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .resource-inner p:not(.eyebrow) {
    font-size: 12px;
    margin-block: 17px 12px;
  }
  .resource-inner .text-link {
    font-size: 10px;
    gap: 12px;
  }
  .quote-section {
    padding-block: 48px;
  }
  .quote-section blockquote {
    font-size: 27px;
  }
  .quote-section .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .visit-band {
    padding-block: 35px;
  }
  .visit-inner h2 {
    font-size: 38px;
    max-width: 320px;
  }
  .footer-top .brand {
    width: 8rem;
    font-size: 2.375rem;
  }
  .footer-top {
    gap: 28px 15px;
  }
  .footer-top p {
    font-size: 10px;
  }
  .footer-top .brand-sub {
    font-size: 0.675rem;
  }
  .footer-top address {
    font-size: 11px;
  }
  .footer-bottom nav {
    gap: 17px;
    font-size: 10px;
  }
  .footer-bottom small {
    font-size: 8px;
  }
  .page-intro h1 {
    font-size: 65px;
  }
  .page-intro .eyebrow {
    font-size: 9px;
    margin-bottom: 21px;
  }
  .intro-copy {
    font-size: 13px;
  }
  .foundation-note {
    padding: 20px;
    font-size: 12px;
    align-items: start;
    margin-bottom: 30px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 40px;
  }
  .service-group h2 {
    font-size: 35px;
    margin-top: 15px;
  }
  .service-group ul {
    font-size: 13px;
  }
  .service-content,
  .section-bottom {
    padding-bottom: 50px;
  }
  .landscape > img {
    aspect-ratio: 3.2;
  }
  .about-layout,
  .reading-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 50px;
  }
  .about-photos {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
  }
  .about-photos figure {
    margin-bottom: 20px;
  }
  .about-photos .doctor-photo {
    width: 100%;
  }
  .family-photos {
    max-width: none;
    display: grid;
    gap: 16px;
  }
  .family-photos figure {
    margin: 0;
  }
  .about-photos figcaption {
    font-size: 9px;
  }
  .prose {
    font-size: 14px;
  }
  .prose h2 {
    font-size: 32px;
  }
  .photo-gallery {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .photo-gallery figcaption {
    font-size: 10px;
  }
  .reading-aside .diagram {
    max-width: 280px;
  }
  .reading-aside {
    display: flex;
    gap: 25px;
    align-items: start;
    flex-wrap: wrap;
  }
  .atlas-cover {
    width: 100px;
    margin: 0;
  }
  .contents {
    flex: 1;
    min-width: 180px;
  }
  .contents nav {
    max-height: 220px;
    overflow: auto;
  }
  .promise-grid {
    gap: 0 24px;
    padding-bottom: 30px;
  }
  .promise-grid h2 {
    font-size: 29px;
  }
  .promise-grid p {
    font-size: 12px;
  }
  .promise-original {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 30px;
    margin-bottom: 40px;
  }
  .promise-original h2 {
    font-size: 45px;
  }
  .promise-original img {
    width: 240px;
  }
  .promise-original figcaption {
    font-size: 9px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 0;
    padding-bottom: 35px;
  }
  .contact-address h2 {
    font-size: 46px;
  }
  .contact-phone {
    font-size: 35px;
  }
  .hours table {
    font-size: 13px;
  }
  .map-section iframe {
    height: 320px;
  }
  .map-section {
    margin-bottom: 35px;
  }
}
.about-photos .family-photos {
  max-width: none;
  width: 100%;
}
.about-photos img,
.about-photos .doctor-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-carousel {
  position: relative;
  background: var(--forest);
}
.carousel-slides {
  position: relative;
  aspect-ratio: 4.17;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide figcaption {
  visibility: hidden;
}
.carousel-slide.is-active figcaption {
  visibility: visible;
}
.home-landscape .carousel-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-controls {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  background: rgb(24 57 45 / 42%);
  color: var(--paper);
  padding: 2px 5px;
  gap: 3px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition:
    opacity 180ms ease,
    background-color 180ms ease;
  opacity: 0;
  pointer-events: none;
}
.carousel-controls[hidden] {
  display: none;
}
.carousel-controls button {
  background: transparent;
  border: 0;
  min-width: 36px;
  min-height: 36px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 16px;
}
.carousel-controls button:first-child {
  font-size: 11px;
  min-width: 55px;
  border-right: 1px solid #65776a;
  margin-right: 3px;
}
.carousel-controls button:hover {
  background: rgb(255 255 255 / 12%);
}
.carousel-count {
  font-size: 10px;
  min-width: 31px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.photo-carousel:focus-within .carousel-controls,
.photo-carousel.is-controls-visible .carousel-controls {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .photo-carousel:hover .carousel-controls,
  .photo-carousel:focus-within .carousel-controls {
    opacity: 1;
    pointer-events: auto;
  }
}
.home-landscape .landscape-note {
  position: relative;
}
@media (max-width: 800px) {
  .carousel-slides {
    aspect-ratio: 3;
  }
}
@media (max-width: 600px) {
  .carousel-slides {
    aspect-ratio: 2.9;
  }
  .carousel-controls {
    bottom: 8px;
    left: 10px;
    padding: 0 3px;
    gap: 0;
  }
  .carousel-controls button {
    min-width: 32px;
    min-height: 32px;
    padding: 5px 7px;
  }
  .carousel-controls button:first-child {
    font-size: 10px;
    min-width: 48px;
  }
  .carousel-count {
    font-size: 9px;
    min-width: 29px;
  }
}
.landscape-note p br {
  display: block;
}
@media (max-width: 600px) {
  .home-hero h1 {
    font-size: clamp(60px, 19.7vw, 77px);
  }
  .feature h3 br {
    display: initial;
  }
  .page-intro h1 {
    font-size: clamp(51px, 16.5vw, 65px);
  }
  .family-photos {
    display: contents;
  }
  .about-photos figure {
    margin: 0;
  }
  .about-photos img {
    width: 100%;
  }
  .topline > .wrap {
    gap: 12px;
  }
  .topline a {
    flex-shrink: 0;
  }
  .topline > .wrap > span {
    max-width: 195px;
  }
}
.prose > section {
  margin-top: 40px;
}
.profile-details {
  margin: 0;
}
.profile-details > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-bottom: 22px;
}
.profile-details dt::after {
  content: ":";
}
.profile-details dd {
  margin: 0;
}
.profile-details dt {
  font-weight: 600;
}
/* Readable defaults: rem sizes also honor the visitor's browser font setting. */
body {
  font-size: 1.125rem;
}
.hero-description,
.intro-copy,
.prose,
.section-heading > p,
.feature p,
.resource-inner p:not(.eyebrow),
.promise-grid p,
.promise-original p:not(.eyebrow),
.service-group ul,
.foundation-note,
.contact-address address {
  font-size: 1.125rem;
  line-height: 1.75;
}
.prose p {
  line-height: 1.8;
}
.hero-description {
  max-width: 510px;
}
.section-heading > p {
  max-width: 390px;
}
.feature p {
  max-width: 330px;
}
.site-header nav,
.js .menu-toggle,
.button,
.hero-actions .button,
.text-link,
.hero-actions .text-link,
.resource-inner .text-link,
.footer-top .text-link,
.feature-link,
.hours table,
.contents summary {
  font-size: 1rem;
}
.button {
  padding: 15px 16px;
  gap: 16px;
}
.site-header nav {
  gap: 22px;
}
.eyebrow,
.hero-copy > .eyebrow,
.section-heading .eyebrow,
.page-intro .eyebrow,
.resource-inner .eyebrow,
.prose .eyebrow,
.visit-inner .eyebrow,
.quote-section .eyebrow,
.feature-number {
  font-size: 0.8125rem;
  letter-spacing: 1.2px;
}
.topline,
.topline > .wrap,
.hero-footnote,
.portrait-hero figcaption div > span:last-child,
.landscape-note p,
.footer-top p,
.footer-top address,
.footer-bottom nav,
.contents a,
.prose small,
.booklet > p:first-child,
.photo-dialog p {
  font-size: 0.9375rem;
}
.topline > .wrap {
  min-height: 42px;
  gap: 20px;
}
.footer-bottom small,
.about-photos figcaption,
.photo-gallery figcaption,
.diagram figcaption,
.promise-original figcaption,
.map-section > p {
  font-size: 0.875rem;
}
.portrait-tag,
.landscape figcaption {
  font-size: 0.75rem;
  line-height: 1.5;
}
.portrait-tag {
  max-width: calc(100% - 44px);
  letter-spacing: 0.7px;
}
.carousel-controls button:first-child,
.carousel-count {
  font-size: 0.875rem;
}
.carousel-controls button {
  min-width: 44px;
  min-height: 44px;
}
.carousel-controls button:first-child {
  min-width: 64px;
}
.carousel-count {
  min-width: 40px;
}
.landscape-note {
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom {
  flex-wrap: wrap;
}
.footer-bottom nav {
  flex-wrap: wrap;
  row-gap: 14px;
}
.portrait-hero figcaption a {
  flex-shrink: 0;
  margin-left: 12px;
}
@media (max-width: 960px) {
  .site-header {
    min-height: 96px;
    position: relative;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 20px;
  }
  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 23px;
    padding-top: 20px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 15px;
    border: 0;
    background: transparent;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-group h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 600px) {
  .topline,
  .topline > .wrap {
    font-size: 0.8125rem;
  }
  .topline > .wrap {
    padding-block: 8px;
    gap: 12px;
  }
  .topline > .wrap > span {
    max-width: 170px;
  }
  .hero-actions {
    gap: 20px;
  }
  .landscape-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .landscape-note p {
    max-width: none;
    text-align: left;
  }
  .resource-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .book-display {
    justify-content: flex-start;
    padding-left: 10px;
  }
  .book-display img {
    width: 120px;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-top > * {
    width: 100%;
  }
  .hours {
    padding: 24px 20px;
  }
  .hours table {
    font-size: 0.9375rem;
  }
  .carousel-slides {
    aspect-ratio: 2.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .topline,
  .site-header,
  .visit-band,
  .site-footer,
  .reading-aside,
  .section-bottom,
  .skip-link {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .wrap {
    width: 100%;
  }
  .page-intro {
    padding: 0 0 25px;
  }
  .page-intro h1 {
    font-size: 40px;
  }
  .reading-layout {
    display: block;
  }
  .prose {
    max-width: none;
    font-size: 11pt;
  }
  .prose h2 {
    break-after: avoid;
    font-size: 20pt;
  }
  .prose p {
    orphans: 3;
    widows: 3;
  }
}
