:root {
  --ink: #121b22;
  --muted: #64717a;
  --paper: #f5f7f6;
  --white: #ffffff;
  --line: #dbe1df;
  --crimson: #a7272b;
  --crimson-dark: #7f1d22;
  --graphite: #26323b;
  --green: #5d8f41;
  --mint: #dcebd6;
  --amber: #c7a04f;
  --shadow: 0 24px 58px rgba(18, 27, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(245, 247, 246, 0.94);
  box-shadow: 0 10px 30px rgba(18, 27, 34, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--crimson);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  font-size: 0.76rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.division-link,
.header-action {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 800;
}

.division-link {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-solid .division-link {
  border-color: rgba(18, 27, 34, 0.22);
  background: rgba(93, 143, 65, 0.1);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 17, 21, 0.86), rgba(11, 17, 21, 0.46) 52%, rgba(11, 17, 21, 0.12)),
    linear-gradient(0deg, rgba(11, 17, 21, 0.72), rgba(11, 17, 21, 0.08) 56%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin: 86px auto 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7.4vw, 6.3rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 900;
}

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

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

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

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.94);
  color: var(--graphite);
  box-shadow: var(--shadow);
}

.hero-strip span {
  padding: 22px;
  border-right: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 900;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

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

.intro > p,
.sourcing-copy > p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

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

.product-card {
  display: grid;
  grid-template-rows: 245px 1fr;
  min-width: 0;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mint);
}

.product-card div {
  padding: 24px;
}

.product-card span {
  color: var(--green);
  font-weight: 900;
}

.product-card h3 {
  margin: 26px 0 12px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 16px;
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
}

.specs {
  padding-top: 0;
}

.spec-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.25fr 1.25fr;
  border-bottom: 1px solid var(--line);
}

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

.spec-row span {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

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

.spec-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.spec-head {
  background: var(--graphite);
}

.spec-head span,
.spec-head span:first-child {
  color: #fff;
  font-weight: 900;
}

.spec-note {
  max-width: 940px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.sourcing {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.sourcing > img {
  width: 100%;
  height: min(680px, 72vh);
  min-height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.supply-steps {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.supply-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--green);
}

.supply-steps strong {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--mint);
  color: var(--green);
}

.supply-steps span {
  color: var(--muted);
  line-height: 1.58;
}

.industries {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
  background: var(--graphite);
  color: #fff;
}

.industries .section-heading,
.industry-board {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.industries .eyebrow {
  color: var(--amber);
}

.industry-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.industry-board article {
  min-height: 235px;
  padding: 30px;
  background: var(--graphite);
}

.industry-board h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.industry-board p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.contact {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
  background: var(--green);
  color: #fff;
}

.contact > div {
  max-width: 700px;
  justify-self: end;
}

.contact .eyebrow {
  color: #fff0bf;
}

.contact p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfb;
  color: var(--ink);
  padding: 13px 12px;
  outline: 0;
}

.checkbox-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 800;
}

.checkbox-label input {
  width: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(93, 143, 65, 0.16);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: #121b22;
  font-size: 0.9rem;
}

.footer span:first-child {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-copy {
    margin-bottom: 330px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-strip,
  .intro,
  .sourcing,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .industry-board {
    grid-template-columns: 1fr 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr 1fr;
  }

  .spec-head {
    display: none;
  }

  .spec-row span {
    border-bottom: 1px solid var(--line);
  }

  .spec-row span:nth-child(2n) {
    border-right: 0;
  }

  .contact > div {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .division-link {
    padding: 10px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 910px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin: 90px auto 320px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-strip {
    right: 14px;
    left: 14px;
  }

  .hero-strip span {
    padding: 17px 20px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 66px 0;
  }

  .product-grid,
  .industry-board {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-row span {
    border-right: 0;
  }

  .product-card {
    grid-template-rows: 270px 1fr;
  }

  .sourcing > img {
    min-height: 360px;
    height: 58vh;
  }

  .supply-steps article {
    grid-template-columns: 1fr;
  }

  .industries,
  .contact {
    padding: 66px 14px;
  }

  .contact-form {
    padding: 18px;
  }

  .footer {
    display: grid;
  }
}
