.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 60px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #222;
  color: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  padding: 90px 0;
}
.hero__content h1 {
  max-width: 820px;
  margin-bottom: 24px;
}
.hero__content .eyebrow {
  color: #fff;
}
.hero__content p {
  max-width: 590px;
  font-size: 19px;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cue {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 24px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.intro h2 {
  max-width: 780px;
  margin-bottom: 28px;
}
.intro-copy {
  max-width: 660px;
}
.intro-copy p {
  color: #3d3d39;
  font-size: 18px;
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.discipline {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.discipline img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.discipline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}
.discipline:hover img {
  transform: scale(1.025);
}
.discipline__body {
  position: absolute;
  z-index: 1;
  inset: auto 30px 30px;
}
.discipline__body h3 {
  margin-bottom: 10px;
  font-size: 31px;
}
.discipline__body p {
  margin-bottom: 18px;
}

.rail-section {
  padding: 110px 0;
  overflow: hidden;
}
.section-head {
  width: var(--page);
  margin: 0 auto 42px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}
.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.rail-controls {
  display: flex;
  gap: 8px;
}
.rail-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}
.rail-button:disabled {
  opacity: 0.28;
  cursor: default;
}
.rail-button svg {
  width: 18px;
}
.rail-viewport {
  width: var(--page);
  margin: auto;
  overflow: hidden;
}
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.rail::-webkit-scrollbar {
  display: none;
}
.story-card {
  scroll-snap-align: start;
}
.story-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-card__body {
  padding-top: 20px;
}
.story-card__body h3 {
  margin-bottom: 8px;
}
.story-card__body p {
  color: var(--quiet);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 680px;
  background: var(--mist);
}
.editorial-split__media {
  min-height: 680px;
  height: 680px;
  object-fit: cover;
}
.editorial-split__content {
  padding: 90px clamp(42px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-split__content h2 {
  margin-bottom: 28px;
}
.editorial-split__content p:not(.eyebrow) {
  max-width: 560px;
  color: #44443f;
  font-size: 18px;
}
.editorial-split__content .text-link {
  align-self: flex-start;
  margin-top: 18px;
}

.team-teaser {
  padding: 110px 0;
}
.team-teaser__head {
  width: var(--page);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.team-teaser__head p {
  max-width: 520px;
  color: var(--quiet);
}
.doctor-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.doctor-teaser {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--mist);
}
.doctor-teaser img {
  height: 700px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms var(--ease);
}
.doctor-teaser:hover img {
  transform: scale(1.018);
}
.doctor-teaser__label {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.94);
}
.doctor-teaser__label h3 {
  margin-bottom: 6px;
}
.doctor-teaser__label p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
}

.portal-band {
  background: #151515;
  color: #fff;
}
.portal-band__inner {
  width: var(--page);
  margin: auto;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal-band__copy h2 {
  margin-bottom: 22px;
}
.portal-band__copy p {
  max-width: 550px;
  color: #c9c9c4;
}
.portal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 34px;
}
.portal-list div {
  padding-top: 14px;
  border-top: 1px solid #444;
}
.portal-list span {
  display: block;
  color: #aaa;
  font-size: 12px;
}

.location-band {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.location-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.location-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.location-band__content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: auto;
}
.location-band__content h2 {
  max-width: 700px;
}
.location-band__content p {
  max-width: 580px;
}

.page-hero {
  padding: 105px 0 64px;
}
.page-hero--media {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mist);
}
.page-hero__copy {
  padding: clamp(64px, 8vw, 120px);
  align-self: center;
}
.page-hero__copy h1 {
  font-size: clamp(42px, 5vw, 70px);
}
.page-hero--media img {
  min-height: 560px;
  height: 100%;
  object-fit: cover;
}
.anchor-nav {
  position: sticky;
  z-index: 30;
  top: var(--header-height);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}
.anchor-nav__inner {
  width: var(--page);
  margin: auto;
  display: flex;
  gap: 30px;
  overflow-x: auto;
}
.anchor-nav a {
  flex: 0 0 auto;
  padding: 18px 0;
  font-size: 12px;
  text-transform: uppercase;
}
.content-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.content-section__grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.content-section__title h2 {
  position: sticky;
  top: 170px;
}
.service-list {
  border-top: 1px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.service-row h3 {
  margin: 0;
  font-size: 19px;
}
.service-row p {
  margin: 0;
  color: var(--quiet);
}
.image-feature {
  width: var(--page);
  margin: 0 auto 100px;
  min-height: 520px;
  object-fit: cover;
}
.concern-list {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.concern-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 230px;
  border-top: 1px solid var(--line);
  padding: 24px;
  gap: 28px;
}
.concern-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.concern-item img {
  width: 190px;
  height: 180px;
  object-fit: cover;
}
.concern-item p {
  color: var(--quiet);
}
.profile-hero {
  width: var(--page);
  margin: 70px auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.profile-hero img {
  max-height: 780px;
  object-fit: cover;
  object-position: center top;
}
.profile-hero__copy h1 {
  margin-bottom: 18px;
}
.profile-hero__role {
  color: var(--quiet);
  font-size: 20px;
}
.credential-list {
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.credential-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.prose {
  width: min(100% - 48px, 760px);
  margin: auto;
  padding: 90px 0 120px;
}
.prose h1 {
  font-size: clamp(38px, 5vw, 62px);
}
.prose h2 {
  margin-top: 50px;
  font-size: 29px;
}
.prose p,
.prose li {
  color: #3c3c39;
  font-size: 18px;
}
.medical-note {
  margin: 44px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--signal);
  background: var(--mist);
}
.detail-strip {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.detail-strip div {
  min-height: 116px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}
.detail-strip div:last-child {
  border-right: 0;
}
.detail-strip strong,
.detail-strip span {
  display: block;
}
.detail-strip strong {
  margin-bottom: 8px;
  font-size: 14px;
}
.detail-strip span {
  color: var(--quiet);
  font-size: 13px;
}
.detail-related {
  width: var(--page);
  margin: 0 auto 110px;
  padding-top: 38px;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.detail-related h2 {
  font-size: 28px;
}
.detail-related__links {
  border-top: 1px solid var(--line);
}
.detail-related__links a {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.detail-related__links a::after {
  content: "→";
}
.article-grid {
  width: var(--page);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.article-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article-card__body {
  padding-top: 18px;
}
.article-card__body p {
  color: var(--quiet);
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.faq-item button svg {
  width: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}
.faq-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-width: 700px;
  padding: 0 0 25px;
  color: var(--quiet);
}
