:root {
  --navy-950: #07182d;
  --navy-900: #0b1f3a;
  --navy-800: #102b50;
  --navy-700: #193f70;
  --brand-navy: #273a82;
  --blue-600: #0868bd;
  --blue-500: #0c78d4;
  --blue-100: #dcecff;
  --steel-700: #3e4c5e;
  --steel-500: #6d7988;
  --steel-300: #bac3cf;
  --steel-200: #d9e0e8;
  --steel-100: #edf1f5;
  --steel-50: #f6f8fa;
  --white: #ffffff;
  --ink: #111b28;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --shadow-sm: 0 12px 30px rgb(7 24 45 / 8%);
  --shadow-lg: 0 28px 70px rgb(7 24 45 / 20%);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --transition: 180ms ease;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

p:last-child {
  margin-bottom: 0;
}

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

:focus-visible {
  outline: 3px solid #49a6ff;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.utility-bar {
  color: #dce7f3;
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.utility-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.utility-bar__links span {
  width: 1px;
  height: 13px;
  background: rgb(255 255 255 / 25%);
}

.utility-bar a {
  transition: color var(--transition);
}

.utility-bar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(17 27 40 / 10%);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgb(7 24 45 / 10%);
}

.site-header__inner {
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 250px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 35px);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  width: 27px;
  height: 18px;
  position: relative;
}

.menu-toggle__icon i {
  position: absolute;
  right: 0;
  width: 27px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform var(--transition), top var(--transition);
}

.menu-toggle__icon i:first-child {
  top: 4px;
}

.menu-toggle__icon i:last-child {
  top: 12px;
  width: 19px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
  top: 8px;
  width: 27px;
  transform: rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  color: var(--white);
  background: var(--blue-600);
  border: 2px solid var(--blue-600);
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover {
  color: var(--white);
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
}

.button--small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 12px;
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.button--dark:hover {
  color: var(--navy-950);
  background: transparent;
  border-color: var(--navy-950);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.text-link span,
.product-card a span,
.industry-card a span {
  transition: transform var(--transition);
}

.text-link:hover span,
.product-card a:hover span,
.industry-card a:hover span {
  transform: translateX(5px);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.eyebrow--light {
  color: #92c7f9;
}

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

.section-heading {
  margin-bottom: clamp(46px, 6vw, 78px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.history__intro h2,
.contact__intro h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-heading__copy {
  color: var(--steel-700);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading__copy p {
  margin-bottom: 18px;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 22px;
}

.section-heading--center > p:last-child {
  color: var(--steel-700);
  font-size: 18px;
}

.hero {
  min-height: min(760px, calc(100svh - 90px));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  color: var(--white);
  background: var(--navy-900);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 13%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 13%) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 90%);
}

.hero__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -70px;
  width: 150px;
  height: 100%;
  background: var(--navy-900);
  transform: skewX(-6deg);
  transform-origin: top;
}

.hero__content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  padding: 80px clamp(46px, 5.5vw, 88px) 80px max(24px, calc((100vw - var(--container)) / 2));
}

.hero h1 {
  margin-bottom: 27px;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 em {
  color: #85c5ff;
  font-style: normal;
}

.hero__lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: #d7e1ec;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: clamp(54px, 7vw, 78px);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 26px 0 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.hero__proof li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__proof strong {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__proof span {
  color: #aebed0;
  font-size: 12px;
  line-height: 1.4;
}

.hero__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #566575;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 50% 49%;
  filter: saturate(0.82) contrast(1.03);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgb(8 35 66 / 25%) 0%, transparent 50%, rgb(7 24 45 / 20%) 100%);
}

.hero__badge {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  width: 155px;
  height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero__badge::before,
.hero__badge::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__badge::before {
  inset: 8px;
  border: 1px solid rgb(11 31 58 / 16%);
}

.hero__badge::after {
  top: 19px;
  width: 7px;
  height: 7px;
  background: var(--blue-600);
}

.hero__badge span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__badge strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.hero__rail {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 17px;
  width: 6px;
  height: 115px;
  background: var(--blue-500);
}

.assurance {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
}

.assurance__grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: stretch;
}

.assurance__intro,
.assurance__item {
  display: flex;
  align-items: center;
}

.assurance__intro {
  gap: 17px;
  padding-right: 32px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.assurance__intro p {
  margin: 0;
}

.assurance__mark {
  width: 5px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--blue-600);
}

.assurance__item {
  gap: 12px;
  padding: 20px 22px;
  border-left: 1px solid var(--steel-200);
  color: var(--steel-700);
  font-size: 13px;
  font-weight: 700;
}

.assurance__item svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about {
  background:
    radial-gradient(circle at 100% 0%, rgb(12 120 212 / 8%), transparent 30%),
    var(--steel-50);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
}

.value-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: clamp(27px, 3vw, 40px);
  background: var(--white);
  border-right: 1px solid var(--steel-200);
}

.value-card:last-child {
  border-right: 0;
}

.value-card__number {
  margin-bottom: auto;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.value-card p {
  margin-bottom: 0;
  color: var(--steel-700);
  font-size: 14px;
  line-height: 1.7;
}

.value-card--accent {
  color: var(--white);
  background: var(--blue-600);
}

.value-card--accent .value-card__number,
.value-card--accent h3,
.value-card--accent p {
  color: var(--white);
}

.products {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(30deg, transparent 24%, rgb(255 255 255 / 16%) 25%, rgb(255 255 255 / 16%) 26%, transparent 27%, transparent 74%, rgb(255 255 255 / 16%) 75%, rgb(255 255 255 / 16%) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgb(255 255 255 / 16%) 25%, rgb(255 255 255 / 16%) 26%, transparent 27%, transparent 74%, rgb(255 255 255 / 16%) 75%, rgb(255 255 255 / 16%) 76%, transparent 77%);
  background-position: 0 0, 0 0;
  background-size: 80px 140px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, transparent);
}

.products .container {
  position: relative;
  z-index: 1;
}

.section-heading--light h2,
.section-heading--light .section-heading__copy {
  color: var(--white);
}

.section-heading--light .section-heading__copy p {
  color: #c4d1df;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 13%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-md);
}

.product-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.6vw, 45px);
  background: rgb(14 43 78 / 90%);
  transition: background var(--transition), transform var(--transition);
}

.product-card:hover {
  background: var(--navy-700);
}

.product-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: #8cc8ff;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
}

.product-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-card h3 {
  margin: 36px 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.product-card p {
  margin-bottom: 0;
  color: #b9c9da;
  font-size: 14px;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.product-card--cta {
  background: var(--blue-600);
}

.product-card--cta:hover {
  background: var(--blue-500);
}

.product-card--cta .product-card__icon {
  color: var(--white);
}

.product-card--cta p {
  color: #e2f1ff;
}

.industries {
  background: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.industry-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px);
  background-size: 38px 38px;
}

.industry-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, transparent 14%, rgb(7 24 45 / 95%) 75%);
}

.industry-card--manufacturing {
  background: var(--brand-navy);
}

.industry-card--maintenance {
  background: #164a76;
}

.industry-card__art {
  position: absolute;
  top: 34px;
  right: 32px;
  left: 32px;
  height: 260px;
  display: grid;
  place-items: center;
  color: rgb(255 255 255 / 47%);
}

.industry-card__art svg {
  width: min(86%, 370px);
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.industry-card__content {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 3.4vw, 46px);
}

.industry-card__content > span {
  display: inline-block;
  margin-bottom: 16px;
  color: #8bc8ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.industry-card h3 {
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.industry-card p {
  max-width: 470px;
  margin-bottom: 24px;
  color: #c6d3e0;
  font-size: 15px;
}

.industry-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.history {
  position: relative;
  overflow: hidden;
  background: var(--steel-50);
}

.history::before {
  content: "1931";
  position: absolute;
  top: 28%;
  left: -0.04em;
  color: rgb(11 31 58 / 3.5%);
  font-size: 28vw;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.7;
  pointer-events: none;
}

.history__photo {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  background: var(--steel-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.history__photo picture {
  display: block;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}

.history__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: contrast(1.04);
}

.history__photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 390px;
  padding: 10px 14px;
  color: #e5edf6;
  background: rgb(7 24 45 / 82%);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  font-size: 11px;
  line-height: 1.5;
}

.history__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 140px);
}

.history__intro {
  align-self: start;
  position: sticky;
  top: 140px;
}

.history__intro h2 {
  margin-bottom: 31px;
}

.history__intro > p:not(.eyebrow) {
  color: var(--steel-700);
  font-size: 16px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 22px;
  left: 66px;
  width: 1px;
  background: var(--steel-300);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  min-height: 150px;
  padding-bottom: 42px;
}

.timeline li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 59px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border: 4px solid var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--steel-50);
}

.timeline time {
  padding-right: 30px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.timeline h3 {
  margin-bottom: 9px;
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.timeline p {
  margin-bottom: 0;
  color: var(--steel-700);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 145px);
  color: var(--white);
  background: var(--blue-600);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgb(255 255 255 / 22%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 22%) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 5% 45%, #000, transparent 55%);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 0.9fr);
  align-items: start;
  gap: clamp(65px, 10vw, 140px);
}

.contact__intro h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(48px, 6vw, 77px);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 500px;
  color: #e2f1ff;
  font-size: 18px;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 53px;
  background: rgb(255 255 255 / 30%);
  border: 1px solid rgb(255 255 255 / 30%);
}

.contact-detail {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  background: rgb(4 78 146 / 42%);
  transition: background var(--transition);
}

a.contact-detail:hover {
  background: rgb(7 24 45 / 46%);
}

.contact-detail span {
  margin-bottom: 7px;
  color: #c8e6ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  padding: clamp(28px, 4.2vw, 52px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-form__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--steel-200);
}

.contact-form__heading span {
  color: var(--navy-950);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.contact-form__heading p {
  margin: 0;
  color: var(--steel-500);
  font-size: 10px;
}

.form-row {
  margin-bottom: 22px;
}

.form-row--split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--steel-50);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-form input {
  min-height: 49px;
  padding: 10px 13px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgb(8 104 189 / 13%);
}

.contact-form textarea::placeholder {
  color: #8a95a2;
}

.contact-form__note,
.contact-form__status {
  color: var(--steel-500);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.contact-form__note {
  margin: 13px 0 0;
}

.contact-form__status {
  min-height: 15px;
  margin: 8px 0 0;
  color: var(--blue-600);
  font-weight: 700;
}

.site-footer {
  color: #b8c5d3;
  background: var(--navy-950);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(420px, 0.8fr);
  gap: clamp(60px, 10vw, 145px);
  padding-block: 72px 62px;
}

.site-footer__brand img {
  width: min(360px, 100%);
  margin-bottom: 22px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.site-footer__brand p {
  max-width: 420px;
  font-size: 14px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.site-footer__nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__nav strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__nav a {
  font-size: 13px;
  transition: color var(--transition);
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgb(255 255 255 / 11%);
  font-size: 11px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 750;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.js .reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.js .reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.js .reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.js .reveal-stagger > .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.js .reveal-stagger > .reveal:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .brand {
    width: 220px;
  }

  .hero__content-inner {
    padding-right: 48px;
  }

  .hero__proof {
    gap: 14px;
  }

  .value-card {
    min-height: 330px;
    padding: 30px 25px;
  }

  .assurance__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .assurance__item {
    padding-inline: 15px;
  }

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

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

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner > p {
    display: none;
  }

  .site-header__inner {
    min-height: 80px;
  }

  .brand {
    width: 210px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    height: var(--mobile-nav-height, calc(100svh - 80px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 45px;
    overflow-y: auto;
    color: var(--white);
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

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

  .site-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    font-size: 18px;
    letter-spacing: -0.01em;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__content::after {
    display: none;
  }

  .hero__content-inner {
    max-width: 740px;
    margin-inline: auto;
    padding: 82px 32px 68px;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 74px);
  }

  .hero__media {
    height: 500px;
  }

  .hero__media img {
    object-position: 50% 50%;
  }

  .hero__rail {
    right: auto;
    left: 24px;
    height: 80px;
  }

  .assurance__grid {
    min-height: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .assurance__intro {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 65px;
    padding-right: 0;
    border-bottom: 1px solid var(--steel-200);
  }

  .assurance__item {
    min-height: 78px;
    justify-content: center;
  }

  .assurance__item:nth-child(2) {
    border-left: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .section-heading__copy {
    max-width: 680px;
  }

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

  .value-card {
    min-height: 280px;
  }

  .value-card:nth-child(2) {
    border-right: 0;
  }

  .value-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--steel-200);
  }

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

  .history__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .history__intro {
    position: static;
    max-width: 700px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .contact__intro {
    max-width: 720px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .industry-card {
    min-height: 490px;
  }
}

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

  .utility-bar__links span,
  .utility-bar__links a:last-child {
    display: none;
  }

  .brand {
    width: 185px;
  }

  .site-header__inner {
    min-height: 72px;
  }

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

  .hero__content-inner {
    padding: 67px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__proof li {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: baseline;
  }

  .hero__media {
    height: 390px;
  }

  .hero__badge {
    right: 18px;
    bottom: 18px;
    width: 125px;
    height: 125px;
  }

  .hero__badge strong {
    font-size: 18px;
  }

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

  .assurance__intro,
  .assurance__item {
    min-height: 67px;
    justify-content: flex-start;
    padding-inline: 20px;
  }

  .assurance__item {
    border-top: 1px solid var(--steel-200);
    border-left: 0;
  }

  .assurance__intro {
    grid-column: auto;
    border-bottom: 0;
  }

  .section {
    padding-block: 85px;
  }

  .section-heading h2,
  .history__intro h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .value-grid,
  .product-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 265px;
    border-right: 0;
    border-bottom: 1px solid var(--steel-200);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .product-card {
    min-height: 305px;
  }

  .industry-card {
    min-height: 500px;
  }

  .industry-card__art {
    height: 230px;
  }

  .history__photo {
    margin-bottom: 70px;
    border-radius: var(--radius-sm);
  }

  .history__photo picture {
    aspect-ratio: 4 / 3;
  }

  .history__photo figcaption {
    position: static;
    max-width: none;
    color: var(--steel-700);
    background: var(--white);
    border-radius: 0;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 0 0 44px 38px;
  }

  .timeline li::before {
    top: 3px;
    left: 1px;
  }

  .timeline time {
    padding-right: 0;
  }

  .contact__intro h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .contact__details,
  .form-row--split {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    min-height: 105px;
  }

  .contact-form-wrap {
    margin-inline: -2px;
    padding: 29px 22px;
  }

  .contact-form__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .site-footer__top {
    padding-block: 58px 45px;
  }

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

  .site-footer__bottom {
    min-height: 95px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding-block: 20px;
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .hero__actions,
  .contact-form-wrap,
  .site-footer__bottom a {
    display: none !important;
  }

  .hero,
  .products,
  .contact,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero__content-inner,
  .section,
  .contact {
    padding-block: 30px;
  }

  a {
    text-decoration: underline;
  }
}
