:root {
  --ink: #171a1b;
  --ink-2: #24292a;
  --text: #2f3536;
  --muted: #6f7778;
  --line: #dfe2e1;
  --paper: #f3f4f3;
  --blush: #faf1ed;
  --white: #ffffff;
  --accent: #df5426;
  --accent-dark: #af3812;
  --cyan: #2f94ad;
  --yellow: #e0b743;
  --green: #315d50;
  --focus: #176fa5;
  --radius: 6px;
  --shadow: 0 18px 44px rgba(19, 25, 26, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

.product-photo-stage {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f7f7;
}

.product-photo-stage.has-magnifier {
  cursor: zoom-in;
}

.product-photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.steel-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steel-thumbs img {
  height: 86px;
  object-fit: cover;
}

.steel-product-figure img {
  object-fit: contain;
  background: #f7f7f7;
}

.spec-sheet {
  max-width: 980px;
  margin: 52px auto 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.spec-sheet img {
  width: 100%;
  height: auto;
}

.spec-sheet figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
}

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

a {
  color: inherit;
  text-underline-offset: 4px;
}

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.utility-bar {
  min-height: 34px;
  background: var(--ink);
  color: #ced4d3;
  font-size: 12px;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-social,
.utility-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-social span {
  min-width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  border-radius: 50%;
  background: #354044;
  color: #fff;
  font-size: 8px;
  font-weight: 850;
}

.utility-social span:first-child { background: #c83d2c; }
.utility-social span:nth-child(2) { background: #238a68; }
.utility-social span:last-child { background: #277da8; }

.utility-contact i {
  width: 1px;
  height: 14px;
  background: #596164;
}

.language-link {
  min-width: 32px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border: 1px solid #747c7e;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.utility-inner a {
  color: var(--white);
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 100;
  top: 0;
  height: 252px;
  overflow: hidden;
  background: url("assets/factory.webp") center 52% / cover no-repeat;
  border-bottom: 0;
}

.masthead-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 43, 0.18), rgba(7, 29, 43, 0.03) 45%, rgba(7, 29, 43, 0.25));
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(20, 26, 27, 0.09);
}

.header-inner {
  position: relative;
  z-index: 2;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .brand-symbol {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 55px;
  border: 4px solid #fff;
  color: #e46a35;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.brand .brand-name {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.62);
}

.brand .brand-name small { color: #f1f3f3; }

.brand strong {
  font-size: 19px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: #fff;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.masthead-identity {
  position: absolute;
  z-index: 2;
  top: 122px;
  right: 24px;
  left: 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.masthead-identity strong {
  font-size: 40px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.masthead-identity strong span { color: #d65a2b; }

.masthead-identity p {
  margin: 9px 0 0;
  font-size: 13px;
  letter-spacing: 0;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.title-band {
  padding-block: 26px;
  background: #f1f1f1;
  border-bottom: 1px solid #e7e9e8;
}

.title-band-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-dark);
}

.title-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.15;
}

.title-band-code {
  color: #555;
  font-size: 26px;
  font-weight: 400;
}

.product-hero {
  padding-block: 52px 64px;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 56px;
}

.media-column,
.product-summary {
  min-width: 0;
}

.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #dedede;
  background: #0b0e0f;
}

.video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-label {
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 14px;
  background: rgba(16, 21, 22, 0.82);
  color: var(--white);
  pointer-events: none;
}

.video-label span,
.video-label strong,
.video-label small {
  display: block;
}

.video-label span {
  color: #ff9b78;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-label strong {
  margin-top: 3px;
  font-size: 16px;
}

.video-label small {
  margin-top: 1px;
  color: #c8d0ce;
  font-size: 10px;
}

.media-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.media-selector button {
  min-width: 0;
  display: grid;
  display: block;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.media-selector button:hover,
.media-selector button.is-active {
  border-color: var(--accent);
}

.media-selector img {
  width: 100%;
  height: 68px;
  object-fit: cover;
}

.media-selector span {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff936b;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p,
dd {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.12;
}

.product-summary h1 {
  margin: 2px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 30px;
  font-weight: 800;
}

.product-summary h1 span {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 750;
}

.summary-lead {
  max-width: 580px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.quick-specs {
  display: block;
  margin: 0;
  padding: 15px 20px;
  background: #fff1ef;
}

.quick-specs > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 8px;
  padding: 3px 0;
  border-bottom: 0;
}

.quick-specs > div:nth-last-child(2) {
  border-bottom: 0;
}

.quick-specs > div.wide {
  border: 0;
}

.quick-specs dt {
  color: #6d6d6d;
  font-size: 12px;
  font-weight: 500;
}

.quick-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.product-category {
  margin: 18px 0 0;
  color: #686868;
  font-size: 12px;
}

.product-category a { color: var(--accent-dark); }

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: var(--white);
}

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

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

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

.summary-note {
  margin: 14px 0 0;
  color: #858d8b;
  font-size: 11px;
}

.section-nav {
  position: sticky;
  z-index: 80;
  top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.section-nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav-inner::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  color: #586160;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.section-nav a:hover,
.section-nav a.is-active {
  color: var(--accent-dark);
}

.section {
  padding-block: 96px;
}

.overview {
  background: var(--paper);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 86px;
}

.overview-copy h2,
.section-heading h2,
.factory-heading h2,
.packing-grid h2,
.inquiry-copy h2 {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 820;
}

.overview-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid #cbd0ce;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #cbd0ce;
}

.feature-list strong {
  color: var(--ink);
  font-size: 13px;
}

.feature-list span {
  color: var(--muted);
  font-size: 13px;
}

.product-figure {
  min-width: 0;
  margin: 0;
}

.product-figure img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 64%;
  background: #171b1c;
}

.product-figure figcaption,
.heavy-handling figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.specifications {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  align-items: stretch;
  gap: 24px;
}

.table-frame {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.spec-table,
.size-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table {
  min-width: 610px;
}

caption {
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.spec-table th,
.spec-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}

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

.spec-table th {
  width: 34%;
  background: #f8f9f8;
  color: #68716f;
  font-weight: 650;
}

.spec-table td {
  color: var(--ink);
  font-weight: 650;
}

.finish-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--blush);
}

.panel-index {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.finish-panel h3 {
  margin: 10px 0 24px;
  font-size: 26px;
}

.finish-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finish-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #554d49;
  font-size: 13px;
  font-weight: 650;
}

.finish-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
}

.finish-dot.black { background: #202324; }
.finish-dot.gray { background: #747b7d; }
.finish-dot.white { background: #f0f1ed; }
.finish-dot.yellow { background: #d4b54d; }
.finish-dot.nickel { background: #b7c0c0; }
.finish-dot.ruspert { background: #596c61; }

.finish-panel p {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid #e3d1c9;
  color: #7d6d66;
  font-size: 12px;
}

.size-block {
  margin-top: 64px;
}

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

.size-heading span {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.size-heading h3 {
  margin: 5px 0 0;
  font-size: 28px;
}

.size-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.size-table {
  min-width: 800px;
}

.size-table th,
.size-table td {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}

.size-table th:last-child,
.size-table td:last-child {
  border-right: 0;
}

.size-table tbody tr:last-child th,
.size-table tbody tr:last-child td {
  border-bottom: 0;
}

.size-table thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.size-table tbody th {
  background: #f7f8f7;
  color: var(--ink);
}

.factory-strength {
  padding-block: 96px;
  background: var(--ink-2);
  color: var(--white);
}

.factory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}

.factory-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
}

.factory-heading > p {
  margin: 0;
  color: #c5cdcb;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #556062;
  border-bottom: 1px solid #556062;
}

.workshop-grid article {
  min-width: 0;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid #556062;
}

.workshop-grid article:last-child {
  border-right: 0;
}

.workshop-grid article > span {
  display: block;
  margin-bottom: 54px;
  color: #ff936b;
  font-size: 11px;
  font-weight: 800;
}

.workshop-grid article > p:first-of-type {
  margin: 0 0 6px;
  color: #97a3a0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.workshop-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 27px;
}

.workshop-grid article > p:last-child {
  margin: 0;
  color: #c3ccca;
  font-size: 13px;
}

.heavy-handling {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: stretch;
  margin-top: 60px;
  background: #111516;
}

.heavy-handling figure {
  min-width: 0;
  margin: 0;
  padding-bottom: 9px;
}

.heavy-handling figure img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.heavy-handling figcaption {
  padding-inline: 12px;
  color: #899492;
}

.heavy-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 48px;
}

.capability-tag {
  align-self: flex-start;
  padding: 6px 9px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.heavy-copy h3 {
  margin: 24px 0 18px;
  color: var(--white);
  font-size: 34px;
}

.heavy-copy > p {
  margin: 0;
  color: #c3ccca;
  font-size: 15px;
}

.heavy-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid #465052;
}

.heavy-copy dl div {
  min-width: 0;
  padding: 18px 14px 0 0;
}

.heavy-copy dt {
  color: #86918f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.heavy-copy dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.packing-section {
  background: var(--paper);
}

.packing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 80px;
}

.packing-grid > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.packing-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #c5ccca;
  border-left: 1px solid #c5ccca;
  list-style: none;
}

.packing-grid li {
  min-height: 130px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid #c5ccca;
  border-bottom: 1px solid #c5ccca;
}

.packing-grid li span {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.packing-grid li strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
}

.inquiry-section {
  padding-block: 96px;
  background: var(--ink);
  color: var(--white);
}

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

.inquiry-copy h2 {
  max-width: 520px;
  color: var(--white);
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #c3ccca;
}

.inquiry-copy > a {
  display: inline-block;
  margin-top: 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 750;
}

.rfq-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

.rfq-form label {
  display: block;
  margin-bottom: 18px;
  color: #495251;
  font-size: 11px;
  font-weight: 800;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 48px;
  display: block;
  margin-top: 7px;
  padding: 11px 12px;
  border: 1px solid #aeb7b5;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.rfq-form textarea {
  min-height: 126px;
  resize: vertical;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: #818a88;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--focus);
  outline: 2px solid rgba(23, 111, 165, 0.18);
  outline-offset: 0;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-actions p {
  margin: 0;
  color: var(--green);
  font-size: 12px;
}

.site-footer {
  padding-block: 54px 24px;
  background: #0f1314;
  color: #cbd2d0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 42px;
}

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

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-brand small {
  color: #8e9997;
}

.footer-grid p {
  margin: 0;
  color: #8f9a98;
  font-size: 12px;
}

.footer-grid > a:last-child {
  justify-self: end;
  color: var(--white);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #303839;
  color: #77817f;
  font-size: 10px;
}

.mobile-actions {
  display: none;
}

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

  .main-nav a {
    font-size: 13px;
  }

  .product-grid {
    gap: 42px;
  }

  .product-summary h1 {
    font-size: 42px;
  }

  .quick-specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-specs > div,
  .quick-specs > div:nth-last-child(2) {
    border-bottom: 1px solid #ebdcd5;
  }

  .quick-specs > div.wide {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .overview-grid,
  .packing-grid,
  .inquiry-grid {
    gap: 52px;
  }

  .heavy-handling {
    grid-template-columns: minmax(0, 1fr);
  }

  .heavy-handling figure img {
    max-height: 520px;
  }
}

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

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

  .site-header {
    height: 220px;
  }

  .masthead-identity {
    top: 108px;
  }

  .menu-button {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(20, 26, 27, 0.12);
  }

  .js .main-nav {
    display: none;
  }

  .js .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 15px;
    text-shadow: none;
  }

  .main-nav .quote-link {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
  }

  .product-grid,
  .overview-grid,
  .spec-layout,
  .factory-heading,
  .packing-grid,
  .inquiry-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid,
  .overview-grid,
  .spec-layout,
  .factory-heading,
  .packing-grid,
  .inquiry-grid {
    gap: 44px;
  }

  .product-summary {
    max-width: 720px;
  }

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

  .quick-specs > div:nth-last-child(2) {
    border-bottom: 0;
  }

  .quick-specs > div.wide {
    grid-column: 1 / -1;
    border-top: 1px solid #ebdcd5;
  }

  .section-nav {
    top: 74px;
  }

  .product-figure img {
    height: 520px;
  }

  .factory-heading > p {
    max-width: 680px;
  }

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

  .workshop-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #556062;
  }

  .workshop-grid article:last-child {
    border-bottom: 0;
  }

  .workshop-grid article > span {
    margin-bottom: 30px;
  }

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

  .footer-grid > a:last-child {
    justify-self: start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .utility-social,
  .utility-contact > span,
  .utility-contact i,
  .language-link {
    display: none;
  }

  .brand {
    height: 58px;
  }

  .brand .brand-symbol {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 14px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 8px;
  }

  .title-band {
    padding-block: 22px;
  }

  .title-band-inner {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .title-band h2 {
    font-size: 26px;
  }

  .product-hero,
  .section,
  .factory-strength,
  .inquiry-section {
    padding-block: 68px;
  }

  .product-grid {
    gap: 36px;
  }

  .site-header {
    height: 204px;
  }

  .masthead-identity {
    top: 108px;
  }

  .masthead-identity strong {
    font-size: 31px;
  }

  .masthead-identity p {
    font-size: 11px;
  }

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

  .steel-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steel-thumbs img {
    height: 60px;
  }

  .media-selector button {
    display: block;
    padding: 5px;
  }

  .media-selector img {
    width: 100%;
    height: 54px;
  }

  .media-selector span {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    text-align: center;
  }

  .video-label {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 10px;
  }

  .video-label small {
    display: none;
  }

  .product-summary h1 {
    font-size: 27px;
  }

  .summary-lead {
    font-size: 14px;
  }

  .quick-specs {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 18px;
  }

  .quick-specs > div,
  .quick-specs > div:nth-last-child(2) {
    grid-template-columns: 112px minmax(0, 1fr);
    border-bottom: 1px solid #ebdcd5;
  }

  .quick-specs > div.wide {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .summary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .summary-actions .button {
    width: 100%;
  }

  .section-nav-inner {
    gap: 24px;
  }

  .overview-copy h2,
  .section-heading h2,
  .factory-heading h2,
  .packing-grid h2,
  .inquiry-copy h2 {
    font-size: 34px;
  }

  .overview-copy > p:not(.eyebrow),
  .section-heading > p:not(.eyebrow) {
    font-size: 15px;
  }

  .feature-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .product-figure img {
    height: 440px;
  }

  .size-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .workshop-grid article {
    padding: 26px 22px;
  }

  .heavy-handling figure img {
    min-height: 300px;
  }

  .heavy-copy {
    padding: 32px 22px;
  }

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

  .heavy-copy dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .heavy-copy dl div {
    padding: 14px 0;
    border-bottom: 1px solid #465052;
  }

  .heavy-copy dl div:last-child {
    border-bottom: 0;
  }

  .packing-grid ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .packing-grid li {
    min-height: 104px;
  }

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

  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .footer-grid > a:last-child {
    grid-column: auto;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    border-top: 1px solid #111516;
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(20, 26, 27, 0.14);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    background: var(--accent);
    color: var(--white);
  }

  body {
    padding-bottom: 58px;
  }
}

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .product-summary h1 {
    font-size: 25px;
  }

  .quick-specs > div,
  .quick-specs > div:nth-last-child(2) {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .product-figure img {
    height: 380px;
  }

  .overview-copy h2,
  .section-heading h2,
  .factory-heading h2,
  .packing-grid h2,
  .inquiry-copy h2 {
    font-size: 30px;
  }
}

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