:root {
  --ink: #111111;
  --muted: #667078;
  --line: #d4d4d0;
  --paper: #f1f0ec;
  --panel: #ffffff;
  --soft: #e8e7e2;
  --dark: #101112;
  --steel: #394046;
  --accent: #b9362d;
  --accent-dark: #7e201c;
  --accent-soft: #f4ddd8;
  --signal-red: #c22f28;
  --shadow: 0 24px 64px rgba(5, 7, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Arial Narrow", Aptos, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: #101112;
  background: #fff;
  border: 2px solid #f05245;
  font-weight: 800;
}

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

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(16, 20, 23, 0.04);
}

.top-strip {
  background: var(--dark);
  color: #d5dfdc;
  font-size: 0.78rem;
  font-weight: 700;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 154px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  border-radius: 0;
  color: #fff;
  background: var(--dark);
  font-weight: 900;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: #3f484d;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
  border-color: rgba(31, 95, 139, 0.18);
  background: rgba(31, 95, 139, 0.06);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--signal-red);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--dark);
  border-radius: 0;
}

.btn-light {
  color: var(--dark);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 96px 0 108px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 10, 14, 0.9) 0%, rgba(8, 14, 19, 0.68) 35%, rgba(8, 14, 19, 0.2) 68%, rgba(8, 14, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 11, 16, 0.22), rgba(6, 11, 16, 0.45)),
    url("/assets/optimized/hero/cnc-machining-hero-bg.webp") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(6, 11, 16, 0.46));
  pointer-events: none;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 4.05rem;
  line-height: 1.04;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero .eyebrow {
  color: #8fc7ef;
}

.hero .lead {
  max-width: 600px;
  color: rgba(235, 242, 247, 0.84);
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  color: #e8f2f8;
  font-size: 0.94rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero .btn-primary {
  background: #1769c2;
  box-shadow: 0 18px 38px rgba(23, 105, 194, 0.24);
}

.hero .btn-primary:hover {
  background: #0f559f;
}

.hero .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(16, 20, 23, 0.06);
}

.proof-row span {
  padding: 16px;
  color: var(--steel);
  font-size: 0.9rem;
  border-right: 1px solid var(--line);
}

.proof-row span:last-child {
  border-right: 0;
}

.proof-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
}

.hero-media {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 233, 240, 0.95)),
    repeating-linear-gradient(90deg, rgba(17, 24, 32, 0.035) 0 1px, transparent 1px 42px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(31, 95, 139, 0.18);
  pointer-events: none;
}

.hero-main {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #fff, #f4f7f9);
  border: 1px solid var(--line);
  box-shadow: 0 24px 55px rgba(29, 42, 48, 0.18);
  transition: transform 700ms ease;
}

.hero-chip {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #fff, #f5f7f9);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(29, 42, 48, 0.14);
  transition: transform 700ms ease;
}

.chip-a {
  object-fit: contain;
  padding: 20px;
}

.chip-b {
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 2;
  padding: 14px 18px;
  color: #fff;
  background: rgba(17, 24, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(29, 42, 48, 0.12);
}

.hero-media:hover .hero-main,
.hero-media.is-active .hero-main {
  transform: scale(1.025);
}

.hero-media:hover .chip-a,
.hero-media.is-active .chip-a {
  transform: translateY(-8px);
}

.hero-media:hover .chip-b,
.hero-media.is-active .chip-b {
  transform: translateY(8px);
}

.metric-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid div {
  min-height: 128px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f9f7);
}

.metric-grid div:first-child {
  border-left: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
}

.metric-grid span {
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.quote-panel h2 {
  margin-bottom: 16px;
  font-size: 2.65rem;
  line-height: 1.08;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.split-head {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.path-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.path-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  min-height: 245px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f8faf8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(29, 42, 48, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-radius: 12px;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 139, 0.34);
  box-shadow: 0 24px 52px rgba(29, 42, 48, 0.12);
}

.path-card.large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.path-card.dark {
  color: #fff;
  background: var(--dark);
  border-color: #2d3337;
}

.path-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 18px;
  background: #f2f5f3;
}

.path-card.large img {
  height: 330px;
}

.path-card.dark img {
  background: #20262a;
}

.path-card span,
.product-grid article h3 + p,
.product-list .eyebrow {
  color: var(--accent-dark);
  font-weight: 900;
}

.path-card.dark span,
.path-card.dark p {
  color: #d7e3df;
}

.path-card h3 {
  margin: 12px 0;
  font-size: 1.45rem;
}

.path-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-section {
  background: linear-gradient(180deg, #ffffff, #f4f6f8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-snapshot {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #f8fafb, #eef2f5);
  border-top: 1px solid var(--line);
}

.capability-mini-grid,
.capability-matrix,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-mini-grid a,
.capability-matrix article,
.quality-grid article {
  min-height: 210px;
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f8fafb);
}

.capability-mini-grid span,
.capability-matrix span,
.quality-grid span,
.work-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-mini-grid strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.35;
}

.capability-matrix h2,
.quality-grid h2 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.capability-matrix p,
.quality-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.capability-band,
.quality-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-section {
  background: #111820;
}

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

.proof-card {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 95, 139, 0.28), transparent 52%),
    #18212b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 217, 204, 0.32);
  box-shadow: 0 22px 48px rgba(5, 10, 14, 0.22);
}

.proof-card .eyebrow {
  color: #9ec9e8;
}

.proof-card h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.proof-card p:not(.eyebrow) {
  color: #d8dee3;
  line-height: 1.65;
}

.missing-band {
  background: linear-gradient(180deg, #eef2f5, #f8fafb);
  border-top: 1px solid var(--line);
}

.missing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 32px;
  align-items: center;
}

.quality-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-proof-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9c7bf;
  background: #f7f6f2;
}

.quality-proof-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quality-proof-gallery figcaption {
  padding: 12px 14px;
  color: #222425;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-needed {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--accent-dark);
  text-align: center;
  font-weight: 900;
  background:
    repeating-linear-gradient(45deg, rgba(31, 95, 139, 0.08) 0 12px, transparent 12px 24px),
    #edf5fb;
  border: 2px dashed rgba(31, 95, 139, 0.42);
}

.image-needed.large {
  min-height: 320px;
}

.work-grid {
  display: grid;
  gap: 18px;
}

.work-grid article {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 42, 48, 0.07);
  border-radius: 12px;
}

.work-grid img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 16px;
  background: #f4f6f8;
}

.work-grid h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.work-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.case-record-heading {
  max-width: 820px;
}

.case-record-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.case-record {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.case-record:nth-child(even) figure {
  order: 2;
}

.case-record figure {
  margin: 0;
  min-height: 300px;
  padding: 18px;
  background: #ebe9e3;
  border: 1px solid #d2d0c9;
}

.case-record img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #fff;
}

.case-record-copy {
  max-width: 680px;
}

.case-number {
  margin: 0 0 12px;
  color: var(--signal-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-record h2 {
  margin-bottom: 14px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.case-record-copy > p:not(.case-number):not(.case-focus) {
  color: var(--muted);
  line-height: 1.65;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-facts div {
  min-height: 82px;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.case-focus {
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--signal-red);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .case-record,
  .case-record:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 32px;
  }

  .case-record:nth-child(even) figure {
    order: 0;
  }

  .case-record figure {
    min-height: 0;
  }

  .case-record img {
    height: 260px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 18px;
}

.product-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(29, 42, 48, 0.1);
}

.product-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
  padding: 16px;
  background: #f4f7f5;
}

.product-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.factory-band {
  background:
    linear-gradient(90deg, rgba(21, 25, 28, 0.04) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #e9edf1, #f7f8f6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 48px;
}

.factory-copy h2 {
  font-size: 2.55rem;
  line-height: 1.08;
}

.factory-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.factory-collage {
  position: relative;
  min-height: 430px;
  display: block;
}

.factory-collage img {
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.factory-main {
  width: 72%;
  height: 360px;
}

.factory-float {
  position: absolute;
  width: 38%;
  height: 190px;
}

.factory-float.one {
  top: 24px;
  right: 0;
}

.factory-float.two {
  right: 70px;
  bottom: 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step-grid article {
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8faf8);
}

.step-grid span {
  color: var(--accent);
  font-weight: 900;
}

.step-grid h3 {
  margin: 14px 0 12px;
}

.step-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.quote-cta {
  padding: 56px 0;
  background:
    linear-gradient(90deg, rgba(31, 95, 139, 0.26), transparent 48%),
    var(--dark);
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}

.quote-panel .eyebrow {
  color: #9dd9cc;
}

.quote-panel h2 {
  max-width: 760px;
}

.footer {
  padding: 30px 0 18px;
  color: #c7ccce;
  background: #101415;
  border-top: 1px solid rgba(191, 65, 54, 0.65);
}

.footer-grid {
  display: grid;
  gap: 24px;
  color: inherit;
}

.footer .brand {
  color: #f2f3f2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.footer-brand .brand-logo {
  width: 138px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: #c7ccce;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 0.72fr 1.18fr;
  border-top: 1px solid rgba(199, 204, 206, 0.14);
  border-bottom: 1px solid rgba(199, 204, 206, 0.14);
}

.footer-column {
  min-width: 0;
  padding: 18px 26px 20px;
  border-left: 1px solid rgba(199, 204, 206, 0.18);
}

.footer-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-column:last-child {
  padding-right: 0;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #f2f3f2;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column p {
  max-width: 290px;
  margin: 0;
  color: #9ca2a4;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

.footer-column a {
  width: fit-content;
  color: #aeb4b6;
  font-size: 0.77rem;
  line-height: 1.45;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ef766c;
  text-decoration-color: currentColor;
}

.footer-policies {
  display: flex;
  flex-direction: column;
}

.footer-rfq-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #ef5d50 !important;
  font-weight: 800;
}

.footer-rfq-link span {
  font-size: 1rem;
}

.footer-copy,
.footer-bottom p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  color: #7e8588;
  font-size: 0.76rem;
}

.footer-copy {
  color: #7e8588;
}

@media (max-width: 760px) {
  .footer {
    padding-top: 24px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .footer-column,
  .footer-column:first-child,
  .footer-column:last-child {
    padding: 16px 0 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(199, 204, 206, 0.14);
  }

  .footer-column p {
    max-width: 36rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

.privacy-section {
  background: #f1f4f2;
}

.privacy-content {
  max-width: 860px;
}

.privacy-content .content-page-heading {
  margin-bottom: 44px;
}

.privacy-content > section {
  padding: 26px 0;
  border-top: 1px solid #cfd9d8;
}

.privacy-content > section:last-child {
  border-bottom: 1px solid #cfd9d8;
}

.privacy-content h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.privacy-content p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.privacy-content a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 62px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(31, 95, 139, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(31, 95, 139, 0.11), transparent 52%),
    linear-gradient(180deg, #ffffff, #eef2f5);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 3.15rem;
  line-height: 1.05;
  font-weight: 900;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.page-hero-grid img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f4f7f5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-list article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f8faf8);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 42, 48, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 95, 139, 0.34);
  box-shadow: 0 22px 46px rgba(29, 42, 48, 0.1);
}

.product-list img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 16px;
  background: #f5f7f5;
}

.product-list-image {
  display: block;
}

.product-list h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.product-list p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-hero {
  padding: 58px 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.detail-main-image {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-main-image img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f4f7f9;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-block,
.detail-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 42, 48, 0.07);
}

.detail-block h2,
.detail-panel h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.detail-block p,
.detail-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.parameter-table,
.equipment-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.parameter-table th,
.parameter-table td,
.equipment-spec-table th,
.equipment-spec-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.parameter-table th,
.equipment-spec-table th {
  color: var(--accent-dark);
  font-weight: 900;
}

.parameter-table td,
.equipment-spec-table td {
  color: var(--muted);
  line-height: 1.55;
}

.equipment-spec-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 42, 48, 0.07);
}

.equipment-spec-table {
  min-width: 860px;
}

.detail-panel {
  position: sticky;
  top: 110px;
}

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

.detail-gallery figure {
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 42, 48, 0.07);
}

.detail-gallery img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
  background: #f4f7f9;
}

.detail-gallery figcaption {
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 900;
}

.detail-gallery figcaption strong {
  display: block;
}

.custom-reference-gallery,
.product-detail-page .detail-gallery.custom-reference-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-reference-gallery figure {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
}

.custom-reference-gallery img,
.product-detail-page .custom-reference-gallery img {
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 0;
  object-fit: cover;
}

.custom-reference-gallery figcaption,
.product-detail-page .custom-reference-gallery figcaption {
  margin: 0;
  padding: 18px 18px 20px;
  color: var(--ink);
}

.custom-reference-gallery figcaption strong {
  color: var(--accent-dark);
  font-size: 1rem;
}

.custom-reference-gallery figcaption span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.product-submenu {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-submenu li {
  position: relative;
  padding-left: 13px;
}

.product-submenu li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--signal-red);
}

.guide-family-gallery,
.rack-series-options {
  align-items: stretch;
}

.guide-family-gallery figure,
.rack-series-options figure {
  display: flex;
  flex-direction: column;
}

.guide-family-gallery figcaption,
.rack-series-options figcaption {
  margin-top: auto;
}

.product-detail-page #main-content {
  display: flex;
  flex-direction: column;
}

.product-detail-page .detail-image-section {
  order: -1;
  padding-block: 56px 48px;
  background: #f3f1ec;
  border-bottom: 1px solid var(--line);
}

.product-detail-page .detail-image-section .section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.product-detail-page .detail-gallery {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.support-series-nav {
  display: grid;
  grid-template-columns: repeat(var(--reference-series-count, 6), minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: #c8c4ba;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 19, 0.03);
}

.support-series-nav button {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 64px;
  padding: 11px 13px 12px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: #ebe8e1;
  border: 0;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.support-series-nav button:hover,
.support-series-nav button:focus-visible {
  background: #f8f6f1;
}

.support-series-nav strong {
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.support-series-nav button[aria-selected="true"] {
  position: relative;
  z-index: 1;
  color: var(--signal-red);
  background: #fffefa;
  box-shadow: inset 0 -3px 0 var(--signal-red), 0 6px 16px rgba(17, 18, 19, 0.1);
}

.support-series-nav button[aria-selected="true"] strong {
  color: var(--signal-red);
}

.support-series-nav span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.support-reference-page {
  --support-surface: #fffefa;
  --support-surface-muted: #e9e6df;
  --support-border: #c9c5ba;
  padding: 22px 0 30px;
  background:
    linear-gradient(rgba(17, 18, 19, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 19, 0.026) 1px, transparent 1px),
    #f3f1ec;
  background-size: 48px 48px;
  border-top: 1px solid var(--line);
}

.support-reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.support-product-stage {
  min-width: 0;
}

.support-hero-slider {
  width: min(100%, 460px);
  margin: 0 auto;
}

.support-hero-slider .support-hero-visual {
  width: 100%;
}

.support-hero-slide {
  position: absolute !important;
  inset: 3%;
  width: 94% !important;
  height: 94% !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.support-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.support-hero-slide[hidden],
.support-hero-slider-dots button[hidden] {
  display: none;
}

.support-hero-slider-controls {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 12px;
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  align-items: center;
}

.support-hero-slider-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  background: #1d2022;
  border: 1px solid #1d2022;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.support-hero-slider-button:hover,
.support-hero-slider-button:focus-visible {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.support-hero-slider-button:active {
  transform: scale(0.95);
}

.support-hero-slider-dots {
  display: flex;
  min-height: 20px;
  gap: 9px;
  align-items: center;
  justify-content: center;
}

.support-hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: #b8b4aa;
  border: 0;
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.support-hero-slider-dots button:hover,
.support-hero-slider-dots button:focus-visible,
.support-hero-slider-dots button[aria-current="true"] {
  background: var(--signal-red);
  transform: scale(1.25);
}

.support-hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 460px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 82%),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 42px);
  border: 0;
  box-shadow: none;
}

.support-hero-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 12%;
  height: 16%;
  background: radial-gradient(ellipse at center, rgba(17, 18, 19, 0.17), rgba(17, 18, 19, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.support-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(94%, 432px);
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(17, 18, 19, 0.28));
  transition: opacity 180ms ease;
}

.support-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--support-border);
  box-shadow: 0 8px 22px rgba(17, 18, 19, 0.055);
  list-style: none;
}

.support-benefit-list li {
  min-width: 0;
  padding: 13px 15px;
  border-bottom: 1px solid #d7d4cb;
}

.support-benefit-list li:nth-child(odd) {
  padding-right: 15px;
}

.support-benefit-list li:nth-child(even) {
  padding-left: 15px;
  border-left: 1px solid #d7d4cb;
}

.support-benefit-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.support-benefit-list strong,
.support-benefit-list span {
  display: block;
}

.support-benefit-list strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.support-benefit-list span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.support-reference-content {
  min-width: 0;
  padding-top: 10px;
}

.support-reference-content h1 {
  position: relative;
  max-width: 650px;
  margin: 0 0 15px;
  padding-bottom: 13px;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 2.7vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-reference-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--signal-red);
}

.support-reference-content .lead {
  max-width: 650px;
  margin: 0;
  color: #485158;
  font-size: 1rem;
  line-height: 1.55;
}

.support-reference-content .support-series-nav {
  margin: 18px 0 16px;
}

.support-drawing-panel {
  scroll-margin-top: 108px;
  padding: 0;
}

.reference-data-placeholder {
  display: grid;
  min-height: 270px;
  padding: 32px;
  align-content: center;
  background:
    linear-gradient(rgba(17, 18, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 19, 0.035) 1px, transparent 1px),
    #fffefa;
  background-size: 32px 32px;
  border: 1px dashed #aaa59a;
}

.reference-data-placeholder strong {
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.reference-data-placeholder p {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.linear-guide-reference-page .support-hero-visual img,
.gear-rack-reference-page .support-hero-visual img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(17, 18, 19, 0.16));
}

.linear-guide-reference-page .support-drawing-carousel {
  width: min(100%, 760px);
}

.linear-guide-reference-page .support-reference-grid {
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: 38px;
}

.linear-guide-reference-page .support-product-stage {
  position: sticky;
  top: 96px;
}

.linear-guide-reference-page .support-drawing-viewport {
  aspect-ratio: 4 / 5;
  background: #e8e3da;
}

.linear-guide-reference-page .support-drawing-slide {
  padding: 12px;
  background: #e8e3da;
}

.linear-guide-reference-page .support-drawing-slide img {
  background: #faf8f3;
}

.support-drawing-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  width: min(100%, 700px);
  gap: 10px;
  align-items: center;
}

.support-drawing-carousel--single {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 760px);
}

.support-drawing-viewport {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--support-surface);
  border: 1px solid var(--support-border);
  box-shadow: 0 18px 38px rgba(17, 18, 19, 0.11), 0 2px 8px rgba(17, 18, 19, 0.06);
}

.support-drawing-track {
  display: flex;
  height: 100%;
  transition: transform 220ms ease;
}

.support-drawing-slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  padding: 16px;
  background: var(--support-surface);
}

.support-drawing-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.product-detail-page .support-drawing-slide img {
  cursor: zoom-in;
}

.product-detail-page .support-drawing-slide img:focus-visible {
  outline: 3px solid var(--signal-red);
  outline-offset: -3px;
}

.technical-image-dialog {
  width: min(88vw, 1280px);
  max-width: none;
  height: min(82vh, 900px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: #f7f5f0;
  border: 1px solid #8d8980;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.technical-image-dialog::backdrop {
  background: rgba(10, 12, 13, 0.84);
  backdrop-filter: blur(3px);
}

.technical-image-dialog-canvas {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 58px 24px 24px;
  overflow: hidden;
  place-items: center;
}

.technical-image-dialog-canvas img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(calc(88vw - 48px), 1232px);
  max-height: min(calc(82vh - 84px), 816px);
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 18, 19, 0.14);
}

.technical-image-dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  background: #1d2022;
  border: 1px solid #1d2022;
  place-items: center;
}

.technical-image-dialog-close:hover,
.technical-image-dialog-close:focus-visible {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.support-carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  background: #1d2022;
  border: 1px solid #1d2022;
  box-shadow: 0 8px 18px rgba(17, 18, 19, 0.14);
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.support-carousel-button:hover,
.support-carousel-button:focus-visible {
  color: #fff;
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.support-carousel-button:active:not(:disabled) {
  transform: scale(0.96);
}

.support-carousel-button:disabled {
  color: #a5a197;
  cursor: not-allowed;
  background: #efede8;
  border-color: #d7d4cb;
  box-shadow: none;
}

.support-carousel-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.product-detail-page .detail-gallery figure {
  padding: 12px;
  box-shadow: none;
}

.product-detail-page .detail-gallery img {
  height: 210px;
  padding: 8px;
  background: #fff;
}

.product-detail-page .detail-gallery figcaption {
  margin: 10px 2px 2px;
  font-size: 0.88rem;
}

.product-detail-page .detail-image-rotate {
  transform: rotate(180deg);
}

.product-detail-page .product-detail-hero {
  order: 10;
  width: 100%;
  margin-top: 0;
  padding-block: 78px;
  border-top: 1px solid #c7c5be;
}

.product-detail-page .quote-cta {
  display: none;
}

.product-list a {
  color: var(--accent-dark);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  grid-column: span 3;
  margin: 0;
  background: linear-gradient(180deg, #fff, #f8faf8);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(29, 42, 48, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.gallery-grid figure.feature {
  grid-column: span 6;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  padding: 18px;
  background: #f4f6f5;
}

.gallery-grid figure.feature img {
  height: 440px;
}

figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

figcaption span {
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f8faf8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.form-intro {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

.rfq-form .full {
  grid-column: 1 / -1;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd3d0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #f9fbfa;
  font: inherit;
}

.rfq-form textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.rfq-form button {
  justify-self: start;
}

.rfq-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rfq-form [aria-invalid="true"] {
  border-color: #c83c32;
  box-shadow: 0 0 0 3px rgba(200, 60, 50, 0.14);
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.form-status[data-state="error"] { color: #a82f28; }
.form-status[data-state="success"] { color: var(--accent-dark); }
.form-status[data-state="pending"] { color: var(--steel); }

.quote-aside {
  padding: 26px;
  color: #fff;
  background: var(--dark);
  border: 1px solid #2e363a;
  border-radius: 6px;
}

.quote-aside h2 {
  margin-bottom: 18px;
}

.quote-aside li {
  margin: 12px 0;
  color: #d6dfdc;
}

.equipment-hero {
  padding: 58px 0 54px;
}

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

.equipment-hero-media {
  position: relative;
  min-height: 500px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 235, 0.94)),
    repeating-linear-gradient(90deg, rgba(16, 20, 23, 0.035) 0 1px, transparent 1px 42px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.equipment-hero-main,
.equipment-hero-side {
  position: absolute;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(29, 42, 48, 0.16);
}

.equipment-hero-main {
  left: 34px;
  bottom: 34px;
  width: 62%;
  height: 58%;
}

.equipment-hero-side {
  right: 34px;
  width: 38%;
  height: 34%;
}

.equipment-hero-side.top {
  top: 34px;
}

.equipment-hero-side.bottom {
  bottom: 52px;
}

.equipment-intro {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.equipment-proof {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.equipment-proof div {
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f7faf8);
}

.equipment-proof strong,
.equipment-proof span {
  display: block;
}

.equipment-proof strong {
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.equipment-proof span {
  color: var(--muted);
  line-height: 1.55;
}

.equipment-section {
  background:
    linear-gradient(90deg, rgba(21, 25, 28, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #f8faf8, #eef3ef);
}

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

.equipment-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
  min-height: 310px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(29, 42, 48, 0.08);
  overflow: hidden;
}

.equipment-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 430px;
}

.equipment-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.equipment-card.featured img {
  min-height: 430px;
}

.equipment-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.equipment-card span {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.equipment-card p {
  color: var(--muted);
  line-height: 1.65;
}

.equipment-records {
  background: #15191c;
  color: #fff;
}

.records-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 44px;
  align-items: center;
}

.equipment-records .eyebrow {
  color: #9dd9cc;
}

.equipment-records h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
  line-height: 1.08;
}

.equipment-records p {
  color: #d5dfdc;
  line-height: 1.72;
}

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

.record-cards figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.record-cards img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.record-cards figcaption {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

@media (max-width: 980px) {
  .product-detail-page .detail-gallery.custom-reference-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid,
  .factory-grid,
  .page-hero-grid,
  .detail-hero-grid,
  .detail-layout,
  .quote-layout,
  .equipment-hero-grid,
  .equipment-intro-grid,
  .records-grid,
  .missing-grid {
    grid-template-columns: 1fr;
  }

  .quality-proof-gallery {
    max-width: 680px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-media {
    min-height: 500px;
  }

  .metric-grid,
  .product-grid,
  .step-grid,
  .capability-mini-grid,
  .capability-matrix,
  .quality-grid,
  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-panel {
    position: static;
  }

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

  .equipment-hero-media {
    min-height: 460px;
  }

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

  .equipment-card,
  .equipment-card.featured {
    grid-template-columns: 1fr;
  }

  .equipment-card img,
  .equipment-card.featured img {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .product-detail-page .detail-gallery.custom-reference-gallery {
    grid-template-columns: 1fr;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .top-strip .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .top-strip span {
    display: block;
    overflow-wrap: anywhere;
  }

  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav .btn-dark {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 12px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero {
    padding: 48px 0;
    min-height: 600px;
    background-position: center right;
    overflow: hidden;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero h1 {
    max-width: min(100%, 340px);
    font-size: 1.66rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero .lead {
    max-width: min(100%, 340px);
    font-size: 0.95rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .hero-points span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 10px;
  }

  .section-head h2,
  .quote-panel h2,
  .factory-copy h2 {
    font-size: 2rem;
  }

  .proof-row,
  .metric-grid,
  .product-grid,
  .step-grid,
  .capability-mini-grid,
  .capability-matrix,
  .quality-grid,
  .proof-grid,
  .detail-gallery,
  .product-list article,
  .work-grid article,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 18px;
  }

  .equipment-hero-media {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .equipment-hero-main,
  .equipment-hero-side {
    position: static;
    width: 100%;
    height: 210px;
  }

  .hero-main {
    grid-row: auto;
    height: 260px;
  }

  .hero-chip {
    height: 210px;
  }

  .chip-a {
    padding: 16px;
  }

  .chip-b {
    object-fit: cover;
  }

  .media-label {
    left: 28px;
    right: auto;
    bottom: 28px;
  }

  .split-head,
  .quote-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 54px 0;
  }

  .path-card {
    grid-template-columns: 1fr;
  }

  .factory-main,
  .factory-float {
    position: static;
    width: 100%;
    height: 220px;
    margin-bottom: 14px;
    object-fit: contain;
    padding: 12px;
    background: #fff;
  }

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

  .gallery-grid figure,
  .gallery-grid figure.feature {
    grid-column: auto;
  }

  .gallery-grid img,
  .gallery-grid figure.feature img {
    height: 260px;
  }

  .detail-main-image img,
  .detail-gallery img {
    height: 240px;
  }

  .record-cards {
    grid-template-columns: 1fr;
  }

  .record-cards img {
    height: 220px;
  }
}

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

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

/* Shared secondary-page language */
.page-hero,
.equipment-hero,
.product-detail-hero {
  position: relative;
  overflow: hidden;
  background: #e9e7e1;
  border-color: #c7c5be;
}

.page-hero::before,
.equipment-hero::before,
.product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(17, 18, 19, 0.055) 1px, transparent 1px) 0 0 / 96px 100%;
}

.page-hero > .container,
.equipment-hero > .container,
.product-detail-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.equipment-hero h1,
.product-detail-hero h1 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero .eyebrow,
.equipment-hero .eyebrow,
.product-detail-hero .eyebrow,
.page-hero-grid .eyebrow,
.equipment-hero-grid .eyebrow {
  color: var(--signal-red);
  letter-spacing: 0.08em;
}

.page-hero-grid img,
.detail-main-image,
.equipment-hero-media,
.detail-block,
.detail-panel,
.product-list article,
.work-grid article,
.equipment-card,
.gallery-grid figure,
.rfq-form,
.quote-aside {
  border-radius: 0;
}

.page-hero-grid img,
.detail-main-image,
.equipment-hero-media {
  box-shadow: 18px 18px 0 rgba(17, 18, 19, 0.08);
}

.capability-matrix,
.quality-grid,
.step-grid,
.capability-mini-grid {
  background: #bdbbb3;
  border-color: #bdbbb3;
}

.capability-matrix article,
.quality-grid article,
.step-grid article,
.capability-mini-grid a {
  background: #f7f6f2;
}

.capability-matrix span,
.quality-grid span,
.work-grid span,
.equipment-card span,
.step-grid span {
  color: var(--signal-red);
  letter-spacing: 0.075em;
}

.product-list article,
.work-grid article,
.equipment-card,
.gallery-grid figure,
.detail-block,
.detail-panel {
  background: #f8f7f3;
  box-shadow: none;
}

.product-list article:hover,
.work-grid article:hover {
  border-color: var(--signal-red);
  box-shadow: 10px 10px 0 rgba(194, 47, 40, 0.12);
}

.product-list img,
.work-grid img,
.gallery-grid img,
.detail-main-image img,
.detail-gallery img {
  background: #edede9;
}

.equipment-section,
.factory-band,
.capability-snapshot {
  background: #e9e7e1;
}

.equipment-card.featured,
.equipment-card {
  border-color: #c4c2bb;
}

.equipment-card div {
  background: #f8f7f3;
}

.equipment-records,
.proof-section,
.quote-cta {
  background: #101112;
}

.quote-cta {
  background-image: linear-gradient(90deg, rgba(194, 47, 40, 0.25), transparent 55%);
}

.quote-panel .eyebrow,
.equipment-records .eyebrow,
.proof-card .eyebrow {
  color: var(--signal-red);
}

.proof-card {
  border-radius: 0;
  background: #191a1b;
}

.proof-card:hover {
  border-color: var(--signal-red);
  box-shadow: 10px 10px 0 rgba(194, 47, 40, 0.16);
}

.parameter-table th,
.equipment-spec-table th {
  color: var(--signal-red);
  background: #f0efea;
}

.parameter-table td,
.equipment-spec-table td {
  background: #fbfaf7;
}

.rfq-form {
  background: #f8f7f3;
  box-shadow: none;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  border-radius: 0;
  background: #fff;
}

.quote-aside {
  background: #151617;
}

.image-needed {
  color: var(--signal-red);
  background: repeating-linear-gradient(45deg, rgba(194, 47, 40, 0.07) 0 12px, transparent 12px 24px), #f3edea;
  border-color: rgba(194, 47, 40, 0.52);
}

/* Selected industrial systems direction: homepage */
.industrial-home .site-header {
  background: rgba(12, 13, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
}

.industrial-page .site-header {
  background: rgba(12, 13, 14, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
}

.industrial-home .nav {
  min-height: 76px;
}

.industrial-page .nav {
  min-height: 76px;
}

.industrial-home .brand,
.industrial-home .nav-links {
  color: #f6f4ef;
}

.industrial-page .brand,
.industrial-page .nav-links {
  color: #f6f4ef;
}

.industrial-home .brand-mark {
  width: 54px;
  height: 42px;
  background: #f6f4ef;
  color: var(--dark);
  box-shadow: none;
}

.industrial-page .brand-mark {
  width: 54px;
  height: 42px;
  background: #f6f4ef;
  color: var(--dark);
  box-shadow: none;
}

.industrial-home .brand,
.industrial-page .brand {
  gap: 0;
}

.industrial-home .brand-logo,
.industrial-page .brand-logo {
  width: 158px;
  height: 62px;
}

.industrial-home .nav-links a:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
}

.industrial-page .nav-links a:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
}

.industrial-home .btn-dark {
  background: var(--signal-red);
}

.industrial-page .btn-dark {
  background: var(--signal-red);
}

/* Full secondary-page system, aligned with the selected industrial homepage */
.industrial-page .page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 112px 0 88px;
  color: #f6f4ef;
  background: #101112;
  border-color: rgba(255, 255, 255, 0.16);
}

.industrial-page .page-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 102px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
  opacity: 0.55;
}

.industrial-page .page-hero h1 {
  max-width: 960px;
  margin-bottom: 22px;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.1rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-page .page-hero .lead {
  max-width: 680px;
  color: #c9cac6;
  font-size: 1.06rem;
  line-height: 1.7;
}

.industrial-page .page-hero .eyebrow {
  color: var(--signal-red);
  letter-spacing: 0.085em;
}

.industrial-page main > .section {
  padding: 82px 0;
  background: #f4f3ef;
  border-top: 1px solid #d2d0c9;
}

.industrial-page main > .section:nth-of-type(even) {
  background: #e9e7e0;
}

.industrial-page .section-head {
  max-width: 870px;
  margin-bottom: 42px;
}

.industrial-page .section-head h2,
.industrial-page .factory-copy h2,
.industrial-page .equipment-records h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-page .section-head .eyebrow,
.industrial-page .section-head span,
.industrial-page .factory-copy .eyebrow {
  color: var(--signal-red);
  letter-spacing: 0.08em;
}

.industrial-page .capability-matrix,
.industrial-page .quality-grid,
.industrial-page .step-grid,
.industrial-page .capability-mini-grid {
  border-color: #c9c7bf;
  background: #c9c7bf;
}

.industrial-page .capability-matrix article,
.industrial-page .quality-grid article,
.industrial-page .step-grid article,
.industrial-page .capability-mini-grid a {
  min-height: 250px;
  padding: 30px;
  background: #f7f6f2;
}

.industrial-page .capability-matrix article:hover,
.industrial-page .quality-grid article:hover,
.industrial-page .step-grid article:hover,
.industrial-page .capability-mini-grid a:hover {
  color: #f6f4ef;
  background: #151617;
}

.industrial-page .capability-matrix article:hover p,
.industrial-page .quality-grid article:hover p,
.industrial-page .step-grid article:hover p {
  color: #c7c8c4;
}

.industrial-page .capability-matrix span,
.industrial-page .quality-grid span,
.industrial-page .step-grid span,
.industrial-page .capability-mini-grid span,
.industrial-page .work-grid span {
  color: var(--signal-red);
  letter-spacing: 0.08em;
}

.industrial-page .capability-matrix h2,
.industrial-page .quality-grid h2,
.industrial-page .step-grid h3,
.industrial-page .capability-mini-grid strong {
  text-transform: uppercase;
}

.industrial-page .product-list article,
.industrial-page .work-grid article,
.industrial-page .equipment-card,
.industrial-page .detail-block,
.industrial-page .detail-panel,
.industrial-page .gallery-grid figure {
  border-radius: 0;
  background: #f8f7f3;
  box-shadow: none;
}

.industrial-page .product-list article:hover,
.industrial-page .work-grid article:hover {
  transform: none;
  border-color: var(--signal-red);
  box-shadow: 9px 9px 0 rgba(194, 47, 40, 0.14);
}

.industrial-page .product-list h2,
.industrial-page .work-grid h2,
.industrial-page .equipment-card h3,
.industrial-page .detail-block h2,
.industrial-page .detail-panel h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-page .equipment-section,
.industrial-page .capability-band,
.industrial-page .quality-section,
.industrial-page .equipment-intro {
  background: #e9e7e0;
}

.industrial-page .equipment-records,
.industrial-page .proof-section,
.industrial-page .quote-cta {
  background: #101112;
}

/* Project workflow: a real production path, not another group of service cards. */
.industrial-page .project-flow-section {
  background: #f7f6f2;
}

.industrial-page main > .project-flow-section:first-child {
  padding-top: 76px;
  border-top: 1px solid #c9c7bf;
}

.industrial-page .project-flow-heading {
  max-width: 720px;
}

.industrial-page .project-flow-heading h1 {
  max-width: 930px;
  margin: 0 0 18px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.industrial-page .content-page-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.industrial-page .content-page-heading h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.industrial-page .content-page-heading p:not(.eyebrow) {
  max-width: 720px;
  color: #656967;
  font-size: 1.04rem;
  line-height: 1.68;
}

.industrial-page .series-spec-section {
  background: #f7f6f2;
  border-top: 1px solid #c9c7bf;
  border-bottom: 1px solid #c9c7bf;
}

.industrial-page .series-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid #c9c7bf;
  background: #f7f6f2;
}

.industrial-page .series-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.industrial-page .series-spec-table th,
.industrial-page .series-spec-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-right: 1px solid #c9c7bf;
  border-bottom: 1px solid #c9c7bf;
}

.industrial-page .series-spec-table th:last-child,
.industrial-page .series-spec-table td:last-child {
  border-right: 0;
}

.industrial-page .series-spec-table tbody tr:last-child th,
.industrial-page .series-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.industrial-page .series-spec-table thead th {
  color: #f7f6f2;
  background: #151617;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.industrial-page .series-spec-table tbody th {
  width: 25%;
  color: #151617;
  font-size: 1rem;
  line-height: 1.25;
}

.industrial-page .series-spec-table td {
  color: #656967;
  font-size: 0.94rem;
  line-height: 1.5;
}

.industrial-page .project-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.industrial-page .project-flow::before {
  position: absolute;
  top: 28px;
  right: calc(100% / 12);
  left: calc(100% / 12);
  height: 1px;
  content: "";
  background: #bdbbb3;
}

.industrial-page .project-flow li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 18px 0 0;
}

.industrial-page .project-flow li:last-child {
  padding-right: 0;
}

.industrial-page .project-flow li:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: 5px;
  color: var(--signal-red);
  content: ">";
  font-weight: 800;
}

.industrial-page .flow-marker {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #151617;
  border-radius: 50%;
  color: #f7f6f2;
  background: #151617;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.industrial-page .project-flow li:first-child .flow-marker,
.industrial-page .project-flow li:last-child .flow-marker {
  border-color: var(--signal-red);
  background: var(--signal-red);
}

.industrial-page .flow-kicker {
  margin: 22px 0 8px;
  color: var(--signal-red);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industrial-page .project-flow h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.industrial-page .project-flow li > p:last-child {
  margin: 12px 0 0;
  color: #656967;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .industrial-page .project-flow-heading h1 {
    font-size: 3.6rem;
  }

  .industrial-page .content-page-heading h1 {
    font-size: 3.15rem;
  }

  .industrial-page .project-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .industrial-page .project-flow::before,
  .industrial-page .project-flow li::after {
    display: none;
  }

  .industrial-page .project-flow li {
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  .industrial-page main > .project-flow-section:first-child {
    padding-top: 48px;
  }

  .industrial-page .project-flow-heading h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .industrial-page .content-page-heading {
    margin-bottom: 30px;
  }

  .industrial-page .content-page-heading h1 {
    font-size: 2.4rem;
  }

  .industrial-page .project-flow {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }

  .industrial-page .project-flow li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 18px;
  }

  .industrial-page .flow-marker {
    grid-row: span 3;
  }

  .industrial-page .flow-kicker {
    margin: 2px 0 7px;
  }

  .industrial-page .project-flow li > p:last-child {
    margin-top: 9px;
  }
}

.industrial-page .quote-cta {
  background-image: linear-gradient(90deg, rgba(194, 47, 40, 0.28), transparent 62%);
}

.industrial-page .quote-panel h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-page .rfq-form,
.industrial-page .quote-aside {
  border-radius: 0;
}

@media (max-width: 760px) {
  .industrial-page .page-hero {
    min-height: 360px;
    padding: 82px 0 58px;
  }

  .industrial-page .page-hero h1 {
    font-size: 2.8rem;
  }

  .industrial-page main > .section {
    padding: 58px 0;
  }
}

.industrial-home .hero {
  min-height: 670px;
  padding: 132px 0 92px;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.94) 0%, rgba(4, 5, 5, 0.8) 34%, rgba(4, 5, 5, 0.26) 63%, rgba(4, 5, 5, 0.12) 100%),
    url("/assets/optimized/hero/cnc-machining-hero-bg.webp") center / cover no-repeat;
}

.industrial-home .hero::after {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px) 0 0 / 102px 100%;
  opacity: 0.35;
}

.industrial-home .hero-copy {
  max-width: 610px;
}

.industrial-home .hero h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-home .hero .eyebrow,
.industrial-home .eyebrow {
  color: var(--signal-red);
  letter-spacing: 0.08em;
}

.industrial-home .hero .lead {
  max-width: 540px;
  color: #d7d7d3;
  font-size: 1.08rem;
}

.industrial-home .hero .btn-primary {
  background: var(--signal-red);
  box-shadow: none;
}

.industrial-home .hero .text-link,
.industrial-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industrial-home .text-link span {
  color: var(--signal-red);
  font-size: 1.3rem;
}

.industrial-home .hero-index {
  position: absolute;
  left: max(22px, calc((100vw - 1280px) / 2));
  top: 208px;
  z-index: 2;
  display: grid;
  gap: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
}

.industrial-home .hero-index span:first-child {
  color: var(--signal-red);
}

.industrial-home .capability-navigator {
  padding: 76px 0 0;
  background: #f6f5f1;
}

.navigator-heading,
.casebook-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.1fr auto;
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}

.navigator-heading h2,
.casebook-heading h2,
.industrial-home .equipment-proof h2,
.industrial-home .rfq-band h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navigator-heading > p,
.casebook-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.navigator-grid a {
  min-height: 316px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #f6f5f1;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.navigator-grid a:hover {
  color: #f6f5f1;
  background: var(--dark);
}

.navigator-grid span {
  margin-bottom: 48px;
  color: var(--signal-red);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.65rem;
  line-height: 0.8;
}

.navigator-grid h3 {
  margin-bottom: 16px;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.navigator-grid p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.navigator-grid a:hover p {
  color: #c9c9c4;
}

.navigator-grid b {
  margin-top: auto;
  color: var(--signal-red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industrial-home .home-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 122px 0 102px;
}

.industrial-home .home-hero .hero-copy {
  max-width: 690px;
}

.industrial-home .home-hero h1 {
  max-width: 680px;
  font-size: clamp(3.55rem, 6.2vw, 6.1rem);
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #ecece8;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-proof-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof-list li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--signal-red);
}

.industrial-home .home-scope {
  padding: 78px 0 0;
  background-color: #f4f6f5;
  background-image:
    linear-gradient(90deg, rgba(244, 246, 245, 0.9), rgba(244, 246, 245, 0.66)),
    url("/assets/optimized/texture/engineering-drawing-surface.jpg");
  background-position: center, center;
  background-size: cover, cover;
  border-bottom: 1px solid #d5dfdf;
}

.home-scope-heading,
.home-parts-heading,
.home-workflow-heading {
  display: grid;
  grid-template-columns: 0.94fr 1fr auto;
  align-items: end;
  gap: 42px;
  margin-bottom: 34px;
}

.home-scope-heading h2,
.home-parts-heading h2,
.home-evidence-heading h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4.1vw, 4.25rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-scope-heading > p,
.home-parts-heading > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.home-scope-grid article {
  min-height: 214px;
  padding: 28px 30px;
  background: rgba(249, 251, 250, 0.58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-scope-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--signal-red);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 0.8;
}

.home-scope-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.home-scope-grid p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.industrial-home .home-parts {
  padding: 82px 0;
  color: #f4f3ef;
  background: #172022;
  border-top: 1px solid #263436;
  border-bottom: 1px solid #263436;
}

.home-parts-heading > p {
  color: #cbd4d3;
}

.home-parts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-parts-grid a {
  display: grid;
  grid-template-rows: 178px auto auto;
  min-width: 0;
  padding-bottom: 19px;
  color: #f5f4f1;
  background: #222b2c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-parts-grid a:hover {
  color: #fff;
  background: #2b3535;
  border-color: var(--signal-red);
  transform: translateY(-4px);
}

.home-parts-grid img {
  width: 100%;
  height: 178px;
  padding: 14px;
  object-fit: contain;
  background: #f5f5f3;
}

.home-parts-grid span,
.home-parts-grid strong {
  display: block;
  padding: 0 18px;
}

.home-parts-grid span {
  margin-top: 19px;
  color: var(--signal-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-parts-grid strong {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.industrial-home .home-workflow {
  padding: 74px 0;
  color: #17191a;
  background: #e1eaeb;
  border-top: 1px solid #bfd0d1;
  border-bottom: 1px solid #bfd0d1;
}

.home-workflow-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.1fr auto;
  align-items: end;
  gap: 44px;
  margin-bottom: 34px;
}

.home-workflow-heading h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-workflow-heading > p {
  max-width: 480px;
  margin: 0;
  color: #526263;
  line-height: 1.7;
}

.home-workflow-heading .text-link {
  color: #17191a;
}

.home-workflow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #c3d0d1;
  background: #f8fbfa;
}

.home-workflow-list li {
  min-height: 150px;
  padding: 24px 20px;
  border-right: 1px solid #c3d0d1;
}

.home-workflow-list li:last-child {
  border-right: 0;
}

.home-workflow-list span,
.home-workflow-list strong {
  display: block;
}

.home-workflow-list span {
  margin-bottom: 42px;
  color: var(--signal-red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-workflow-list strong {
  max-width: 130px;
  color: #17191a;
  font-size: 0.98rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.industrial-home .home-evidence {
  padding: 84px 0;
  color: #151719;
  background: #f1f4f2;
  border-bottom: 1px solid #d5dfdf;
}

.home-evidence-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.home-evidence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.home-evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.76fr);
  min-height: 330px;
  color: inherit;
  background: #ffffff;
  border: 1px solid #d4dedc;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-evidence-card:last-child {
  grid-template-columns: 1fr;
}

.home-evidence-card:hover {
  color: inherit;
  box-shadow: 10px 10px 0 rgba(126, 44, 36, 0.18);
  transform: translate(-3px, -3px);
}

.home-evidence-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.home-evidence-card div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.home-evidence-card span,
.home-evidence-card b {
  color: var(--signal-red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-evidence-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.home-evidence-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.home-evidence-card b {
  margin-top: 24px;
}

.industrial-home .casebook-section {
  padding: 86px 0;
  color: #f4f3ef;
  background: #1a2223;
}

.casebook-heading > p {
  color: #bcbdb9;
}

.casebook-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.85fr);
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
}

.casebook-grid a {
  position: relative;
  overflow: hidden;
  background: #242d2d;
}

.casebook-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.8));
}

.casebook-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #f3f4f4;
  transition: transform 340ms ease;
}

.casebook-grid a:hover img {
  transform: scale(1.04);
}

.casebook-grid .casebook-feature {
  grid-row: 1 / 3;
}

.casebook-grid .casebook-feature img {
  padding: 26px;
}

.casebook-grid div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.casebook-grid span,
.casebook-grid strong {
  display: block;
}

.casebook-grid span {
  margin-bottom: 7px;
  color: var(--signal-red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.casebook-grid strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.industrial-home .equipment-proof {
  color: #111213;
  background: #dee7e6;
  border-bottom: 1px solid #bfd0ce;
}

.equipment-proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.12fr auto;
  align-items: end;
  gap: 54px;
}

.industrial-home .equipment-proof p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 16px;
  row-gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #bcbab2;
  border-bottom: 1px solid #bcbab2;
}

.proof-metrics strong {
  color: var(--signal-red);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.proof-metrics span {
  color: var(--steel);
  line-height: 1.45;
}

.industrial-home .rfq-band {
  padding: 66px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 65%),
    url("/assets/optimized/factory/factory-line.webp") center / cover no-repeat,
    #0d0e0f;
}

.rfq-band-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.industrial-home .rfq-band h2 {
  max-width: 700px;
}

.industrial-home .rfq-band p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: #d9d8d2;
  line-height: 1.65;
}

.industrial-page .part-rfq-band {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.78) 0%, rgba(8, 10, 11, 0.58) 48%, rgba(8, 10, 11, 0.28) 100%),
    url("/assets/optimized/factory/factory-line.webp") center 48% / cover no-repeat,
    #0d0e0f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.industrial-page .part-rfq-band .eyebrow {
  margin-bottom: 16px;
  color: #e0584d;
}

.industrial-page .part-rfq-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industrial-page .part-rfq-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #e0dfda;
  line-height: 1.65;
}

.industrial-page .part-rfq-band .btn {
  flex: 0 0 auto;
}

/* UX refinement: quieter industrial palette and consistent interaction feedback. */
:root {
  --ink: #171a1c;
  --muted: #5f6970;
  --line: #d5d4ce;
  --paper: #f4f3ef;
  --panel: #fbfbf8;
  --soft: #e9e7e0;
  --dark: #15191b;
  --steel: #3d5966;
  --accent: #ad4036;
  --accent-dark: #812d27;
  --accent-soft: #f0deda;
  --signal-red: #b64137;
  --action-blue: #2f657b;
  --shadow: 0 18px 46px rgba(14, 20, 23, 0.12);
}

body {
  background-color: var(--paper);
  background-image: linear-gradient(90deg, rgba(25, 34, 37, 0.025) 1px, transparent 1px);
  background-size: 144px 100%;
}

::selection {
  color: #fff;
  background: var(--action-blue);
}

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

button,
.btn,
.nav-links a,
.text-link,
.navigator-grid a,
.casebook-grid a {
  touch-action: manipulation;
}

button,
.btn {
  cursor: pointer;
}

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

.industrial-home .site-header,
.industrial-page .site-header {
  background: rgba(21, 25, 27, 0.98);
  box-shadow: 0 7px 24px rgba(8, 12, 14, 0.16);
}

.nav-links a {
  position: relative;
  transition: color 180ms ease, background-color 180ms ease;
}

.industrial-home .nav-links a:hover,
.industrial-page .nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 3px;
  left: 14px;
  height: 2px;
  background: var(--signal-red);
}

.btn {
  min-height: 50px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary,
.industrial-home .btn-dark,
.industrial-page .btn-dark {
  background: var(--signal-red);
}

.btn-primary:hover,
.industrial-home .btn-dark:hover,
.industrial-page .btn-dark:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 22px rgba(129, 45, 39, 0.22);
}

.btn-secondary:hover,
.btn-light:hover {
  color: #fff;
  background: var(--action-blue);
  border-color: var(--action-blue);
}

.btn:active,
.nav-toggle:active {
  transform: translateY(1px) scale(0.985);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--action-blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 101, 123, 0.35);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--accent-dark);
  text-decoration-color: currentColor;
}

.navigator-grid a {
  position: relative;
  overflow: hidden;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.navigator-grid a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--signal-red);
  transition: width 200ms ease;
}

.navigator-grid a:hover,
.navigator-grid a:focus-visible {
  transform: translateY(-3px);
}

.navigator-grid a:hover::after,
.navigator-grid a:focus-visible::after {
  width: 100%;
}

.case-record {
  border-color: var(--line);
}

.case-record figure {
  background: #e6e6e1;
  overflow: hidden;
}

.case-record img {
  transition: transform 260ms ease, filter 260ms ease;
}

.case-record:hover img {
  transform: scale(1.018);
  filter: contrast(1.025);
}

.case-facts > div {
  background: rgba(255, 255, 255, 0.54);
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--action-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 101, 123, 0.16);
}

.form-status[data-state="pending"]::before {
  content: "";
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: status-spin 700ms linear infinite;
}

@keyframes status-spin {
  to { transform: rotate(360deg); }
}

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

.footer .brand-logo {
  width: 138px;
  height: auto;
}

/* Secondary-page layout safeguards: these rules intentionally follow the shared system overrides. */
.industrial-page .section-head.split-head {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.industrial-page .section-head.split-head > div {
  max-width: 760px;
}

.industrial-page .section-head.split-head .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.industrial-page main > .equipment-records {
  color: #fff;
  background: #101112;
}

.industrial-page .missing-grid,
.quality-proof-gallery {
  align-items: start;
}

.quality-proof-gallery img {
  height: 260px;
  aspect-ratio: auto;
  object-fit: cover;
}

/* Global UX normalization: preserve the industrial voice while reducing repeated visual labels. */
:root {
  --focus-ring: #ff6256;
  --surface-strong: #f7f6f2;
  --content-measure: 68ch;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.industrial-home .hero-copy > .eyebrow,
.industrial-home .home-scope-heading .eyebrow,
.industrial-home .home-parts-heading .eyebrow,
.industrial-home .home-workflow-heading .eyebrow,
.industrial-home .home-evidence-heading .eyebrow,
.industrial-page .page-hero .eyebrow,
.industrial-page .product-detail-hero .eyebrow,
.industrial-page .section-head .eyebrow,
.industrial-page .factory-copy .eyebrow,
.industrial-page .quote-panel .eyebrow,
.industrial-page .equipment-records .eyebrow {
  display: none;
}

.industrial-home .hero h1,
.industrial-page .page-hero h1,
.industrial-page .product-detail-hero h1,
.industrial-page .content-page-heading h1 {
  text-wrap: balance;
}

.industrial-page .page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 4.7vw, 5rem);
  line-height: 1;
}

.industrial-page .section-head {
  margin-bottom: 30px;
}

.industrial-page .section-head h2,
.industrial-page .factory-copy h2,
.industrial-page .equipment-records h2 {
  max-width: 21ch;
  font-size: clamp(2.1rem, 3.5vw, 3.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

.industrial-page .section-head p:not(.eyebrow) {
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.7;
}

.industrial-page .container,
.industrial-page .section-head,
.industrial-page .product-list article > *,
.industrial-page .work-grid article > *,
.industrial-page .detail-gallery figure,
.industrial-page .equipment-card > * {
  min-width: 0;
}

.industrial-page main > .section {
  padding: 72px 0;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.industrial-page .product-list article,
.industrial-page .work-grid article,
.industrial-page .equipment-card,
.industrial-page .detail-gallery figure,
.industrial-page .quality-grid article,
.industrial-page .capability-matrix article {
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.industrial-page .product-list article:focus-within,
.industrial-page .work-grid article:focus-within,
.industrial-page .equipment-card:focus-within,
.industrial-page .detail-gallery figure:focus-within {
  border-color: var(--signal-red);
  box-shadow: 6px 6px 0 rgba(194, 47, 40, 0.14);
}

.industrial-page .product-list article:hover,
.industrial-page .work-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(194, 47, 40, 0.12);
}

.industrial-page .product-list p:not(.eyebrow),
.industrial-page .work-grid p,
.industrial-page .detail-gallery figcaption,
.industrial-page .quality-grid p {
  max-width: var(--content-measure);
  line-height: 1.62;
}

.industrial-page .series-spec-table-wrap,
.industrial-page .equipment-spec-table-wrap {
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--signal-red) transparent;
}

.industrial-page .quote-cta {
  background-image: linear-gradient(100deg, rgba(194, 47, 40, 0.22), transparent 62%);
}

@media (max-width: 760px) {
  .industrial-page main > .section {
    padding: 52px 0;
  }

  .industrial-page .page-hero {
    min-height: 300px;
    padding: 72px 0 52px;
  }

  .industrial-page .page-hero h1,
  .industrial-page .product-detail-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .industrial-page .content-page-heading h1 {
    max-width: 15ch;
    font-size: clamp(2.1rem, 10vw, 2.65rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .industrial-page .section-head h2,
  .industrial-page .factory-copy h2,
  .industrial-page .equipment-records h2 {
    max-width: 17ch;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .industrial-page .section-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .nav-links a {
    min-height: 48px;
    padding: 12px 4px;
  }

  .industrial-page .product-list article:hover,
  .industrial-page .work-grid article:hover {
    transform: none;
  }
}

.quality-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  margin: 0 0 62px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.quality-overview-media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #1b2023;
}

.quality-overview-media img,
.quality-overview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.quality-overview-media video {
  background: #101112;
}

.quality-overview-media::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(9, 13, 15, 0.76));
}

.quality-overview-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-control {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  background: rgba(13, 17, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.video-control:hover {
  background: var(--signal-red);
  border-color: var(--signal-red);
}

.quality-overview-copy {
  padding: clamp(30px, 4vw, 58px);
  align-self: center;
}

.quality-overview-copy h1,
.quality-overview-copy h2,
.quality-evidence-heading h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.quality-overview-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.3vw, 3.5rem);
}

.quality-overview-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.quality-check-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.quality-check-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.quality-check-list dt {
  color: var(--signal-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-check-list dd {
  margin: 0;
  color: var(--steel);
  font-weight: 700;
}

.quality-evidence-section {
  background: #e9e7e0;
  border-top: 1px solid #d1cfc8;
  border-bottom: 1px solid #d1cfc8;
}

.quality-evidence-heading {
  margin-bottom: 40px;
}

.quality-evidence-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(0, 0.72fr));
  gap: 14px;
}

.quality-evidence-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid #d3d1ca;
}

.quality-evidence-gallery img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.quality-evidence-gallery .quality-evidence-feature img {
  height: 390px;
}

.quality-evidence-gallery figure:hover img {
  transform: scale(1.025);
}

.quality-evidence-gallery figcaption {
  min-height: 94px;
  padding: 15px 16px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.quality-evidence-gallery figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .linear-guide-reference-page .support-reference-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
  }

  .linear-guide-reference-page .support-product-stage {
    position: static;
  }

  .support-reference-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
  }

  .support-reference-content {
    padding-top: 12px;
  }

  .support-series-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industrial-home .hero-index {
    display: none;
  }

  .navigator-heading,
  .casebook-heading,
  .home-workflow-heading,
  .home-scope-heading,
  .home-parts-heading,
  .equipment-proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .home-workflow-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .home-evidence-grid {
    grid-template-columns: 1fr;
  }

  .home-evidence-card:last-child {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.76fr);
  }

  .home-workflow-list li:nth-child(3) {
    border-right: 0;
  }

  .home-workflow-list li:nth-child(-n + 3) {
    border-bottom: 1px solid #c3d0d1;
  }

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

  .casebook-grid .casebook-feature {
    grid-row: span 2;
  }

  .quality-overview,
  .quality-evidence-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-evidence-gallery .quality-evidence-feature {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .linear-guide-reference-page .support-reference-grid {
    grid-template-columns: 1fr;
  }

  .support-series-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-drawing-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .support-carousel-button {
    width: 40px;
    height: 40px;
  }

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

  .support-hero-visual {
    width: min(100%, 320px);
    min-height: 250px;
    margin: 6px auto 0;
  }

  .support-reference-content {
    padding-top: 0;
  }

  .support-reference-content h1 {
    white-space: normal;
  }

  .support-benefit-list {
    grid-template-columns: 1fr;
  }

  .support-benefit-list li:nth-child(odd),
  .support-benefit-list li:nth-child(even) {
    padding-inline: 15px;
    border-bottom: 1px solid #d7d4cb;
  }

  .support-benefit-list li:nth-child(even) {
    border-left: 0;
  }

  .support-benefit-list li:last-child {
    border-bottom: 0;
  }

  .industrial-page .section-head.split-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .quality-proof-gallery img {
    height: 220px;
  }

  .quality-overview,
  .quality-evidence-gallery {
    grid-template-columns: 1fr;
  }

  .quality-overview-media {
    min-height: 350px;
  }

  .quality-evidence-gallery .quality-evidence-feature {
    grid-column: auto;
  }

  .quality-evidence-gallery img,
  .quality-evidence-gallery .quality-evidence-feature img {
    height: 280px;
  }

  .industrial-home .site-header {
    background: #101112;
  }

  .industrial-page .site-header {
    background: #101112;
  }

  .industrial-home .nav-toggle {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .industrial-page .nav-toggle {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .industrial-home .nav-links {
    background: #101112;
  }

  .industrial-page .nav-links {
    background: #101112;
  }

  .industrial-home .hero {
    min-height: 590px;
    padding: 84px 0 64px;
    background-position: 65% center;
  }

  .industrial-home .home-hero {
    min-height: 620px;
    padding: 98px 0 72px;
  }

  .industrial-home .brand-logo,
  .industrial-page .brand-logo {
    width: 126px;
    height: 50px;
  }

  .industrial-home .hero h1 {
    max-width: 100%;
    font-size: 3.35rem;
  }

  .industrial-home .hero .lead {
    max-width: 310px;
  }

  .navigator-grid,
  .casebook-grid,
  .home-workflow-list,
  .home-scope-grid,
  .home-parts-grid {
    grid-template-columns: 1fr;
  }

  .industrial-home .home-scope,
  .industrial-home .home-parts,
  .industrial-home .home-evidence {
    padding: 58px 0;
  }

  .home-scope-grid article {
    min-height: 0;
    padding: 24px;
  }

  .home-scope-grid span {
    margin-bottom: 22px;
  }

  .home-parts-grid a {
    grid-template-rows: 220px auto auto;
  }

  .home-parts-grid img {
    height: 220px;
  }

  .home-evidence-card,
  .home-evidence-card:last-child {
    grid-template-columns: 1fr;
  }

  .home-evidence-card img {
    min-height: 220px;
    max-height: 300px;
  }

  .home-workflow-list li,
  .home-workflow-list li:nth-child(3) {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid #c3d0d1;
  }

  .home-workflow-list li:last-child {
    border-bottom: 0;
  }

  .home-workflow-list span {
    margin-bottom: 18px;
  }

  .navigator-grid a {
    min-height: 245px;
  }

  .navigator-grid span {
    margin-bottom: 28px;
  }

  .casebook-grid {
    grid-template-rows: none;
  }

  .casebook-grid a,
  .casebook-grid .casebook-feature {
    min-height: 260px;
    grid-row: auto;
  }

  .rfq-band-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

