:root {
  --green: #004225;
  --green-deep: #002e19;
  --green-tint: #cfdfd2;
  --green-pale: #e6eee7;
  --cream: #f5f1e6;

  --line: rgba(0, 66, 37, 0.22);
  --line-light: rgba(245, 241, 230, 0.3);
  --soft: rgba(0, 66, 37, 0.72);
  --soft-light: rgba(245, 241, 230, 0.78);

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --shell-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  --section-y: clamp(5.5rem, 9vw, 9rem);
  --gap-section: clamp(2rem, 5vw, 4rem);
  --header-h: 88px;

  --text-xs: 0.9rem;
  --text-sm: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.35rem;
  --label-size: 0.82rem;
  --label-tracking: 0.16em;
  --display-tracking: -0.01em;
  --measure-narrow: 36rem;
  --measure-wide: 42rem;

  --serif: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--green);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
}

h3 {
  line-height: 1.2;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--cream);
  background: var(--green);
  transform: translateY(-110%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-h);
  padding: 0 var(--shell-inline);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 58px;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 1.05rem;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 52px;
  padding: 0.7rem 1.15rem;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--green);
  font-size: 1.02rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.page {
  display: none;
  animation: reveal 300ms ease;
}

.page.is-active {
  display: block;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  min-height: calc(100vh - var(--header-h));
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem) var(--shell-inline);
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin-bottom: 1.25rem;
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--soft-light);
}

.hero-intro {
  max-width: var(--measure-wide);
  margin-bottom: 2rem;
  color: var(--soft);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--cream);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-deep);
}

.button-text {
  gap: 0.6rem;
  min-height: 44px;
  padding-right: 0;
  padding-left: 0;
}

.button-outline {
  color: var(--green);
  border: 1px solid var(--green);
}

.button-outline:hover {
  color: var(--cream);
  background: var(--green);
}

.button-light {
  color: var(--green);
  background: var(--cream);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--cream);
  background: var(--green);
}

.visual-kicker {
  position: absolute;
  top: clamp(1.5rem, 5vw, 3.5rem);
  left: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 2;
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.building-lines {
  position: absolute;
  inset: 16% 8% 0;
  border: 1px solid var(--line-light);
  border-bottom: 0;
}

.building-lines::before,
.building-lines::after {
  position: absolute;
  inset: 0 auto 0 33.33%;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.building-lines::after {
  left: 66.66%;
}

.building-lines span {
  display: block;
  height: 14.28%;
  border-bottom: 1px solid var(--line-light);
}

.metric {
  position: absolute;
  z-index: 2;
  display: grid;
  width: min(72%, 310px);
  padding: 1rem 1.15rem;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  color: var(--green);
  background: var(--cream);
  font-weight: 700;
}

.metric-one {
  top: 28%;
  left: 12%;
}

.metric-two {
  top: 48%;
  right: 8%;
}

.metric-three {
  right: 17%;
  bottom: 14%;
}

.metric-number {
  font-size: 1.75rem;
}

.proof-strip {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--shell-inline);
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 120px;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.proof-strip span {
  color: var(--soft);
  font-size: var(--text-sm);
}

.section,
.page-hero {
  max-width: none;
  margin: 0;
  padding: var(--section-y) var(--shell-inline);
}

.page-hero {
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.intro-section {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--gap-section);
  align-items: start;
}

.intro-grid h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.intro-grid p {
  max-width: var(--measure-wide);
  color: var(--soft);
}

.intro-grid .lead {
  color: var(--green);
  font-size: var(--text-lg);
}

.services-preview {
  background: var(--green-pale);
}

.section-heading {
  display: flex;
  margin-bottom: 2.75rem;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading h2 {
  max-width: var(--measure-wide);
  margin-bottom: 0;
}

.text-link {
  flex: 0 0 auto;
  max-width: 18rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.text-link.light {
  color: var(--cream);
}

.region-copy .text-link {
  display: inline-block;
  margin-top: 1.75rem;
}

.provider-line {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  max-width: var(--measure-wide);
  color: var(--cream);
  font-size: var(--text-md);
  line-height: 1.35;
}

.provider-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.provider-logo img {
  display: block;
  height: 2.6rem;
  width: auto;
  margin: 0;
}

.provider-logo:hover,
.provider-logo:focus-visible {
  opacity: 0.82;
}

.credential-note .provider-line {
  margin-top: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--green);
  border-left: 1px solid var(--green);
}

.service-card {
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}

.service-card.featured {
  color: var(--cream);
  background: var(--green);
}

.service-number,
.detail-number {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card h3 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.service-card p {
  max-width: var(--measure-narrow);
  margin-bottom: 0;
  color: var(--soft);
}

.service-card.featured p {
  color: var(--soft-light);
}

.regional-section {
  display: grid;
  color: var(--cream);
  background: var(--green-deep);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--gap-section);
  align-items: center;
}

.region-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.7rem;
}

.region-copy > p:not(.eyebrow):not(.provider-line) {
  max-width: var(--measure-wide);
  margin-bottom: 0;
  color: var(--soft-light);
}

.region-list {
  border-top: 1px solid var(--line-light);
}

.region-list article,
.office-list article {
  display: grid;
  padding: 1.75rem 0;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line-light);
}

.region-code {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--green);
  background: var(--green-tint);
  font-size: 1.15rem;
  font-weight: 700;
  place-items: center;
}

.region-list h3,
.office-list h2 {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
  letter-spacing: var(--display-tracking);
}

.credential-gallery {
  display: grid;
  grid-column: 1 / -1;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  align-items: start;
}

.credential-gallery figure {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.credential-gallery .badge-plate {
  display: grid;
  width: 100%;
  min-height: 148px;
  padding: 0.9rem 0.7rem;
  background: var(--cream);
  place-items: center;
}

.credential-gallery img {
  display: block;
  width: auto;
  max-width: 118px;
  height: auto;
  max-height: 118px;
  object-fit: contain;
}

.credential-gallery .is-wordmark img {
  max-width: 132px;
  max-height: 52px;
}

.credential-gallery figcaption {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.credential-gallery figcaption span {
  display: block;
  margin-top: 0.15rem;
  color: var(--soft-light);
  font-size: 0.8rem;
  font-weight: 400;
}

.team-preview {
  display: grid;
  background: var(--green-tint);
  grid-template-columns: 1fr 0.9fr;
  gap: var(--gap-section);
  align-items: center;
}

.team-preview-copy h2 {
  max-width: 18ch;
}

.team-preview-copy p:not(.eyebrow) {
  max-width: var(--measure-wide);
  color: var(--soft);
}

.team-preview-copy .button {
  margin-top: 0.5rem;
}

.team-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.team-stack > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 6px solid var(--green-tint);
}

.team-stack > :nth-child(2) {
  transform: translateY(-1.5rem);
}

.contact-band {
  display: flex;
  min-height: 280px;
  padding: clamp(3.5rem, 6vw, 5rem) var(--shell-inline);
  color: var(--cream);
  background: var(--green);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-band h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero > p:last-child {
  max-width: var(--measure-wide);
  margin-bottom: 0;
  color: var(--soft);
  font-size: var(--text-lg);
}

.service-detail-list {
  padding-top: 0;
}

.service-detail-list article {
  display: grid;
  padding: 2.75rem 0;
  grid-template-columns: 72px 1.1fr 0.9fr;
  gap: var(--gap-section);
  border-top: 1px solid var(--green);
}

.service-detail-list article:last-child {
  border-bottom: 1px solid var(--green);
}

.service-detail-list h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.service-detail-list p {
  max-width: var(--measure-wide);
  margin-bottom: 0;
  color: var(--soft);
}

.service-detail-list ul {
  padding-left: 1.2rem;
  margin: 0;
}

.service-detail-list li {
  margin-bottom: 0.5rem;
}

.program-map {
  display: grid;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--cream);
  background: var(--green);
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

.program-map h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.program-map .provider-line {
  margin-top: 0.7rem;
}

.program-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.program-columns article {
  padding: 1.25rem 1.35rem 1.35rem;
  color: var(--green);
  background: var(--cream);
}

.program-columns h3 {
  padding-bottom: 0.65rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.program-columns ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.program-columns li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}

.program-columns li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.team-list {
  padding-top: 0;
}

.person {
  display: grid;
  padding: 3.5rem 0;
  grid-template-columns: 0.72fr 1.28fr;
  gap: var(--gap-section);
  border-top: 1px solid var(--green);
  align-items: center;
}

.person-image {
  min-height: 480px;
  background: var(--green-pale);
}

.person-image > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.person-role {
  margin-bottom: 0.85rem;
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.person h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.person-copy > p:not(.person-role):not(.person-credentials) {
  max-width: var(--measure-wide);
  color: var(--soft);
  font-size: var(--text-md);
}

.credential-badges {
  display: flex;
  padding: 0;
  margin: 1.35rem 0 0;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  list-style: none;
  align-items: flex-end;
}

.credential-badges figure {
  display: grid;
  margin: 0;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
}

.credential-badges img {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
}

.credential-badges .is-wordmark img {
  width: 108px;
}

.credential-badges figcaption {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.person-focus {
  display: flex;
  padding: 0;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.person-focus li {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.person-credentials {
  margin: 1.25rem 0 0;
  color: var(--green);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.credential-note {
  display: grid;
  color: var(--cream);
  background: var(--green-deep);
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-section);
  align-items: end;
}

.credential-note h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.credential-note-lead {
  margin-bottom: 0;
  max-width: 42ch;
  color: var(--soft-light);
  font-size: var(--text-md);
}

.contact-layout {
  display: grid;
  padding-top: 0;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--gap-section);
}

.contact-primary {
  padding: 2.5rem 0;
  border-top: 1px solid var(--green);
}

.contact-primary > a:not(.button) {
  display: block;
  width: fit-content;
  text-decoration: none;
}

.contact-email {
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
}

.contact-phone {
  margin-bottom: 1.75rem;
  font-size: var(--text-lg);
  font-weight: 700;
}

.contact-primary > p:not(.eyebrow) {
  max-width: var(--measure-wide);
  margin-bottom: 1.75rem;
  color: var(--soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-top: 0.5rem;
}

.contact-form .form-row {
  display: grid;
  gap: 0.35rem;
}

.contact-form label {
  font-size: var(--label-size);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-form .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--green-pale);
  color: var(--green);
  font: inherit;
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.contact-form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  margin: 0;
  font-size: var(--text-sm);
}

.contact-status.is-pending {
  color: var(--soft);
}

.contact-status.is-success {
  color: var(--green);
  font-weight: 700;
}

.contact-status.is-error {
  color: #8a1c1c;
  font-weight: 700;
}

.office-list {
  border-top: 1px solid var(--green);
}

.office-list article {
  border-bottom: 1px solid var(--line);
  min-height: 7.5rem;
}

.office-list address {
  color: var(--soft);
  font-style: normal;
}

.site-footer {
  display: grid;
  padding: clamp(3rem, 5vw, 4rem) var(--shell-inline);
  color: var(--cream);
  background: var(--green-deep);
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1.25fr 0.7fr 0.85fr 0.85fr 0.55fr;
  gap: 2rem;
}

.footer-logo {
  width: auto;
  height: 78px;
  margin-bottom: 0.9rem;
}

.footer-company,
.footer-tagline {
  display: block;
  font-size: 0.95rem;
}

.footer-company {
  margin-bottom: 0.2rem;
  color: var(--cream);
  font-weight: 700;
}

.footer-tagline {
  color: var(--soft-light);
}

.footer-contact a {
  display: block;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-office {
  color: var(--soft-light);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-office strong,
.footer-office span {
  display: block;
}

.footer-office strong {
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.footer-meta {
  color: var(--soft-light);
  font-size: 0.95rem;
  text-align: right;
}

.footer-copy,
.footer-copy #year {
  display: inline;
  white-space: nowrap;
}

@media (max-width: 980px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .brand-logo {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: none;
    padding: 1.2rem var(--shell-inline) 2rem;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.6rem 0;
  }

  .site-nav .nav-cta {
    padding: 0.8rem 1rem;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 0;
    padding: 4.5rem var(--shell-inline) 3.5rem;
  }

  .hero-visual {
    min-height: 480px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .service-grid,
  .regional-section,
  .team-preview,
  .program-map,
  .credential-note,
  .contact-layout,
  .person {
    grid-template-columns: 1fr;
  }

  .credential-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-detail-list article {
    grid-template-columns: 55px 1fr;
  }

  .service-detail-list article > ul {
    grid-column: 2;
  }

  .person-image,
  .person-image > img {
    min-height: 420px;
    height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-copy {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .metric {
    width: 82%;
  }

  .proof-strip,
  .program-columns,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    max-width: none;
  }

  .service-card {
    min-height: 0;
  }

  .team-stack > :nth-child(2) {
    transform: none;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-detail-list article > ul {
    grid-column: auto;
  }

  .detail-number {
    margin-bottom: 0.75rem;
  }

  .person-image,
  .person-image > img {
    min-height: 360px;
    height: 360px;
  }

  .credential-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
