@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Barlow-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy-950: #071630;
  --navy-900: #092653;
  --navy-800: #0b376f;
  --blue-600: #056da8;
  --cyan-500: #006f9f;
  --cyan-100: #dff5ff;
  --red-600: #d9081c;
  --red-700: #b90416;
  --ice-50: #f7fbfd;
  --ice-100: #edf5f9;
  --ice-200: #d9e8f0;
  --steel-500: #52677b;
  --ink: #101b30;
  --white: #ffffff;
  --content: 1440px;
  --gutter: clamp(20px, 5.2vw, 82px);
  --header-height: 92px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
.button,
.text-action,
.circle-action,
.site-nav a {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: relative;
  z-index: 30;
  height: var(--header-height);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(10, 55, 111, .11);
}

.header-inner {
  width: min(100% - 40px, var(--content));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
}

.brand {
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 174px;
}

.brand img {
  width: 154px;
  height: 74px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 34px);
  font-size: 15px;
  font-weight: 600;
  color: #30445f;
}

.site-nav a {
  position: relative;
  padding-block: 13px;
  white-space: nowrap;
}

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

.site-nav a[aria-current="page"] {
  color: var(--navy-900);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 120ms var(--ease-out);
}

.button:active,
.circle-action:active {
  transform: scale(.98);
}

.button-header {
  min-width: 190px;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  background: #d7dce3;
}

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

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 0;
  width: 52%;
  background: rgba(255, 255, 255, .72);
  box-shadow: 110px 0 120px 18px rgba(255, 255, 255, .62);
}

.hero-inner {
  width: min(100% - (var(--gutter) * 2), var(--content));
  min-height: 500px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(660px, 50%);
  padding: 26px 0 20px;
  animation: hero-enter 720ms var(--ease-out) both;
}

.heading-context {
  margin: 0 0 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-800);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.heading-context::before {
  content: "";
  width: 45px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cyan-500);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.service-feature h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(58px, 4.75vw, 76px);
  line-height: .91;
}

.hero h1 em {
  display: block;
  color: var(--cyan-500);
  font-style: normal;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 28px;
  color: #4f5f71;
  font-size: 20px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.button-primary {
  min-height: 60px;
  padding-inline: 25px;
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.button-secondary {
  min-height: 60px;
  color: var(--blue-600);
  background: rgba(255, 255, 255, .9);
  border-color: var(--cyan-500);
}

.button-mark {
  font-size: 22px;
  line-height: 1;
}

.phone-mark {
  width: 18px;
  height: 18px;
  overflow: hidden;
  color: var(--blue-600);
  border: 4px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  font-size: 0;
  transform: rotate(42deg);
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-800);
  border-bottom: 1px solid var(--cyan-500);
  font-weight: 600;
  white-space: nowrap;
}

.services {
  position: relative;
  padding: 12px;
  background-color: #eaf2f7;
  background-image: url("assets/plates/services-ground.png");
  background-size: cover;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 248, 251, .68);
  pointer-events: none;
}

.services-inner {
  position: relative;
  width: min(100% - (var(--gutter) * 2), var(--content));
  margin-inline: auto;
  padding: 31px 0 82px;
  display: grid;
  grid-template-columns: .92fr 1.06fr 1fr;
  gap: 15px;
  align-items: start;
}

.services-intro {
  padding: 8px 30px 0 0;
}

.services-intro .heading-context {
  margin-bottom: 22px;
}

.services h2,
.expertise h2,
.about h2,
.contact h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(46px, 4.1vw, 66px);
  line-height: .94;
}

.services-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 28px;
  color: #50657a;
  font-size: 18px;
  line-height: 1.45;
}

.button-outline {
  min-height: 50px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, .52);
  border-color: var(--blue-600);
}

.service-feature {
  position: relative;
  min-height: 384px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.service-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.service-feature-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 25, 51, .24);
  box-shadow: inset 230px 0 170px rgba(0, 0, 0, .72);
}

.service-feature-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 28px 25px;
}

.service-number,
.service-code {
  color: var(--cyan-500);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-feature h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: .94;
}

.service-feature-copy > p:not(.service-number) {
  max-width: 230px;
  margin-bottom: 18px;
  color: #dce9f2;
  font-size: 15px;
  line-height: 1.35;
}

.circle-action,
.service-row > a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 120ms var(--ease-out);
}

.service-stack {
  display: grid;
  gap: 11px;
}

.service-row {
  min-height: 91px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px 1fr 44px;
  gap: 14px;
  align-items: center;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(81, 132, 173, .14);
  border-radius: 8px;
}

.service-row-dark {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.service-row-dark .service-code,
.service-feature .service-number {
  color: #69d1ff;
}

.service-row h3,
.service-small h3 {
  margin-bottom: 3px;
  font-size: 17px;
  line-height: 1.3;
}

.service-row p,
.service-small p {
  margin-bottom: 0;
  color: #52677b;
  font-size: 14px;
  line-height: 1.3;
}

.service-row-dark p {
  color: #b9cad9;
}

.service-row:not(.service-row-dark) > a {
  color: var(--blue-600);
  border-color: rgba(8, 127, 197, .55);
}

.service-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(81, 132, 173, .14);
}

.service-small {
  min-height: 174px;
  padding: 18px 14px;
}

.service-small + .service-small {
  border-left: 1px solid rgba(81, 132, 173, .16);
}

.service-small .service-code {
  display: block;
  margin-bottom: 28px;
}

.expertise {
  padding: 120px var(--gutter);
  color: var(--white);
  background: var(--navy-950);
}

.expertise-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.heading-context-light {
  color: #afd9ee;
}

.expertise h2,
.contact h2 {
  color: var(--white);
}

.expertise-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
  color: #aebfd0;
  font-size: 20px;
}

.text-action-light {
  color: var(--white);
}

.system-path {
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.system-path li {
  min-height: 108px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 54px 160px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.system-path li > span {
  color: var(--cyan-500);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.system-path strong {
  font-size: 20px;
}

.system-path small {
  color: #9fb1c4;
  font-size: 15px;
}

.about {
  padding: 110px var(--gutter);
  background: var(--ice-50);
}

.about-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: .42fr 1fr .8fr;
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.about-index {
  margin: -22px 0 0;
  color: transparent;
  -webkit-text-stroke: 1px #aac5d5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(110px, 12vw, 180px);
  font-weight: 700;
  line-height: .8;
}

.about-copy > p:last-child {
  max-width: 610px;
  color: #52667a;
  font-size: 19px;
}

.about-list {
  margin: 0;
  border-top: 2px solid var(--navy-900);
}

.about-list div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  border-bottom: 1px solid #c7d8e3;
}

.about-list dt {
  color: var(--steel-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-list dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 600;
}

.contact {
  padding: 112px var(--gutter);
  color: var(--white);
  background: var(--navy-900);
}

.contact-inner {
  width: min(100%, 1220px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: #b9cad9;
  font-size: 19px;
}

.contact address {
  margin-top: 40px;
  display: grid;
  gap: 17px;
  font-style: normal;
}

.contact address a {
  width: fit-content;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.contact address span {
  display: block;
  margin-bottom: 2px;
  color: #77badc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 18px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #dceaf2;
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--white);
  background: #123666;
  border: 1px solid #41678e;
  border-radius: 5px;
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan-500);
  outline: 2px solid rgba(255, 255, 255, .72);
  outline-offset: 2px;
}

.field [aria-invalid="true"] {
  border-color: #ff7180;
}

.field-help,
.field-error {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.3;
}

.field-help {
  color: #93acc2;
}

.field-error {
  min-height: 17px;
  color: #ffabb4;
}

#contact-form > .button {
  width: fit-content;
  min-width: 215px;
  margin-top: 2px;
}

.site-footer {
  padding: 26px var(--gutter);
  color: #7d91a4;
  background: #061226;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  align-items: center;
}

.footer-brand img {
  width: 125px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

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

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .button-header:hover,
  .button-secondary:hover,
  .button-outline:hover {
    color: var(--white);
    background: var(--navy-900);
    border-color: var(--navy-900);
  }

  .button-primary:hover {
    background: var(--red-700);
    box-shadow: 0 15px 36px rgba(0, 0, 0, .24);
  }

  .text-action:hover {
    color: var(--cyan-500);
  }

  .circle-action:hover,
  .service-row > a:hover {
    color: var(--navy-900);
    background: var(--white);
  }

  .contact address a:hover {
    color: var(--cyan-500);
  }
}

@media (max-width: 1220px) {
  :root {
    --gutter: 38px;
  }

  .header-inner {
    grid-template-columns: 154px 1fr auto;
  }

  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .header-cta {
    min-width: 166px;
    padding-inline: 16px;
  }

  .hero-copy {
    width: 56%;
  }

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

  .services-inner {
    grid-template-columns: .82fr 1fr 1fr;
  }

  .services h2 {
    font-size: 49px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
    --gutter: 28px;
  }

  .header-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 135px;
  }

  .brand img {
    height: 64px;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: transparent;
    border: 1px solid #c7d8e3;
    border-radius: 50%;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease-out), opacity 160ms var(--ease-out);
  }

  .menu-lines {
    position: relative;
  }

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

  .menu-lines::before {
    top: -6px;
  }

  .menu-lines::after {
    top: 6px;
  }

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

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

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

  .site-nav {
    position: fixed;
    z-index: 40;
    inset: var(--header-height) 0 auto;
    padding: 28px 20px 34px;
    display: grid;
    gap: 4px;
    color: var(--navy-950);
    background: var(--white);
    border-bottom: 1px solid #d8e5ec;
    box-shadow: 0 20px 36px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf2f5;
    font-size: 17px;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero-shade {
    width: 63%;
  }

  .hero-copy {
    width: 63%;
  }

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

  .hero-actions {
    flex-wrap: wrap;
  }

  .services-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 64px;
  }

  .services-intro {
    grid-column: 1 / -1;
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
  }

  .services-intro .heading-context,
  .services-intro h2 {
    grid-column: 1;
  }

  .services-intro > p:not(.eyebrow),
  .services-intro .button {
    grid-column: 2;
  }

  .services-intro > p:not(.eyebrow) {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .services-intro .button {
    width: fit-content;
  }

  .expertise-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .expertise-inner {
    gap: 60px;
  }

  .about-index {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 150px 1fr;
  }

  .footer-inner p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    font-size: 16px;
    overscroll-behavior-y: none;
  }

  .hero {
    min-height: 730px;
    background: var(--white);
  }

  .hero-image {
    height: 330px;
    object-position: 67% center;
  }

  .hero-shade {
    top: 292px;
    width: 100%;
    height: 68px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -40px 60px 30px rgba(255, 255, 255, .92), 0 40px 40px 20px var(--white);
  }

  .hero-inner {
    min-height: 730px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 348px;
  }

  .hero .heading-context {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 500px;
    margin-bottom: 17px;
    font-size: clamp(49px, 14vw, 62px);
    line-height: .92;
  }

  .hero-lede {
    margin-bottom: 23px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 13px;
  }

  .hero-actions .text-action {
    width: fit-content;
    grid-column: 1 / -1;
  }

  .button-mark,
  .phone-mark {
    display: none;
  }

  .services-inner,
  .services-intro,
  .about-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-inner {
    padding-block: 70px;
    gap: 14px;
  }

  .services-intro {
    gap: 0;
    padding-bottom: 24px;
  }

  .services-intro .heading-context,
  .services-intro h2,
  .services-intro > p:not(.eyebrow),
  .services-intro .button {
    grid-column: 1;
    grid-row: auto;
  }

  .services h2,
  .expertise h2,
  .about h2,
  .contact h2 {
    font-size: 48px;
  }

  .service-feature {
    min-height: 420px;
  }

  .service-feature > img {
    object-position: 48% center;
  }

  .service-small-grid {
    grid-template-columns: 1fr;
  }

  .service-small {
    min-height: auto;
    padding: 19px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 2px 12px;
  }

  .service-small + .service-small {
    border-top: 1px solid rgba(81, 132, 173, .16);
    border-left: 0;
  }

  .service-small .service-code {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .expertise,
  .about,
  .contact {
    padding-block: 82px;
  }

  .system-path li {
    grid-template-columns: 42px 1fr;
    gap: 9px 15px;
    padding-block: 18px;
  }

  .system-path small {
    grid-column: 2;
  }

  .about-inner {
    gap: 36px;
  }

  .contact-inner {
    gap: 55px;
  }

  .contact address a {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 18px;
  }

  #contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: 1;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  #contact-form > .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-inner p:last-child {
    grid-column: 1;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .text-action {
    grid-column: 1;
  }

  .service-row {
    grid-template-columns: 30px 1fr;
  }

  .service-row > a {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-copy {
    opacity: 1;
    transform: none;
  }
}
