:root {
  --bw-primary: #2550a9;
  --bw-navy: #0f2f4f;
  --bw-navy-deep: #051a32;
  --bw-text: #333333;
  --bw-body: #4d4d4d;
  --bw-muted: #737373;
  --bw-soft: #fff6f8;
  --bw-border: rgba(15, 47, 79, 0.14);
  --bw-line: rgba(255, 255, 255, 0.16);
  --bw-surface: #ffffff;
  --bw-shadow-sm: 0 14px 36px rgba(10, 28, 48, 0.08);
  --bw-shadow-lg: 0 22px 54px rgba(10, 28, 48, 0.16);
  --bs-body-font-family: "Inter", sans-serif;
  --bs-body-color: var(--bw-body);
  --bs-body-bg: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bw-body);
  background: #ffffff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

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

a:hover {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--bw-text);
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
}

p {
  margin: 0;
}

.container-shell {
  --bs-gutter-x: 0;
  width: min(1440px, calc(100% - 80px));
  max-width: none;
  padding: 0;
}

.container-shell .row {
  margin-left: 0;
  margin-right: 0;
}

.section {
  padding-block: 100px;
}

.section-tight {
  padding-block: 72px;
}

.eyebrow {
  display: inline-block;
  color: var(--bw-primary);
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.65rem, 4vw, 55px);
  line-height: 1.145;
  letter-spacing: 0;
}

.section-copy {
  max-width: 760px;
  font-size: 18px;
  line-height: 28px;
  color: var(--bw-body);
}

.split-section__header {
  margin-bottom: 52px;
}

.split-section__header--center {
  text-align: center;
}

.split-section__header--center .section-copy {
  margin-inline: auto;
}

.section-actions {
  margin-top: 55px;
}

.section-actions--center {
  display: flex;
  justify-content: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 18px;
  transition: padding-top 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  background: rgba(5, 26, 50, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(3, 12, 24, 0.2);
}

.site-nav {
  min-height: 101px;
  padding: 0;
}

.site-brand {
  margin-right: 0;
  padding: 0;
}

.site-brand img {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  gap: 55px;
}

.nav-link {
  position: relative;
  padding: 0;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 20.57px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1.5px;
  background: #ffffff;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__toggle {
  width: 54px;
  height: 54px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45px;
  right: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle:focus {
  box-shadow: none;
}

.site-nav__toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1200px) {
  .navbar-expand-xl .site-nav__toggle {
    display: none !important;
  }
}

.btn-brand {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 8px 8px 38px;
  border: 0;
  border-radius: 30px;
  color: #ffffff;
  background: var(--bw-primary);
  box-shadow: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  transform: translateY(-1px);
  color: var(--bw-primary);
  background: #ffffff;
  box-shadow:
    0 12px 26px rgba(10, 28, 48, 0.14),
    inset 0 0 0 1px var(--bw-primary);
}

.btn-brand__label {
  white-space: nowrap;
}

.btn-brand__chip {
  width: 47px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--bw-primary);
  background: #ffffff;
  flex: 0 0 auto;
}

.btn-brand__chip svg {
  width: 16px;
  height: 16px;
}

.btn-brand:hover .btn-brand__chip,
.btn-brand:focus-visible .btn-brand__chip {
  color: #ffffff;
  background: var(--bw-primary);
}

.btn-brand--cta {
  color: var(--bw-primary);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--bw-primary);
}

.btn-brand--cta .btn-brand__chip {
  color: #ffffff;
  background: var(--bw-primary);
}

.btn-brand--cta:hover,
.btn-brand--cta:focus-visible {
  color: #ffffff;
  background: var(--bw-primary);
  box-shadow: 0 12px 26px rgba(10, 28, 48, 0.14);
}

.btn-brand--cta:hover .btn-brand__chip,
.btn-brand--cta:focus-visible .btn-brand__chip {
  color: var(--bw-primary);
  background: #ffffff;
}

.btn-brand--hero-submit {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 28px;
  background: var(--bw-navy);
}

.btn-brand--hero-submit .btn-brand__chip,
.btn-brand--submit .btn-brand__chip {
  display: none;
}

.btn-brand--submit {
  width: 190px;
  min-height: 62px;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 40px;
  background: var(--bw-navy);
}

.page-hero,
.hero-home {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--bw-navy-deep);
}

.page-hero__media,
.hero-home__media {
  position: absolute;
  inset: 0;
}

.page-hero__media::after,
.hero-home__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 50, 0.82) 0%, rgba(5, 26, 50, 0.42) 42%, rgba(5, 26, 50, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 26, 50, 0.16) 0%, rgba(5, 26, 50, 0.76) 100%);
}

.page-hero__media img,
.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__body,
.hero-home__inner {
  position: relative;
  z-index: 1;
}

.page-hero__body--center {
  text-align: center;
}

.page-hero__body--center .page-hero__title {
  margin-inline: auto;
}

.page-hero {
  min-height: 500px;
  padding-top: 176px;
  padding-bottom: 96px;
}

.page-hero--title-only {
  padding-bottom: 120px;
}

.page-hero__title {
  max-width: 998px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6vw, 90px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

.page-hero__copy {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 28px;
}

.hero-home {
  min-height: 900px;
  padding-top: 152px;
  padding-bottom: 68px;
}

.hero-home__bg--primary {
  background: url("../images/shared/hero-home-primary.png") center center / cover no-repeat;
}

.hero-home__bg--secondary {
  left: 52%;
  width: 48%;
  background: url("../images/shared/hero-home-secondary.png") center center / cover no-repeat;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.hero-home__watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(5rem, 10vw, 148px);
  font-weight: 700;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  opacity: 0.72;
  pointer-events: none;
}

.hero-home__watermark--primary {
  bottom: 62px;
}

.hero-home__watermark--secondary {
  top: 78px;
  opacity: 0.28;
}

.hero-home__title {
  max-width: 645px;
  color: #ffffff;
  font-size: clamp(3.45rem, 6vw, 90px);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-home__copy {
  max-width: 555px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 28px;
}

.hero-home__proof {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.hero-home__proof-text {
  max-width: 227px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  letter-spacing: -0.01em;
}

.avatar-proof__stack {
  display: flex;
  align-items: center;
}

.avatar-proof__item {
  width: 55px;
  height: 55px;
  margin-left: -10px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--bw-shadow-sm);
}

.avatar-proof__item:first-child {
  margin-left: 0;
}

.avatar-proof__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-proof__item--plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--bw-primary);
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.lead-form-card {
  position: relative;
  overflow: hidden;
  padding: 33px 30px 31px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--bw-shadow-lg);
  color: var(--bw-body);
}

.lead-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 5px;
  background: var(--bw-primary);
}

.lead-form-card h2 {
  font-size: 30px;
  line-height: 36.3px;
  letter-spacing: -0.01em;
}

.lead-form-card p {
  margin-top: 13px;
  margin-bottom: 18px;
  color: var(--bw-muted);
  font-size: 17px;
  line-height: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field-card {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #ffffff;
  color: var(--bw-text);
  font-size: 16px;
  line-height: 25px;
}

.field-card::placeholder {
  color: var(--bw-muted);
  opacity: 1;
}

.field-card:focus {
  outline: none;
  border-color: var(--bw-primary);
}

.field-card--select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bw-navy) 50%),
    linear-gradient(135deg, var(--bw-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field-card--textarea {
  min-height: 120px;
  resize: vertical;
}

.service-spotlight-card,
.finance-card,
.work-card {
  height: 100%;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--bw-shadow-sm);
  overflow: hidden;
}

.service-spotlight-card__media,
.finance-card__media {
  overflow: hidden;
}

.service-spotlight-card__media img,
.finance-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-spotlight-card__body {
  padding: 26px 28px 29px;
}

.service-spotlight-card__title,
.finance-card__title,
.work-card__label {
  font-size: 24px;
  line-height: 29.04px;
  letter-spacing: -0.01em;
}

.service-spotlight-card__text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
  color: var(--bw-body);
}

.service-spotlight-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-spotlight-card--link:hover,
.service-spotlight-card--link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 31, 61, 0.18);
}

.service-spotlight-card--link:focus-visible {
  outline: 3px solid rgba(37, 80, 169, 0.35);
  outline-offset: 4px;
}

.split-section.split-section--home .service-spotlight-card {
  position: relative;
  background: transparent;
}

.split-section.split-section--home .service-spotlight-card__media {
  position: relative;
}

.split-section.split-section--home .service-spotlight-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 47, 79, 0) 0%, rgba(15, 47, 79, 0.08) 48%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.split-section.split-section--home .service-spotlight-card__media img {
  min-height: 392px;
}

.split-section.split-section--home .service-spotlight-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0 18px 16px;
  background: transparent;
}

.split-section.split-section--home .service-spotlight-card__title {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.22;
}

.split-section.split-section--home .service-spotlight-card__text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.43;
}

.finance-card {
  padding-bottom: 28px;
}

.finance-card__body {
  padding: 29px 28px 0;
}

.story-wrap {
  display: grid;
  grid-template-columns: 705px minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

.story-media {
  min-height: 726px;
}

.story-media__frame {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.story-media__frame img {
  width: 100%;
  height: 100%;
  min-height: 726px;
  object-fit: cover;
}

.story-copy__body {
  display: grid;
  gap: 28px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 28px;
}

.stats-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--bw-border);
}

.stat-card {
  padding: 34px 28px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stat-card + .stat-card {
  padding-right: 0;
  padding-left: 54px;
  border-left: 1px solid var(--bw-border);
}

.stat-card__value {
  color: var(--bw-primary);
  font-size: 55px;
  line-height: 28px;
}

.stat-card__label {
  margin-top: 28px;
  color: var(--bw-text);
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.04px;
}

.logo-wall {
  margin-top: 105px;
}

.logo-wall__header {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--bw-navy);
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.logo-wall__line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--bw-border);
}

.partners-strip {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
}

.partners-strip::before,
.partners-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 1;
  pointer-events: none;
}

.partners-strip::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-strip__track {
  --partners-gap: 58px;
  --partners-loop-distance: 0px;
  display: flex;
  align-items: center;
  gap: var(--partners-gap);
  width: max-content;
  animation: partnersLoop 22s linear infinite;
}

.partners-strip__group {
  display: flex;
  align-items: center;
  gap: var(--partners-gap);
  min-width: max-content;
  flex-shrink: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 48px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
}

@keyframes partnersLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--partners-loop-distance)), 0, 0);
  }
}

.process-fidelity {
  position: relative;
  overflow: hidden;
  padding-top: 255px;
  padding-bottom: 106px;
  background: var(--bw-navy);
}

.process-fidelity__watermark {
  position: absolute;
  top: 66px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(6rem, 10vw, 148px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
}

.process-fidelity__watermark--left {
  left: -44px;
}

.process-fidelity__watermark--right {
  right: -150px;
}

.process-fidelity__rows {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-fidelity__row {
  display: grid;
  grid-template-columns: 436px minmax(0, 950px);
  justify-content: space-between;
  align-items: start;
  min-height: 600px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-fidelity__row:first-child {
  border-top: 0;
}

.process-fidelity__row--last {
  min-height: 550px;
}

.process-fidelity__copy {
  color: #ffffff;
}

.process-fidelity__title {
  color: #ffffff;
  font-size: 30px;
  line-height: 36.3px;
}

.process-fidelity__number {
  margin-top: 173px;
  color: rgba(255, 255, 255, 0.16);
  font-family: "Inter Tight", sans-serif;
  font-size: 178px;
  font-weight: 600;
  line-height: 64px;
}

.process-fidelity__text {
  margin-top: 92px;
  max-width: 436px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 28px;
}

.process-fidelity__media {
  overflow: hidden;
  border-radius: 15px;
}

.process-fidelity__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.process-fidelity__action {
  margin-top: 50px;
}

.testimonial-fidelity {
  position: relative;
  padding-top: 100px;
  padding-bottom: 95px;
  background: #ffffff;
}

.testimonial-fidelity .container-shell {
  position: relative;
}

.testimonial-fidelity__header {
  text-align: center;
  padding-inline: 210px;
}

.testimonial-fidelity__arrow {
  position: absolute;
  top: 118px;
  width: 53px;
  height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--bw-primary);
  box-shadow: none;
  z-index: 2;
}

.testimonial-fidelity__arrow--prev {
  left: 132px;
  border: 1.5px solid var(--bw-primary);
}

.testimonial-fidelity__arrow--next {
  right: 132px;
  border: 1px solid var(--bw-primary);
  background: #ffffff;
  color: var(--bw-primary);
}

.testimonial-fidelity__arrow:hover {
  border: 0;
  color: #ffffff;
  background: var(--bw-primary);
}

.testimonial-fidelity__arrow svg {
  width: 18px;
  height: 14px;
}

.testimonial-fidelity__slider {
  position: relative;
  margin-top: 32px;
}

.testimonial-fidelity__slide {
  display: none;
}

.testimonial-fidelity__slide.is-active {
  display: block;
  animation: testimonialFade 0.35s ease;
}

.testimonial-fidelity__body {
  width: min(1253px, 100%);
  margin: 0 auto;
  padding-inline: 160px;
  text-align: center;
}

.testimonial-fidelity__quote {
  color: #474747;
  font-size: 26px;
  line-height: 38px;
}

.testimonial-fidelity__avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.testimonial-fidelity__avatars img:nth-child(1),
.testimonial-fidelity__avatars img:nth-child(5) {
  width: 56px;
  height: 56px;
}

.testimonial-fidelity__avatars img:nth-child(2),
.testimonial-fidelity__avatars img:nth-child(4) {
  width: 76px;
  height: 76px;
}

.testimonial-fidelity__avatars img:nth-child(3) {
  width: 97px;
  height: 98px;
}

.testimonial-fidelity__avatars img {
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-fidelity__name {
  margin-top: 27px;
  color: #020100;
  font-size: 28px;
  line-height: 32px;
}

.testimonial-fidelity__meta {
  margin-top: 8px;
  color: #474747;
  font-size: 18px;
  line-height: 25px;
}

.testimonial-fidelity__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-top: 26px;
}

.testimonial-fidelity__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 80, 169, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.testimonial-fidelity__dots button:focus-visible {
  outline: 2px solid var(--bw-primary);
  outline-offset: 4px;
}

.testimonial-fidelity__dots .is-active {
  width: 18px;
  height: 18px;
  background: var(--bw-primary);
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission-section {
  padding-top: 100px;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 680px;
  gap: 81px;
  align-items: start;
}

.mission-copy__body {
  display: grid;
  gap: 28px;
  margin-top: 30px;
  max-width: 679px;
  font-size: 18px;
  line-height: 28px;
}

.mission-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 620px;
  gap: 72px;
  align-items: start;
}

.mission-editorial__copy {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  max-width: 706px;
  font-size: 18px;
  line-height: 28px;
}

.mission-editorial__primary-image,
.mission-editorial__secondary-image {
  overflow: hidden;
  border-radius: 20px;
}

.mission-editorial__secondary-image {
  margin-top: 32px;
}

.mission-editorial__primary-image img,
.mission-editorial__secondary-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.mission-editorial__primary-image img {
  height: 770px;
}

.mission-editorial__secondary-image img {
  height: 582px;
}

.mission-editorial__aside {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 28px;
}

.mission-editorial__aside .section-actions {
  margin-top: 8px;
}

.mission-collage {
  position: relative;
  min-height: 1112px;
}

.mission-collage__main,
.mission-collage__side {
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
}

.mission-collage__main {
  top: 0;
  right: 0;
  width: 679px;
  height: 870px;
}

.mission-collage__side {
  left: 0;
  bottom: 0;
  width: 680px;
  height: 670px;
}

.mission-collage__main img,
.mission-collage__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-collage__badge {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 152px;
  height: 152px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(37, 80, 169, 0.95);
  box-shadow: 0 18px 40px rgba(9, 28, 50, 0.18);
}

.mission-collage__play {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 30px solid #ffffff;
}

.achievements-section {
  padding-top: 80px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 722px) minmax(0, 583px);
  justify-content: space-between;
  gap: 56px;
  align-items: end;
  margin-bottom: 46px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--bw-border);
  border-bottom: 1px solid var(--bw-border);
}

.stats-bar__item {
  min-height: 242px;
  padding: 18px 40px 18px 0;
}

.stats-bar__item + .stats-bar__item {
  padding-left: 40px;
  border-left: 1px solid var(--bw-border);
}

.stats-bar__value {
  color: var(--bw-primary);
  font-size: 55px;
  line-height: 28px;
}

.stats-bar__item h3 {
  margin-top: 28px;
  color: var(--bw-text);
  font-size: 24px;
  line-height: 29.04px;
}

.stats-bar__item p {
  margin-top: 23px;
  font-size: 18px;
  line-height: 28px;
}

.about-video-section {
  padding-top: 88px;
}

.about-video-block {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 12 / 5;
  background: #173a70;
  box-shadow: var(--bw-shadow-lg);
}

.about-video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 50, 93, 0.16) 0%, rgba(17, 50, 93, 0.56) 100%);
  opacity: 1;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.about-video-block.is-playing::after {
  opacity: 0;
}

.about-video-block__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #173a70;
}

.about-video-block__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 94px;
  height: 94px;
  border: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 80, 169, 0.96);
  box-shadow: 0 18px 46px rgba(10, 30, 62, 0.24);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.about-video-block.is-playing .about-video-block__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
}

.about-video-block__play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

.about-vision-section {
  padding-top: 28px;
}

.vision-showcase-section {
  --vision-side-card-width: 278px;
  --vision-side-peek: 12px;
  --vision-card-gap: 29px;
  --vision-card-height: 556px;
  background: #f5f7fb;
}

.vision-showcase__intro {
  margin-bottom: 42px;
}

.vision-showcase__intro .section-title {
  max-width: 840px;
  margin-inline: auto;
}

.vision-showcase__intro .section-copy {
  max-width: 700px;
  margin-inline: auto;
}

.vision-showcase {
  position: relative;
  overflow: hidden;
}

.vision-showcase__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.vision-showcase__slide {
  display: none;
  width: 100%;
}

.vision-showcase__slide.is-active {
  display: block;
  animation: testimonialFade 0.35s ease;
}

.vision-showcase__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.vision-showcase__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 80, 169, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.vision-showcase__dots button.is-active {
  background: var(--bw-primary);
  transform: scale(1.15);
}

.vision-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bw-navy);
  box-shadow: var(--bw-shadow-lg);
}

.vision-slider__viewport {
  position: relative;
  min-height: 500px;
}

.vision-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.vision-slider__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.vision-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 26, 50, 0.88) 0%, rgba(5, 26, 50, 0.56) 40%, rgba(5, 26, 50, 0.78) 100%);
}

.vision-slider__slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.vision-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 88px 94px;
}

.vision-slider__overlay h2,
.vision-slider__overlay .eyebrow,
.vision-slider__overlay p {
  color: #ffffff;
}

.vision-slider__overlay h2 {
  max-width: 930px;
}

.vision-slider__overlay p:last-child {
  max-width: 637px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.vision-slider__controls {
  position: absolute;
  right: 44px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.vision-slider__arrow {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.vision-slider__arrow--next {
  background: var(--bw-primary);
  border-color: transparent;
}

.vision-slider__arrow svg {
  width: 18px;
  height: 14px;
}

.vision-slider__dots {
  position: absolute;
  left: 94px;
  bottom: 56px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.vision-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.vision-slider__dots button.is-active {
  width: 18px;
  height: 18px;
  background: #ffffff;
}

.vision-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bw-navy);
}

.vision-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 26, 50, 0.88) 0%, rgba(5, 26, 50, 0.38) 58%, rgba(5, 26, 50, 0.82) 100%);
}

.vision-banner img {
  width: 100%;
  min-height: 800px;
  object-fit: cover;
}

.vision-banner__copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 100px 96px;
}

.vision-banner__copy h2,
.vision-banner__copy p,
.vision-banner__copy .eyebrow {
  color: #ffffff;
}

.vision-banner__copy p {
  max-width: 637px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 28px;
}

.vision-cards {
  display: grid;
  width: calc(100% + (var(--vision-side-peek) * 2));
  margin-inline: calc(var(--vision-side-peek) * -1);
  grid-template-columns: var(--vision-side-card-width) minmax(0, 1fr) var(--vision-side-card-width);
  gap: var(--vision-card-gap);
  align-items: stretch;
}

.vision-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.vision-showcase-section .vision-card--center {
  z-index: 1;
}

.vision-card img {
  width: 100%;
  height: var(--vision-card-height);
  object-fit: cover;
  display: block;
}

.vision-card__overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 250px;
  padding: 24px 24px 28px;
  background: linear-gradient(180deg, rgba(15, 47, 79, 0.02) 0%, rgba(15, 47, 79, 0.84) 100%);
  color: #ffffff;
}

.vision-showcase-section .vision-card__overlay {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vision-showcase-section .vision-card--center .vision-card__overlay {
  min-height: 196px;
}

.vision-card__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 29.04px;
}

.vision-card__text {
  margin-top: 20px;
  max-width: 716px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 28px;
}

.values-section {
  padding-top: 122px;
}

.values-panel {
  display: grid;
  grid-template-columns: 705px minmax(0, 1fr);
  gap: 63px;
  align-items: start;
}

.values-editorial {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.values-editorial__eyebrow {
  letter-spacing: 0.24em;
}

.values-editorial__intro .section-title,
.values-editorial__title {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: 55px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.values-editorial__intro .values-photo {
  margin-top: 0;
}

.values-editorial__list {
  padding-top: 4px;
}

.values-photo {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 620 / 330;
}

.values-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-list {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.value-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-block: 0 22px;
  border-top: 0;
  align-items: start;
}

.value-row + .value-row {
  margin-top: 18px;
}

.value-row__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bw-primary);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
}

.value-row__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.value-row__body {
  border-top: 1px solid var(--bw-border);
  padding-top: 14px;
}

.value-row__body h3 {
  font-size: 18px;
  line-height: 21.78px;
  font-weight: 600;
}

.value-row__body p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 27px;
}

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

.work-card {
  position: relative;
  min-height: 487px;
}

.work-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-card--link:hover,
.work-card--link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 31, 61, 0.18);
}

.work-card--link:focus-visible {
  outline: 3px solid rgba(37, 80, 169, 0.35);
  outline-offset: 4px;
}

.work-card__image {
  position: absolute;
  inset: 0;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 26, 50, 0.08) 0%, rgba(5, 26, 50, 0.66) 100%);
}

.work-card__label {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 25px 27px;
  border-radius: 15px;
  background: #ffffff;
}

.contact-page {
  padding-top: 100px;
}

.detail-page {
  padding-top: 104px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 40px;
  align-items: start;
}

.detail-main__intro {
  max-width: 820px;
  margin-bottom: 30px;
}

.detail-main__summary {
  margin-top: 24px;
}

.detail-richtext {
  display: grid;
  gap: 22px;
  font-size: 18px;
  line-height: 28px;
  color: var(--bw-body);
}

.detail-richtext > * {
  margin: 0;
}

.detail-richtext h2,
.detail-richtext h3,
.detail-richtext h4 {
  color: var(--bw-text);
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  line-height: 1.18;
}

.detail-richtext h2 {
  font-size: 38px;
}

.detail-richtext h3 {
  font-size: 30px;
}

.detail-richtext ul,
.detail-richtext ol {
  margin: 0;
  padding-left: 1.25rem;
}

.detail-richtext li + li {
  margin-top: 10px;
}

.detail-sidebar {
  display: grid;
  gap: 22px;
}

.detail-panel {
  padding: 32px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--bw-shadow-sm);
}

.detail-panel--cta {
  padding: 24px;
}

.detail-panel--cta .btn-brand {
  width: 100%;
  justify-content: space-between;
}

.detail-panel__title {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.01em;
}

.detail-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.detail-feature {
  padding-top: 18px;
  border-top: 1px solid var(--bw-border);
}

.detail-feature:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-feature__label {
  color: var(--bw-text);
  font-size: 21px;
  line-height: 25px;
}

.detail-feature__value {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
  color: var(--bw-body);
}

.detail-gallery-section {
  background: #f7f9fc;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.detail-gallery__item {
  grid-column: span 6;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--bw-shadow-sm);
}

.detail-gallery__item--wide {
  grid-column: 1 / -1;
}

.detail-gallery__item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.detail-gallery__item--wide img {
  height: 520px;
}

.detail-related-section .split-section__header {
  margin-bottom: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 634px) minmax(0, 770px);
  justify-content: space-between;
  gap: 36px;
  align-items: start;
}

.contact-intro__copy {
  max-width: 634px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 28px;
}

.contact-info-stack {
  display: grid;
  gap: 30px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--bw-primary);
  flex: 0 0 auto;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
}

.contact-info-label {
  color: var(--bw-text);
  font-size: 24px;
  line-height: 29.04px;
}

.contact-info-value {
  margin-top: 14px;
  font-size: 18px;
  line-height: 28px;
}

.contact-map {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 374px;
  display: block;
  border: 0;
}

.contact-panel {
  padding: 36px 36px 46px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--bw-shadow-sm);
}

.contact-panel .field-card {
  min-height: 60px;
}

.contact-panel .field-card--textarea {
  min-height: 180px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.contact-form__field {
  display: grid;
  gap: 16px;
}

.contact-form__label {
  color: var(--bw-text);
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
}

.contact-form .btn-brand--submit {
  margin-top: 14px;
}

.cta-shell {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  min-height: 350px;
  padding: 66px 70px 64px;
  border-radius: 30px;
  background: #2550a9;
  box-shadow: var(--bw-shadow-lg);
}

.cta-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../images/shared/ready-to-work-bg.png") center center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.cta-panel__copy,
.cta-panel__media {
  position: relative;
  z-index: 1;
}

.cta-panel__title {
  color: #ffffff;
  font-size: clamp(2.55rem, 4vw, 55px);
  line-height: 1.145;
}

.cta-panel__text {
  max-width: 715px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 28px;
}

.cta-panel__copy .btn-brand {
  margin-top: 32px;
}

.cta-panel__media {
  justify-self: center;
  width: 330px;
  min-height: 239px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-panel__media img {
  width: min(100%, 244px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: -171px;
  padding-top: 250px;
  padding-bottom: 35px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #0b2743 0%, #071c34 100%);
}

body[data-page="contact"] .site-footer {
  margin-top: 0;
  padding-top: 82px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 30px auto auto 0;
  width: min(54vw, 820px);
  height: 360px;
  background: url("../images/shared/world-map.png") center center / contain no-repeat;
  opacity: 0.08;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 374px 137px 262px 226px;
  justify-content: space-between;
  gap: 0;
  padding-bottom: 79px;
}

.site-footer__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14));
  background-repeat: no-repeat;
  background-size: 1px 304px, 1px 304px, 1px 304px;
  background-position: 450px 0, 734px 0, 1141px 0;
  pointer-events: none;
}

.site-footer__logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.site-footer__body {
  margin-top: 24px;
  font-size: 18px;
  line-height: 28px;
}

.site-footer__heading {
  color: #ffffff;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -0.01em;
}

.site-footer__list {
  display: grid;
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a,
.site-footer__contact-item a {
  font-size: 17px;
  line-height: 20.57px;
}

.site-footer__contact {
  display: grid;
  gap: 20px;
}

.site-footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 20.57px;
}

.site-footer__contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
}

.site-footer__contact-icon svg {
  width: 20px;
  height: 20px;
}

.site-footer__social-list {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.site-footer__social-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--bw-primary);
  background: var(--bw-soft);
}

.site-footer__social-link:hover {
  color: #ffffff;
  background: var(--bw-primary);
}

.site-footer__social-link svg {
  width: 19px;
  height: 19px;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.site-footer__bottom p {
  color: #ffffff;
  font-size: 17px;
  line-height: 20.57px;
}

@media (max-width: 1399.98px) {
  .container-shell {
    width: min(1440px, calc(100% - 56px));
  }

  .story-wrap,
  .mission-layout,
  .mission-editorial,
  .values-panel,
  .values-editorial,
  .detail-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-media,
  .story-media__frame img {
    min-height: 560px;
  }

  .mission-collage {
    min-height: 910px;
  }

  .mission-collage__main {
    width: min(100%, 640px);
    height: 640px;
  }

  .mission-collage__side {
    width: min(76%, 520px);
    height: 470px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
  }

  .site-footer__grid::before {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    padding-top: 10px;
    background: rgba(5, 26, 50, 0.86);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(7, 24, 43, 0.97);
  }

  .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .navbar-collapse.collapse.show {
    display: block !important;
    width: 100%;
    flex-basis: 100%;
  }

  .navbar-nav {
    gap: 18px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home__bg--secondary,
  .hero-home__watermark {
    display: none;
  }

  .vision-cards,
  .work-grid,
  .cta-panel,
  .section-intro,
  .stats-bar,
  .detail-gallery-grid,
  .contact-form__row,
  .site-footer__grid,
  .process-fidelity__row {
    grid-template-columns: 1fr;
  }

  .stats-bar__item + .stats-bar__item {
    padding-left: 24px;
    padding-right: 24px;
    border-left: 0;
    border-top: 1px solid var(--bw-border);
  }

  .site-footer {
    margin-top: -110px;
    padding-top: 180px;
  }

  body[data-page="contact"] .site-footer {
    margin-top: 0;
    padding-top: 72px;
  }

  .site-footer__grid {
    padding-bottom: 42px;
  }

  .page-hero,
  .section {
    padding-block: 88px;
  }

  .page-hero--title-only {
    padding-block: 176px 120px;
  }

  .process-fidelity {
    padding-top: 180px;
  }

  .process-fidelity__watermark {
    top: 88px;
  }

  .process-fidelity__row {
    min-height: auto;
    gap: 28px;
  }

  .process-fidelity__number {
    margin-top: 90px;
  }

  .process-fidelity__text {
    margin-top: 50px;
  }

  .testimonial-fidelity__header {
    padding-inline: 100px;
  }

  .testimonial-fidelity__body {
    padding-inline: 110px;
  }

  .testimonial-fidelity__arrow--prev {
    left: 72px;
  }

  .testimonial-fidelity__arrow--next {
    right: 72px;
  }

  .about-video-block {
    aspect-ratio: 16 / 8;
  }

  .about-video-block__video {
    min-height: 0;
    height: 100%;
  }

  .mission-editorial {
    gap: 40px;
  }

  .mission-editorial__primary-image img {
    height: 620px;
  }

  .mission-editorial__secondary-image img {
    height: 420px;
  }

  .vision-slider__viewport {
    min-height: 460px;
  }

  .vision-slider__slide img {
    height: 460px;
  }

  .vision-slider__overlay {
    padding: 68px 64px;
  }

  .vision-slider__dots {
    left: 64px;
    bottom: 44px;
  }

  .vision-slider__controls {
    right: 32px;
    bottom: 28px;
  }

  .vision-showcase-section .vision-card__overlay {
    min-height: 150px;
  }

  .vision-showcase-section {
    --vision-side-card-width: 220px;
    --vision-side-peek: 10px;
    --vision-card-gap: 20px;
    --vision-card-height: 460px;
  }

  .contact-map iframe {
    width: 100%;
  }

  .cta-panel__media {
    width: 100%;
    max-width: 330px;
  }
}

@media (max-width: 991.98px) {
  .container-shell {
    width: calc(100% - 40px);
  }

  .section,
  .section-tight,
  .contact-page {
    padding-block: 72px;
  }

  .page-hero {
    min-height: 420px;
    padding-top: 150px;
  }

  .hero-home {
    padding-top: 136px;
    padding-bottom: 56px;
  }

  .hero-home__proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-section.split-section--home .service-spotlight-card__media img {
    min-height: 340px;
  }

  .split-section.split-section--home .service-spotlight-card__body {
    padding: 0 16px 14px;
  }

  .form-grid--two,
  .stats-inline {
    text-align: center;
  }

  .stat-card + .stat-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--bw-border);
  }

  .story-media,
  .story-media__frame img,
  .contact-map iframe {
    min-height: 360px;
  }

  .contact-map iframe {
    height: 360px;
  }

  .detail-panel--cta .btn-brand {
    width: auto;
  }

  .detail-gallery__item,
  .detail-gallery__item--wide {
    grid-column: auto;
  }

  .detail-gallery__item img,
  .detail-gallery__item--wide img {
    height: 340px;
  }

  .values-photo {
    aspect-ratio: 471 / 278;
  }

  .values-photo img {
    min-height: 0;
    height: 100%;
  }

  .mission-editorial__primary-image img {
    height: 520px;
  }

  .mission-editorial__secondary-image img {
    height: 320px;
  }

  .values-editorial {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .values-editorial__title {
    max-width: 700px;
    margin-bottom: 28px;
  }

  .values-editorial__list {
    padding-top: 0;
  }

  .mission-collage {
    min-height: auto;
    display: grid;
    gap: 24px;
  }

  .mission-collage__main,
  .mission-collage__side,
  .mission-collage__badge {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .mission-collage__main img {
    min-height: 420px;
  }

  .mission-collage__side img {
    min-height: 320px;
  }

  .mission-collage__badge {
    width: 110px;
    height: 110px;
    margin-inline: auto;
  }

  .about-video-block {
    aspect-ratio: 16 / 9;
  }

  .about-video-block__video {
    min-height: 0;
    height: 100%;
  }

  .about-video-block__play {
    width: 82px;
    height: 82px;
  }

  .about-video-block__play-icon {
    margin-left: 4px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .vision-slider__viewport {
    min-height: 420px;
  }

  .vision-slider__slide img {
    height: 420px;
  }

  .vision-slider__overlay {
    align-items: flex-end;
    padding: 36px 32px 108px;
  }

  .vision-slider__controls {
    right: 24px;
    bottom: 20px;
  }

  .vision-slider__dots {
    left: 32px;
    bottom: 36px;
  }

  .vision-showcase__dots {
    display: flex;
  }

  .vision-showcase-section {
    --vision-side-card-width: 160px;
    --vision-side-peek: 8px;
    --vision-card-gap: 16px;
    --vision-card-height: 400px;
  }

  .process-fidelity__watermark--right {
    right: -260px;
  }

  .testimonial-fidelity__arrow {
    position: static;
    margin-inline: 8px;
  }

  .testimonial-fidelity__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-inline: 0;
  }

  .testimonial-fidelity__body {
    padding-inline: 0;
  }

  .site-footer {
    margin-top: -72px;
    padding-top: 150px;
  }

  body[data-page="contact"] .site-footer {
    margin-top: 0;
    padding-top: 64px;
  }
}

@media (max-width: 767.98px) {
  .container-shell {
    width: calc(100% - 32px);
  }

  body {
    font-size: 14px;
  }

  .site-nav {
    min-height: 76px;
  }

  .site-brand img {
    width: 112px;
    height: auto;
  }

  .site-nav__toggle {
    width: 48px;
    height: 48px;
    top: 30px;
  }

  .nav-link {
    font-size: 15px;
    line-height: 18px;
  }

  .btn-brand {
    min-height: 56px;
    gap: 16px;
    padding: 8px 8px 8px 24px;
    font-size: 16px;
    line-height: 22px;
  }

  .btn-brand__chip {
    width: 42px;
    height: 42px;
  }

  .split-section.split-section--home .service-spotlight-card__media img {
    min-height: 280px;
  }

  .split-section.split-section--home .service-spotlight-card__body {
    padding: 0 14px 14px;
  }

  .split-section.split-section--home .service-spotlight-card__title {
    font-size: 17px;
  }

  .split-section.split-section--home .service-spotlight-card__text {
    font-size: 13px;
    line-height: 1.38;
  }

  .section,
  .section-tight {
    padding-block: 60px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 15px;
  }

  .section-title,
  .cta-panel__title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
    text-align: center;
  }

  .values-section .values-editorial__title {
    max-width: 420px;
    margin-bottom: 22px;
    text-align: left;
  }

  .values-section .values-editorial__eyebrow,
  .values-section .values-editorial__intro,
  .values-section .values-editorial__list {
    text-align: left;
  }

  .values-section .value-row {
    padding-bottom: 18px;
  }

  .values-section .value-row__body h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .values-section .value-row__body p {
    font-size: 15px;
    line-height: 24px;
  }

  .stats-bar {
    text-align: center;
  }

  .stats-bar__item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero__title,
  .hero-home__title {
    font-size: 40px;
    line-height: 0.98;
  }

  .page-hero__copy,
  .hero-home__copy,
  .hero-home__proof-text,
  .section-copy,
  .story-copy__body,
  .mission-copy__body,
  .contact-intro__copy,
  .cta-panel__text,
  .site-footer__body,
  .site-footer__list a,
  .site-footer__contact-item,
  .site-footer__bottom p,
  .service-spotlight-card__text,
  .finance-card__body p,
  .vision-card__text,
  .value-row__body p,
  .contact-info-value,
  .vision-slider__overlay p:last-child {
    font-size: 15px;
    line-height: 24px;
  }

  .lead-form-card h2,
  .service-spotlight-card__title,
  .finance-card__title,
  .work-card__label,
  .process-fidelity__title,
  .contact-info-label,
  .contact-form__label,
  .value-row__body h3,
  .vision-card__title,
  .testimonial-fidelity__name,
  .site-footer__heading {
    font-size: 22px;
    line-height: 28px;
  }

  .lead-form-card p,
  .testimonial-fidelity__meta {
    font-size: 14px;
    line-height: 22px;
  }

  .detail-richtext,
  .detail-feature__value {
    font-size: 15px;
    line-height: 24px;
  }

  .detail-panel__title,
  .detail-feature__label {
    font-size: 22px;
    line-height: 28px;
  }

  .detail-page {
    padding-top: 72px;
  }

  .detail-main__intro {
    margin-bottom: 22px;
  }

  .page-hero--title-only {
    padding-block: 138px 84px;
  }

  .lead-form-card,
  .contact-panel,
  .cta-panel,
  .testimonial-card,
  .detail-panel {
    padding: 24px;
  }

  .service-spotlight-card__body,
  .finance-card__body,
  .vision-banner__copy {
    padding: 24px;
  }

  .about-video-block {
    aspect-ratio: 16 / 10;
  }

  .about-video-block__video {
    min-height: 0;
    height: 100%;
  }

  .vision-slider__slide img {
    min-height: 320px;
    height: 320px;
  }

  .mission-editorial__copy,
  .mission-editorial__aside {
    gap: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .mission-editorial__primary-image img {
    height: 420px;
  }

  .mission-editorial__secondary-image img {
    height: 260px;
  }

  .detail-gallery__item img,
  .detail-gallery__item--wide img {
    height: 260px;
  }

  .about-video-block__play {
    width: 64px;
    height: 64px;
  }

  .about-video-block__play-icon {
    margin-left: 4px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 14px;
  }

  .vision-slider__overlay {
    padding: 24px 24px 84px;
  }

  .vision-slider__overlay p:last-child {
    margin-top: 18px;
  }

  .vision-slider__controls {
    gap: 10px;
    right: 18px;
    bottom: 16px;
  }

  .vision-slider__arrow {
    width: 46px;
    height: 46px;
  }

  .vision-slider__dots {
    left: 24px;
    bottom: 28px;
  }

  .vision-showcase-section {
    --vision-side-card-width: 112px;
    --vision-side-peek: 6px;
    --vision-card-gap: 12px;
    --vision-card-height: 260px;
  }

  .vision-showcase-section .vision-cards {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .vision-showcase-section .vision-card--side {
    display: none;
  }

  .vision-showcase-section .vision-card--center {
    display: block;
  }

  .vision-showcase-section .vision-card--center img {
    height: 320px;
  }

  .vision-showcase-section .vision-card__overlay {
    min-height: 122px;
    padding: 14px 14px 16px;
  }

  .vision-showcase-section .vision-card__title {
    font-size: 16px;
    line-height: 22px;
  }

  .vision-showcase-section .vision-card__text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .work-card {
    min-height: 280px;
    height: auto;
  }

  .vision-banner img {
    min-height: 560px;
  }

  .work-card__label {
    min-height: 68px;
    padding: 18px 20px;
  }

  .process-fidelity {
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .process-fidelity__watermark {
    top: 38px;
    font-size: 92px;
  }

  .process-fidelity__watermark--left {
    left: -18px;
  }

  .process-fidelity__watermark--right {
    right: -186px;
    display: none;
  }

  .process-fidelity__number {
    margin-top: 54px;
    font-size: 120px;
    line-height: 52px;
  }

  .process-fidelity__text {
    margin-top: 38px;
  }

  .process-fidelity__media img {
    height: 280px;
  }

  .testimonial-fidelity__body {
    margin-top: 36px;
  }

  .testimonial-fidelity__quote {
    font-size: 18px;
    line-height: 28px;
  }

  .logo-wall__header {
    font-size: 24px;
  }

  .partners-strip__track,
  .partners-strip__group {
    gap: 34px;
  }

  .partner-logo {
    width: 132px;
  }

  .site-footer {
    padding-bottom: 24px;
  }
}
