/* Zomik / Industrial editorial. Layout first, motion as progressive enhancement. */
:root {
  --ink: #142b35;
  --muted: #59656a;
  --orange: #c44716;
  --orange-dark: #9f3510;
  --paper: #f7f6f2;
  --line: #d6d9d4;
  --mono: "Consolas", "Liberation Mono", monospace;
  --bs-body-font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-border-color: var(--line);
}

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

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

::selection {
  background: #f4c1a5;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

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

a:hover {
  color: var(--orange);
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

main:focus {
  outline: none;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.3rem, 6.1vw, 6rem);
}

h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.75rem);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: -.025em;
}

p, li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

ul {
  padding-left: 1.2rem;
}

li {
  padding-left: .2rem;
  margin-bottom: .35rem;
}

.container {
  max-width: 1320px;
  width: calc(100% - 112px);
  padding: 0;
}

.section {
  padding: 110px 0;
}

.eyebrow,
.section-index {
  font: 11px/1.6 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--orange);
  margin-bottom: 25px;
}

.section-index {
  color: var(--muted);
  margin-bottom: 30px;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 15px 23px;
  border: 1px solid transparent;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  transition: background .18s ease, box-shadow .18s ease;
}

.button:hover {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 5px 0 #142b3512;
}

.button span,
.text-link span {
  display: inline-block;
  transition: transform .18s ease;
  font-size: 20px;
  line-height: 1;
}

.button:hover span,
.text-link:hover span {
  transform: translate(3px, -2px);
}

.button-secondary {
  background: var(--ink);
}

.button-secondary:hover {
  background: #244552;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 7px;
  transition: color .18s, text-decoration-color .18s;
}

.text-link:hover {
  text-decoration-color: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  background: var(--ink);
  color: #e2e8e9;
  font: 10px/1.4 var(--mono);
  letter-spacing: .075em;
  padding: 11px 0;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner a:hover {
  color: #f3ae88;
}

.utility-inner a span {
  margin: 0 14px;
  color: #8faaaf;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand-name {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-caption {
  display: block;
  font: 8px/1.5 var(--mono);
  letter-spacing: .07em;
  margin-top: 7px;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}

.site-navigation>a:not(.button) {
  position: relative;
  font-size: 13px;
  padding: 14px 0;
  font-weight: 500;
}

.site-navigation>a:not(.button)::after {
  position: absolute;
  content: "";
  bottom: 5px;
  height: 2px;
  left: 0;
  right: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-navigation>a[aria-current]::after,
.site-navigation>a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 10px;
}

.nav-overlay-footer {
  display: none;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 12px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.menu-lines {
  display: inline-block;
  width: 18px;
  height: 8px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  transition: transform .18s;
}

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

.home-hero,
.page-hero {
  padding: 48px 0 52px;
}

.page-hero .hero-copy h1 {
  font-size: clamp(3rem, 3.8vw, 5.2rem);
  line-height: 1.05;
}

.page-hero .hero-detail {
  max-width: 480px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.hero-copy {
  padding: 21px 0 0;
}

.hero-copy .eyebrow {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.label-line {
  width: 27px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(4rem, 4.65vw, 7.6rem);
  line-height: .99;
  letter-spacing: -.06em;
  margin: 29px 0;
}

.hero-copy h1>span {
  color: var(--orange);
}

.hero-description {
  font-size: clamp(1.2rem, 1.65vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.hero-detail {
  font-size: 14px;
  max-width: 360px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 27px;
}

.hero-actions .text-link {
  font-size: 12px;
}

.hero-footnote {
  font: 9px/1.6 var(--mono);
  letter-spacing: .07em;
  color: var(--muted);
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.crosshair {
  font: 27px/1 var(--mono);
  color: var(--orange);
}

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

.image-topline {
  display: flex;
  justify-content: space-between;
  font: 10px/1.6 var(--mono);
  letter-spacing: .09em;
  margin-bottom: 13px;
}

.showcase {
  position: relative;
  height: 570px;
  background: var(--ink);
  margin: 0;
  overflow: hidden;
}

.showcase>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #091c27e8);
  pointer-events: none;
}

.showcase figcaption {
  position: absolute;
  z-index: 2;
  bottom: 33px;
  left: 30px;
  right: 30px;
  color: #fff;
}

.showcase figcaption .eyebrow {
  color: #f4b693;
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
}

.showcase figcaption a {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 27px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.showcase figcaption a:hover {
  color: #f4b693;
}

.round-arrow {
  border: 1px solid #ffffff60;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.image-side-label {
  position: absolute;
  right: 14px;
  top: 25px;
  color: #fff;
  writing-mode: vertical-rl;
  font: 9px/1 var(--mono);
  letter-spacing: .15em;
  text-shadow: 0 1px 4px #000;
}

.showcase-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.showcase-controls button {
  padding: 18px 10px 14px;
  background: none;
  color: var(--muted);
  border: 0;
  border-bottom: 2px solid var(--line);
  text-align: left;
  font-size: 12px;
  transition: color .18s, border-color .18s, background .18s;
}

.showcase-controls button span {
  font: 10px var(--mono);
  margin-right: 9px;
}

.showcase-controls button[aria-pressed="true"] {
  color: var(--orange);
  border-color: var(--orange);
}

.showcase-controls button:hover {
  background: #edece6;
}

.credentials-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credentials-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.credentials-inner>span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 0 26px 28px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.credentials-inner>span:first-child {
  display: block;
  padding-left: 0;
  border-left: 0;
  font-size: 12px;
  line-height: 1.6;
}

.credentials-inner strong {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -.05em;
  font-weight: 500;
}

.credentials-inner>span:first-child strong {
  font-size: 14px;
  letter-spacing: -.02em;
  font-weight: 600;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading>p {
  max-width: 340px;
  font-size: 14px;
  margin: 0 0 3px;
}

.division-row {
  display: grid;
  grid-template-columns: .3fr 1.3fr 1.1fr 70px;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: background .18s, padding .18s;
}

.division-row:last-child {
  border-bottom: 1px solid var(--line);
}

.division-row h3 {
  margin: 0;
  font-size: 30px;
  transition: color .18s;
}

.division-number {
  font: 12px var(--mono);
  color: var(--orange);
  align-self: start;
  padding-top: 7px;
}

.division-row p {
  margin: 0;
  font-size: 14px;
  max-width: 350px;
  color: var(--muted);
}

.division-arrow {
  justify-self: end;
  font-size: 30px;
  color: var(--orange);
  transition: transform .18s;
}

.division-row:hover {
  background: #eeeee7;
  padding-left: 16px;
  padding-right: 16px;
}

.division-row:hover h3 {
  color: var(--orange);
}

.division-row:hover .division-arrow {
  transform: translate(3px, -3px);
}

.dark-section {
  background: var(--ink);
  color: #bac9ce;
}

.dark-section h2,
.dark-section h3,
.dark-section .lead {
  color: #fff;
}

.dark-section .section-index,
.dark-section .eyebrow {
  color: #f4b693;
}

.dark-section .text-link {
  color: #fff;
  text-decoration-color: #657d87;
}

.dark-section .text-link:hover {
  color: #f4b693;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.feature-grid--reverse {
  direction: rtl;
}

.feature-grid--reverse > * {
  direction: ltr;
}

/* 4-column image strip used in homepage divisions section */
.division-image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 48px;
}

.division-image-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.division-image-strip figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .3s ease;
  opacity: .88;
}

.division-image-strip figure:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.division-image-strip figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, #091c27d4);
  color: #fff;
  font: 9px/1.6 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── OEM partnerships layout (2 images on left, partner on right per row) ── */

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

.oem-row {
  display: grid;
  grid-template-columns: 500px 1fr 40px;
  align-items: center;
  gap: 36px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease, padding .18s ease;
}

.oem-row:hover {
  background: #eeeee7;
  padding-left: 16px;
  padding-right: 16px;
}

.oem-row-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.oem-thumb {
  margin: 0;
  overflow: hidden;
  height: 20rem;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}

.oem-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}

.oem-row:hover .oem-thumb img {
  transform: scale(1.05);
}

.oem-row-text h3 {
  margin: 0 0 8px;
  font-size: 28px;
  transition: color .18s ease;
}

.oem-row:hover h3 {
  color: var(--orange);
}

.oem-row-text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.oem-row .division-arrow {
  justify-self: end;
  font-size: 30px;
  color: var(--orange);
  transition: transform .18s ease;
}

.oem-row:hover .division-arrow {
  transform: translate(3px, -3px);
}

.editorial-image {
  margin: 0;
  min-width: 0;
}

.editorial-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 60% center;
}

.editorial-image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 9px/1.6 var(--mono);
  letter-spacing: .08em;
  padding: 17px 0;
  border-bottom: 1px solid #71828a60;
}

.editorial-image figcaption span:last-child {
  font-size: 23px;
  line-height: 1;
  color: var(--orange);
}

.feature-copy>p:not(.section-index):not(.lead) {
  font-size: 15px;
}

.feature-copy .text-link {
  margin-top: 9px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  row-gap: 60px;
}

.approach-grid>div:first-child>p.muted {
  max-width: 380px;
}

.approach-image {
  grid-column: 1 / -1;
  margin: 0;
  width: 100%;
}

.approach-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

.principle-list>div {
  border-top: 1px solid var(--line);
  padding: 26px 0 20px;
}

.principle-list>div>span {
  display: block;
  color: var(--orange);
  font: 10px var(--mono);
  letter-spacing: .08em;
  margin-bottom: 15px;
}

.principle-list h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.principle-list p {
  font-size: 20px;
  color: white;
}

.project-cta {
  padding: 75px 0;
  background: #eedfce;
  border-top: 1px solid #dfcdb6;
}

.project-cta .eyebrow {
  color: #8c3d1d;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-panel>div {
  max-width: 780px;
}

.cta-panel h2 {
  margin-bottom: 0;
}

.cta-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 650px;
}

.cta-panel>.button {
  flex-shrink: 0;
}

.page-intro {
  padding: 76px 0 70px;
  border-bottom: 1px solid var(--line);
  background: #efeee8;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: end;
  gap: 75px;
}

.intro-grid h1 {
  margin: 0;
}

.intro-grid .lead {
  font-size: 20px;
}

.intro-grid .muted {
  font-size: 14px;
}

.values-section {
  background: #edece5;
}

.values-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin-top: 20px;
}

.values-list li {
  border: 1px solid #bbc0b9;
  padding: 6px 12px;
  font-size: 12px;
  margin: 0;
}

.policy-stamp {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  padding: 16px;
  font-size: 24px;
  font-weight: 650;
}

.policy-stamp span {
  font: 9px var(--mono);
  color: var(--orange);
}

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

.policy-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  transition: color .18s;
}

.policy-list summary::-webkit-details-marker {
  display: none;
}

.policy-list summary:hover {
  color: var(--orange);
}

.policy-number {
  font: 10px var(--mono);
  color: var(--orange);
}

.policy-toggle {
  margin-left: auto;
  font-size: 24px;
  color: var(--orange);
  transition: transform .18s;
}

.policy-list details[open] .policy-toggle {
  transform: rotate(45deg);
}

.policy-content {
  padding: 0 16px 22px 35px;
  font-size: 14px;
  color: var(--muted);
}

.policy-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.policy-list details[open] .policy-content {
  animation: panel-in .2s ease-out;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 24px;
}

.filter-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 12px;
  border: 1px solid var(--line);
  transition: background .18s, color .18s, border-color .18s;
}

.filter-link:hover {
  border-color: var(--orange);
}

.filter-link.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.capability-row {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 50px;
  gap: 42px;
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.capability-row:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e7e6de;
}

.capability-body {
  /* max-width: 700px; */
}

.capability-body .eyebrow {
  font-size: 20px;
  margin-bottom: 14px;
}

.capability-body h3 {
  font-size: 29px;
  margin-bottom: 20px;
}

.capability-body p:not(.eyebrow),
.capability-body ul {
  font-size: 17px;
  color: var(--muted);
}

.capability-body ul {
  margin-bottom: 12px;
}

.capability-body li::marker {
  color: var(--orange);
}

.capability-number {
  font: 15px var(--mono);
  color: var(--orange);
  text-align: right;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: start;
}

.rfq-form>p {
  font-size: 14px;
}

.rfq-form h2 {
  font-size: 38px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-top: 36px;
}

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

.field {
  min-width: 0;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 9px;
}

.form-control,
.form-select {
  border-radius: 0;
  padding: 13px 14px;
  font-size: 14px;
  border-color: #bfc5be;
  background-color: #fdfcf9;
  color: var(--ink);
}

.form-select {
  padding-right: 36px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #c4471617;
}

.form-text {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.invalid-feedback {
  font-size: 12px;
}

.contact-aside {
  background: #eaece5;
  padding: 40px;
  border-top: 3px solid var(--orange);
}

.contact-aside h2 {
  font-size: 34px;
}

.contact-aside dt {
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.contact-aside dd {
  margin: 5px 0 25px;
}

.contact-aside .text-link {
  overflow-wrap: anywhere;
}

.contact-aside ul {
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0;
}

.contact-aside h3 {
  margin-top: 35px;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.facility {
  border-top: 1px solid var(--line);
  padding: 30px 0 0;
}

.facility .eyebrow {
  font-size: 10px;
}

.facility h3 {
  margin-bottom: 20px;
}

.facility p,
.facility address {
  font-size: 14px;
}

.draft-result {
  background: #eef0e8;
  padding-left: 20px;
  padding-right: 20px;
}

.draft-result h3 {
  font-size: 26px;
}

.draft-result p {
  font-size: 14px;
}

.draft-result textarea {
  font: 12px/1.6 var(--mono);
}

.alert {
  border-radius: 0;
}

.alert a {
  text-decoration: underline;
}

.site-footer {
  padding: 70px 0 0;
  background: var(--ink);
  color: #b9c9cd;
}

.site-footer .brand {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1.1fr;
  gap: 75px;
}

.footer-description {
  margin: 24px 0 20px;
  font-size: 14px;
}

.site-footer .section-index {
  font-size: 9px;
  color: #a4bbc3;
}

.footer-label {
  color: #f2b58e;
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 6px 0 23px;
}

.footer-top>div>a:not(.brand) {
  display: block;
  width: fit-content;
  font-size: 13px;
  padding: 5px 0;
}

.site-footer a:hover {
  color: #f3b38e;
}

.footer-top address {
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-wordmark {
  color: #29434d;
  font-size: clamp(2.3rem, 8.3vw, 8.2rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.055em;
  margin: 60px 0 28px;
  white-space: nowrap;
}

.footer-wordmark>span {
  color: #db6533;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #ffffff20;
  font: 10px/1.6 var(--mono);
}

.footer-bottom a {
  padding: 8px 0;
}

@keyframes panel-in {
  from {
    opacity: .5;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-in {
  from {
    opacity: .6;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy h1 {
    animation: hero-in .55s ease-out both;
  }

  .page-intro h1 {
    animation: hero-in .4s ease-out both;
  }

  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: .16s;
  }
}

@media (min-width: 1600px) {
  .hero-copy h1 {
    font-size: 122px;
  }
}

@media (max-width: 1199px) {
  .container {
    width: calc(100% - 72px);
  }

  .site-navigation {
    gap: 20px;
  }

  .nav-cta {
    margin-left: 0;
    padding: 14px 16px;
    gap: 16px;
  }

  .hero-layout {
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: 8vw;
  }

  .showcase {
    height: 555px;
  }

  .showcase-controls button {
    font-size: 11px;
    padding-left: 3px;
    padding-right: 3px;
  }

  .showcase-controls button span {
    margin-right: 3px;
  }

  .feature-grid,
  .approach-grid,
  .contact-grid {
    gap: 55px;
  }

  .intro-grid {
    gap: 45px;
  }

  .capability-row {
    grid-template-columns: 240px 1fr 30px;
    gap: 28px;
  }

  .contact-aside {
    padding: 30px;
  }

  .credentials-inner>span {
    padding-left: 20px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .container {
    width: calc(100% - 48px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  }

  .site-header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
  }

  .header-inner {
    min-height: 76px;
    padding: 12px 0;
    gap: 16px;
    position: relative;
    z-index: 70;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 75;
  }

  .menu-toggle:not([hidden]) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--paper);
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    border-color: #fff;
  }

  .nav-enhanced .site-navigation {
    display: none;
  }

  .nav-enhanced .site-navigation.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 65;
    background: var(--paper);
    padding: 92px 24px 28px;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
    animation: overlay-fade-in .22s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-navigation>a:not(.button) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: clamp(20px, 4.5vw, 26px);
    font-weight: 650;
    letter-spacing: -.03em;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    transition: color .18s ease, padding-left .18s ease;
  }

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

  .site-navigation>a:not(.button):hover {
    color: var(--orange);
    padding-left: 8px;
  }

  .site-navigation>a[aria-current="page"] {
    color: var(--orange);
  }

  .site-navigation .nav-cta {
    width: 100%;
    justify-content: center;
    margin: 22px 0 16px;
    min-height: 52px;
    font-size: 14px;
  }

  .nav-overlay-footer {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font: 10px/1.6 var(--mono);
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .nav-overlay-footer p {
    margin-bottom: 6px;
  }

  .nav-overlay-footer a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--line);
  }

  .nav-overlay-footer a:hover {
    color: var(--orange);
  }

  .section {
    padding: 80px 0;
  }

  .hero-layout {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 8.4vw;
    margin: 24px 0;
  }

  .hero-copy .eyebrow {
    font-size: 8px;
    gap: 8px;
  }

  .hero-copy .label-line {
    width: 16px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-detail {
    font-size: 13px;
  }

  .hero-footnote {
    font-size: 8px;
    margin-top: 25px;
  }

  .showcase {
    height: 540px;
  }

  .showcase figcaption {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .showcase figcaption a {
    font-size: 24px;
  }

  .showcase-controls {
    grid-template-columns: 1fr;
  }

  .showcase-controls button {
    padding: 10px;
  }

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

  .credentials-inner>span {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .credentials-inner>span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .credentials-inner>span:last-child {
    border-bottom: 0;
  }

  .division-row {
    grid-template-columns: 30px 1fr 1fr 24px;
    gap: 18px;
  }

  .division-row h3 {
    font-size: 26px;
  }

  .division-row p {
    font-size: 13px;
  }

  .feature-grid,
  .approach-grid {
    gap: 38px;
  }

  .editorial-image img {
    height: 480px;
  }

  .oem-row {
    grid-template-columns: 280px 1fr 30px;
    gap: 24px;
    padding: 20px 0;
  }

  .oem-thumb {
    height: 110px;
  }

  .oem-row-text h3 {
    font-size: 24px;
  }

  .section-heading {
    gap: 35px;
  }

  .section-heading>p {
    max-width: 270px;
  }

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

  .intro-grid h1 {
    font-size: 6vw;
  }

  .intro-grid .lead {
    font-size: 18px;
  }

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

  .cta-panel {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }

  .capability-row {
    grid-template-columns: 190px 1fr;
    gap: 25px;
  }

  .capability-number {
    position: absolute;
    right: 0;
    top: 36px;
    font-size: 12px;
  }

  .capability-body .eyebrow {
    padding-right: 25px;
  }

  .capability-image {
    height: 210px;
  }

  .capability-body h3 {
    font-size: 26px;
  }

  .footer-top {
    gap: 30px;
  }

  .facility-grid {
    gap: 35px;
  }
}

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

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

  .feature-grid--reverse {
    direction: ltr;
  }

  .oem-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .oem-row-media {
    gap: 6px;
  }

  .oem-thumb {
    height: 130px;
  }

  .oem-row .division-arrow {
    display: none;
  }

  .oem-row:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .utility-inner>span {
    display: none;
  }

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

  .utility-bar {
    font-size: 8px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-caption {
    font-size: 7px;
  }

  .site-header .container {
    padding: 0 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-enhanced .site-navigation.is-open {
    padding: 82px 16px 24px;
  }

  .site-navigation>a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
    font-size: 20px;
  }

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

  .site-navigation .nav-cta {
    width: 100%;
    justify-content: center;
    margin: 18px 0 12px;
  }

  .home-hero,
  .page-hero {
    padding: 28px 0 35px;
  }

  .page-hero .hero-copy h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.8rem);
    margin: 22px 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy .eyebrow {
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: clamp(4.6rem, 14vw, 6.5rem);
    margin: 26px 0;
  }

  .hero-description {
    font-size: 22px;
  }

  .hero-detail {
    max-width: 420px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px 20px;
  }

  .hero-footnote {
    display: none;
  }

  .showcase {
    height: 400px;
  }

  .showcase>img {
    object-position: center;
  }

  .showcase-controls {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .showcase-controls button {
    padding: 16px 3px;
    font-size: 11px;
  }

  .showcase figcaption a {
    font-size: 29px;
  }

  .credentials-inner>span {
    font-size: 11px;
    gap: 8px;
    padding-left: 14px;
  }

  .credentials-inner strong {
    font-size: 25px;
  }

  .credentials-inner>span:first-child strong {
    font-size: 12px;
  }

  .section {
    padding: 65px 0;
  }

  .section-index {
    margin-bottom: 22px;
    font-size: 10px;
  }

  h2 {
    font-size: clamp(2.15rem, 7vw, 3rem);
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading>p {
    margin-top: 24px;
    max-width: 450px;
  }

  .division-row {
    grid-template-columns: 25px 1fr 27px;
    gap: 15px;
    padding: 25px 0;
  }

  .division-row h3 {
    font-size: 26px;
  }

  .division-row p {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
  }

  .division-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .division-row:hover {
    padding-left: 6px;
    padding-right: 6px;
  }

  .feature-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-image img {
    height: 370px;
  }

  .feature-copy .section-index {
    margin-top: 2px;
  }

  .project-cta {
    padding: 50px 0;
  }

  .page-intro {
    padding: 45px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid h1 {
    font-size: clamp(2.7rem, 10vw, 4.5rem);
  }

  .intro-grid .lead {
    font-size: 19px;
  }

  .page-intro .eyebrow {
    font-size: 9px;
  }

  .policy-list summary {
    font-size: 16px;
    gap: 14px;
  }

  .policy-content {
    padding-left: 28px;
    padding-right: 0;
  }

  .policy-stamp {
    margin-top: 15px;
  }

  .filter-bar {
    gap: 7px;
  }

  .filter-link {
    font-size: 11px;
    padding: 11px 12px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0;
  }

  .capability-image {
    width: 100%;
    height: 230px;
  }

  .capability-number {
    top: 45px;
    right: 15px;
    background: var(--paper);
    padding: 8px 10px;
  }

  .capability-body h3 {
    font-size: 28px;
  }

  .capability-body .eyebrow {
    padding-right: 0;
  }

  .contact-grid {
    gap: 40px;
  }

  .rfq-form h2 {
    font-size: 32px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-control,
  .form-select {
    font-size: 16px;
  }

  .contact-aside {
    padding: 28px;
  }

  .contact-aside h2 {
    font-size: 30px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .footer-top>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-top address,
  .footer-top>div>a:not(.brand) {
    font-size: 12px;
  }

  .footer-wordmark {
    margin-top: 40px;
    font-size: 8.1vw;
  }

  .footer-bottom {
    align-items: start;
    font-size: 8px;
    gap: 15px;
  }

  .footer-bottom a {
    flex-shrink: 0;
    padding: 0;
  }
}

@keyframes overlay-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Procurement Showcase & Gallery Styles ── */
.procurement-jump-strip {
  padding: 40px 0 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.procurement-jump-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.procurement-jump-label {
  font: 11px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.procurement-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.procurement-jump-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: all .2s ease;
}

.procurement-jump-card:hover {
  background: #fff;
  border-color: var(--orange);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 43, 53, 0.08);
}

.procurement-jump-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.procurement-jump-card .jump-index {
  font: 11px/1 var(--mono);
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .08em;
}

.procurement-jump-card .jump-badge {
  font: 10px/1 var(--mono);
  color: var(--muted);
  background: #edece5;
  padding: 3px 7px;
  border-radius: 2px;
}

.procurement-jump-card .jump-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.procurement-jump-card .jump-action {
  font: 11px/1 var(--mono);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

@media (max-width: 991px) {
  .procurement-jump-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .procurement-jump-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Procurement Category Sections ── */
.procurement-category-section {
  padding: 85px 0 95px;
  border-top: 1px solid var(--line);
}

.procurement-category-section:nth-of-type(even) {
  background: #faf8f4;
}

.procurement-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.procurement-section-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  text-align: right;
}

.procurement-count-badge {
  font: 11px/1 var(--mono);
  background: var(--ink);
  color: #fff;
  padding: 7px 13px;
  border-left: 3px solid var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.procurement-loc-badge {
  font: 11px var(--mono);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 860px) {
  .procurement-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
  .procurement-section-meta {
    align-items: flex-start;
    text-align: left;
  }
}

/* 2 Columns per row grid */
.procurement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .procurement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.procurement-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.procurement-card:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(20, 43, 53, 0.09);
  transform: translateY(-4px);
}

.procurement-card-media {
  position: relative;
  overflow: hidden;
  height: 290px;
  background: var(--ink);
}

.procurement-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.procurement-card:hover .procurement-card-media img {
  transform: scale(1.06);
}

.procurement-badge-index {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 43, 53, 0.92);
  color: #fff;
  font: 10px/1 var(--mono);
  letter-spacing: .08em;
  padding: 6px 10px;
  border-left: 3px solid var(--orange);
  z-index: 2;
}

.procurement-badge-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #0d5e46;
  color: #fff;
  font: 10px/1 var(--mono);
  letter-spacing: .06em;
  padding: 5px 9px;
  border-radius: 2px;
  z-index: 2;
}

.procurement-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 43, 53, 0.2);
  color: var(--ink);
  font: 11px var(--mono);
  padding: 6px 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  transition: all .18s ease;
}

.procurement-zoom-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.procurement-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.procurement-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.procurement-category-tag {
  font: 10px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.procurement-loc-tag {
  font: 10px/1 var(--mono);
  color: var(--muted);
  letter-spacing: .04em;
}

.procurement-card-content h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.procurement-card-tagline {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
}

.procurement-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.procurement-spec-box {
  background: #f8f7f4;
  border: 1px solid var(--line);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 12px;
}

.procurement-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed #e2e4e0;
}

.procurement-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.procurement-spec-row strong {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.procurement-spec-row span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.procurement-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.procurement-pill {
  font: 10px/1.3 var(--mono);
  letter-spacing: .04em;
  background: #edece5;
  color: var(--ink);
  padding: 4px 8px;
  border: 1px solid #dadbd5;
}

.procurement-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.procurement-card-footer .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 12px;
  gap: 10px;
}

.procurement-card-footer .text-link {
  font-size: 12px;
  gap: 8px;
  padding: 0;
}

/* Lightbox Modal */
.procurement-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.procurement-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.procurement-modal-content {
  background: #fff;
  border: 1px solid var(--line);
  max-width: 980px;
  width: 100%;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.procurement-modal-media {
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 80vh;
}

.procurement-modal-media img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.procurement-modal-info {
  padding: 32px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.procurement-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: background .18s, color .18s;
}

.procurement-modal-close:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 991px) {
  .procurement-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .procurement-modal-media {
    max-height: 360px;
  }
}

@media (max-width: 767px) {
  .procurement-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}