:root {
  --navy: #0b2545;
  --blue: #1d4e89;
  --charcoal: #1f2937;
  --steel: #4b5563;
  --silver: #b8c2cc;
  --line: #d9e0e7;
  --off-white: #f7f9fc;
  --white: #ffffff;
  --success: #1e6b4f;
  --page: min(1180px, calc(100% - 48px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.brand-intro-active {
  overflow: hidden;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--off-white);
  opacity: 1;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.brand-intro.is-closing {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.brand-intro[hidden] {
  display: none;
}

.brand-intro-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#dfe7ef 1px, transparent 1px),
    linear-gradient(90deg, #dfe7ef 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 88%), rgb(0 0 0 / 20%));
}

.brand-intro-status {
  display: flex;
  justify-content: space-between;
  width: var(--page);
  margin-inline: auto;
  padding-top: 24px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
}

.brand-intro-stage {
  display: grid;
  min-height: 0;
  padding: 40px 24px 24px;
  place-items: center;
  align-content: center;
}

.brand-intro-lockup {
  display: grid;
  width: min(1040px, 94vw);
  grid-template-columns: minmax(250px, 350px) minmax(400px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.brand-intro-mark {
  display: block;
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 20px 28px rgb(11 37 69 / 12%));
}

.intro-hex,
.intro-outer-ring,
.intro-inner-ring,
.intro-alignment,
.intro-wave {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.intro-hex {
  stroke: var(--navy);
  stroke-width: 34;
  stroke-linejoin: round;
  stroke-dasharray: 1050;
  stroke-dashoffset: 1050;
}

.intro-outer-ring {
  stroke: var(--silver);
  stroke-width: 30;
  stroke-dasharray: 580;
  stroke-dashoffset: 580;
}

.intro-inner-ring {
  stroke: var(--steel);
  stroke-width: 14;
  stroke-dasharray: 340;
  stroke-dashoffset: -340;
}

.intro-rings {
  transform-origin: 175px 175px;
}

.intro-alignment {
  stroke: var(--blue);
  stroke-width: 13;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

.intro-top,
.intro-bottom {
  transform: scaleY(0);
}

.intro-left,
.intro-right {
  transform: scaleX(0);
}

.intro-core {
  fill: var(--charcoal);
  transform: scale(0) rotate(-30deg);
  transform-box: fill-box;
  transform-origin: center;
}

.intro-wave {
  stroke: var(--blue);
  stroke-width: 4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.brand-intro-wordmark {
  min-width: 0;
}

.intro-word-reveal {
  overflow: hidden;
}

.intro-name,
.intro-engineering,
.intro-tagline {
  margin: 0;
}

.intro-name {
  color: var(--charcoal);
  font-size: clamp(64px, 7.2vw, 102px);
  font-weight: 700;
  line-height: 0.96;
  transform: translateX(-105%);
}

.intro-engineering-reveal {
  margin-top: 16px;
}

.intro-engineering {
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1;
  transform: translateX(-105%);
}

.intro-rule {
  width: 100%;
  height: 8px;
  margin-top: 30px;
  border-radius: 2px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left center;
}

.intro-tagline {
  margin-top: 20px;
  color: var(--steel);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
}

.intro-tagline span {
  color: var(--blue);
  font-weight: 700;
}

.brand-sequence-status {
  min-height: 20px;
  margin: 38px 0 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.brand-intro-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px 24px;
  border-top: 1px solid #dfe7ef;
  background: rgb(247 249 252 / 90%);
}

.brand-intro-controls button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--silver);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.brand-intro-controls button:first-child {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.brand-intro-controls button:hover,
.brand-intro-controls button:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgb(29 78 137 / 18%);
  outline-offset: 2px;
}

.brand-intro-lockup.is-playing .intro-hex { animation: intro-draw-hex 700ms cubic-bezier(0.25, 0.7, 0.25, 1) 80ms forwards; }
.brand-intro-lockup.is-playing .intro-rings { animation: intro-rotate 900ms cubic-bezier(0.2, 0.85, 0.25, 1) 560ms both; }
.brand-intro-lockup.is-playing .intro-outer-ring,
.brand-intro-lockup.is-playing .intro-inner-ring { animation: intro-draw-ring 650ms ease-out 530ms forwards; }
.brand-intro-lockup.is-playing .intro-alignment { animation: intro-align 240ms cubic-bezier(0.2, 1, 0.3, 1) forwards; }
.brand-intro-lockup.is-playing .intro-top { animation-delay: 990ms; }
.brand-intro-lockup.is-playing .intro-right { animation-delay: 1060ms; }
.brand-intro-lockup.is-playing .intro-bottom { animation-delay: 1130ms; }
.brand-intro-lockup.is-playing .intro-left { animation-delay: 1200ms; }
.brand-intro-lockup.is-playing .intro-core { animation: intro-core 360ms cubic-bezier(0.2, 1.45, 0.35, 1) 1310ms forwards; }
.brand-intro-lockup.is-playing .intro-wave-one { animation: intro-wave 650ms ease-out 1440ms forwards; }
.brand-intro-lockup.is-playing .intro-wave-two { animation: intro-wave 650ms ease-out 1580ms forwards; }
.brand-intro-lockup.is-playing .intro-name { animation: intro-reveal-word 520ms cubic-bezier(0.16, 1, 0.3, 1) 1640ms forwards; }
.brand-intro-lockup.is-playing .intro-engineering { animation: intro-reveal-word 520ms cubic-bezier(0.16, 1, 0.3, 1) 1790ms forwards; }
.brand-intro-lockup.is-playing .intro-rule { animation: intro-grow-rule 470ms cubic-bezier(0.16, 1, 0.3, 1) 2050ms forwards; }
.brand-intro-lockup.is-playing .intro-tagline { animation: intro-reveal-tagline 420ms ease-out 2240ms forwards; }

@keyframes intro-draw-hex { to { stroke-dashoffset: 0; } }
@keyframes intro-draw-ring { to { stroke-dashoffset: 0; } }
@keyframes intro-rotate { 0% { transform: rotate(-35deg); } 78% { transform: rotate(4deg); } 100% { transform: rotate(0); } }
@keyframes intro-align { to { opacity: 1; transform: scale(1); } }
@keyframes intro-core { 0% { transform: scale(0) rotate(-30deg); } 72% { transform: scale(1.12) rotate(2deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes intro-wave { 0% { opacity: 0.55; transform: scale(0.75); } 100% { opacity: 0; transform: scale(2.2); } }
@keyframes intro-reveal-word { to { transform: translateX(0); } }
@keyframes intro-grow-rule { to { transform: scaleX(1); } }
@keyframes intro-reveal-tagline { to { opacity: 1; transform: translateY(0); } }

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

a {
  color: inherit;
}

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

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

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

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #a9c8e8;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 24px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 96%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgb(31 41 55 / 7%);
}

.header-inner {
  display: flex;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 222px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

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

.site-nav a {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

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

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

.site-nav .nav-cta {
  padding: 11px 15px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100svh - 106px), 780px);
  margin-top: var(--header-height);
  align-items: center;
  overflow: hidden;
  background-image: url("assets/images/hero-industrial.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(11 37 69 / 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 84px;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--white);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 700;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: #e8edf3;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

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

.primary-light {
  background: var(--white);
  color: var(--navy);
}

.primary-light:hover {
  background: #dfeaf5;
}

.secondary-light {
  border-color: rgb(255 255 255 / 62%);
  color: var(--white);
}

.secondary-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 10%);
}

.hero-scope {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 30%);
  background: rgb(11 37 69 / 88%);
}

.hero-scope div {
  display: flex;
  min-height: 72px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgb(255 255 255 / 22%);
}

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

.hero-scope span {
  color: #8ab5df;
  font-size: 12px;
  font-weight: 700;
}

.hero-scope strong {
  font-size: 14px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
}

.intro-copy {
  padding-top: 28px;
  color: var(--steel);
  font-size: 18px;
}

.intro-copy p {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--blue);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.services {
  background: var(--off-white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.service-list {
  border-top: 1px solid var(--silver);
}

.service-item {
  display: grid;
  grid-template-columns: 70px 1.2fr 0.8fr;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.service-item h3 {
  margin-bottom: 12px;
}

.service-item p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--steel);
}

.service-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item li {
  position: relative;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 14px;
}

.service-item li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--blue);
  content: "";
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 42px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--steel);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--silver);
  border-left: 1px solid var(--line);
}

.product-item {
  min-height: 250px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease;
}

.product-item:hover {
  background: var(--off-white);
}

.product-item[hidden] {
  display: none;
}

.product-item span {
  display: block;
  min-height: 40px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-item h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.product-item p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 15px;
}

.industries {
  padding: 106px 0 0;
  background: var(--navy);
  color: var(--white);
}

.industries-heading {
  margin-bottom: 58px;
}

.industries h2 {
  max-width: 760px;
}

.industry-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 23%);
}

.industry-band {
  min-height: 310px;
  padding: 48px max(36px, calc((100vw - 1180px) / 6));
  border-right: 1px solid rgb(255 255 255 / 23%);
}

.industry-band:last-child {
  border-right: 0;
}

.industry-band span {
  color: #8ab5df;
  font-size: 13px;
  font-weight: 700;
}

.industry-band h3 {
  margin: 62px 0 18px;
  font-size: 34px;
}

.industry-band p {
  max-width: 360px;
  margin-bottom: 0;
  color: #d8e2ec;
}

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

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--silver);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 280px;
  padding: 30px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.process-steps li:not(:first-child) {
  padding-left: 28px;
}

.process-steps li:last-child {
  border-right: 0;
}

.process-steps span {
  display: block;
  margin-bottom: 60px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 15px;
}

.principles {
  background: var(--off-white);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.principle-list {
  border-top: 1px solid var(--silver);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list p {
  margin-bottom: 0;
  color: var(--steel);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-intro h2 {
  max-width: 520px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 48px;
  color: #d4dee8;
  font-size: 17px;
}

.email-directory {
  background: #f4f6f8;
}

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

.email-contact {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
}

.email-contact span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.email-contact strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.email-contact:hover,
.email-contact:focus-visible {
  background: #e9f0f7;
  color: var(--blue);
}

address {
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-style: normal;
}

address > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

address span {
  color: #91b7dc;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

address a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

address p {
  margin-bottom: 0;
  color: #e2e8ef;
}

.quote-form {
  padding: 40px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: 32px;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
}

.quote-form input,
.quote-form select {
  height: 46px;
  padding: 0 12px;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(29 78 137 / 12%);
}

.quote-form .invalid {
  border-color: #a33a3a;
}

.form-submit {
  width: 100%;
  border: 0;
  background: var(--navy);
  color: var(--white);
}

.form-submit:hover {
  background: var(--blue);
}

.form-note {
  margin: 14px 0 0;
  color: var(--steel);
  font-size: 12px;
}

.form-note.success {
  color: var(--success);
  font-weight: 700;
}

.site-footer {
  padding: 66px 0 20px;
  background: #071a31;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 70px;
  padding-bottom: 54px;
}

.footer-grid img {
  width: 330px;
  height: 108px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid > div:first-child p {
  max-width: 500px;
  margin: 20px 0 0;
  color: #c8d3df;
}

.footer-grid p span {
  color: #72a5d8;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  padding-top: 20px;
}

.footer-links a,
.footer-contact a {
  color: #d8e1ea;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0;
  color: #9eafc0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: #9eafc0;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #cbd6e1;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1000px) {
  :root {
    --page: min(100% - 36px, 820px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    padding: 32px;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    box-shadow: -20px 20px 50px rgb(11 37 69 / 12%);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 13px 16px;
    text-align: center;
  }

  .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);
  }

  .intro-grid,
  .section-heading,
  .principles-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    align-items: start;
  }

  .service-item {
    grid-template-columns: 54px 1fr;
  }

  .service-item ul {
    grid-column: 2;
  }

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

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

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

  .industry-band {
    min-height: auto;
    padding: 38px var(--page);
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 23%);
  }

  .industry-band h3 {
    margin-top: 26px;
  }

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

  .process-steps li:nth-child(2) {
    border-right: 0;
  }

  .process-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .principle-list > div {
    grid-template-columns: 160px 1fr;
  }

  .contact-grid {
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 28px);
    --header-height: 70px;
  }

  .section {
    padding: 82px 0;
  }

  .brand-intro-status {
    width: calc(100% - 32px);
  }

  .brand-intro-status span:last-child {
    display: none;
  }

  .brand-intro-stage {
    padding-top: 24px;
  }

  .brand-intro-lockup {
    width: min(520px, 88vw);
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .brand-intro-mark {
    width: min(50vw, 220px);
    margin-inline: auto;
  }

  .intro-name {
    font-size: clamp(46px, 14vw, 72px);
  }

  .intro-engineering {
    font-size: clamp(21px, 7vw, 34px);
  }

  .intro-rule {
    height: 6px;
    margin-top: 20px;
    transform-origin: center;
  }

  .intro-tagline {
    max-width: 420px;
    margin: 16px auto 0;
  }

  .brand-sequence-status {
    margin-top: 22px;
  }

  .brand-intro-controls {
    padding: 14px 16px 18px;
  }

  .brand-intro-controls button {
    flex: 1;
  }

  .brand-link img {
    width: 178px;
    height: 52px;
  }

  .hero {
    min-height: calc(100svh - 84px);
    background-position: 32% center;
  }

  .hero-content {
    padding-bottom: 126px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 74px);
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 520px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-scope div {
    min-height: 42px;
    padding: 0 16px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .hero-scope div:nth-child(2) {
    display: none;
  }

  .hero-scope div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .service-item ul {
    grid-column: 1;
    margin-top: 8px;
  }

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

  .email-directory-grid {
    grid-template-columns: 1fr;
  }

  .product-item {
    min-height: 220px;
  }

  .industry-band {
    padding: 34px 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li,
  .process-steps li:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

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

  .process-steps span {
    margin-bottom: 28px;
  }

  .principle-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-form {
    padding: 28px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  address > div {
    grid-template-columns: 72px 1fr;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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

  .brand-intro,
  .brand-intro-lockup * {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }
}
