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

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

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

:root {
  --ivory: #f5f3ed;
  --ivory-deep: #ebe7df;
  --charcoal: #242c2b;
  --charcoal-soft: #46504d;
  --rust: #9f462f;
  --rust-deep: #803724;
  --sand: #d6d0c4;
  --white: #fffdf8;
  --focus-color: var(--rust);
  --shell: min(100% - 3rem, 1440px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  color: var(--charcoal);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

figure,
h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 5px;
}

.hero-media__note,
.geography,
.contact-cta,
.site-footer {
  --focus-color: var(--ivory);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--charcoal);
  color: var(--ivory);
  clip-path: inset(50%);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  clip-path: none;
  transform: translateY(0);
}

.eyebrow,
.panel-index,
.image-caption,
.service-index__number,
.hero-media__meta,
.site-footer__bottom,
.menu-toggle__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--charcoal-soft);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--sand);
  background: var(--ivory);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 6.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
}

.brand__name {
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.brand__descriptor {
  padding-left: 0.8rem;
  border-left: 1px solid var(--charcoal);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.22;
  text-transform: uppercase;
}

.brand__descriptor span {
  color: var(--rust);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 3.25rem);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-nav > a:not(.site-nav__cta),
.site-nav__top-link {
  position: relative;
}

.site-nav > a:not(.site-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--rust);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:not(.site-nav__cta):hover::after,
.site-nav > a:not(.site-nav__cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 1rem 0.82rem 1.1rem;
  background: var(--charcoal);
  color: var(--ivory);
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav__cta span,
.text-link span,
.service-index__arrow,
.service-list a span,
.office-chooser__action span,
.contact-link span,
.site-footer__top-link span {
  display: inline-block;
  transition: transform 180ms var(--ease);
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--rust);
}

.site-nav__cta:hover span,
.site-nav__cta:focus-visible span,
.text-link:hover span,
.text-link:focus-visible span,
.service-index a:hover .service-index__arrow,
.service-index a:focus-visible .service-index__arrow,
.service-list a:hover span,
.service-list a:focus-visible span,
.office-chooser a:hover .office-chooser__action span,
.office-chooser a:focus-visible .office-chooser__action span,
.contact-link:hover span,
.contact-link:focus-visible span,
.site-footer__top-link:hover span,
.site-footer__top-link:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
}

.menu-toggle__lines {
  display: grid;
  gap: 0.28rem;
  width: 1.35rem;
}

.menu-toggle__lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.hero {
  padding-block: clamp(4.75rem, 7.5vw, 7rem) clamp(4rem, 8vw, 7.5rem);
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(16rem, 0.6fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6.5rem);
}

.hero__title {
  max-width: 14ch;
  margin-top: 1.5rem;
  font-size: clamp(4.25rem, 8.8vw, 9.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  color: var(--rust);
}

.hero__descriptor {
  max-width: 21rem;
  padding: 0.2rem 0 0.25rem 1.5rem;
  border-left: 1px solid var(--sand);
}

.hero__lede {
  margin-block: 1.4rem 1.55rem;
  color: var(--charcoal-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.38;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.35rem;
  font-size: 0.77rem;
  font-weight: 600;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 2.45fr) minmax(16rem, 1fr);
  min-height: clamp(28rem, 49vw, 47rem);
}

.hero-media__photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--ivory-deep);
}

.hero-media__photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 64% 45%;
  transition: transform 800ms var(--ease);
}

.hero-media__photo:hover img {
  transform: scale(1.025);
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 15rem;
  padding: 0.45rem 0.6rem;
  background: rgba(36, 44, 43, 0.82);
  color: var(--ivory);
}

.hero-media__note {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 4vw, 4.25rem);
  background: var(--rust);
  color: var(--ivory);
}

.round-arrow {
  display: grid;
  width: clamp(3.4rem, 5vw, 5rem);
  height: clamp(3.4rem, 5vw, 5rem);
  place-items: center;
  border: 1px solid rgba(245, 243, 237, 0.75);
  border-radius: 50%;
  font-size: 1.35rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.round-arrow:hover,
.round-arrow:focus-visible {
  background: var(--ivory);
  color: var(--rust);
  transform: rotate(7deg);
}

.hero-media__statement {
  max-width: 9ch;
  font-size: clamp(2rem, 3.65vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-media__meta {
  opacity: 0.82;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.service-index a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0.75rem 1.2rem;
  border-right: 1px solid var(--sand);
  font-size: 0.91rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.service-index a:first-child {
  padding-left: 0;
}

.service-index a:last-child {
  border-right: 0;
  padding-right: 0;
}

.service-index a:hover,
.service-index a:focus-visible {
  background: var(--ivory-deep);
}

.service-index__number {
  color: var(--rust);
}

.service-index__arrow {
  font-size: 1.1rem;
}

.pathways {
  padding-block: clamp(6rem, 12vw, 12rem);
}

.pathways__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.75rem);
}

.pathways h2,
.approach h2,
.geography h2,
.contact-cta h2 {
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pathways h2 {
  max-width: 12ch;
  margin-top: 1.35rem;
}

.pathways__choice {
  max-width: 22rem;
  justify-self: end;
}

.small-copy {
  max-width: 19rem;
  margin-bottom: 1.65rem;
  color: var(--charcoal-soft);
  font-size: 0.91rem;
}

.audience-tabs {
  display: flex;
  gap: 1.65rem;
  border-bottom: 1px solid var(--sand);
}

.audience-tab {
  position: relative;
  min-height: 44px;
  padding: 0 0 0.8rem;
  border: 0;
  background: transparent;
  color: var(--charcoal-soft);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--rust);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.audience-tab.is-active {
  color: var(--charcoal);
}

.audience-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pathway-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: clamp(32rem, 49vw, 45rem);
  border-top: 1px solid var(--sand);
}

.pathway-panel[hidden] {
  display: none;
}

.pathway-panel__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4.2rem) clamp(1.5rem, 4vw, 4.2rem) 0 0;
}

.panel-index {
  color: var(--rust);
}

.pathway-panel h3 {
  margin-top: 2.6rem;
  font-size: clamp(2.75rem, 4.65vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.panel-lede {
  max-width: 27rem;
  margin-top: 2rem;
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.45;
}

.service-list {
  margin-top: auto;
  padding: 2.25rem 0 0;
  list-style: none;
}

.service-list li {
  border-top: 1px solid var(--sand);
}

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

.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-list a span {
  color: var(--rust);
  font-size: 1rem;
}

.pathway-panel__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--ivory-deep);
}

.pathway-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 68% 47%;
  transition: transform 800ms var(--ease);
}

.pathway-panel__image:hover img {
  transform: scale(1.025);
}

.pathway-panel[data-panel="personal"] .pathway-panel__image img {
  object-position: 67% 45%;
}

.approach {
  padding-block: clamp(6rem, 10vw, 10rem);
  background: var(--ivory-deep);
}

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.approach h2 {
  max-width: 10ch;
  margin-top: 1.35rem;
}

.approach h2 span,
.geography h2 span,
.contact-cta h2 span {
  color: var(--rust);
}

.approach__detail {
  padding-top: 2.1rem;
}

.approach__lede {
  max-width: 31rem;
  color: var(--charcoal-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
  line-height: 1.4;
}

.approach-list {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: 0;
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--sand);
}

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

.approach-list span {
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.approach-list p {
  font-size: 0.95rem;
}

.geography {
  position: relative;
  min-height: clamp(44rem, 70vw, 64rem);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.geography__image,
.geography__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.geography__image {
  object-fit: cover;
  object-position: center 54%;
}

.geography__veil {
  background:
    linear-gradient(180deg, rgba(22, 34, 38, 0.78) 0%, rgba(22, 34, 38, 0.28) 43%, rgba(22, 34, 38, 0.86) 100%),
    linear-gradient(90deg, rgba(22, 34, 38, 0.54) 0%, rgba(22, 34, 38, 0) 68%);
}

.geography__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(44rem, 70vw, 64rem);
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 5rem);
}

.geography .eyebrow {
  color: rgba(245, 243, 237, 0.74);
}

.geography h2 {
  max-width: 13ch;
  margin-top: 1.45rem;
  font-size: clamp(4rem, 9.25vw, 10rem);
}

.geography h2 span {
  color: var(--ivory);
}

.office-chooser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245, 243, 237, 0.55);
}

.office-chooser a {
  display: flex;
  min-height: 7.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.9rem;
  border-right: 1px solid rgba(245, 243, 237, 0.55);
  transition: background 180ms ease, color 180ms ease;
}

.office-chooser a:first-child {
  padding-left: 0;
}

.office-chooser a:last-child {
  border-right: 0;
  padding-right: 0;
}

.office-chooser a:hover,
.office-chooser a:focus-visible {
  background: rgba(245, 243, 237, 0.12);
}

.office-chooser__name {
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.office-chooser__action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(245, 243, 237, 0.78);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geography__caption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.2rem;
  color: rgba(245, 243, 237, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background: var(--rust);
  color: var(--ivory);
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}

.contact-cta .eyebrow {
  color: rgba(245, 243, 237, 0.72);
}

.contact-cta h2 {
  max-width: 13ch;
  margin-top: 1.4rem;
  font-size: clamp(3.75rem, 7.2vw, 8rem);
}

.contact-cta h2 span {
  color: var(--ivory);
}

.contact-cta__details {
  max-width: 22rem;
  padding-bottom: 0.4rem;
}

.contact-cta__details > p {
  max-width: 20rem;
  color: rgba(245, 243, 237, 0.8);
  font-size: 1.03rem;
  line-height: 1.42;
}

.contact-links {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(245, 243, 237, 0.55);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 243, 237, 0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link--phone {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 10rem;
}

.brand--footer .brand__descriptor {
  border-color: var(--ivory);
}

.site-footer__line {
  max-width: 16rem;
  color: rgba(245, 243, 237, 0.7);
  font-size: 0.83rem;
}

.site-footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem 1.6rem;
  border-top: 1px solid rgba(245, 243, 237, 0.18);
  color: rgba(245, 243, 237, 0.6);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: none;
}

.site-footer__bottom p:last-child {
  max-width: 53rem;
  text-align: right;
}

.site-footer a {
  transition: color 180ms ease;
}

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 2.25rem, 1440px);
  }

  .site-header__inner {
    min-height: 5.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 1rem max(1rem, calc((100vw - 1440px) / 2)) 1.25rem;
    border-bottom: 1px solid var(--sand);
    background: var(--ivory);
    box-shadow: 0 1rem 2rem rgba(36, 44, 43, 0.08);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav > a:not(.site-nav__cta) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--sand);
    font-size: 0.9rem;
  }

  .site-nav > a:not(.site-nav__cta)::after {
    display: none;
  }

  .site-nav__cta {
    justify-content: space-between;
    margin-top: 1rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(0.19rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-0.19rem) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    gap: 0;
  }

  .hero__intro,
  .pathways__intro,
  .approach__grid,
  .contact-cta__grid {
    grid-template-columns: 1fr;
  }

  .hero__descriptor {
    max-width: 25rem;
    justify-self: end;
  }

  .pathways__choice {
    justify-self: start;
  }

  .approach__detail {
    padding-top: 0;
  }

  .contact-cta__details {
    max-width: 27rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top-link {
    justify-self: end;
  }

  .site-footer__line {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 2rem, 1440px);
  }

  .brand__name {
    font-size: 1.5rem;
  }

  .brand__descriptor {
    font-size: 0.5rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__intro {
    gap: 3rem;
    margin-bottom: 3.2rem;
  }

  .hero__title {
    margin-top: 1rem;
    font-size: clamp(3.75rem, 16vw, 6rem);
    line-height: 0.87;
  }

  .hero__descriptor {
    justify-self: stretch;
    padding-left: 1rem;
  }

  .hero-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media__photo {
    aspect-ratio: 1 / 1.08;
    min-height: auto;
  }

  .hero-media__photo img {
    min-height: auto;
  }

  .hero-media__note {
    min-height: 21rem;
  }

  .hero-media__statement {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

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

  .service-index a,
  .service-index a:first-child,
  .service-index a:last-child {
    min-height: 4.15rem;
    padding: 0.65rem 0.7rem;
  }

  .service-index a:nth-child(2) {
    border-right: 0;
  }

  .service-index a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--sand);
  }

  .service-index a:nth-child(3) {
    border-right: 1px solid var(--sand);
  }

  .service-index__number {
    font-size: 0.59rem;
  }

  .pathways,
  .approach {
    padding-block: 5.75rem;
  }

  .pathways h2,
  .approach h2,
  .contact-cta h2 {
    font-size: clamp(3.15rem, 14vw, 5.5rem);
  }

  .pathways__intro {
    gap: 3rem;
    margin-bottom: 3.1rem;
  }

  .pathway-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pathway-panel__copy {
    min-height: 36rem;
    padding: 2rem 0 0;
  }

  .pathway-panel h3 {
    margin-top: 2rem;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .pathway-panel__image {
    aspect-ratio: 1 / 1.07;
    min-height: auto;
  }

  .pathway-panel__image img {
    min-height: auto;
  }

  .approach__grid {
    gap: 3rem;
  }

  .approach-list {
    margin-top: 3.5rem;
  }

  .geography,
  .geography__content {
    min-height: 48rem;
  }

  .geography__content {
    padding-block: 4rem 6rem;
  }

  .geography h2 {
    font-size: clamp(3.85rem, 16vw, 6rem);
  }

  .geography__image {
    object-position: 52% center;
  }

  .office-chooser {
    grid-template-columns: 1fr;
  }

  .office-chooser a,
  .office-chooser a:first-child,
  .office-chooser a:last-child {
    min-height: 5.4rem;
    padding: 0.8rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 243, 237, 0.55);
  }

  .office-chooser a:last-child {
    border-bottom: 0;
  }

  .office-chooser__name {
    font-size: 1.55rem;
  }

  .geography__caption {
    right: 1rem;
    bottom: 0.75rem;
    left: 1rem;
    font-size: 0.55rem;
  }

  .contact-cta {
    padding-block: 5.75rem;
  }

  .contact-cta__grid {
    gap: 3rem;
  }

  .site-footer__top {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 3rem 2.25rem;
  }

  .site-footer__line {
    order: 3;
    flex-basis: 100%;
  }

  .site-footer__bottom {
    display: grid;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
