:root {
  --navy: #0a2342;
  --navy-2: #173a5f;
  --graphite: #334155;
  --body: #5a6a7e;
  --muted: #7b8a9e;
  --teal: #0d746d;
  --teal-dark: #095d58;
  --red: #b83d37;
  --paper: #ffffff;
  --off-white: #f7f9fc;
  --pale-blue: #edf4fa;
  --line: #dbe4ed;
  --line-strong: #bfcedd;
  --shadow: 0 20px 55px rgba(10, 35, 66, 0.12);
  --shadow-soft: 0 12px 34px rgba(10, 35, 66, 0.08);
  --radius: 8px;
  --max: 1180px;
  --display: "Manrope", "Aptos Display", ui-sans-serif, system-ui, sans-serif;
  --body-font: "Source Sans 3", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 650;
  line-height: 1.06;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.2vw, 45px);
  font-weight: 650;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.3;
}

p {
  color: var(--body);
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 104px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 237, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #42536a;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: var(--teal);
}

.main-nav .nav-cta {
  padding: 10px 15px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(13, 116, 109, 0.18);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 15px 30px rgba(13, 116, 109, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line-strong);
}

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

.hero {
  padding: 146px 0 0;
  overflow: hidden;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 74px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 58px;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.55;
}

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

.direct-contact {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.direct-contact a {
  color: var(--navy-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.visual-gallery {
  min-width: 0;
}

.gallery-stage {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #dce5ed;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-stage img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 500ms ease;
}

.gallery-stage:hover img {
  transform: scale(1.015);
}

.gallery-stage.is-changing img {
  opacity: 0.55;
}

.gallery-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(6, 25, 48, 0.82));
  pointer-events: none;
}

.gallery-stage figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 28px 25px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: end;
  color: #fff;
}

.gallery-stage figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-stage figcaption strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.gallery-counter {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.gallery-thumb {
  min-width: 0;
  padding: 5px 5px 8px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--teal);
  box-shadow: 0 8px 18px rgba(10, 35, 66, 0.08);
  transform: translateY(-1px);
}

.gallery-thumb img {
  aspect-ratio: 1.75;
  object-fit: cover;
  border-radius: 3px;
}

.gallery-thumb span {
  display: block;
  padding: 8px 5px 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coordination-rail {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 92px;
  margin-top: 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.coordination-rail > p {
  margin: 0;
  padding: 0 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.coordination-rail ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
}

.coordination-rail li {
  min-height: 56px;
  padding: 17px 15px;
  color: var(--navy-2);
  border-left: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.coordination-rail li span {
  display: block;
  color: var(--teal);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 50px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 66px minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  min-height: 154px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--teal);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.service-label {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.service-row h3,
.service-row > p {
  margin-bottom: 0;
}

.service-row > p {
  font-size: 17px;
}

.manufacturing {
  background: var(--pale-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 70px;
  align-items: center;
}

.resource-label {
  color: var(--red);
}

.manufacturing-copy > p:not(.eyebrow):not(.resource-note) {
  font-size: 18px;
}

.capability-points {
  margin: 30px 0;
  border-top: 1px solid var(--line-strong);
}

.capability-points li {
  position: relative;
  padding: 15px 0 15px 25px;
  color: var(--navy-2);
  border-bottom: 1px solid var(--line-strong);
  font-weight: 600;
}

.capability-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.resource-note {
  margin: 0;
  padding: 16px 18px;
  color: #5a6472;
  background: rgba(255, 255, 255, 0.68);
  border-left: 3px solid var(--red);
  font-size: 14px;
}

.resource-gallery .gallery-stage {
  min-height: 480px;
}

.resource-gallery .gallery-stage img {
  object-position: center;
}

.resource-gallery .gallery-thumbs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process {
  background: #fff;
}

.split-heading.compact {
  margin-bottom: 42px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 170px;
  padding: 23px 18px;
  color: var(--graphite);
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

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

.process-step span,
.process-step strong,
.process-step small {
  display: block;
}

.process-step span {
  margin-bottom: 24px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.process-step strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.process-step small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.process-step:hover,
.process-step.is-active {
  background: var(--navy);
}

.process-step:hover span,
.process-step.is-active span {
  color: #75d0c7;
}

.process-step:hover strong,
.process-step.is-active strong,
.process-step:hover small,
.process-step.is-active small {
  color: #fff;
}

.process-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 70px;
  align-items: center;
  margin-top: 24px;
  padding: 34px 38px;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
}

.detail-copy h3 {
  font-size: 28px;
}

.detail-copy p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 17px;
}

.detail-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-panel div {
  padding-left: 17px;
  border-left: 1px solid var(--line-strong);
}

.detail-panel span,
.detail-panel strong {
  display: block;
}

.detail-panel span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.detail-panel strong {
  color: var(--navy-2);
  font-size: 15px;
  line-height: 1.4;
}

.project-directions {
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.direction-item {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
}

.direction-item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 22, 43, 0.92));
}

.direction-item img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.direction-item:hover img {
  transform: scale(1.025);
}

.direction-item div {
  position: absolute;
  z-index: 2;
  inset: auto 25px 24px;
}

.direction-item span {
  color: #9ddbd5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.direction-item h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 22px;
}

.direction-item:nth-child(2) img {
  object-position: center top;
}

.safety-line {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.documentation {
  color: #fff;
  background: var(--navy);
}

.documentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 76px;
  align-items: center;
}

.documentation-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.documentation-media img {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.documentation-media img:last-child {
  height: 330px;
  margin-top: 70px;
}

.documentation .eyebrow {
  color: #8ed8d1;
}

.documentation h2,
.documentation-copy p {
  color: #fff;
}

.documentation-copy > p:not(.eyebrow):not(.documentation-note) {
  color: #cad5e2;
  font-size: 18px;
}

.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.doc-tags span {
  padding: 8px 11px;
  color: #e9f4f5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.documentation-note {
  margin-bottom: 0;
  padding-left: 17px;
  color: #aebed0 !important;
  border-left: 2px solid #75d0c7;
  font-size: 14px;
}

.buyer-fit {
  padding: 84px 0;
  background: #fff;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.fit-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
}

.fit-lists > div {
  padding: 22px 24px 0 0;
}

.fit-lists > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.fit-lists span {
  color: var(--teal);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fit-lists ul {
  margin: 15px 0 0;
}

.fit-lists li {
  position: relative;
  padding: 7px 0 7px 18px;
  color: var(--navy-2);
}

.fit-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.inquiry {
  background: var(--pale-blue);
  border-top: 1px solid var(--line);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 118px;
}

.inquiry-copy > p:not(.eyebrow) {
  font-size: 18px;
}

.contact-card {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-card span,
.contact-card a {
  display: block;
}

.contact-card span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card a {
  color: var(--navy);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 13px 0 0;
  font-size: 14px !important;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  color: var(--graphite);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.project-form input,
.project-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.project-form textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 116, 109, 0.12);
}

.project-form .is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 61, 55, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-message {
  display: none;
  margin: 0;
  padding: 11px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  color: #07584f;
  background: #e5f6f3;
}

.form-message.is-error {
  color: #8f2c27;
  background: #fff0ef;
}

.site-footer {
  padding: 66px 0 28px;
  color: #fff;
  background: #06182e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 46px;
}

.footer-brand {
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}

.footer-main p {
  margin: 8px 0 0;
  color: #99aabd;
}

.footer-main span,
.footer-main > div:not(:first-child) a {
  display: block;
}

.footer-main span {
  margin-bottom: 10px;
  color: #7f91a5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-main > div:not(:first-child) a {
  color: #fff;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-legal p {
  max-width: 780px;
  margin: 0;
  color: #8295aa;
  font-size: 13px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(13, 116, 109, 0.34);
  outline-offset: 3px;
}

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

  .hero-grid,
  .manufacturing-grid,
  .documentation-grid,
  .inquiry-grid {
    gap: 44px;
  }

  .coordination-rail {
    grid-template-columns: 170px 1fr;
  }

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

  .process-step:nth-child(3) {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    margin-top: 14px;
    padding: 13px 16px;
    text-align: center;
    border-bottom: 0;
  }

  .hero-grid,
  .manufacturing-grid,
  .documentation-grid,
  .inquiry-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .coordination-rail {
    grid-template-columns: 1fr;
  }

  .coordination-rail > p {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .coordination-rail li:first-child {
    border-left: 0;
  }

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

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

  .service-row > p {
    grid-column: 2;
  }

  .manufacturing-copy {
    max-width: 760px;
  }

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

  .direction-item:last-child {
    grid-column: 1 / -1;
  }

  .documentation-copy {
    max-width: 760px;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

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

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    gap: 40px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .gallery-stage,
  .resource-gallery .gallery-stage {
    min-height: 360px;
  }

  .gallery-stage figcaption {
    inset: auto 18px 18px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .gallery-stage figcaption strong {
    font-size: 16px;
  }

  .gallery-thumbs,
  .resource-gallery .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .gallery-thumb {
    flex: 0 0 118px;
    scroll-snap-align: start;
  }

  .coordination-rail {
    margin-top: 48px;
  }

  .coordination-rail ol {
    grid-template-columns: 1fr 1fr;
  }

  .coordination-rail li {
    border-bottom: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .service-row > p {
    font-size: 16px;
  }

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

  .process-step,
  .process-step:nth-child(3) {
    min-height: 146px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .process-step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-detail,
  .detail-panel {
    grid-template-columns: 1fr;
  }

  .process-detail {
    gap: 28px;
    padding: 27px 22px;
  }

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

  .direction-item,
  .direction-item:last-child {
    grid-column: auto;
    min-height: 360px;
  }

  .documentation-media {
    grid-template-columns: 1fr 0.8fr;
  }

  .documentation-media img {
    height: 330px;
  }

  .documentation-media img:last-child {
    height: 270px;
    margin-top: 45px;
  }

  .fit-lists,
  .form-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .fit-lists > div + div {
    margin-top: 20px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .project-form {
    padding: 24px 18px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-legal {
    display: grid;
  }
}

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