:root {
  --ink: #172124;
  --muted: #627176;
  --paper: #f5f3ee;
  --panel: #ffffff;
  --line: #d9dedb;
  --soft: #eaf2ef;
  --warm: #f5ead8;
  --steel: #2d4650;
  --brand: #1f7a6a;
  --accent: #c47b24;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 243, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.brand span {
  display: block;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav-wrap,
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: #46565b;
  font-size: 15px;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--brand);
}

.header-cta,
.button,
.mobile-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 4px;
  font-weight: 700;
}

.header-cta:hover,
.button:hover,
.mobile-cta:hover {
  color: #fff;
  background: var(--steel);
  border-color: var(--steel);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: #aeb9b6;
}

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

.mobile-nav { display: none; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a + a::before,
.breadcrumbs a + span::before {
  content: "/";
  margin-right: 8px;
  color: #9aa7aa;
}

.industrial-hero,
.product-entry,
.quality-band,
.industrial-profile,
.resource-section,
.rfq-band,
.page-title,
.process-map,
.capability-ledger,
.service-title,
.service-matrix,
.quality-checklist,
.resource-title,
.resource-index,
.article-sheet,
.rfq-contact,
.policy-panel,
.sitemap-panel,
.notfound-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.industrial-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 40px;
  padding: 74px 0 42px;
}

.hero-copy h1,
.page-title h1,
.service-title h1,
.resource-title h1,
.article-head h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.03;
  max-width: 860px;
}

.hero-copy p,
.page-title p,
.service-title p,
.resource-title p,
.article-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

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

.process-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 20px 55px rgba(23, 33, 36, 0.08);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.panel-head strong {
  color: var(--ink);
  text-align: right;
}

.gauge-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.gauge-row:last-child { border-bottom: 0; }

.gauge-row span {
  color: var(--accent);
  font-weight: 800;
}

.gauge-row p {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2,
.quality-band h2,
.industrial-profile h2,
.process-map h2,
.capability-ledger h2,
.quality-checklist h2,
.resource-index strong,
.rfq-band h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.12;
}

.product-entry,
.resource-section,
.process-map,
.capability-ledger,
.service-matrix,
.resource-index,
.rfq-contact {
  padding: 64px 0;
}

.product-rows,
.ledger-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--panel);
}

.capability-card {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card:nth-child(3n) { border-right: 0; }

.capability-card span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 28px;
  background: var(--accent);
}

.capability-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.capability-card p,
.quality-band p,
.industrial-profile p,
.process-steps p,
.service-matrix p,
.resource-note p,
.article-body p,
.policy-panel p {
  color: var(--muted);
}

.quality-band {
  display: grid;
  grid-template-columns: 0.35fr 0.4fr 0.25fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--steel);
  color: #fff;
  border-radius: 8px;
}

.quality-band span {
  color: #b8d6cc;
  font-weight: 800;
}

.quality-band p { color: #d8e2df; margin: 0; }

.quality-band ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.quality-band li {
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.industrial-profile {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: stretch;
  padding: 76px 0;
}

.industrial-profile > div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 8px;
}

.industrial-profile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

.resource-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.resource-note > div { padding: 22px; }

.resource-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-date {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.resource-note h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.rfq-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 76px;
  padding: 34px;
  background: var(--warm);
  border: 1px solid #e2cfad;
  border-radius: 8px;
}

.rfq-band p { color: #5f5a4f; max-width: 720px; }

.page-title,
.service-title,
.resource-title {
  padding: 54px 0 28px;
}

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

.process-steps article,
.quality-checklist,
.contact-routes article,
.policy-panel,
.sitemap-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.process-steps span,
.policy-panel span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 800;
}

.capability-ledger {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 28px;
}

.service-title,
.resource-title {
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  gap: 36px;
  align-items: end;
}

.matrix-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--steel);
  color: #fff;
  border-radius: 8px 8px 0 0;
}

.matrix-rows {
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--panel);
  counter-reset: service-row;
}

.matrix-rows article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.matrix-rows article:last-child { border-bottom: 0; }

.row-index {
  color: var(--accent);
  font-weight: 800;
}

.row-index::before {
  counter-increment: service-row;
  content: counter(service-row, decimal-leading-zero);
}

.matrix-rows h2 { margin: 0 0 6px; font-size: 24px; }

.matrix-rows a {
  color: var(--brand);
  font-weight: 700;
}

.quality-checklist {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 24px;
  margin-bottom: 70px;
}

.quality-checklist div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quality-checklist p {
  margin: 0;
  padding: 12px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.resource-index {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
}

.resource-index aside {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  background: var(--steel);
  color: #fff;
  border-radius: 8px;
}

.resource-index aside p { color: #d7e2df; }

.article-sheet {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.article-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  margin-bottom: 34px;
}

.article-head aside {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.article-head aside p {
  margin: 0 0 16px;
  color: var(--muted);
}

.article-head aside span {
  display: block;
  color: var(--accent);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
}

.article-aside img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-keypoints,
.article-aux-block {
  margin-top: 18px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-aside .article-keypoints:first-child { margin-top: 0; }

.article-aside .article-keypoints + img { margin-top: 18px; }

.article-keypoints ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.article-keypoints a,
.article-keypoints li span {
  color: var(--text);
  font-weight: 800;
  line-height: 1.45;
}

.article-keypoints a:hover,
.article-keypoints a:focus-visible {
  color: var(--primary);
}

.article-aux-links {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.article-aux-block div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.article-aux-block a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.45;
}

.article-aux-block a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.article-aux-block h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

.article-body section {
  scroll-margin-top: 180px;
}

.article-body section + section { margin-top: 30px; }

.article-body h2 { margin: 0 0 12px; font-size: 28px; }

.article-aux-block[data-kind="outbound_references"] {
  padding: 16px 18px;
  background: #fff;
  border-style: dashed;
}

.article-aux-block[data-kind="outbound_references"] div {
  grid-template-columns: minmax(0, 420px);
}

.article-aux-block[data-kind="outbound_references"] a {
  min-height: 48px;
  color: var(--muted);
  font-weight: 700;
}

.article-aux-block[data-kind="article_pager"] div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-aux-block[data-kind="article_pager"] a {
  flex: 1 1 260px;
}

.rfq-contact {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}

.rfq-steps {
  display: grid;
  gap: 12px;
  align-self: start;
}

.rfq-steps span {
  display: block;
  padding: 16px;
  background: var(--steel);
  color: #fff;
  border-radius: 8px;
}

.rfq-steps em {
  display: block;
  color: #b8d6cc;
  font-style: normal;
  font-weight: 800;
}

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

.contact-routes span {
  color: var(--accent);
  font-weight: 800;
}

.contact-routes h2 { margin: 16px 0 10px; font-size: 22px; }

.policy-panel,
.sitemap-panel {
  margin-bottom: 16px;
}

.sitemap-links {
  display: grid;
  gap: 10px;
}

.sitemap-links p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-links span { color: var(--muted); }

.notfound-panel {
  min-height: 60vh;
  display: grid;
  align-content: center;
}

@media (max-width: 960px) {
  .desktop-nav-wrap { display: none; }
  .mobile-nav { display: block; }

  .mobile-nav summary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--panel);
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker { display: none; }

  .mobile-nav summary:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
  }

  .mobile-nav i {
    width: 14px;
    height: 10px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
  }

  .mobile-nav i::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 3px;
    border-top: 2px solid var(--ink);
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(23, 33, 36, 0.14);
  }

  .mobile-panel nav {
    display: grid;
    gap: 8px;
  }

  .mobile-panel nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .mobile-panel nav a[aria-current="page"] {
    border-color: var(--brand);
    color: var(--brand);
    font-weight: 700;
  }

  .mobile-cta {
    width: 100%;
    margin-top: 10px;
  }

  .industrial-hero,
  .industrial-profile,
  .capability-ledger,
  .service-title,
  .resource-title,
  .resource-index,
  .article-head,
  .article-layout,
  .rfq-contact,
  .quality-band,
  .quality-checklist {
    grid-template-columns: 1fr;
  }

  .industrial-hero {
    min-height: 0;
    padding-top: 42px;
  }

  .section-heading,
  .product-rows,
  .ledger-list,
  .process-steps,
  .resource-grid,
  .article-aux-block div,
  .contact-routes,
  .quality-checklist div {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-child(3n) {
    border-right: 0;
  }

  .resource-index aside {
    position: static;
  }

  .matrix-rows article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: min(100% - 20px, 1180px);
  }

  .brand span { max-width: 178px; }

  .hero-copy h1,
  .page-title h1,
  .service-title h1,
  .resource-title h1,
  .article-head h1 {
    font-size: 34px;
  }

  .industrial-hero,
  .product-entry,
  .quality-band,
  .industrial-profile,
  .resource-section,
  .rfq-band,
  .page-title,
  .process-map,
  .capability-ledger,
  .service-title,
  .service-matrix,
  .quality-checklist,
  .resource-title,
  .resource-index,
  .article-sheet,
  .rfq-contact,
  .policy-panel,
  .sitemap-panel,
  .notfound-panel {
    width: min(100% - 20px, 1180px);
  }

  .rfq-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .process-panel,
  .industrial-profile > div,
  .article-body {
    padding: 22px;
  }
}

/* Source-DNA pass: Southern Gear style structure, generalized for static output. */
:root {
  --paper: #f4f4f4;
  --panel: #ffffff;
  --ink: #30353a;
  --muted: #7d8288;
  --line: #dedede;
  --brand: #2e83e6;
  --brand-dark: #0f63c4;
  --steel: #23303a;
  --accent: #ff7a1a;
}

.site-header.industrial-header {
  position: sticky;
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.industrial-utility {
  width: min(1120px, calc(100% - 32px));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.industrial-utility .brand {
  flex: 1 1 430px;
  gap: 14px;
}

.industrial-utility .brand img {
  width: 76px;
  height: 76px;
}

.industrial-utility .brand span {
  max-width: 430px;
  white-space: normal;
}

.industrial-utility .brand strong {
  display: block;
  color: var(--brand);
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.06;
  text-transform: uppercase;
}

.industrial-utility .brand small {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #777;
}

.utility-contact a,
.utility-contact > span {
  display: grid;
  grid-template-columns: auto;
  gap: 2px;
  font-size: 14px;
}

.utility-contact b {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.industrial-nav-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industrial-nav-bar .header-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
}

.desktop-nav-wrap {
  width: 100%;
  justify-content: space-between;
}

.desktop-nav {
  gap: 0;
}

.desktop-nav a {
  height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 0;
  color: #45484c;
  font-size: 14px;
  text-transform: uppercase;
}

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover {
  color: var(--brand);
  border-left-color: #ececec;
  border-right-color: #ececec;
}

.header-cta,
.button,
.mobile-cta,
.source-download {
  min-height: 52px;
  border-radius: 2px;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button.secondary {
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  border-color: rgba(255,255,255,0.92);
}

.source-home-hero {
  width: 100%;
  min-height: 525px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.46) 48%, rgba(0,0,0,0.3)),
    var(--hero-image) center / cover no-repeat;
}

.source-home-hero .hero-copy {
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1120px) / 2));
}

.source-home-hero .eyebrow {
  color: rgba(255,255,255,0.55);
}

.source-home-hero h1 {
  color: #fff;
  font-size: clamp(46px, 6.8vw, 82px);
  line-height: 1.08;
  max-width: 820px;
}

.source-home-hero .hero-copy p {
  color: rgba(255,255,255,0.86);
}

.source-entry-deck {
  margin-top: -86px;
  position: relative;
  z-index: 2;
}

.source-entry-deck .section-heading {
  display: none;
}

.source-entry-deck .product-rows {
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.capability-card {
  min-height: 250px;
  padding: 34px;
}

.capability-thumb {
  display: block;
  width: 100%;
  height: 116px;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(46,131,230,0.2), rgba(255,122,26,0.22)),
    linear-gradient(45deg, #d4d9dd, #f2f4f6);
}

.source-page-hero {
  min-height: 188px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.36)),
    var(--hero-image) center / cover no-repeat;
}

.source-page-hero > div {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.source-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.source-page-hero .breadcrumbs {
  justify-content: flex-end;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.82);
}

.source-page-hero .breadcrumbs a {
  color: rgba(255,255,255,0.82);
}

.source-capabilities,
.source-about-copy,
.source-contact-sheet,
.source-rfq-strip {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.source-copy-block {
  padding: 42px 0 24px;
}

.source-copy-block h2,
.source-about-copy h2,
.contact-lead h2 {
  margin: 0 0 26px;
  color: #62676d;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.38;
}

.source-copy-block p,
.source-about-copy p,
.contact-lead p {
  color: #85898f;
  max-width: 980px;
}

.source-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 28px;
}

.capability-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 64px;
  padding: 32px 0 68px;
}

.capability-columns article {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.capability-columns article > span {
  width: 7px;
  height: 7px;
  margin-top: 13px;
  border-radius: 50%;
  background: #b8b8b8;
}

.capability-columns h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.capability-columns p {
  grid-column: 2;
  margin: 0;
  color: #83878b;
}

.source-about-copy,
.source-contact-sheet {
  padding: 42px 0 64px;
}

.source-contact-sheet .contact-routes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 30px;
}

.source-contact-sheet .contact-routes article {
  border: 0;
  background: transparent;
  padding: 0;
  color: #777;
}

.source-contact-sheet .contact-routes span {
  color: #808080;
  font-weight: 800;
}

.source-rfq-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid #e5e5e5;
}

.source-rfq-strip p {
  margin: 0;
  color: #666;
  font-size: clamp(22px, 3vw, 32px);
}

.industrial-footer {
  margin-top: 72px;
  background: #23303a;
  color: rgba(243, 247, 249, 0.82);
}

.footer-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 30px;
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.42fr) minmax(220px, 0.72fr);
  gap: 38px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.footer-brand p {
  margin: 18px 0 24px;
  color: rgba(243, 247, 249, 0.68);
}

.footer-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.footer-cta:hover {
  color: #fff;
  background: var(--brand);
}

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

.footer-directory h2,
.footer-contact-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.footer-directory a,
.footer-contact-card a,
.footer-bottom a {
  color: rgba(243, 247, 249, 0.78);
}

.footer-directory a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-directory a:hover,
.footer-contact-card a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-contact-card {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-card a,
.footer-contact-card p {
  display: block;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 247, 249, 0.56);
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .industrial-utility {
    min-height: 74px;
  }

  .industrial-utility .brand img {
    width: 44px;
    height: 44px;
  }

  .industrial-utility .brand strong {
    font-size: 18px;
  }

  .utility-contact,
  .desktop-nav-wrap {
    display: none;
  }

  .industrial-nav-bar .header-inner {
    min-height: 0;
    justify-content: flex-end;
  }

  .mobile-nav {
    display: block;
    margin: 10px 0;
  }

  .source-home-hero {
    grid-template-columns: 1fr;
    min-height: 510px;
    padding: 58px 0;
  }

  .source-home-hero .hero-copy {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
  }

  .source-entry-deck {
    margin-top: 0;
    padding-top: 26px;
  }

  .product-rows,
  .capability-columns,
  .article-aux-block div,
  .source-contact-sheet .contact-routes,
  .source-rfq-strip,
  .footer-shell,
  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
  }

  .source-page-hero .breadcrumbs {
    justify-content: flex-start;
  }
}
