:root {
  --navy: #212a31;
  --navy-deep: #212a31;
  --steel: #124e66;
  --mist: #d3d9d4;
  --sand: #d3d9d4;
  --rust: #2e3944;
  --orange: #748d92;
  --amber: #d3d9d4;
  --cream: #ffffff;
  --pale-citron: #d3d9d4;
  --white: #ffffff;
  --ink-soft: rgba(46, 57, 68, 0.76);
  --line: rgba(33, 42, 49, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --header-height: 78px;
  --page-pad: clamp(1.25rem, 4.4vw, 5rem);
  --section-pad: clamp(5rem, 9vw, 9rem);
  --max: 94rem;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  padding: 0.55rem 0.8rem;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.55rem 0.85rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem var(--page-pad);
  color: var(--white);
  background: rgba(33, 42, 49, 0.92);
  border-bottom: 1px solid var(--line-light);
}

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

.brand img {
  width: clamp(10rem, 16vw, 13.625rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(56rem, 100svh);
  display: grid;
  grid-template-columns: minmax(24rem, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--navy-deep);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 42, 49, 0.2);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 5vw, 5.5rem) clamp(9rem, 14vw, 13rem) var(--page-pad);
  background: linear-gradient(138deg, rgba(18, 78, 102, 0.96) 0 46%, rgba(46, 57, 68, 0.95) 46% 100%);
}

.hero h1 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: pretty;
}

.hero-panel > p {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.arrow-link {
  width: max-content;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.62rem 0.8rem 0.62rem 1rem;
  color: var(--navy-deep);
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.arrow-link svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  color: var(--white);
  background: var(--rust);
}

.hero-strip {
  position: relative;
  z-index: 3;
  grid-column: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: transparent;
}

.hero-strip div {
  min-height: 7.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip div:nth-child(1) {
  background: var(--steel);
}

.hero-strip div:nth-child(2) {
  background: var(--rust);
}

.hero-strip div:nth-child(3) {
  color: var(--navy);
  background: var(--mist);
}

.hero-strip div:nth-child(3) span {
  color: rgba(33, 42, 49, 0.68);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-strip span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.section > * {
  max-width: var(--max);
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  max-width: 20ch;
  font-size: clamp(2.65rem, 4.6vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
  text-wrap: pretty;
}

.lead {
  font-family: var(--sans);
  font-size: clamp(1.16rem, 1.7vw, 1.48rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.5;
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: 4rem clamp(3rem, 8vw, 9rem);
  background: var(--cream);
}

.company > * {
  width: 100%;
}

.company-title {
  grid-column: 1 / -1;
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.company-title h2 {
  max-width: 20ch;
}

.company-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.company-copy p {
  margin: 0;
}

.company-copy p:not(.lead) {
  color: var(--ink-soft);
}

.company-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1;
}

.company-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.capabilities {
  color: var(--white);
  background: var(--steel);
}

.capability-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.capability-intro h2 {
  max-width: 20ch;
}

.capability-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.delivery-path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: 0;
  background: var(--rust);
  list-style: none;
}

.delivery-path li {
  position: relative;
  min-height: 11rem;
  padding: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.delivery-path li:last-child {
  border-right: 0;
}

.delivery-path li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.62rem;
  bottom: 1.15rem;
  z-index: 1;
  width: 1.25rem;
  color: var(--white);
  background: var(--rust);
  text-align: center;
}

.delivery-path span,
.delivery-path strong,
.delivery-path small {
  display: block;
}

.delivery-path span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.delivery-path strong {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 400;
}

.delivery-path small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.discipline-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.discipline-list article {
  display: grid;
  grid-template-columns: 2rem minmax(9rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 1.8rem 1.8rem 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.discipline-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.discipline-list article:nth-child(even) {
  padding-left: 1.8rem;
}

.discipline-list span {
  color: var(--rust);
  font-size: 0.72rem;
}

.discipline-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
}

.discipline-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.disciplines {
  background: var(--mist);
}

.disciplines-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.disciplines-intro h2 {
  max-width: 20ch;
}

.disciplines-intro p {
  margin: 0;
  color: var(--ink-soft);
}

.engineering {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  gap: 0;
  padding: 0;
  background: var(--white);
}

.engineering > * {
  max-width: none;
  margin: 0;
}

.engineering-image {
  position: relative;
  min-height: 45rem;
  overflow: hidden;
}

.engineering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engineering-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--page-pad);
}

.engineering-copy h2 {
  max-width: 18ch;
}

.engineering-copy p {
  margin: 1.8rem 0 0;
}

.engineering-copy p:not(.lead) {
  color: var(--ink-soft);
}

.scope-line {
  margin-top: 3rem;
  padding-top: 1.2rem;
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: 1.16rem;
  border-top: 1px solid var(--line);
}

.systems {
  background: var(--sand);
}

.systems-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.systems-heading h2 {
  max-width: 20ch;
}

.systems-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.systems-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 4px solid var(--navy);
  border-left: 1px solid var(--line);
}

.systems-list article {
  min-height: 18rem;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.systems-list p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(26rem, 0.92fr);
  background: var(--pale-citron);
}

.experience-image {
  min-height: 54rem;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--page-pad);
}

.experience-content h2 {
  max-width: 19ch;
}

.experience-content > p {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
}

.project-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.project-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.project-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

.project-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.network-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.network {
  background: linear-gradient(122deg, var(--navy) 0 62%, var(--rust) 62% 100%);
}

.network-heading h2 {
  max-width: 20ch;
}

.network-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.network-diagram {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(7rem, 0.3fr) minmax(22rem, 1fr);
  align-items: stretch;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.network-node {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem;
  border: 1px solid var(--line-light);
}

.main-node {
  color: var(--navy);
  background: var(--mist);
  border: 0;
}

.network-node strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
}

.network-node span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.main-node span {
  color: rgba(33, 42, 49, 0.66);
}

.network-partners .network-node:first-child {
  background: var(--steel);
  border-color: transparent;
}

.network-partners .network-node:last-child {
  background: var(--rust);
  border-color: transparent;
}

.network-line {
  position: relative;
}

.network-line::before,
.network-line::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.network-line::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.network-line::after {
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
}

.network-partners {
  display: grid;
  gap: 1rem;
}

.clients {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4rem, 7vw, 6.5rem) var(--page-pad);
  color: var(--navy);
  background: var(--mist);
}

.clients h2 {
  max-width: 20ch;
  font-size: clamp(2.1rem, 3.6vw, 3.45rem);
}

.client-names {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  gap: 1px;
  background: var(--white);
}

.client-names span {
  min-height: 5rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
  text-align: center;
}

.client-names span:nth-child(4n + 1) {
  background: var(--navy);
}

.client-names span:nth-child(4n + 2) {
  background: var(--steel);
}

.client-names span:nth-child(4n + 3) {
  background: var(--rust);
}

.client-names span:nth-child(4n + 4) {
  color: var(--navy);
  background: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad) 2.5rem;
  color: var(--white);
  background: linear-gradient(112deg, var(--navy) 0 54%, var(--steel) 54% 72%, var(--rust) 72% 100%);
  border-top: 0.4rem solid var(--orange);
}

.footer-brand {
  color: var(--white);
}

.site-footer > p {
  max-width: 35rem;
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .company,
  .capability-intro,
  .disciplines-intro,
  .systems-heading,
  .network-heading,
  .clients {
    grid-template-columns: 1fr;
  }

  .company-title {
    grid-column: 1;
  }

  .engineering,
  .experience {
    grid-template-columns: 1fr;
  }

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

  .network-diagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .network-line {
    min-height: 3.5rem;
  }

  .network-line::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .network-line::after {
    display: none;
  }

  .engineering-image,
  .experience-image {
    min-height: 36rem;
  }

  .experience-image {
    order: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-block: 0.6rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0;
    color: var(--white);
    background: none;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    width: 1.4rem;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle i::before {
    top: -0.4rem;
  }

  .menu-toggle i::after {
    top: 0.4rem;
  }

  .menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 6rem var(--page-pad) 3rem;
    color: var(--white);
    background: var(--navy-deep);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 10vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
    border-bottom: 1px solid var(--line-light);
  }

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

  .hero {
    min-height: min(52rem, 100svh);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .hero::after {
    background: rgba(33, 42, 49, 0.38);
  }

  .hero-panel {
    grid-row: 1;
    width: 78%;
    padding: 7rem var(--page-pad) 5.5rem;
    background: linear-gradient(138deg, rgba(18, 78, 102, 0.94) 0 48%, rgba(46, 57, 68, 0.93) 48% 100%);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8vw, 4.6rem);
  }

  .hero-strip {
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-strip div {
    min-width: 0;
    padding: 1rem 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 0;
  }

  .hero-strip strong {
    font-size: 1rem;
  }

  .hero-strip span {
    font-size: 0.67rem;
  }

  .company-copy,
  .discipline-list,
  .network-diagram {
    grid-template-columns: 1fr;
  }

  .delivery-path {
    grid-template-columns: 1fr;
  }

  .delivery-path li {
    min-height: auto;
    padding: 1rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .delivery-path li:not(:last-child)::after {
    content: "↓";
    right: 1.2rem;
    bottom: -0.7rem;
  }

  .delivery-path strong {
    margin-top: 0.8rem;
  }

  .discipline-list article,
  .discipline-list article:nth-child(odd),
  .discipline-list article:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

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

@media (max-width: 600px) {
  :root {
    --header-height: 66px;
    --page-pad: 1.15rem;
    --section-pad: 4.5rem;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .brand img {
    width: 9.5rem;
  }

  .menu-toggle span {
    display: none;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    display: none;
  }

  .hero-strip div:first-child {
    display: flex;
    border-right: 0;
  }

  .hero {
    min-height: 48rem;
  }

  .hero-panel {
    width: 100%;
    padding: 6.5rem var(--page-pad) 4.5rem;
    background: linear-gradient(145deg, rgba(18, 78, 102, 0.91) 0 46%, rgba(46, 57, 68, 0.91) 46% 100%);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 3.7rem);
    line-height: 0.98;
  }

  .hero-panel > p {
    font-size: 1rem;
  }

  .arrow-link {
    width: 100%;
    justify-content: space-between;
  }

  .company-facts div {
    grid-template-columns: 5.2rem 1fr;
  }

  .discipline-list article {
    grid-template-columns: 2rem 1fr;
  }

  .discipline-list p {
    grid-column: 2;
    margin-top: 0.4rem;
  }

  .engineering-image,
  .experience-image {
    min-height: 24rem;
  }

  .systems-list,
  .project-list article {
    grid-template-columns: 1fr;
  }

  .systems-list article {
    min-height: auto;
    padding: 1.5rem;
  }

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

  .site-footer > p {
    justify-self: start;
  }

  .footer-meta {
    grid-column: 1;
    flex-direction: column;
  }
}

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