:root {
  --ink: #091119;
  --ink-soft: #111d27;
  --paper: #f3f4f0;
  --paper-deep: #e7e9e4;
  --white: #fff;
  --muted: #5d666c;
  --line: #c9cecd;
  --dark-line: #28343e;
  --accent: #f15a35;
  --accent-dark: #d54724;
  --signal: #d8ff49;
  --success: #21875c;
  --error: #b9382f;
  --container: 1240px;
  --radius: 3px;
  --shadow: 0 24px 70px rgba(5, 14, 22, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
button { color: inherit; }

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

h1,
h2,
h3 {
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 em,
h2 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--signal);
  color: var(--ink);
  transform: translateY(-150%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.section-index,
.hero__kicker,
.eyebrow-row,
.utility-bar,
.hero-stage__label,
.photo-badge {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index { display: block; margin-bottom: 22px; color: var(--accent); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: var(--white); }
.button--primary:hover { background: var(--accent-dark); }
.button--dark { background: var(--ink); color: var(--white); }
.button--light { background: var(--white); color: var(--ink); }
.button--wide { width: 100%; justify-content: space-between; }
.button--header { min-height: 44px; margin-left: 18px; background: var(--signal); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
}

.text-link--light { color: var(--white); }

.utility-bar { background: #050b10; color: #aeb7bd; }
.utility-bar__inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; }
.utility-bar__right { display: flex; align-items: center; gap: 12px; }
.utility-bar__right i { width: 4px; height: 4px; background: var(--signal); border-radius: 50%; }
.utility-bar a { color: var(--white); }

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--dark-line);
  background: var(--ink);
  color: var(--white);
}

.site-header__inner { display: flex; min-height: 80px; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark { position: relative; display: block; width: 34px; height: 34px; background: var(--accent); overflow: hidden; }
.brand__mark i { position: absolute; display: block; width: 28px; height: 7px; background: var(--ink); transform: rotate(-35deg); }
.brand__mark i:first-child { top: 7px; left: -5px; }
.brand__mark i:last-child { right: -5px; bottom: 7px; }
.brand__text { display: flex; flex-direction: column; }
.brand__text strong { max-width: 260px; overflow: hidden; font-size: 16px; letter-spacing: -0.02em; text-overflow: ellipsis; white-space: nowrap; }
.brand__text small { margin-top: 2px; color: #8d9aa3; font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: 0.16em; }

.primary-nav { display: flex; align-items: center; }
.primary-nav .menu { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.primary-nav .menu a { position: relative; color: #c6cdd2; font-size: 13px; font-weight: 650; }
.primary-nav .menu a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.primary-nav .menu a:hover { color: var(--white); }
.primary-nav .menu a:hover::after,
.primary-nav .current-menu-item a::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--dark-line); background: transparent; }
.menu-toggle i { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform 180ms ease; }

.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::after { position: absolute; right: 0; bottom: 0; width: 38%; height: 5px; background: var(--signal); content: ""; }
.hero__grid { display: grid; min-height: 690px; grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr); align-items: stretch; }
.hero__copy { position: relative; z-index: 2; padding: 90px 64px 64px 0; }
.hero__kicker { display: flex; align-items: center; gap: 11px; color: #aab4bb; }
.hero__kicker span { width: 22px; height: 2px; background: var(--accent); }
.hero h1 { max-width: 720px; margin: 38px 0 28px; font-size: clamp(54px, 5.3vw, 78px); }
.hero h1 em { display: block; }
.hero__copy > p { max-width: 610px; color: #aeb8bf; font-size: 18px; line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.hero__metrics { display: flex; gap: 48px; margin-top: 58px; padding-top: 25px; border-top: 1px solid var(--dark-line); }
.hero__metrics > div { display: flex; align-items: center; gap: 12px; }
.hero__metrics strong { color: var(--signal); font-family: ui-monospace, monospace; font-size: 27px; font-weight: 500; }
.hero__metrics span { color: #849099; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }

.hero-stage { position: relative; min-height: 690px; background: #d9deda; overflow: hidden; }
.hero-stage::before { position: absolute; top: 0; bottom: 0; left: 18%; width: 1px; background: rgba(9, 17, 25, 0.13); content: ""; }
.hero-stage__label { position: absolute; z-index: 4; top: 30px; right: 30px; left: 30px; display: flex; justify-content: space-between; color: #43515a; }
.hero-product { position: absolute; display: block; overflow: hidden; border: 8px solid var(--white); background: #dbe0dc; box-shadow: var(--shadow); transition: transform 240ms ease; }
.hero-product:hover { z-index: 5; transform: translateY(-7px) rotate(0); }
.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.hero-product > span { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 11px; min-height: 42px; padding: 8px 12px; background: rgba(9, 17, 25, 0.92); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.035em; }
.hero-product > span b { color: var(--signal); font-family: ui-monospace, monospace; }
.hero-product--1 { z-index: 3; top: 88px; left: 15%; width: 50%; height: 46%; transform: rotate(-4deg); }
.hero-product--2 { z-index: 2; top: 30%; right: 6%; width: 43%; height: 42%; transform: rotate(4deg); }
.hero-product--3 { z-index: 3; bottom: 6%; left: 24%; width: 46%; height: 35%; transform: rotate(-1.5deg); }
.hero-stage__signal { position: absolute; right: 18px; bottom: 18px; display: flex; gap: 5px; }
.hero-stage__signal i { display: block; width: 7px; height: 26px; background: var(--accent); }
.hero-stage__signal i:nth-child(2) { height: 18px; }
.hero-stage__signal i:nth-child(3) { height: 10px; }

.fitment-finder-section { position: relative; z-index: 8; margin-top: -44px; padding-bottom: 18px; }
.fitment-finder { padding: 34px 38px 30px; background: var(--white); box-shadow: var(--shadow); }
.fitment-finder__header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.fitment-finder__header .section-index { margin-bottom: 10px; }
.fitment-finder h2 { margin: 0; font-size: 35px; }
.finder-tabs { display: flex; padding: 4px; border: 1px solid var(--line); background: var(--paper); }
.finder-tab { min-height: 39px; padding: 8px 16px; border: 0; background: transparent; color: #647078; cursor: pointer; font-size: 11px; font-weight: 800; }
.finder-tab.is-active { background: var(--ink); color: var(--white); }
.finder-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 25px; }
.finder-input input { width: 100%; min-height: 54px; padding: 12px 17px; border: 1px solid #aeb6b3; border-radius: var(--radius); background: #f8f9f6; color: var(--ink); }
.finder-input input:focus { border-color: var(--ink); background: var(--white); }
.finder-submit { min-width: 205px; justify-content: space-between; }
.finder-submit:disabled { cursor: wait; opacity: 0.66; transform: none; }
.finder-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; color: #657077; font-size: 11px; line-height: 1.55; }
.finder-consent[hidden] { display: none; }
.finder-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--accent); }
.fitment-finder__footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 14px; color: #6b757a; font-size: 11px; }
.fitment-finder__footer p { margin: 0; }
.fitment-finder__footer a { border-bottom: 1px solid currentColor; color: var(--ink); font-weight: 700; }
.fitment-finder.has-error .finder-input input { border-color: var(--error); }
.fitment-finder.has-error [data-finder-help] { color: var(--error); }
.finder-results { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.finder-results--loading > p { margin: 0; padding: 18px; border-left: 4px solid var(--signal); background: var(--ink); color: var(--white); }
.finder-results--error { padding: 24px; border: 1px solid #e0b5b0; background: #fbecea; }
.finder-results--error h3 { margin-bottom: 8px; font-size: 25px; }
.finder-results--error p { color: #72524e; }
.finder-result-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.finder-result-heading .section-index { margin-bottom: 9px; }
.finder-result-heading h3 { margin: 0; font-size: clamp(31px, 4vw, 47px); }
.finder-provider-link { flex: 0 0 auto; border-bottom: 1px solid currentColor; color: #59646a; font-size: 11px; font-weight: 750; }
.finder-fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 26px 0 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.finder-fact-grid > div { min-height: 92px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finder-fact-grid dt { color: #778188; font-family: ui-monospace, monospace; font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.finder-fact-grid dd { margin: 9px 0 0; font-size: 13px; font-weight: 700; }
.finder-match-section { margin-top: 34px; }
.finder-match-kicker { margin-bottom: 14px; color: var(--accent-dark); font-family: ui-monospace, monospace; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.finder-match-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.finder-match-card { display: grid; grid-template-columns: 180px 1fr; min-height: 190px; border: 1px solid var(--line); background: var(--paper); }
.finder-match-card__image { overflow: hidden; background: #dfe4e0; }
.finder-match-card__image img { width: 100%; height: 100%; object-fit: cover; }
.finder-match-card__body { padding: 20px; }
.match-level { display: block; color: var(--accent-dark); font-family: ui-monospace, monospace; font-size: 8px; font-weight: 800; letter-spacing: 0.06em; line-height: 1.45; text-transform: uppercase; }
.match-level--year_checked { color: var(--success); }
.finder-match-card h4 { margin: 16px 0 9px; font-size: 22px; line-height: 1.1; }
.finder-match-card p { color: var(--muted); font-size: 11px; }
.finder-match-card__link { border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 750; }
.finder-no-match { max-width: 780px; padding: 18px; border-left: 4px solid var(--accent); background: var(--paper); color: var(--muted); }
.finder-manual-rfq { margin-top: 20px; }
.finder-warning-list { margin: 24px 0 0; padding: 18px 18px 18px 36px; border: 1px solid #d9cda8; background: #fffbea; color: #675f45; font-size: 11px; line-height: 1.6; }
.finder-warning-list li + li { margin-top: 6px; }

.marque-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.marque-strip__inner { display: grid; min-height: 84px; grid-template-columns: 1.3fr repeat(8, auto); align-items: center; gap: 28px; }
.marque-strip__inner span { color: var(--accent); font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; }
.marque-strip__inner div { color: #70787e; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; }

.section { padding: 108px 0; }
.section--light { background: var(--paper); }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; font-size: clamp(40px, 5vw, 62px); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr); align-items: end; gap: 60px; }
.section-heading--split > p { margin-bottom: 6px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading--inverse h2 { color: var(--white); }

.category-grid { display: grid; grid-template-columns: 1.15fr 0.925fr 0.925fr; gap: 12px; }
.category-card { position: relative; display: grid; min-height: 280px; grid-template-columns: auto 1fr; align-content: space-between; gap: 32px; padding: 30px; border: 1px solid var(--line); background: #eaede8; transition: background 180ms ease, transform 180ms ease; }
.category-card:hover { background: var(--white); transform: translateY(-4px); }
.category-card--featured { background: var(--accent); color: var(--white); }
.category-card--featured:hover { background: var(--accent-dark); }
.category-card__number { font-family: ui-monospace, monospace; font-size: 13px; }
.category-card small { display: block; margin-bottom: 16px; color: currentColor; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.category-card h3 { margin-bottom: 13px; font-size: 29px; }
.category-card p { max-width: 320px; margin-bottom: 0; font-size: 14px; opacity: 0.72; }
.category-card > i { position: absolute; top: 28px; right: 28px; font-style: normal; font-size: 18px; }

.section--markets { background: #dce1dd; }
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #aeb7b3; border-left: 1px solid #aeb7b3; }
.market-grid article { min-height: 265px; padding: 29px; border-right: 1px solid #aeb7b3; border-bottom: 1px solid #aeb7b3; }
.market-grid article > span { color: var(--accent-dark); font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.09em; }
.market-grid h3 { margin: 68px 0 14px; font-size: 28px; }
.market-grid p { margin: 0; color: #55605d; font-size: 14px; line-height: 1.7; }

.section--catalog { background: var(--ink-soft); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid--featured .product-card:nth-child(1),
.product-grid--featured .product-card:nth-child(5) { grid-column: span 2; }
.product-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.product-card[hidden] { display: none; }
.product-card__image { position: relative; display: block; height: 310px; overflow: hidden; background: #e2e6e2; }
.product-grid--featured .product-card:nth-child(1) .product-card__image,
.product-grid--featured .product-card:nth-child(5) .product-card__image { height: 380px; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__view { position: absolute; right: 0; bottom: 0; padding: 10px 13px; background: var(--ink); color: var(--white); font-family: ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; transform: translateY(100%); transition: transform 180ms ease; }
.product-card:hover .product-card__view { transform: translateY(0); }
.product-card__body { padding: 23px 24px 22px; }
.eyebrow-row { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--accent-dark); font-size: 9px; }
.eyebrow-row span:last-child { color: #7e878c; }
.product-card h3 { margin-bottom: 11px; font-size: 23px; line-height: 1.15; }
.product-card h3 a:hover { color: var(--accent-dark); }
.product-card__body > p { min-height: 48px; margin-bottom: 20px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid #dfe2df; color: #687278; font-size: 10px; font-weight: 750; letter-spacing: 0.045em; text-transform: uppercase; }
.product-card__foot a { color: var(--ink); }
.product-card__foot a:hover { color: var(--accent-dark); }

.section--process { background: var(--signal); }
.process-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 100px; }
.process-intro h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 66px); }
.process-intro > p { max-width: 470px; margin-bottom: 32px; color: #425047; }
.process-steps { margin: 0; padding: 0; border-top: 1px solid rgba(9, 17, 25, 0.25); list-style: none; }
.process-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid rgba(9, 17, 25, 0.25); }
.process-steps li > span { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; }
.process-steps h3 { margin-bottom: 8px; font-size: 25px; }
.process-steps p { margin: 0; color: #48534c; }

.page-hero { background: var(--ink); color: var(--white); }
.page-hero__grid { display: grid; min-height: 430px; grid-template-columns: 1.35fr 0.65fr; align-items: end; gap: 80px; padding-top: 80px; padding-bottom: 66px; }
.page-hero h1 { max-width: 820px; margin-bottom: 0; font-size: clamp(54px, 7vw, 82px); }
.page-hero p { margin-bottom: 8px; color: #aeb8bf; font-size: 17px; line-height: 1.7; }
.page-hero--catalog { position: relative; overflow: hidden; }
.page-hero--catalog::after { position: absolute; right: -60px; bottom: -120px; width: 330px; height: 330px; border: 60px solid var(--accent); border-radius: 50%; content: ""; opacity: 0.13; }

.catalog-section { padding: 55px 0 110px; background: var(--paper); }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 40px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 40px; background: transparent; color: #566168; cursor: pointer; font-size: 11px; font-weight: 750; }
.filter-chip span { margin-left: 8px; opacity: 0.65; }
.filter-chip:hover,
.filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.catalog-search { position: relative; flex: 0 0 270px; }
.catalog-search input { width: 100%; min-height: 44px; padding: 10px 40px 10px 14px; border: 0; border-bottom: 1px solid #919a9e; background: transparent; border-radius: 0; }
.catalog-search i { position: absolute; top: 13px; right: 10px; width: 14px; height: 14px; border: 2px solid var(--ink); border-radius: 50%; }
.catalog-search i::after { position: absolute; right: -5px; bottom: -3px; width: 6px; height: 2px; background: var(--ink); content: ""; transform: rotate(45deg); }
.catalog-summary { display: flex; justify-content: space-between; padding: 22px 0; color: #6c767c; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.catalog-summary b { color: var(--accent-dark); }
.catalog-empty { padding: 50px; border: 1px dashed var(--line); text-align: center; }

.breadcrumbs { display: flex; align-items: center; gap: 11px; padding-top: 24px; padding-bottom: 20px; color: #6b7479; font-family: ui-monospace, monospace; font-size: 10px; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--accent-dark); }
.product-detail { padding-bottom: 90px; }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr); gap: 72px; }
.product-gallery__main { position: relative; height: 650px; overflow: hidden; background: #dfe3df; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.photo-badge { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 9px; background: var(--signal); }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.gallery-thumb { height: 125px; padding: 0; border: 2px solid transparent; background: #dfe3df; cursor: pointer; overflow: hidden; }
.gallery-thumb.is-active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 25px; }
.product-info__tags { display: flex; gap: 8px; margin-bottom: 27px; }
.product-info__tags span { padding: 6px 9px; border: 1px solid var(--line); color: #606a70; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-info h1 { margin-bottom: 24px; font-size: clamp(43px, 4.7vw, 66px); }
.product-lead { color: var(--muted); font-size: 17px; line-height: 1.7; }
.availability-line { display: flex; align-items: center; gap: 10px; margin: 27px 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 750; }
.availability-line i { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(33, 135, 92, 0.12); }
.spec-table { margin: 0; }
.spec-table > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid #d7dbd8; }
.spec-table dt { color: #6a7479; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.spec-table dd { margin: 0; font-size: 13px; font-weight: 650; }
.product-info__actions { margin-top: 28px; }
.product-info__actions p { margin: 13px 0 0; color: #7a8388; font-size: 11px; text-align: center; }

.product-notes { padding: 95px 0; background: var(--white); }
.product-notes__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 110px; }
.product-notes h2 { max-width: 440px; font-size: 48px; }
.rich-copy { color: #4f5b61; font-size: 17px; line-height: 1.8; }
.rich-copy > *:last-child { margin-bottom: 0; }
.rich-copy--large { font-size: 20px; }
.callout-note { margin-top: 28px; padding: 22px; border-left: 4px solid var(--accent); background: var(--paper); font-size: 14px; }
.callout-note strong { display: block; margin-bottom: 5px; color: var(--ink); }

.section--rfq { background: var(--ink-soft); }
.rfq-shell { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 80px; padding: 52px; background: var(--white); box-shadow: var(--shadow); scroll-margin-top: 30px; }
.rfq-shell__intro h2 { margin-bottom: 20px; font-size: 46px; }
.rfq-shell__intro > p { color: var(--muted); line-height: 1.7; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 12px 0 12px 26px; border-bottom: 1px solid #dce0dd; font-size: 13px; font-weight: 650; }
.check-list li::before { margin-left: -26px; margin-right: 10px; color: var(--success); content: "✓"; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.rfq-form label { display: block; }
.rfq-form label > span:first-child { display: block; margin-bottom: 7px; color: #5e686e; font-family: ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.rfq-form input[type="text"],
.rfq-form input[type="email"],
.rfq-form input[type="search"],
.rfq-form select,
.rfq-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #c8cecb; border-radius: 0; background: #f8f9f6; color: var(--ink); }
.rfq-form input[type="text"],
.rfq-form input[type="email"],
.rfq-form select { min-height: 47px; }
.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus { border-color: var(--ink); background: var(--white); }
.form-message { margin-top: 18px; }
.form-consent { display: flex !important; align-items: flex-start; gap: 10px; margin: 17px 0; color: #667077; font-size: 11px; line-height: 1.45; }
.form-consent input { margin-top: 3px; accent-color: var(--accent); }
.form-consent span { margin: 0 !important; font-family: inherit !important; font-size: inherit !important; letter-spacing: 0 !important; text-transform: none !important; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-notice { margin-bottom: 18px; padding: 12px 14px; border-left: 4px solid currentColor; font-size: 13px; }
.form-notice--success { background: #e8f5ee; color: var(--success); }
.form-notice--error { background: #fbecea; color: var(--error); }

.section--related { background: var(--paper); }
.product-grid--three { grid-template-columns: repeat(3, 1fr); }

.page-hero--about .page-hero__grid,
.page-hero--rfq .page-hero__grid { min-height: 500px; }
.page-hero--about h1 { max-width: 900px; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; }
.about-statement h2 { font-size: 51px; }
.section--principles { background: #dbe0dc; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #adb6b2; border-left: 1px solid #adb6b2; }
.principle-grid article { min-height: 280px; padding: 30px; border-right: 1px solid #adb6b2; border-bottom: 1px solid #adb6b2; }
.principle-grid article > span { color: var(--accent-dark); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; }
.principle-grid h3 { margin-top: 70px; margin-bottom: 13px; font-size: 28px; }
.principle-grid p { color: #55615d; }
.section--rfq-page { background: var(--paper-deep); }

.page-hero--fitment { position: relative; overflow: hidden; }
.page-hero--fitment::after { position: absolute; top: 65px; right: 8%; width: 150px; height: 150px; border: 24px solid var(--signal); border-radius: 50%; content: ""; opacity: 0.11; }
.section--fitment-guide { background: var(--paper); }
.fitment-guide-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 90px; }
.fitment-guide-grid h2 { max-width: 380px; font-size: 52px; }
.identifier-cards { display: grid; grid-template-columns: repeat(2, 1fr); }
.identifier-cards article { min-height: 300px; padding: 32px; border: 1px solid var(--line); background: var(--white); }
.identifier-cards article + article { border-left: 0; background: #e0e5e1; }
.identifier-cards article > span { display: inline-block; padding: 6px 9px; background: var(--ink); color: var(--signal); font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; }
.identifier-cards h3 { margin: 65px 0 15px; font-size: 28px; }
.identifier-cards p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.section--identifier-locations { background: var(--ink-soft); color: var(--white); }
.section--identifier-locations .section-heading p { color: #aab4ba; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); list-style: none; }
.location-grid li { min-height: 240px; padding: 28px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.location-grid li > span { color: var(--signal); font-family: ui-monospace, monospace; font-size: 11px; }
.location-grid h3 { margin: 55px 0 13px; font-size: 25px; }
.location-grid p { margin: 0; color: #9eaaaf; font-size: 14px; }
.section--finder-page { background: var(--paper-deep); }
.fitment-privacy { display: grid; grid-template-columns: 0.35fr 1fr; gap: 40px; margin-top: 22px; padding: 22px 26px; border-left: 4px solid var(--accent); background: rgba(255, 255, 255, 0.6); color: #566168; font-size: 13px; }
.fitment-privacy strong { color: var(--ink); }
.fitment-privacy p { margin: 0; }

.default-page { min-height: 60vh; padding: 95px 0; }
.default-page__inner { max-width: 850px; }
.default-page h1 { margin-bottom: 45px; font-size: 65px; }
.entry-card { padding: 25px 0; border-bottom: 1px solid var(--line); }
.error-page { display: grid; min-height: 67vh; place-items: center; background: var(--ink); color: var(--white); }
.error-page__inner { max-width: 800px; padding-block: 90px; }
.error-page__inner > span { color: var(--signal); font-family: ui-monospace, monospace; font-size: 12px; }
.error-page h1 { margin: 30px 0 20px; font-size: 72px; }
.error-page p { color: #aeb8bf; }

.site-footer { background: #050b10; color: var(--white); }
.footer-cta { display: flex; min-height: 235px; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid #25313a; }
.footer-cta h2 { margin: 0; font-size: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 1fr; gap: 90px; padding-top: 62px; padding-bottom: 60px; }
.brand--footer { color: var(--white); }
.footer-brand p { max-width: 350px; margin: 24px 0 0; color: #849099; font-size: 13px; }
.footer-grid h3 { margin-bottom: 20px; color: #788690; font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid .menu { margin: 0; padding: 0; list-style: none; }
.footer-grid .menu li { margin-bottom: 9px; }
.footer-grid .menu a { color: #c9d0d4; font-size: 13px; }
.footer-grid .menu a:hover { color: var(--signal); }
.footer-contact > a { color: var(--signal); font-size: 17px; font-weight: 700; }
.footer-contact p { max-width: 340px; margin-top: 18px; color: #849099; font-size: 12px; }
.footer-legal { display: flex; min-height: 65px; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid #25313a; color: #6e7a82; font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.nav-links a,
.nav-links span { min-width: 38px; padding: 8px; border: 1px solid var(--line); text-align: center; }

@media (max-width: 1120px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr); }
  .hero__copy { padding-right: 35px; }
  .hero__metrics { gap: 25px; }
  .marque-strip__inner { grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px 0; }
  .marque-strip__inner span { grid-column: 1 / -1; }
  .primary-nav .menu { gap: 19px; }
  .rfq-shell { gap: 45px; padding: 40px; }
	.fitment-guide-grid { gap: 45px; }
}

@media (max-width: 920px) {
  .utility-bar__right > a,
  .utility-bar__right i { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; z-index: 90; top: 114px; right: 0; bottom: 0; left: 0; display: block; padding: 45px 24px; background: var(--ink); transform: translateX(100%); transition: transform 220ms ease; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav .menu { display: block; }
  .primary-nav .menu li { border-bottom: 1px solid var(--dark-line); }
  .primary-nav .menu a { display: block; padding: 18px 0; font-size: 22px; }
  .primary-nav .menu a::after { display: none; }
  .button--header { width: 100%; margin: 26px 0 0; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { min-height: 650px; padding: 75px 0 60px; }
  .hero-stage { min-height: 610px; }
  .hero::after { width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
	.finder-fact-grid { grid-template-columns: repeat(2, 1fr); }
	.finder-match-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .product-grid,
  .product-grid--three { grid-template-columns: repeat(2, 1fr); }
  .product-grid--featured .product-card:nth-child(1),
  .product-grid--featured .product-card:nth-child(5) { grid-column: auto; }
  .product-grid--featured .product-card:nth-child(1) .product-card__image,
  .product-grid--featured .product-card:nth-child(5) .product-card__image { height: 310px; }
  .process-grid { grid-template-columns: 1fr; gap: 65px; }
	.market-grid { grid-template-columns: 1fr; }
	.market-grid article { min-height: 210px; }
	.market-grid h3 { margin-top: 42px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 35px; }
  .page-hero p { max-width: 620px; }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .catalog-search { width: 100%; flex-basis: auto; }
  .product-detail__grid { grid-template-columns: 1fr; gap: 30px; }
  .product-gallery__main { height: 620px; }
  .product-info { padding-top: 15px; }
  .product-notes__grid,
  .about-grid,
	.fitment-guide-grid { grid-template-columns: 1fr; gap: 35px; }
  .rfq-shell { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
	.location-grid { grid-template-columns: 1fr; }
	.location-grid li { min-height: 200px; }
  .principle-grid article { min-height: 220px; }
  .principle-grid h3 { margin-top: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .utility-bar { display: none; }
  .site-header__inner { min-height: 72px; }
  .primary-nav { top: 72px; }
  .brand__text strong { max-width: 170px; }
  .section { padding: 75px 0; }
  .hero__copy { min-height: auto; padding: 65px 0 50px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero__copy > p { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__metrics { justify-content: space-between; gap: 10px; }
  .hero__metrics > div { display: block; }
  .hero__metrics strong { display: block; margin-bottom: 5px; }
  .hero-stage { min-height: 510px; }
  .hero-product { border-width: 5px; }
  .hero-product--1 { top: 75px; left: 5%; width: 59%; height: 40%; }
  .hero-product--2 { top: 32%; right: 1%; width: 51%; height: 38%; }
  .hero-product--3 { bottom: 6%; left: 13%; width: 58%; height: 32%; }
  .marque-strip__inner { grid-template-columns: repeat(2, 1fr); }
	.fitment-finder-section { margin-top: 0; padding: 16px 0; background: var(--paper-deep); }
	.fitment-finder { padding: 25px 20px; }
	.fitment-finder__header { grid-template-columns: 1fr; gap: 22px; }
	.fitment-finder h2 { font-size: 31px; }
	.finder-tabs { width: 100%; }
	.finder-tab { flex: 1; }
	.finder-form { grid-template-columns: 1fr; }
	.finder-submit { width: 100%; }
	.fitment-finder__footer { align-items: flex-start; flex-direction: column; gap: 9px; }
	.finder-result-heading { align-items: flex-start; flex-direction: column; }
	.finder-fact-grid { grid-template-columns: 1fr; }
	.finder-match-card { grid-template-columns: 1fr; }
	.finder-match-card__image { height: 190px; }
  .section-heading--split { display: block; }
  .section-heading--split > p,
  .section-heading--split > a { margin-top: 25px; }
  .section-heading h2 { font-size: 43px; }
  .product-grid,
  .product-grid--three { grid-template-columns: 1fr; }
  .product-card__image,
  .product-grid--featured .product-card:nth-child(1) .product-card__image,
  .product-grid--featured .product-card:nth-child(5) .product-card__image { height: 330px; }
  .process-intro h2 { font-size: 47px; }
  .page-hero__grid,
  .page-hero--about .page-hero__grid,
  .page-hero--rfq .page-hero__grid { min-height: 420px; padding-top: 62px; padding-bottom: 48px; }
  .page-hero h1 { font-size: 49px; }
  .catalog-summary { align-items: flex-start; flex-direction: column; gap: 8px; }
  .product-gallery__main { height: 440px; }
  .gallery-thumb { height: 90px; }
  .product-info h1 { font-size: 43px; }
  .spec-table > div { grid-template-columns: 105px 1fr; }
  .product-notes { padding: 70px 0; }
  .product-notes h2 { font-size: 41px; }
  .rfq-shell { gap: 35px; padding: 27px 21px; }
  .rfq-shell__intro h2 { font-size: 40px; }
  .form-grid { grid-template-columns: 1fr; }
	.identifier-cards { grid-template-columns: 1fr; }
	.identifier-cards article + article { border-top: 0; border-left: 1px solid var(--line); }
	.fitment-guide-grid h2 { font-size: 43px; }
	.fitment-privacy { grid-template-columns: 1fr; gap: 8px; }
  .rich-copy--large { font-size: 17px; }
  .about-statement h2 { font-size: 43px; }
  .footer-cta { align-items: flex-start; flex-direction: column; justify-content: center; }
  .footer-cta h2 { font-size: 39px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 0; }
  .default-page h1,
  .error-page h1 { font-size: 50px; }
}

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