:root {
  --ink: #101820;
  --muted: #65717f;
  --panel: #ffffff;
  --line: #d9e0e7;
  --soft: #f4f6f0;
  --steel: #2f3d49;
  --yellow: #f4bd2b;
  --red: #c9483d;
  --green: #2d7a62;
  --shadow: 0 18px 50px rgba(19, 27, 35, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 22, 30, 0.62);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(16, 24, 32, 0.1);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(244, 189, 43, 0.18);
}

.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--ink);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 14, 20, 0.98) 0%, rgba(12, 22, 30, 0.82) 34%, rgba(12, 22, 30, 0.24) 72%),
    url("assets/garage-equipment-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7, 14, 20, 0.88) 0%, rgba(7, 14, 20, 0) 34%),
    linear-gradient(120deg, rgba(244, 189, 43, 0.22) 0%, rgba(244, 189, 43, 0) 28%);
}

.hero-content {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 110px 0 36px;
}

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

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(244, 189, 43, 0.22);
}

.button.primary:hover {
  background: #ffd25d;
}

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

.button.dark-ghost {
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.compact-actions {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div {
  padding: 20px 18px 20px 0;
}

.hero-metrics div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics dt {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.section-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.intro {
  background: var(--ink);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: end;
  padding: 58px 0;
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
}

.intro h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.02;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.product-section,
.process {
  padding: 92px 0;
  background: #fbfcf8;
}

.home-featured {
  padding-top: 0;
}

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

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.contact h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.product-section .section-kicker,
.process .section-kicker,
.contact .section-kicker {
  color: var(--green);
}

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

.product-card {
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 122, 98, 0.38);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 38px;
  color: #fff;
  background: var(--steel);
  font-weight: 950;
}

.product-card:nth-child(2) .card-icon,
.product-card:nth-child(5) .card-icon {
  background: var(--red);
}

.product-card:nth-child(3) .card-icon,
.product-card:nth-child(6) .card-icon {
  color: var(--ink);
  background: var(--yellow);
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

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

.category-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 122, 98, 0.34);
  box-shadow: var(--shadow);
}

.category-card a {
  display: grid;
  height: 100%;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--steel);
}

.category-card span,
.catalog-card-category {
  display: block;
  margin: 20px 22px 0;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 8px 22px 8px;
  font-size: 1.18rem;
}

.category-card p {
  margin: 0 22px 24px;
  color: var(--muted);
}

.catalog-listing,
.catalog-categories,
.related-products {
  padding: 92px 0;
  background: #fbfcf8;
}

.catalog-categories {
  padding-bottom: 0;
}

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

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

.catalog-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--steel);
  isolation: isolate;
  --image-accent: var(--yellow);
  --image-badge-bg: var(--yellow);
  --image-badge-color: var(--ink);
  --image-filter: saturate(1.02) contrast(1.02);
  --image-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(16, 24, 32, 0.18));
  --image-position: center;
  --image-scale: 1;
  --image-x: 0;
  --image-y: 0;
}

.catalog-card-image::before,
.catalog-card-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.catalog-card-image::before {
  inset: 0;
  background: var(--image-overlay);
  mix-blend-mode: soft-light;
}

.catalog-card-image::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--image-accent);
}

.catalog-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--image-position);
  filter: var(--image-filter);
  transform: scale(var(--image-scale)) translate(var(--image-x), var(--image-y));
  transition: filter 220ms ease, transform 220ms ease;
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(calc(var(--image-scale) * 1.035)) translate(var(--image-x), var(--image-y));
}

.catalog-card-sku,
.image-variant-badge {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  font-size: 0.78rem;
  font-weight: 950;
}

.catalog-card-sku {
  left: 14px;
  bottom: 14px;
  color: var(--ink);
  background: var(--yellow);
}

.image-variant-badge {
  top: 14px;
  right: 14px;
  color: var(--image-badge-color);
  background: var(--image-badge-bg);
  text-transform: uppercase;
}

.image-profile-core {
  --image-accent: #f2c94c;
  --image-badge-bg: #f2c94c;
  --image-badge-color: var(--ink);
  --image-filter: saturate(1.02) contrast(1.03);
  --image-overlay: linear-gradient(135deg, rgba(242, 201, 76, 0.14), rgba(16, 24, 32, 0.18));
}

.image-profile-retail {
  --image-accent: #2f8d64;
  --image-badge-bg: #2f8d64;
  --image-badge-color: #fff;
  --image-filter: saturate(1.18) contrast(1.04) brightness(1.03);
  --image-overlay: linear-gradient(135deg, rgba(47, 141, 100, 0.25), rgba(255, 255, 255, 0.05));
  --image-position: 52% 44%;
  --image-scale: 1.03;
}

.image-profile-pro,
.image-profile-premium {
  --image-accent: #e05d3f;
  --image-badge-bg: #e05d3f;
  --image-badge-color: #fff;
  --image-filter: saturate(1.08) contrast(1.12) brightness(0.99);
  --image-overlay: linear-gradient(135deg, rgba(224, 93, 63, 0.22), rgba(16, 24, 32, 0.16));
  --image-position: 48% 50%;
  --image-scale: 1.05;
}

.image-profile-fleet,
.image-profile-bay {
  --image-accent: #3b6ea8;
  --image-badge-bg: #3b6ea8;
  --image-badge-color: #fff;
  --image-filter: saturate(0.95) contrast(1.1) brightness(0.98);
  --image-overlay: linear-gradient(135deg, rgba(59, 110, 168, 0.26), rgba(16, 24, 32, 0.2));
  --image-position: 56% 50%;
  --image-scale: 1.04;
}

.image-profile-private {
  --image-accent: #101820;
  --image-badge-bg: #101820;
  --image-badge-color: #fff;
  --image-filter: saturate(0.92) contrast(1.16) brightness(0.96);
  --image-overlay: linear-gradient(135deg, rgba(16, 24, 32, 0.36), rgba(242, 201, 76, 0.1));
  --image-position: 45% 48%;
  --image-scale: 1.06;
}

.image-profile-heavy,
.image-profile-caster {
  --image-accent: #65737e;
  --image-badge-bg: #65737e;
  --image-badge-color: #fff;
  --image-filter: saturate(0.82) contrast(1.18) brightness(0.96);
  --image-overlay: linear-gradient(135deg, rgba(101, 115, 126, 0.28), rgba(16, 24, 32, 0.22));
  --image-position: 50% 56%;
  --image-scale: 1.04;
}

.image-profile-container,
.image-profile-kd {
  --image-accent: #a66a2c;
  --image-badge-bg: #a66a2c;
  --image-badge-color: #fff;
  --image-filter: saturate(1.03) contrast(1.08) brightness(0.98);
  --image-overlay: linear-gradient(135deg, rgba(166, 106, 44, 0.26), rgba(255, 255, 255, 0.04));
  --image-position: 54% 54%;
  --image-scale: 1.03;
}

.image-profile-digital,
.image-profile-usb,
.image-profile-high-lumen {
  --image-accent: #14a7a2;
  --image-badge-bg: #14a7a2;
  --image-badge-color: #062526;
  --image-filter: saturate(1.2) contrast(1.06) brightness(1.04);
  --image-overlay: linear-gradient(135deg, rgba(20, 167, 162, 0.26), rgba(255, 255, 255, 0.08));
  --image-position: 48% 44%;
  --image-scale: 1.05;
}

.image-profile-locking,
.image-profile-liner {
  --image-accent: #7c5c9e;
  --image-badge-bg: #7c5c9e;
  --image-badge-color: #fff;
  --image-filter: saturate(1.02) contrast(1.12) brightness(0.98);
  --image-overlay: linear-gradient(135deg, rgba(124, 92, 158, 0.25), rgba(16, 24, 32, 0.16));
  --image-position: 46% 52%;
  --image-scale: 1.04;
}

.image-profile-wide,
.image-profile-wall,
.image-profile-modular {
  --image-accent: #6f8f3d;
  --image-badge-bg: #6f8f3d;
  --image-badge-color: #fff;
  --image-filter: saturate(1.08) contrast(1.08) brightness(1);
  --image-overlay: linear-gradient(135deg, rgba(111, 143, 61, 0.24), rgba(255, 255, 255, 0.05));
  --image-position: 56% 46%;
  --image-scale: 1.04;
}

.catalog-card-body {
  display: grid;
  align-content: start;
  padding: 0 22px 24px;
}

.catalog-card-category {
  margin-right: 0;
  margin-left: 0;
}

.catalog-card h3 {
  margin: 8px 0 8px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
}

.catalog-card-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 14px;
}

.catalog-card-data span {
  min-width: 0;
  padding: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fbfcf8;
  font-size: 0.78rem;
  line-height: 1.28;
}

.catalog-card-data strong {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 12px;
}

.tag-row span {
  padding: 5px 8px;
  color: var(--steel);
  background: #eef3ea;
  font-size: 0.76rem;
  font-weight: 900;
}

.catalog-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-card .text-link {
  align-self: end;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.mini-quote-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -8px 0 28px;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 13px;
  color: var(--steel);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.filter-chip span {
  margin-left: 5px;
  opacity: 0.72;
}

.quote-band-wrap {
  padding: 0 0 92px;
  background: #fbfcf8;
}

.detail-quote-band {
  padding-top: 0;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  color: #fff;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.quote-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.quote-band p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.quote-band .section-kicker {
  color: var(--yellow);
}

.subpage-hero {
  padding: 154px 0 78px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.98) 0%, rgba(251, 252, 248, 0.88) 52%, rgba(251, 252, 248, 0.64) 100%),
    url("assets/garage-equipment-hero.png") center / cover no-repeat;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 320px;
  gap: 48px;
  align-items: end;
}

.subpage-hero h1,
.category-hero-copy h1,
.detail-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.subpage-hero p:not(.section-kicker):not(.breadcrumb),
.category-hero-copy p:not(.section-kicker),
.detail-hero p:not(.section-kicker):not(.breadcrumb) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.06rem;
}

.subpage-stat {
  padding: 26px;
  color: #fff;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.subpage-stat strong,
.subpage-stat span {
  display: block;
}

.subpage-stat strong {
  font-size: 2rem;
  line-height: 1.02;
}

.subpage-stat span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.category-page-hero,
.detail-hero {
  padding: 154px 0 76px;
  background: var(--soft);
}

.category-hero-grid,
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.category-hero-grid img,
.detail-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
  --image-accent: var(--yellow);
  --image-badge-bg: var(--yellow);
  --image-badge-color: var(--ink);
  --image-filter: saturate(1.02) contrast(1.02);
  --image-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(16, 24, 32, 0.18));
  --image-position: center;
  --image-scale: 1;
  --image-x: 0;
  --image-y: 0;
}

.detail-image-frame::before,
.detail-image-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.detail-image-frame::before {
  inset: 0;
  background: var(--image-overlay);
  mix-blend-mode: soft-light;
}

.detail-image-frame::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: var(--image-accent);
}

.detail-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--image-position);
  border: 0;
  box-shadow: none;
  filter: var(--image-filter);
  transform: scale(var(--image-scale)) translate(var(--image-x), var(--image-y));
}

.detail-image-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.detail-image-caption span,
.detail-image-caption strong {
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 950;
}

.detail-image-caption span {
  color: var(--ink);
  background: var(--yellow);
}

.detail-image-caption strong {
  color: var(--image-badge-color);
  background: var(--image-badge-bg);
  text-transform: uppercase;
}

.category-focus {
  padding: 28px 0;
  color: #fff;
  background: var(--steel);
}

.category-focus .section-kicker {
  margin-bottom: 16px;
}

.focus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-row span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--steel);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.detail-body {
  padding: 76px 0;
  background: #fff;
}

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

.detail-columns article {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fbfcf8;
}

.detail-columns h2 {
  margin: 0 0 20px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

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

.detail-panel,
.detail-quote-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fbfcf8;
}

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

.detail-panel h2,
.detail-quote-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.1;
}

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

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

.detail-data-grid div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-data-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-data-grid strong {
  display: block;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.35;
}

.detail-quote-panel {
  position: sticky;
  top: 112px;
  color: #fff;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.detail-quote-panel .section-kicker {
  color: var(--yellow);
}

.detail-quote-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-checklist {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.quote-checklist span {
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.floating-quote {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 22px;
  display: grid;
  min-width: 250px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(16, 24, 32, 0.12);
  background: var(--yellow);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.18);
}

.floating-quote strong,
.floating-quote span {
  display: block;
}

.floating-quote strong {
  font-size: 0.95rem;
}

.floating-quote span {
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 800;
}

.services {
  padding: 92px 0;
  color: #fff;
  background: var(--steel);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 64px;
  align-items: start;
}

.services .section-heading {
  display: block;
  margin: 0;
}

.services .section-kicker {
  color: var(--yellow);
}

.services h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list span {
  color: var(--yellow);
  font-weight: 950;
}

.service-list h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
  border: 1px solid var(--line);
  background: #fff;
}

.process-track li {
  position: relative;
  min-height: 230px;
  padding: 30px 24px 28px;
  counter-increment: process;
}

.process-track li + li {
  border-left: 1px solid var(--line);
}

.process-track li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
}

.process-track strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-track span {
  display: block;
  color: var(--muted);
}

.contact {
  padding: 92px 0;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-points span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 900;
}

.full-span {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd4dd;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 122, 98, 0.13);
}

.page-section {
  padding: 92px 0;
  background: #fbfcf8;
}

.contrast-section {
  background: #fff;
}

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

.service-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.service-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-matrix {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 42px;
  align-items: start;
}

.service-matrix p {
  max-width: 560px;
  color: var(--muted);
}

.matrix-list {
  display: grid;
  gap: 12px;
}

.matrix-list article,
.process-output-grid article,
.rfq-card-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbfcf8;
}

.matrix-list strong,
.process-output-grid strong,
.rfq-card-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 1.04rem;
}

.matrix-list span,
.process-output-grid span,
.rfq-card-grid span {
  display: block;
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.workflow-steps span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.workflow-steps h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
}

.process-output-grid,
.rfq-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-output-grid > div {
  grid-column: 1 / -1;
  max-width: 740px;
}

.contact-page-section {
  padding: 92px 0;
  background: var(--soft);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 54px;
  align-items: start;
}

.quote-form-panel {
  position: relative;
}

.rfq-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.rfq-note strong {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.rfq-note a {
  color: var(--steel);
  font-weight: 950;
}

.founder-mini-card,
.founder-profile-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
  overflow: hidden;
}

.founder-mini-card {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
}

.founder-mini-card img {
  width: 112px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 43% 38%;
  border: 1px solid var(--line);
}

.founder-mini-card h3,
.founder-profile-card h3 {
  margin: 4px 0 5px;
  color: var(--steel);
  line-height: 1.1;
}

.founder-mini-card .section-kicker,
.founder-profile-card .section-kicker {
  margin-bottom: 4px;
}

.founder-mini-card span,
.founder-profile-card p:not(.section-kicker) {
  color: var(--muted);
}

.founder-profile-card {
  grid-template-columns: minmax(230px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  margin-top: 28px;
}

.founder-profile-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  object-position: center;
  background: #eef1ed;
}

.founder-profile-card div {
  display: grid;
  align-content: center;
  padding: 20px 22px;
}

.founder-profile-card h3 {
  font-size: 1.35rem;
}

.founder-profile-card p:not(.section-kicker) {
  margin: 0;
}

.company-info-mini {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.company-info-mini span {
  display: block;
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.company-info-mini strong {
  display: inline-block;
  min-width: 72px;
  color: var(--steel);
}

.company-info-mini a {
  color: var(--green);
  font-weight: 900;
}

.company-info-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.company-info-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.company-info-card dt {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.company-info-card dd {
  margin: 0;
  color: var(--steel);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.page-cta {
  padding: 54px 0;
  color: #fff;
  background: var(--steel);
}

.page-cta .section-kicker {
  color: var(--yellow);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-cta h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0f161d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 22;
    top: 84px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    border: 1px solid rgba(16, 24, 32, 0.1);
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(7, 14, 20, 0.98) 0%, rgba(12, 22, 30, 0.83) 58%, rgba(12, 22, 30, 0.52) 100%),
      url("assets/garage-equipment-hero.png") center / cover no-repeat;
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--max));
  }

  .section-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .intro-grid,
  .service-layout,
  .service-matrix,
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    display: block;
  }

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

  .category-grid,
  .catalog-grid,
  .catalog-grid.compact-grid,
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-output-grid,
  .rfq-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-track li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-track li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .subpage-hero-grid,
  .category-hero-grid,
  .detail-hero-grid,
  .detail-layout,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .subpage-stat {
    max-width: 420px;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

  .quote-band .button {
    width: fit-content;
  }

  .page-cta-inner {
    display: grid;
  }

  .detail-main {
    grid-template-columns: 1fr;
  }

  .detail-quote-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.92rem;
  }

  body {
    padding-bottom: 78px;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 3.12rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-metrics div {
    padding: 13px 8px 13px 0;
  }

  .hero-metrics div + div {
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-metrics dt {
    font-size: 1.38rem;
  }

  .hero-metrics dd {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .intro-grid {
    padding: 44px 0;
  }

  .product-section,
  .services,
  .process,
  .contact,
  .page-section,
  .contact-page-section {
    padding: 64px 0;
  }

  .product-grid,
  .category-grid,
  .catalog-grid,
  .catalog-grid.compact-grid,
  .service-card-grid,
  .process-output-grid,
  .rfq-card-grid,
  .process-track,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .workflow-steps span {
    width: 46px;
    height: 46px;
  }

  .product-card {
    min-height: auto;
    padding: 24px;
  }

  .card-icon {
    margin-bottom: 28px;
  }

  .process-track li,
  .process-track li + li,
  .process-track li:nth-child(3),
  .process-track li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-track li:first-child {
    border-top: 0;
  }

  .process-track li {
    min-height: auto;
  }

  .process-track li::before {
    margin-bottom: 24px;
  }

  .inquiry-form {
    padding: 20px;
  }

  .founder-mini-card {
    grid-template-columns: 1fr;
  }

  .founder-mini-card img {
    width: 100%;
    aspect-ratio: 5 / 4;
  }

  .founder-profile-card {
    grid-template-columns: 1fr;
  }

  .founder-profile-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .founder-profile-card div {
    padding: 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .desktop-link {
    display: none;
  }

  .catalog-listing,
  .catalog-categories,
  .related-products {
    padding: 64px 0;
  }

  .catalog-categories {
    padding-bottom: 0;
  }

  .subpage-hero,
  .category-page-hero,
  .detail-hero {
    padding: 124px 0 54px;
  }

  .subpage-hero h1,
  .category-hero-copy h1,
  .detail-hero h1 {
    font-size: 2.55rem;
  }

  .subpage-stat {
    padding: 20px;
  }

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

  .filter-chip {
    width: 100%;
  }

  .category-card p,
  .category-card h3,
  .category-card span {
    margin-left: 18px;
    margin-right: 18px;
  }

  .catalog-card-body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .catalog-card-data,
  .detail-data-grid,
  .detail-data-grid.compact-data-grid {
    grid-template-columns: 1fr;
  }

  .card-actions {
    display: grid;
    gap: 10px;
  }

  .mini-quote-link {
    justify-content: center;
    min-height: 42px;
  }

  .quote-band-wrap {
    padding-bottom: 64px;
  }

  .quote-band,
  .detail-panel,
  .detail-quote-panel {
    padding: 22px;
  }

  .quote-band .button {
    width: 100%;
  }

  .detail-columns article {
    padding: 22px;
  }

  .floating-quote {
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-width: 0;
    padding: 12px 14px;
  }
}
