:root {
  color-scheme: light;
  --ink: #151719;
  --subtle: #5d646b;
  --line: #d7dce1;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --steel: #2c3034;
  --accent: #b3261e;
  --accent-dark: #841d17;
  --shadow: 0 18px 50px rgba(21, 23, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 3px;
  background: #eef1f4;
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--subtle);
  font-size: 0.76rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

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

.hero {
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(90deg, rgba(12, 13, 14, 0.82), rgba(12, 13, 14, 0.48)),
    url("assets/warehouse-hero.jpg") center / cover no-repeat;
  color: #fff;
  display: grid;
  align-items: center;
}

.hero-overlay {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 72px 0;
}

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

.hero .eyebrow {
  color: #ffcbc7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.7vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.spec-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

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

.metrics div {
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.metrics span {
  color: var(--subtle);
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.section.split.reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
}

.section p {
  color: var(--subtle);
  font-size: 1rem;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.product-grid,
.market-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

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

.product-card,
.market-grid article,
.assurance-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-card p,
.market-grid p,
.assurance-grid p {
  font-size: 0.95rem;
}

dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

dl div {
  display: grid;
  gap: 2px;
}

dt {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 700;
}

.image-panel {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--subtle);
  font-size: 0.88rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

caption {
  padding: 16px 18px;
  color: var(--steel);
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--subtle);
  font-size: 0.78rem;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-wrap.compact table {
  min-width: 600px;
}

.spec-links a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: none;
}

.spec-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.spec-preview figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.spec-preview a {
  display: block;
}

.spec-preview img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
}

.spec-preview figcaption {
  margin-top: 10px;
  color: var(--subtle);
  font-size: 0.88rem;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 16px 18px 16px 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 50%;
  background: var(--accent);
}

.market-band {
  color: #fff;
  background:
    linear-gradient(rgba(18, 19, 20, 0.88), rgba(18, 19, 20, 0.88)),
    url("assets/production-equipment.jpg") center / cover no-repeat;
}

.market-band p {
  color: rgba(255, 255, 255, 0.78);
}

.market-grid article {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.rfq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.rfq-copy video {
  width: 100%;
  margin-top: 28px;
  border-radius: 8px;
  background: #000;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #bfc6cd;
  border-radius: 6px;
  background: #fff;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.rfq-output {
  display: none;
  padding: 16px;
  color: var(--steel);
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.rfq-output.active {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

address a {
  color: #fff;
  text-decoration: none;
}

address a:hover {
  color: #ffcbc7;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .metrics,
  .section.split,
  .section.split.reverse,
  .rfq-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .product-grid,
  .market-grid,
  .assurance-grid,
  .spec-preview {
    grid-template-columns: 1fr;
  }

  .rfq-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    margin-left: 18px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .section {
    padding: 56px 18px;
  }
}
