@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("assets/montserrat-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("assets/montserrat-bold.woff2") format("woff2");
}

:root {
  --ink: #1e1f26;
  --muted: #62666b;
  --line: #dde3e0;
  --surface: #f5f7f6;
  --white: #ffffff;
  --teal: #a1cebc;
  --teal-dark: #356f61;
  --mint: #dfeee8;
  --coral: #b9614f;
  --gold: #a98643;
  --shadow: 0 20px 70px rgba(12, 43, 46, 0.16);
  --radius: 8px;
  --max: 1280px;
  --layout-gap: 48px;
  --page-gutter: max(20px, calc((100vw - var(--max)) / 2));
  --type-page-title: 4.75rem;
  --type-section-title: 3.2rem;
  --type-component-title: 1.2rem;
  --type-body: 1rem;
  --type-body-large: 1.125rem;
  --leading-body: 1.7;
  --section-space: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Montserrat, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--page-gutter);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(8, 45, 48, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(138px, 16vw, 190px);
  flex: 0 0 auto;
}

.site-header:not(.is-scrolled):not(.is-open) .brand img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--teal-dark);
}

.site-header:not(.is-scrolled):not(.is-open) .site-nav a.is-active {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 148px var(--page-gutter) 86px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 37, 40, 0.84), rgba(7, 37, 40, 0.52) 45%, rgba(7, 37, 40, 0.16)),
    linear-gradient(0deg, rgba(7, 37, 40, 0.38), transparent 46%);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

@media (min-width: 921px) {
  .hero-content,
  .hero h1 {
    max-width: 1050px;
  }

  .hero h1 {
    font-size: 5.25rem;
  }
}

/* 2026 visual refinement: calm hierarchy, readable mobile copy and subtle motion. */
h1,
h2,
h3,
legend {
  text-wrap: balance;
}

.section-copy h2,
.vision-heading h2,
.section-heading h2,
.team-heading h2,
.career-teaser h2,
.contact-copy h2 {
  max-width: 16ch;
}

.section-copy h2,
.career-teaser h2,
.contact-copy h2 {
  font-size: 2.8rem;
}

.hero-actions .button {
  min-width: 238px;
}

.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-revealed {
  transform: translateY(0);
}

.intro-item {
  position: relative;
  transition: background-color 320ms ease;
}

.intro-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
  height: 2px;
  background: var(--teal-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(.22, .8, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.intro-item.is-revealed::before {
  transform: scaleX(1);
}

.motion-ready .hero-content > * {
  opacity: 1;
  animation: hero-content-in 360ms cubic-bezier(.22, .8, .3, 1) forwards;
}

.motion-ready .hero-content > :nth-child(1) { animation-delay: 30ms; }
.motion-ready .hero-content > :nth-child(2) { animation-delay: 55ms; }
.motion-ready .hero-content > :nth-child(3) { animation-delay: 80ms; }
.motion-ready .hero-content > :nth-child(4) { animation-delay: 105ms; }
.motion-ready .hero-content > :nth-child(5) { animation-delay: 130ms; }

@keyframes hero-content-in {
  from { transform: translateY(14px); }
  to { transform: translateY(0); }
}

@keyframes check-step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.succession-step.is-step-entering,
.succession-result.is-step-entering {
  animation: check-step-in 260ms cubic-bezier(.22, .8, .3, 1) both;
}

@media (min-width: 921px) {
  .vision-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }

  .vision-heading h2 {
    max-width: 19ch;
  }
}

/* High-specificity public refinements remain stable across legacy cascade layers. */
body .section-copy h2,
body .career-teaser h2,
body .contact-copy h2 {
  max-width: none;
  font-size: 2.8rem;
  text-wrap: pretty;
}

@media (min-width: 921px) {
  body .vision-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }

  body .vision-heading h2 {
    max-width: 19ch;
  }
}

@media (max-width: 620px) {
  body main p:not(.eyebrow),
  body main li,
  body .intro-item span,
  body .job-dialog p:not(.eyebrow),
  body .job-dialog li,
  body .consent-panel > p:not(.eyebrow),
  body .consent-compact > .consent-compact-copy > p:not(.eyebrow) {
    text-align: left;
    text-align-last: auto;
    text-justify: auto;
    word-spacing: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  body .section-copy h2,
  body .vision-heading h2,
  body .section-heading h2,
  body .team-heading h2,
  body .career-teaser h2,
  body .contact-copy h2 {
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.08;
    text-wrap: balance;
  }

  body .vision-heading h2 {
    font-size: 1.82rem;
  }

  body .hero h1 {
    max-width: none;
    font-size: 2.1rem;
    line-height: 1.02;
  }

  body .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  body .hero-actions {
    display: grid;
    gap: 10px;
  }

  body .hero-actions .button {
    min-width: 0;
  }

  body .succession-check[open] {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  body .succession-check-panel {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: max(18px, env(safe-area-inset-top)) 20px max(18px, env(safe-area-inset-bottom));
  }

  body .succession-check-form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  body .succession-step,
  body .succession-result {
    flex: 1;
  }

  body .succession-check-actions {
    bottom: calc(-1 * max(18px, env(safe-area-inset-bottom)));
    margin-bottom: calc(-1 * max(18px, env(safe-area-inset-bottom)));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  body .succession-check-actions [data-succession-back][hidden] + [data-succession-next],
  body .succession-check-actions [data-succession-transfer] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 350px) {
  body .hero h1 {
    font-size: 1.95rem;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-ready .hero-content > * {
    opacity: 1;
    animation: none;
  }

  .hero-media {
    transform: none !important;
  }

  .vision-figure img {
    transform: none !important;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 6.25rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-claim {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-claim li {
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.46);
}

.hero-claim li:first-child {
  padding-left: 0;
}

.hero-claim li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.dialog-open {
  overflow: hidden;
}

.succession-check {
  width: min(760px, calc(100% - 40px));
  max-height: min(820px, calc(100svh - 40px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.succession-check::backdrop {
  background: rgba(7, 31, 34, 0.7);
  backdrop-filter: blur(5px);
}

.succession-check [hidden] {
  display: none !important;
}

.succession-check-panel {
  padding: 34px;
}

.succession-check-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.succession-check-header h2 {
  font-size: 2.35rem;
}

.succession-check-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.succession-check-close:hover,
.succession-check-close:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.succession-progress {
  display: grid;
  gap: 8px;
  margin: 28px 0 34px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 750;
}

.succession-progress > div {
  height: 3px;
  overflow: hidden;
  background: var(--line);
}

.succession-progress i {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--teal-dark);
  transition: width 180ms ease;
}

.succession-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.succession-step legend {
  max-width: 650px;
  padding: 0;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
}

.succession-step > p,
.succession-result > p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 24px;
  color: var(--muted);
  text-align: left;
  hyphens: auto;
}

.succession-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.succession-options label {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.succession-options label:has(input:checked) {
  background: #e6f0ec;
  border-color: var(--teal-dark);
}

.succession-options input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--teal-dark);
}

.succession-options span {
  font-size: 0.9rem;
  font-weight: 700;
}

.succession-location {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
}

.succession-practice-name {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.succession-practice-name > span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.succession-practice-name input {
  min-height: 3.25rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 1rem;
}

.succession-location label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.succession-location input {
  width: 100%;
  min-height: 52px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.succession-number-field {
  max-width: 460px;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.succession-number-field > span:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.succession-number-field input {
  width: 100%;
  min-height: 52px;
  padding: 11px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
}

.succession-number-field i {
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
}

.succession-number-field > span:last-child:focus-within {
  border-color: var(--teal-dark);
  outline: 2px solid rgba(53, 111, 97, 0.2);
  outline-offset: 1px;
}

.succession-number-field input:focus {
  outline: 0;
}

.succession-practice-name input:focus,
.succession-location input:focus,
.succession-options input:focus-visible {
  outline: 2px solid rgba(53, 111, 97, 0.28);
  outline-offset: 2px;
}

.succession-result h3 {
  font-size: 1.55rem;
}

.succession-result dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.succession-result-note {
  margin: 18px 0 0 !important;
  font-size: 0.72rem;
  line-height: 1.55;
}

.succession-contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.succession-contact h4 {
  margin: 0;
  font-size: 1.05rem;
}

.succession-contact > p {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.succession-contact textarea {
  height: 112px;
  min-height: 112px;
}

.succession-summary {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.succession-summary summary {
  cursor: pointer;
  padding: 14px 0;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.succession-summary dl {
  margin-top: 0;
}

.succession-result dl > div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.succession-result dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.succession-result dd {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.succession-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #9c3737;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
}

.succession-check-actions {
  position: sticky;
  z-index: 2;
  bottom: -34px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 34px 34px;
  margin: 0 -34px -34px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.succession-check-actions .succession-back {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 37, 40, 0.14);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

a.button.primary::after,
.text-link::after {
  content: "→";
  display: inline-block;
  margin-left: 9px;
  transition: transform 180ms ease;
}

a.button.primary:hover::after,
a.button.primary:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--ink);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.hero-check-button {
  color: var(--white);
  background: rgba(7, 37, 40, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero-check-button:hover,
.hero-check-button:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.intro {
  width: min(calc(100% - 40px), var(--max));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-item {
  min-height: 145px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.intro-item span {
  display: block;
  color: var(--muted);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: stretch;
}

.split > *,
.vision-heading > *,
.vision-story > *,
.process-heading > *,
.team-heading > *,
.team-support > *,
.career-teaser-inner > *,
.contact-inner > * {
  min-width: 0;
}

.section-copy p,
.section-heading p,
.image-band p,
.careers p,
.contact-copy p,
.person-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-copy p:not(.eyebrow) {
  margin: 24px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-grid article {
  display: grid;
  grid-template-columns: 36px minmax(150px, .62fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 220ms ease, padding 220ms ease, transform 220ms ease;
}

.feature-grid article:hover,
.feature-grid article:focus-within {
  padding-inline: 12px;
  background: rgba(161, 206, 188, 0.1);
  transform: translateX(4px);
}

.feature-grid span {
  display: block;
  margin: 2px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.feature-grid h3 {
  margin: 0;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.vision-section {
  padding: clamp(76px, 9vw, 128px) 20px;
  background: var(--white);
}

.vision-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.vision-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: end;
  margin-bottom: 58px;
}

.vision-heading h2 {
  max-width: 760px;
  font-size: var(--type-section-title);
  line-height: 1.05;
}

.vision-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: center;
}

.vision-figure {
  margin: 0;
}

.vision-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  transform: translate3d(0, var(--vision-shift, 0), 0) scale(1.025);
  transition: transform 120ms linear;
}

.vision-figure figcaption {
  max-width: 520px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 0.82rem;
}

.vision-copy h3 {
  max-width: 520px;
  margin-top: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.vision-lead {
  max-width: 590px;
  padding: 5px 0 5px 24px;
  margin: 0 0 4px;
  border-left: 2px solid var(--teal-dark);
}

.vision-lead .eyebrow {
  margin-bottom: 12px;
}

.vision-lead > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.vision-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
}

.vision-promise {
  max-width: 560px;
  padding: 6px 0 6px 24px;
  margin: 32px 0 0;
  border-left: 3px solid var(--teal-dark);
}

.vision-promise p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.vision-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 38px 0 0;
  margin: 58px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.vision-paths li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  min-height: 170px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.vision-paths li:first-child {
  padding-left: 0;
}

.vision-paths li:last-child {
  padding-right: 0;
  border-right: 0;
}

.vision-paths span {
  color: var(--teal-dark);
  font-size: var(--type-body);
  font-weight: 800;
}

.vision-paths strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.vision-paths p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 44px;
}

.process-heading {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: end;
  margin-bottom: 64px;
}

.process-heading > div {
  grid-column: 1 / 3;
}

@media (min-width: 921px) {
  .process-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.process-heading > p {
  grid-column: 3 / 5;
  max-width: 650px;
  margin: 0 0 5px;
  justify-self: start;
}

.timeline {
  counter-reset: step;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--layout-gap);
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  border: 0;
  overflow: visible;
  --timeline-progress: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  z-index: 0;
  right: 0;
  width: auto;
  height: 2px;
  background: #b9cfc7;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  z-index: 0;
  width: calc(100% * var(--timeline-progress));
  height: 2px;
  background: var(--teal-dark);
  transform-origin: left;
}

.timeline li {
  counter-increment: step;
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 82px 0 0;
  background: transparent;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--white);
  border: 2px solid var(--teal-dark);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.timeline li.is-passed::before,
.timeline li.is-active::before {
  color: var(--white);
  background: var(--teal-dark);
}

.timeline li.is-active::before {
  box-shadow: 0 0 0 7px rgba(161, 206, 188, 0.28);
  transform: scale(1.06);
}

.timeline strong,
.timeline .process-phase {
  display: block;
}

.timeline .process-phase {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline p {
  max-width: 245px;
  margin: 13px 0 0;
  color: var(--muted);
}

.team-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: start;
  margin-bottom: 42px;
}

.team-heading h2 {
  max-width: 560px;
  font-size: var(--type-section-title);
}

.team-lead {
  max-width: 650px;
  padding: 0 0 0 24px;
  margin: 0;
  border-left: 2px solid var(--teal-dark);
}

.team-lead .eyebrow {
  margin-bottom: 14px;
}

.team-lead > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1.18fr);
  min-height: 340px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(.22, .8, .3, 1);
}

.person-card:hover,
.person-card:focus-within {
  border-color: rgba(53, 111, 97, 0.35);
  box-shadow: 0 18px 48px rgba(12, 43, 46, 0.11);
  transform: translateY(-4px);
}

.person-card:hover img,
.person-card:focus-within img {
  transform: scale(1.025);
}

.person-card h3,
.person-card .role {
  transition: color 180ms ease, transform 180ms ease;
}

.person-card:hover h3,
.person-card:focus-within h3,
.person-card:hover .role,
.person-card:focus-within .role {
  transform: translateX(2px);
}

.person-card div {
  padding: 30px;
}

.role {
  margin: 8px 0 18px;
  color: var(--teal-dark);
  font-weight: 760;
}

.team-support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: start;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.team-support .eyebrow { grid-column: 1; }
.team-support h3 { grid-column: 2; }
.team-support > p:last-child { grid-column: 3 / 5; }

.team-support .eyebrow,
.team-support p {
  margin: 0;
}

.team-support p:not(.eyebrow) {
  color: var(--muted);
}

.service-center {
  margin-top: clamp(42px, 5vw, 68px);
  padding-top: clamp(38px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.service-center-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: var(--layout-gap);
  align-items: end;
  margin-bottom: 32px;
}

.service-center-heading > * {
  min-width: 0;
}

.service-center-heading h3 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 2.5rem;
  line-height: 1.06;
}

.service-center-heading > p {
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
  border-left: 2px solid var(--teal-dark);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.service-center-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.service-center-grid article {
  min-width: 0;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.service-center-grid article:hover,
.service-center-grid article:focus-within {
  position: relative;
  z-index: 1;
  background: #f8fbfa;
  box-shadow: inset 0 3px 0 var(--teal-dark);
  transform: translateY(-2px);
}

.service-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.service-center-grid span {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--teal-dark);
  background: #edf4f1;
  border: 1px solid rgba(53, 111, 97, .2);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
}

.service-center-grid span::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 9px;
  height: 9px;
  background: var(--teal-dark);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.service-center-grid span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-center-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.3;
  text-wrap: balance;
}

.service-center-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
  hyphens: auto;
}

.service-center-outcome {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: baseline;
  margin: 0;
  padding: 24px 28px;
  color: var(--muted);
  background: #edf4f1;
  border-bottom: 1px solid rgba(53, 111, 97, .16);
  font-size: .92rem;
  line-height: 1.6;
}

.service-center-outcome strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

@media (max-width: 1179px) {
  .service-center-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .service-center-heading > p {
    max-width: 760px;
  }

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

@media (max-width: 620px) {
  .service-center {
    margin-top: 38px;
    padding-top: 34px;
  }

  .service-center-heading {
    gap: 22px;
    margin-bottom: 26px;
  }

  .service-center-heading h3 {
    font-size: 1.9rem;
  }

  .service-center-heading > p {
    padding-left: 18px;
    text-align: justify;
    hyphens: auto;
  }

  .service-center-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-center-grid article {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .service-center-grid span {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
  }

  .service-center-grid p {
    font-size: var(--type-body);
    text-align: justify;
  }

  .service-center-outcome {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 22px 20px;
  }
}

.locations-section {
  width: 100%;
  padding: clamp(48px, 4vw, 60px) var(--page-gutter) clamp(44px, 3.5vw, 54px);
  background: #edf4f1;
  border-top: 1px solid rgba(53, 111, 97, 0.12);
  border-bottom: 1px solid rgba(53, 111, 97, 0.12);
}

.locations-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  column-gap: clamp(36px, 4vw, 52px);
  row-gap: 32px;
  align-items: start;
}

.locations-copy,
.locations-map-shell {
  min-width: 0;
}

.locations-copy h2 {
  max-width: 530px;
  font-size: 2.5rem;
  line-height: 1.08;
}

.locations-copy h2 span {
  display: block;
  white-space: nowrap;
}

.locations-intro {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  text-align: left;
}

.locations-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 34px;
}

.locations-features article {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.locations-features article:last-child {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.locations-feature-mark {
  display: none;
}

.locations-features h3,
.locations-features p {
  margin: 0;
}

.locations-features h3 {
  font-size: var(--type-component-title);
  line-height: 1.3;
}

.locations-features p {
  margin-top: 7px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  text-align: left;
}

.locations-map-shell {
  width: min(100%, 680px);
  align-self: start;
  justify-self: end;
}

@media (min-width: 801px) {
  .locations-copy {
    align-self: start;
  }

  .locations-features {
    display: grid;
  }

  .locations-features article {
    min-height: auto;
  }

  .locations-features p {
    width: 100%;
    max-width: none;
  }

}

.locations-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

@media (min-width: 801px) {
  .locations-map-shell {
    align-self: start;
  }

  .locations-map {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.location-pin {
  pointer-events: none;
}

.location-pin-glyph {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 180ms ease;
}

.location-hit-target {
  fill: transparent;
  pointer-events: all;
}

.location-pin-shape {
  fill: var(--gold);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.5;
  transition: fill 180ms ease, stroke 180ms ease;
}

.location-pin-core {
  fill: var(--white);
}

.location-marker {
  cursor: pointer;
  outline: none;
}

.location-marker:hover .location-pin-glyph,
.location-marker:focus-visible .location-pin-glyph,
.location-marker.is-active .location-pin-glyph {
  transform: scale(1.12);
}

.location-marker:focus-visible .location-pin-shape {
  fill: var(--teal-dark);
  stroke: var(--gold);
}

.locations-map-source {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.locations-map-source a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 800px) {
  .locations-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .locations-copy {
    max-width: 760px;
  }

  .locations-features {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .locations-features article {
    display: grid;
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
    gap: 28px;
    align-items: baseline;
    padding: 20px 0;
  }

  .locations-features p {
    margin-top: 0;
  }

  .locations-map-shell {
    max-width: 850px;
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .locations-map-shell {
    max-width: 540px;
  }
}

@media (max-width: 620px) {
  .locations-section {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .locations-copy h2 {
    font-size: 1.9rem;
  }

  .locations-copy h2 span {
    white-space: normal;
  }

  .locations-features {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .locations-features article {
    display: block;
    padding: 17px 0;
  }

  .locations-features h3 {
    font-size: var(--type-component-title);
  }

  .locations-features p {
    font-size: var(--type-body);
  }

  .locations-intro,
  .locations-features p {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .locations-map-shell {
    max-width: 410px;
  }

}

.careers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: var(--layout-gap);
  padding: clamp(38px, 5vw, 58px);
  width: 100%;
  max-width: none;
  padding-inline: var(--page-gutter);
  color: var(--ink);
  background: #e6f0ec;
  border-top: 1px solid rgba(53, 111, 97, 0.12);
  border-bottom: 1px solid rgba(53, 111, 97, 0.12);
  border-radius: 0;
}

.careers .eyebrow,
.careers p {
  color: var(--muted);
}

.careers .eyebrow {
  color: var(--teal-dark);
}

.careers h2 {
  font-size: var(--type-section-title);
}

.careers p {
  max-width: 650px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.job-preview {
  display: grid;
  gap: 10px;
}

.job-preview-item {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(53, 111, 97, 0.2);
}

.job-preview-item:first-child {
  padding-top: 0;
}

.job-preview-item span {
  grid-row: 1 / 3;
  color: var(--teal-dark);
  font-size: 0.88rem;
}

.job-preview-item small {
  color: var(--muted);
}

.career-teaser {
  width: 100%;
  padding: 64px var(--page-gutter);
  background: #e6f0ec;
  border-top: 1px solid rgba(53, 111, 97, 0.12);
  border-bottom: 1px solid rgba(53, 111, 97, 0.12);
}

.career-teaser-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: center;
}

.career-teaser h2 {
  max-width: 720px;
  font-size: 2.65rem;
  line-height: 1.08;
}

.career-teaser-action {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.career-teaser-action p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  text-align: left;
  text-wrap: pretty;
}

.career-teaser-action strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.career-teaser-action span {
  display: block;
  text-align: left;
}

.contact-section {
  width: 100%;
  padding: 96px var(--page-gutter);
  color: var(--ink);
  background: #f0f5f3;
  border-top: 1px solid rgba(53, 111, 97, 0.12);
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--layout-gap);
  align-items: start;
}

.contact-copy {
  padding-top: 4px;
}

.contact-copy .eyebrow {
  color: var(--teal-dark);
}

.contact-copy h2 {
  max-width: 600px;
  font-size: var(--type-section-title);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
}

.contact-copy address {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
}

.contact-direct {
  max-width: 560px;
  margin-top: 38px;
  border-top: 1px solid rgba(53, 111, 97, 0.2);
}

.contact-direct a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(53, 111, 97, 0.2);
}

.contact-direct span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding-left: 0;
  border-left: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.field-label {
  min-height: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-form textarea {
  height: 150px;
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-dark);
  outline: 2px solid rgba(104, 169, 149, 0.2);
  outline-offset: 1px;
}

.contact-form .consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500;
}

.contact-form .consent input {
  min-height: 18px;
  margin-top: 2px;
}

.contact-form .consent a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.optional,
.form-status {
  color: var(--muted);
  font-weight: 400;
}

.optional {
  font-size: 0.8rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.86rem;
}

.form-status[data-state="success"] {
  color: var(--teal-dark);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9c3737;
  font-weight: 700;
}

.turnstile-slot {
  min-height: 1px;
  max-width: 100%;
}

.contact-form .button.primary {
  color: var(--white);
  background: var(--teal-dark);
}

.contact-form .button.primary:hover,
.contact-form .button.primary:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-actions {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px var(--page-gutter);
  color: var(--white);
  background: #071f22;
}

.site-footer img {
  width: 148px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-consent {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.footer-consent:hover,
.footer-consent:focus-visible {
  text-decoration: underline;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.consent-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 20px;
  background: rgba(20, 28, 27, 0.42);
}

.consent-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consent-panel h2 {
  margin: 4px 0 10px;
  font-size: 1.8rem;
}

.consent-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.consent-panel a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.consent-options label {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  min-height: 96px;
  padding: 16px;
  background: var(--surface);
}

.consent-options span,
.consent-options small {
  display: block;
}

.consent-options small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
}

.consent-options input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--teal-dark);
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.consent-panel .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.consent-panel .button.secondary:hover,
.consent-panel .button.secondary:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

.consent-layer-compact {
  pointer-events: none;
  padding: 18px;
  background: transparent;
}

.consent-compact {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
  pointer-events: auto;
  box-shadow: 0 10px 38px rgba(12, 43, 46, .18);
}

.consent-compact .eyebrow {
  margin: 0 0 2px;
  font-size: .64rem;
}

.consent-compact h2 {
  margin: 0 0 3px;
  font-size: 1.05rem;
}

.consent-compact > .consent-compact-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
  text-align: left;
  hyphens: none;
}

.consent-compact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 7px;
  align-items: center;
}

.consent-compact .consent-choice {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  font-size: .72rem;
}

.consent-compact .consent-choice:hover,
.consent-compact .consent-choice:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.consent-settings-link {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 2px 6px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .68rem;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 700px) {
  .consent-layer {
    padding: 8px;
  }

  .consent-panel {
    max-height: calc(100vh - 16px);
    max-height: min(78svh, 620px);
    padding: 16px;
    overflow: auto;
  }

  .consent-panel .eyebrow {
    font-size: 0.68rem;
  }

  .consent-panel h2 {
    margin: 2px 0 7px;
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .consent-panel > p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: left;
    hyphens: none;
  }

  .consent-options {
    grid-template-columns: 1fr;
    margin: 14px 0;
  }

  .consent-options label {
    min-height: auto;
    padding: 10px 12px;
  }

  .consent-options strong {
    font-size: 0.86rem;
  }

  .consent-options small {
    margin-top: 2px;
    font-size: 0.72rem;
  }

  .consent-options input {
    width: 18px;
    height: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .consent-actions .button {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 0.72rem;
  }

  .consent-actions [data-consent-save] {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .consent-layer-compact {
    padding: 8px;
  }

  .consent-compact {
    max-height: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    overflow: visible;
  }

  .consent-compact h2 {
    font-size: 1rem;
  }

  .consent-compact > .consent-compact-copy > p:not(.eyebrow) {
    font-size: .72rem;
    line-height: 1.4;
  }

  .consent-compact-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consent-compact .consent-choice {
    min-height: 40px;
    padding: 8px 6px;
    font-size: .68rem;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .intro,
  .split,
  .vision-inner,
  .vision-heading,
  .vision-story,
  .process-heading,
  .team-grid,
  .team-heading,
  .team-support,
  .careers,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding-top: 44px;
    padding-left: 0;
    border-top: 1px solid rgba(53, 111, 97, 0.2);
    border-left: 0;
  }

  .process-heading > div,
  .process-heading > p,
  .team-support .eyebrow,
  .team-support h3,
  .team-support > p:last-child {
    grid-column: 1;
  }

  .team-heading {
    gap: 20px;
  }

  .team-support {
    gap: 12px;
  }

  .career-teaser-inner {
    grid-template-columns: 1fr;
  }

  .career-teaser-action {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-rows: repeat(4, auto);
    margin-top: 10px;
  }

  .vision-heading,
  .vision-story {
    gap: 34px;
  }

  .vision-figure img {
    height: 520px;
  }

  .vision-paths {
    grid-template-columns: 1fr;
    padding-top: 12px;
    margin-top: 34px;
  }

  .vision-paths li,
  .vision-paths li:first-child,
  .vision-paths li:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-paths li:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 760px;
  }

  .process-heading {
    display: block;
    margin-bottom: 52px;
  }

  .process-heading > p {
    margin-top: 22px;
    justify-self: start;
  }

  .timeline::before {
    top: 27px;
    bottom: 27px;
    left: 26px;
    width: 2px;
    height: auto;
  }

  .timeline::after {
    top: 27px;
    left: 26px;
    width: 2px;
    height: calc((100% - 54px) * var(--timeline-progress));
  }

  .timeline li {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 24px;
    padding: 0 0 42px;
  }

  .timeline li:last-child {
    padding-bottom: 0;
  }

  .timeline li::before {
    position: relative;
    grid-row: 1 / 4;
  }

  .timeline .process-phase,
  .timeline strong,
  .timeline p {
    grid-column: 2;
  }

  .timeline p {
    max-width: 560px;
  }

  h1 { font-size: 4.75rem; }
  h2 { font-size: 3.1rem; }
  .careers h2 { font-size: 3rem; }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    width: 132px;
  }

  .hero {
    min-height: 88svh;
    padding: 118px 20px 66px;
  }

  h1 { font-size: 2.95rem; }
  .hero h1 {
    font-size: 2.45rem;
    overflow-wrap: normal;
  }
  h2 { font-size: 2.35rem; }
  .hero-lead { font-size: 1.08rem; }
  .hero-claim {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    font-size: 0.72rem;
  }
  .hero-claim li,
  .hero-claim li:first-child,
  .hero-claim li:last-child {
    padding: 0 0 0 9px;
    border-right: 0;
    border-left: 2px solid var(--teal);
  }
  .careers h2 { font-size: 2.25rem; }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 37, 40, 0.84), rgba(7, 37, 40, 0.42)),
      linear-gradient(0deg, rgba(7, 37, 40, 0.48), transparent 42%);
  }

  .button {
    width: 100%;
  }

  .succession-check {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
  }

  .succession-check-panel {
    padding: 20px;
  }

  .succession-check-header h2 {
    font-size: 1.75rem;
  }

  .succession-progress {
    margin: 20px 0 26px;
  }

  .succession-step legend {
    font-size: 1.22rem;
  }

  .succession-options,
  .succession-location {
    grid-template-columns: 1fr;
  }

  .succession-check input:not([type="radio"]):not([type="checkbox"]),
  .succession-check textarea,
  .succession-check select {
    font-size: 16px;
  }

  .succession-options label {
    min-height: 54px;
    padding: 11px 12px;
  }

  .succession-result dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .succession-check-actions {
    bottom: -20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 20px 20px;
    margin: 0 -20px -20px;
  }

  .succession-check-actions [data-succession-transfer] {
    grid-column: 1 / -1;
  }

  .succession-check-actions [data-succession-back][hidden] + [data-succession-next] {
    grid-column: 1 / -1;
  }

  .intro {
    width: calc(100% - 40px);
  }

  .section {
    width: calc(100% - 40px);
  }

  .vision-section {
    padding: 68px 20px;
  }

  .vision-heading {
    margin-bottom: 38px;
  }

  .vision-figure img {
    height: 360px;
  }

  .vision-copy h3 {
    font-size: 2rem;
  }

  .process-heading h2 {
    overflow-wrap: normal;
    hyphens: manual;
  }

  .vision-promise {
    padding: 20px 0 0 18px;
    margin-top: 28px;
  }

  .vision-promise p {
    font-size: 1.08rem;
  }

  .feature-grid,
  .timeline,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 22px 0;
  }

  .feature-grid article p:not(.eyebrow) {
    grid-column: 2;
  }

  .job-preview-item {
    grid-template-columns: 1fr;
  }

  .job-preview-item span {
    grid-row: auto;
  }

  .careers h2 {
    font-size: 2rem;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .feature-grid article,
  .timeline li {
    min-height: 0;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .team-heading h2 {
    font-size: 2.35rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    width: 100%;
    column-gap: 18px;
    row-gap: 10px;
  }

  .contact-section {
    padding: 72px 20px;
  }

  .career-teaser {
    padding: 54px 20px;
  }

  .career-teaser h2 {
    font-size: 2rem;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .career-teaser-action {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .career-teaser-action p {
    max-width: none;
  }

  .career-teaser-action strong {
    white-space: normal;
  }

  .careers {
    width: 100%;
    padding-inline: 20px;
  }

  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

/* Consistent German typesetting for all public long-form copy. */
main p:not(.eyebrow),
main li,
.intro-item span,
.job-dialog p:not(.eyebrow),
.job-dialog li,
.consent-panel > p:not(.eyebrow) {
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

/* Unified public layout system */
main p,
main li,
main address {
  font-size: var(--type-body);
  line-height: var(--leading-body);
  text-wrap: pretty;
}

main h1,
main h2,
main h3 {
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.section,
.vision-section,
.contact-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-copy h2,
.vision-heading h2,
.section-heading h2,
.team-heading h2,
.career-teaser h2,
.contact-copy h2 {
  font-size: var(--type-section-title);
  line-height: 1.05;
}

.section-copy p:not(.eyebrow),
.vision-lead,
.section-heading p:not(.eyebrow),
.team-lead > p:last-child,
.team-support p:not(.eyebrow),
.person-card p,
.career-teaser-action p,
.contact-copy > p:not(.eyebrow) {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.subpage-hero p:not(.eyebrow) {
  font-size: var(--type-body-large);
}

.feature-grid h3,
.timeline strong,
.person-card h3,
.team-support h3,
.vision-paths strong {
  font-size: var(--type-component-title);
  line-height: 1.3;
}

.feature-grid p,
.timeline p,
.vision-paths p,
.intro-item span {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.vision-figure img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.person-card,
.feature-grid article,
.timeline li {
  height: 100%;
}

.vision-section,
.career-teaser,
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process,
.team {
  border-color: var(--line);
}

.team {
  border-top: 1px solid var(--line);
}

.career-teaser {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (max-width: 920px) {
  :root {
    --type-page-title: 4rem;
    --type-section-title: 2.75rem;
    --section-space: 80px;
  }

  .vision-figure img {
    height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --type-page-title: 2.75rem;
    --type-section-title: 2.1rem;
    --type-component-title: 1.1rem;
    --type-body: 1rem;
    --type-body-large: 1.0625rem;
    --section-space: 68px;
  }

  .section-copy h2,
  .vision-heading h2,
  .section-heading h2,
  .team-heading h2,
  .career-teaser h2,
  .contact-copy h2 {
    font-size: var(--type-section-title);
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .vision-heading h2 {
    font-size: 1.95rem;
  }

  .vision-figure img,
  .person-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .career-teaser {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  main p:not(.eyebrow),
  main li,
  .intro-item span,
  .job-dialog p:not(.eyebrow),
  .job-dialog li,
  .consent-panel > p:not(.eyebrow),
  .consent-compact > .consent-compact-copy > p:not(.eyebrow) {
    word-spacing: normal;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    text-wrap: wrap;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .feature-grid article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 10px;
  }

}

@media (min-width: 921px) {
  body .vision-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  body .vision-heading > div:first-child {
    padding-left: 0;
    margin-left: 0;
  }

  body .vision-heading h2 {
    max-width: none;
    font-size: 2.35rem;
  }

}

@media (min-width: 1180px) {
  .vision-title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 1179px) {
  .vision-title-line {
    display: inline;
  }

  .vision-title-line + .vision-title-line::before {
    content: " ";
  }
}

/* Final responsive type system: one scale for comparable public sections. */
body .section-copy h2,
body .vision-heading h2,
body .section-heading h2,
body .team-heading h2,
body .career-teaser h2,
body .contact-copy h2 {
  font-size: 2.5rem;
  line-height: 1.08;
}

body .section-copy p:not(.eyebrow),
body .vision-lead > p:last-child,
body .section-heading > p:not(.eyebrow),
body .team-lead > p:last-child,
body .team-support > p:not(.eyebrow),
body .person-card p,
body .career-teaser-action p,
body .contact-copy > p:not(.eyebrow) {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

@media (max-width: 620px) {
  body .section-copy h2,
  body .vision-heading h2,
  body .section-heading h2,
  body .team-heading h2,
  body .career-teaser h2,
  body .contact-copy h2 {
    font-size: 1.9rem;
  }
}

/* Keep narrow landscape tablets on the calmer single-column content grid. */
@media (min-width: 921px) and (max-width: 1179px) {
  body .intro,
  body .split,
  body .vision-inner,
  body .vision-heading,
  body .vision-story,
  body .process-heading,
  body .team-grid,
  body .team-heading,
  body .team-support,
  body .careers,
  body .contact-inner,
  body .career-teaser-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  body .process-heading > div,
  body .process-heading > p,
  body .team-support .eyebrow,
  body .team-support h3,
  body .team-support > p:last-child {
    grid-column: 1;
  }

  body .career-teaser-action {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body .contact-form {
    padding-top: 44px;
    padding-left: 0;
    border-top: 1px solid rgba(53, 111, 97, 0.2);
    border-left: 0;
  }
}

@media (max-width: 380px) {
  body .section-copy h2,
  body .vision-heading h2,
  body .section-heading h2,
  body .team-heading h2,
  body .career-teaser h2,
  body .contact-copy h2 {
    font-size: 1.8rem;
  }
}

main .locations-section .locations-features p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

/* Premium layout geometry. CI values and content remain untouched. */
@media (min-width: 1180px) {
  body .hero {
    min-height: 96svh;
    padding-right: max(64px, calc((100vw - 1600px) / 2));
    padding-left: max(64px, calc((100vw - 1600px) / 2));
  }

  body .hero-content {
    max-width: 900px;
  }

  body .intro {
    width: min(calc(100% - 80px), 1500px);
    margin-top: -48px;
  }

  body .intro-item {
    min-height: 164px;
    padding: 38px 42px;
  }

  body .section {
    width: min(calc(100% - 96px), 1500px);
    padding-top: 132px;
    padding-bottom: 132px;
  }

  body .split {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(72px, 7vw, 132px);
  }

  body .section-copy {
    max-width: 650px;
  }

  body .feature-grid article {
    grid-template-columns: 42px minmax(190px, .66fr) minmax(0, 1fr);
    gap: 26px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  body .vision-section {
    padding-right: max(48px, calc((100vw - 1600px) / 2));
    padding-left: max(48px, calc((100vw - 1600px) / 2));
  }

  body .vision-inner {
    width: min(100%, 1600px);
  }

  body .vision-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(72px, 8vw, 150px);
    margin-bottom: 76px;
  }

  body .vision-story {
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
    gap: clamp(72px, 7vw, 132px);
  }

  body .vision-figure img {
    aspect-ratio: 5 / 4;
  }

  body .vision-copy {
    max-width: 610px;
  }

  body .vision-paths {
    margin-top: 56px;
    padding-top: 34px;
  }

  body .process-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(72px, 8vw, 150px);
    margin-bottom: 82px;
  }

  body .process-heading > div,
  body .process-heading > p {
    grid-column: auto;
  }

  body .timeline {
    gap: clamp(44px, 5vw, 88px);
  }

  body .team-heading {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(72px, 8vw, 150px);
    margin-bottom: 58px;
  }

  body .team-grid {
    gap: 28px;
  }

  body .person-card {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
    min-height: 430px;
  }

  body .person-card div {
    padding: 42px;
  }

  body .team-support {
    margin-top: 52px;
    padding-top: 38px;
  }

  body .service-center {
    margin-top: 88px;
    padding-top: 68px;
  }

  body .service-center-heading {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(72px, 8vw, 150px);
    margin-bottom: 46px;
  }

  body .service-center-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  body .service-center-grid article {
    grid-column: span 3;
    min-height: 270px;
    padding: 34px;
  }

  body .service-center-grid article:nth-child(n + 5) {
    grid-column: span 4;
  }

  body .service-center-outcome {
    grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
    padding: 30px 34px;
  }

  body .locations-section {
    padding-right: max(48px, calc((100vw - 1600px) / 2));
    padding-left: max(48px, calc((100vw - 1600px) / 2));
  }

  body .locations-inner {
    width: min(100%, 1600px);
    grid-template-columns: minmax(550px, .46fr) minmax(0, .54fr);
    column-gap: clamp(70px, 7vw, 132px);
    align-items: center;
  }

  body .locations-copy h2 {
    max-width: 560px;
  }

  body .career-teaser-inner {
    width: min(100%, 1500px);
    margin-right: auto;
    margin-left: auto;
    gap: clamp(72px, 8vw, 150px);
  }

  body .contact-inner {
    width: min(100%, 1400px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: clamp(80px, 9vw, 160px);
  }
}

@media (min-width: 621px) and (max-width: 1179px) {
  body .locations-copy h2 {
    max-width: 560px;
  }
}

@media (min-width: 921px) and (max-width: 1179px) {
  body .section,
  body .intro {
    width: min(calc(100% - 64px), 1080px);
  }

  body .vision-section,
  body .career-teaser,
  body .contact-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  body .vision-heading,
  body .team-heading,
  body .service-center-heading {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  body .vision-story,
  body .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  body .person-card {
    grid-template-columns: minmax(0, 1fr);
  }

  body .person-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  body .locations-inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 52px;
  }

  body .contact-inner {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 54px;
  }

  body .contact-form {
    padding-top: 0;
    padding-left: 44px;
    border-top: 0;
  }
}

@media (max-width: 920px) {
  body .vision-section,
  body .career-teaser,
  body .contact-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  body .vision-heading,
  body .vision-story,
  body .team-heading,
  body .service-center-heading {
    gap: 30px;
  }

  body .team-grid {
    gap: 24px;
  }

  body .locations-inner {
    row-gap: 44px;
  }
}

@media (max-width: 620px) {
  body .hero {
    min-height: 100svh;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  body .intro {
    margin-top: -32px;
  }

  body .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  body .vision-section,
  body .contact-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  body .vision-heading {
    margin-bottom: 46px;
  }

  body .vision-story {
    gap: 44px;
  }

  body .vision-paths {
    margin-top: 42px;
  }

  body .process-heading {
    margin-bottom: 58px;
  }

  body .timeline li {
    column-gap: 20px;
    padding-bottom: 48px;
  }

  body .person-card div {
    padding: 30px 26px 34px;
  }

  body .team-support {
    margin-top: 42px;
    padding-top: 32px;
  }

  body .service-center {
    margin-top: 52px;
    padding-top: 44px;
  }

  body .service-center-heading {
    margin-bottom: 30px;
  }

  body .service-center-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body .service-center-grid article {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  body .locations-inner {
    row-gap: 36px;
  }

  body .career-teaser-inner,
  body .contact-inner {
    gap: 42px;
  }
}

/* Shared content axis and service-center alignment. Geometry only; CI tokens stay unchanged. */
@media (min-width: 1180px) {
  body .site-header,
  body .hero,
  body .vision-section,
  body .locations-section,
  body .career-teaser,
  body .contact-section {
    padding-right: max(48px, calc((100vw - 1500px) / 2));
    padding-left: max(48px, calc((100vw - 1500px) / 2));
  }

  body .intro,
  body .section {
    width: min(calc(100% - 96px), 1500px);
  }

  body .vision-inner,
  body .locations-inner,
  body .career-teaser-inner,
  body .contact-inner {
    width: min(100%, 1500px);
  }

  body .service-center-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body .service-center-grid article,
  body .service-center-grid article:nth-child(n + 5) {
    grid-column: auto;
  }
}

body .service-center-heading h3 {
  font-size: 2.5rem;
  line-height: 1.08;
}

body .service-center-grid article {
  display: grid;
  grid-template-rows: 42px minmax(3.1em, auto) 1fr;
  align-content: start;
  row-gap: 20px;
}

body .service-center-grid span,
body .service-center-grid h4 {
  margin: 0;
}

body .service-center-grid h4 {
  font-size: var(--type-component-title);
}

body .service-center-grid p {
  font-size: var(--type-body);
}

@media (max-width: 1179px) {
  body .service-center-grid article {
    grid-template-rows: 42px minmax(3.1em, auto) 1fr;
  }
}

@media (min-width: 921px) and (max-width: 1179px) {
  body .site-header,
  body .hero,
  body .vision-section,
  body .locations-section,
  body .career-teaser,
  body .contact-section {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 920px) {
  body .site-header,
  body .hero,
  body .vision-section,
  body .locations-section,
  body .career-teaser,
  body .contact-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  body .intro,
  body .section {
    width: calc(100% - 48px);
  }
}

@media (max-width: 620px) {
  body .service-center-heading h3 {
    font-size: 1.9rem;
  }

  body .contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
  body .contact-form select,
  body .contact-form textarea {
    font-size: 16px;
  }

  body .service-center-grid article {
    grid-template-rows: auto;
    row-gap: 20px;
  }
}

/* Keep the succession narrative visible while its four models scroll past. */
@media (min-width: 921px) {
  body #partnerschaft {
    align-items: start;
  }

  body #partnerschaft .section-copy {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

/* Let the tall map use the available tablet canvas instead of shrinking into a square. */
@media (min-width: 621px) and (max-width: 1179px) {
  body .locations-map-shell {
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

  body .locations-map {
    aspect-ratio: 610 / 800;
  }
}

@media (min-width: 1180px) and (max-width: 1439px) {
  body .locations-inner {
    grid-template-columns: minmax(460px, 0.42fr) minmax(0, 0.58fr);
    column-gap: clamp(44px, 5vw, 68px);
  }

  body .locations-map-shell {
    width: 100%;
    max-width: 720px;
  }

  body .locations-map {
    aspect-ratio: 620 / 770;
  }
}
