:root {
  --navy: #07182d;
  --navy-2: #102943;
  --green: #14783a;
  --green-dark: #0f5f2e;
  --steel: #2e668f;
  --gold: #c79b3b;
  --ink: #102033;
  --muted: #596879;
  --line: #d7dfe3;
  --surface: #f3f6f5;
  --surface-2: #e9efec;
  --white: #ffffff;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  transform: translateY(-150%);
}

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

.utility-bar {
  height: 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  font-size: 12px;
}

.utility-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.division-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.division-link:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  border-bottom: 1px solid rgba(215, 223, 227, 0.9);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 24, 45, 0.08);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
}

.brand-mark img {
  width: 38px;
  height: auto;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 750;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  position: relative;
  color: #344356;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"] {
  color: var(--green-dark);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  isolation: isolate;
  height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.hero-image {
  z-index: -4;
  animation: hero-settle 1100ms ease-out both;
}

.hero-video {
  z-index: -3;
  background: var(--navy);
}

.hero-video[hidden] {
  display: none;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(4, 18, 34, 0.66);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  background: rgba(4, 18, 34, 0.28);
  content: "";
}

.hero-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding-bottom: 88px;
}

.hero-copy {
  max-width: 720px;
  animation: hero-copy 700ms 100ms ease-out both;
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8be5ae;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--green-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(7, 24, 45, 0.38);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(7, 24, 45, 0.72);
}

.button-outline {
  border-color: #aeb9bf;
  color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--navy);
}

.button-arrow {
  position: relative;
  display: block;
  width: 17px;
  height: 12px;
}

.button-arrow::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  content: "";
}

.button-arrow::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 24, 45, 0.94);
  backdrop-filter: blur(8px);
}

.proof-strip {
  display: grid;
  min-height: 88px;
  grid-template-columns: 0.6fr 1fr 1fr;
}

.proof-strip > a {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.proof-strip > a::after {
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.proof-strip > a:nth-child(2)::after {
  background: var(--steel);
}

.proof-strip > a:nth-child(3)::after {
  background: var(--gold);
}

.proof-strip > a:hover,
.proof-strip > a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.proof-strip > a:hover::after,
.proof-strip > a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.proof-strip > a:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.proof-strip span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.section {
  padding: 88px 0;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.16;
}

.section h3 {
  color: var(--navy);
}

.section p {
  color: var(--muted);
}

.section-lead {
  margin: 24px 0 0;
  color: #334459;
  font-size: 19px;
  line-height: 1.65;
}

.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: 96px;
}

.section-copy > p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
}

.delivery-steps {
  margin: 2px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.delivery-steps strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 650;
}

.delivery-steps small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.capabilities-section {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 42px;
}

.section-heading > p {
  margin: 0 0 4px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  position: relative;
  display: flex;
  grid-column: span 3;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.capability-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
  content: "";
}

.capability-card:nth-child(2)::before,
.capability-card:nth-child(4)::before {
  background: var(--steel);
}

.capability-card-compact {
  grid-column: span 2;
  min-height: 435px;
}

.capability-card-featured {
  min-height: 555px;
}

.capability-card:hover {
  border-color: #aebdb5;
  box-shadow: 0 18px 38px rgba(7, 24, 45, 0.07);
  transform: translateY(-3px);
}

.capability-media {
  position: relative;
  height: 170px;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
}

.capability-card-featured .capability-media {
  height: 226px;
}

.capability-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 24, 45, 0.18));
  content: "";
  pointer-events: none;
}

.capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: filter 400ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.capability-card:hover .capability-media img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.capability-body {
  flex: 1;
  padding: 32px;
}

.capability-number {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.capability-card:nth-child(2) .capability-number,
.capability-card:nth-child(4) .capability-number {
  color: var(--steel);
}

.capability-card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.24;
}

.capability-card-compact h3 {
  font-size: 20px;
}

.capability-card p {
  margin: 16px 0 0;
  line-height: 1.65;
}

.capability-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: #405063;
  font-size: 14px;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 18px;
}

.capability-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--green);
  content: "";
}

.approach-section {
  color: var(--white);
  background: var(--navy);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: 78px;
}

.approach-media {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-media::after {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(7, 24, 45, 0.12);
  content: "";
  pointer-events: none;
}

.approach-copy h2 {
  color: var(--white);
}

.approach-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.approach-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-list span {
  color: #86d8a5;
  font-size: 12px;
  font-weight: 750;
}

.approach-list strong {
  font-size: 15px;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration-color: #86d8a5;
  text-underline-offset: 5px;
}

.reasons-section {
  background: var(--white);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason {
  min-width: 0;
  padding: 32px 32px 34px 0;
}

.reason + .reason {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.reason > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.reason h3 {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
}

.reason p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: 76px;
}

.contact-copy {
  padding: 8px 0;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
}

.contact-actions {
  margin-top: 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-details > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > div:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.contact-details > div:last-child {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}

.contact-details div > span:first-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-details a,
.contact-details div > span:last-child {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-media {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 750;
}

.footer-brand span {
  margin-top: 4px;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.site-footer a {
  font-size: 12px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer p {
  justify-self: end;
  margin: 0;
  font-size: 12px;
  text-align: right;
}

:focus-visible {
  outline: 3px solid #e8b947;
  outline-offset: 3px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0.72;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .about-layout,
  .approach-layout,
  .contact-layout {
    gap: 52px;
  }

  .section-heading {
    gap: 42px;
  }

  .capability-card-compact {
    grid-column: span 3;
  }

  .capability-card:last-child {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 98px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - 98px);
    overflow-y: auto;
    padding: 18px 24px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 32px rgba(7, 24, 45, 0.12);
  }

  .site-header.is-scrolled .primary-nav {
    top: 68px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .approach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-media {
    height: 420px;
  }

  .approach-copy {
    max-width: 720px;
  }

  .contact-media {
    min-height: 420px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .utility-inner {
    font-size: 11px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .hero {
    height: 620px;
  }

  .hero::after {
    width: 100%;
  }

  .hero-image {
    object-position: 57% 50%;
  }

  .hero-video {
    object-position: center;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 66px;
    padding-bottom: 102px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .action-row {
    margin-top: 24px;
  }

  .hero-proof,
  .proof-strip {
    min-height: 92px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-strip > a {
    padding: 12px 10px;
  }

  .proof-strip > a:first-child {
    padding-left: 10px;
  }

  .proof-strip > a::after {
    right: 10px;
    left: 10px;
  }

  .proof-strip strong {
    font-size: 13px;
  }

  .proof-strip span {
    font-size: 10px;
    line-height: 1.3;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 33px;
  }

  .section-lead {
    font-size: 17px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card-compact,
  .capability-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .capability-body {
    padding: 27px 24px;
  }

  .capability-media,
  .capability-card-featured .capability-media {
    height: 220px;
  }

  .capability-number {
    margin-bottom: 26px;
  }

  .approach-media {
    height: 340px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason,
  .reason + .reason {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .reason:last-child {
    border-bottom: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div,
  .contact-details > div:nth-child(even),
  .contact-details > div:last-child {
    grid-column: auto;
    padding: 16px 0;
    border-left: 0;
  }

  .contact-media {
    min-height: 330px;
  }
}

@media (max-width: 480px) {
  .utility-inner > span:last-child {
    display: none;
  }

  .brand-copy span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 35px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    min-height: 104px;
  }

  .proof-strip {
    min-height: 104px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-strip > a {
    padding: 11px 7px;
  }

  .proof-strip > a:first-child {
    padding-left: 7px;
  }

  .proof-strip > a::after {
    right: 7px;
    left: 7px;
  }

  .proof-strip strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .proof-strip span {
    font-size: 9px;
    line-height: 1.3;
  }

  .section h2 {
    font-size: 30px;
  }

  .approach-media {
    height: 290px;
  }

  .capability-media,
  .capability-card-featured .capability-media {
    height: 198px;
  }

  .site-footer nav {
    gap: 14px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
