:root {
  --ink: #17201b;
  --muted: #5a655f;
  --line: #dfe6e1;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #136b4a;
  --green-dark: #0b3d2b;
  --yellow: #e2ae2b;
  --steel: #44505c;
  --soft: #eef2ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111815;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 18, 15, 0.92) 0%, rgba(10, 18, 15, 0.72) 38%, rgba(10, 18, 15, 0.18) 76%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  padding: 86px 0 80px clamp(18px, 6vw, 76px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  color: #111815;
  background: var(--yellow);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

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

.strip div {
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.strip span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.market-section,
.auto-parts,
.quote-section {
  padding: 72px clamp(18px, 5vw, 70px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow),
.market-copy p,
.quote-copy p {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card h3,
.product-card p,
.product-card ul {
  padding-right: 20px;
  padding-left: 20px;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card p {
  min-height: 72px;
  color: var(--muted);
}

.product-card ul {
  margin: 0 0 22px;
  color: var(--steel);
}

.product-card li {
  margin-bottom: 6px;
}

.product-media {
  position: relative;
  display: grid;
  height: 158px;
  place-items: end start;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--soft);
  background-image:
    radial-gradient(circle at 28% 38%, rgba(226, 174, 43, 0.75) 0 10px, transparent 11px),
    radial-gradient(circle at 64% 58%, rgba(19, 107, 74, 0.36) 0 18px, transparent 19px),
    linear-gradient(135deg, rgba(68, 80, 92, 0.18), rgba(255, 255, 255, 0.52));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-media span {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 107, 74, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.product-media.cnc {
  background-image:
    repeating-linear-gradient(45deg, rgba(68, 80, 92, 0.28) 0 9px, transparent 9px 22px),
    linear-gradient(135deg, #e9eee9, #ffffff);
}

.product-media.drill {
  background-image:
    repeating-linear-gradient(90deg, rgba(19, 107, 74, 0.58) 0 7px, transparent 7px 22px),
    radial-gradient(circle at 72% 40%, rgba(226, 174, 43, 0.72), transparent 28%),
    linear-gradient(135deg, #eef2ed, #ffffff);
}

.product-media.socket {
  background-image:
    radial-gradient(circle at 44% 48%, rgba(68, 80, 92, 0.42) 0 28px, transparent 30px),
    radial-gradient(circle at 60% 48%, rgba(68, 80, 92, 0.32) 0 22px, transparent 24px),
    linear-gradient(135deg, #eef2ed, #ffffff);
}

.product-media.fastener {
  background-image:
    radial-gradient(circle at 28% 55%, rgba(68, 80, 92, 0.4) 0 15px, transparent 16px),
    radial-gradient(circle at 48% 42%, rgba(68, 80, 92, 0.35) 0 12px, transparent 13px),
    radial-gradient(circle at 68% 58%, rgba(226, 174, 43, 0.65) 0 12px, transparent 13px),
    linear-gradient(135deg, #eef2ed, #ffffff);
}

.product-media.file {
  background-image:
    repeating-linear-gradient(12deg, rgba(68, 80, 92, 0.34) 0 5px, transparent 5px 16px),
    linear-gradient(135deg, #eef2ed, #ffffff);
}

.product-media.sleeve {
  background-image:
    radial-gradient(ellipse at 35% 45%, transparent 0 18px, rgba(19, 107, 74, 0.42) 19px 28px, transparent 29px),
    radial-gradient(ellipse at 60% 56%, transparent 0 16px, rgba(68, 80, 92, 0.42) 17px 26px, transparent 27px),
    linear-gradient(135deg, #eef2ed, #ffffff);
}

.ask-link {
  display: inline-flex;
  margin: 0 20px 20px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.ask-link::after {
  content: ">";
  margin-left: 6px;
}

.market-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.market-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.market-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-list span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.auto-parts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.auto-parts p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
}

.contact-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-box p {
  margin-bottom: 8px;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  min-height: 46px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer {
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: #111815;
}

.footer p {
  margin-bottom: 6px;
}

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

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(10, 18, 15, 0.9) 0%, rgba(10, 18, 15, 0.65) 60%, rgba(10, 18, 15, 0.22) 100%);
  }

  .hero-copy {
    padding: 54px 18px 70px;
  }

  .strip,
  .product-grid,
  .market-section,
  .auto-parts,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .market-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 36px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }
}
