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

.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/hero/cnc-machining-hero-bg.png") 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;
}

.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: 40px 0;
  background: #fbfcfb;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: var(--muted);
}

.footer .brand {
  color: var(--ink);
}

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

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

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

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

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

/* 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;
}

.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/hero/cnc-machining-hero-bg.png") 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 .casebook-section {
  padding: 86px 0;
  color: #f4f3ef;
  background: #111213;
}

.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: #1b1d1f;
}

.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: #e6e4dd;
  border-bottom: 1px solid #c9c7c0;
}

.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/factory/factory-line.jpg") 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-home .footer {
  color: #c7c7c2;
  background: #0b0c0d;
  border-color: rgba(255, 255, 255, 0.12);
}

.industrial-home .footer .brand {
  color: #fff;
}

.industrial-home .footer .brand-mark {
  background: #f6f4ef;
  color: #111213;
}

.footer .brand-logo {
  width: 168px;
  height: 66px;
}

@media (max-width: 980px) {
  .industrial-home .hero-index {
    display: none;
  }

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

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

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

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

@media (max-width: 760px) {
  .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 .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 {
    grid-template-columns: 1fr;
  }

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