:root {
  --charcoal: #17191b;
  --charcoal-2: #202326;
  --steel: #353a3e;
  --silver: #d7d9da;
  --mist: #f2f3f3;
  --white: #ffffff;
  --orange: #f36b21;
  --orange-dark: #cf4f0d;
  --text: #202326;
  --muted: #697076;
  --border: #d9dddf;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(23, 25, 27, .96);
  border-bottom: 3px solid var(--orange);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-grid; grid-template-columns: auto auto auto; align-items: baseline; }

.brand-main,
.footer-brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
}

.amp { margin: 0 .22em; color: var(--orange); font-size: 1.45rem; font-weight: 800; }

.brand-domain {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #aeb3b6;
  font-size: .66rem;
  letter-spacing: .12em;
}

nav { display: flex; gap: 32px; margin-left: auto; }

nav a {
  color: #d8dbdc;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible { color: var(--orange); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

.button-small { min-height: 42px; padding: 0 20px; font-size: .92rem; }

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 36%, rgba(243, 107, 33, .16), transparent 29%),
    linear-gradient(120deg, #101214 0%, #222629 58%, #141618 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -115px 42%;
  height: 250px;
  background: var(--orange);
  transform: skewX(-24deg);
  opacity: .92;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-content { position: relative; z-index: 2; padding-block: 105px 125px; }

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1,
h2,
h3 { margin: 0; font-family: "Barlow Condensed", Impact, sans-serif; line-height: .98; }

h1 { max-width: 900px; font-size: clamp(3.6rem, 8.2vw, 7.3rem); letter-spacing: -.025em; }
h1 span { color: transparent; -webkit-text-stroke: 2px var(--orange); }

.hero-copy { max-width: 620px; margin: 28px 0 0; color: #cdd0d2; font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { padding-block: 8px; border-bottom: 1px solid #697076; font-weight: 600; }
.text-link span { color: var(--orange); }

.hero-mark {
  position: absolute;
  right: 6%;
  bottom: -50px;
  z-index: 1;
  color: rgba(255,255,255,.09);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28rem;
  font-weight: 800;
  line-height: 1;
}

.section { padding-block: 105px; }
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: start; }
h2 { font-size: clamp(2.9rem, 5vw, 4.9rem); letter-spacing: -.02em; }
.about-copy { padding-top: 8px; border-top: 3px solid var(--orange); }
.about-copy p { margin: 0 0 18px; color: #4f565b; font-size: 1.04rem; }

.catalogue { background: var(--mist); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading > p { max-width: 320px; margin: 0 0 5px; color: var(--muted); text-align: right; }

.parts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.part-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 14px 34px rgba(24,28,31,.07); transition: transform .2s ease, box-shadow .2s ease; }
.part-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(24,28,31,.12); }
.part-image { aspect-ratio: 4 / 3; }

.placeholder-image {
  display: grid;
  place-items: center;
  color: #9ca2a6;
  background:
    linear-gradient(135deg, transparent 42%, rgba(243,107,33,.18) 42%, rgba(243,107,33,.18) 58%, transparent 58%),
    repeating-linear-gradient(135deg, #25292c 0, #25292c 10px, #2b3033 10px, #2b3033 20px);
}

.placeholder-image span {
  padding: 8px 13px;
  background: rgba(23,25,27,.85);
  border: 1px solid #4a5054;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.part-details { padding: 24px; }
.part-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.status { padding: 5px 9px; color: #8c350b; background: #ffe1d1; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location { color: var(--muted); font-size: .76rem; }
.part-card h3 { font-size: 1.85rem; letter-spacing: .015em; }
.fitment { margin: 9px 0 18px; color: var(--orange-dark); font-size: .86rem; font-weight: 700; }
.condition { margin: 0; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; }
.condition strong { color: #3b4043; }
.part-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; }
.price { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.part-footer a { color: var(--orange-dark); font-size: .8rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.contact { color: var(--white); background: var(--charcoal); }
.contact-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 9%; align-items: center; padding-block: 95px; }
.contact p:not(.section-label) { max-width: 560px; margin: 22px 0 0; color: #bfc3c5; }
.phone-panel { display: flex; flex-direction: column; padding: 34px 38px; background: var(--orange); border-left: 8px solid var(--white); transition: background .2s ease, transform .2s ease; }
.phone-panel:hover,
.phone-panel:focus-visible { background: var(--orange-dark); transform: translateX(5px); }
.phone-label { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.phone-number { margin: 6px 0; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.1rem, 4.3vw, 3.5rem); font-weight: 800; line-height: 1; }
.phone-note { font-size: .78rem; opacity: .8; }

footer { color: #aeb3b6; background: #101214; border-top: 1px solid #2e3336; }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { color: var(--white); white-space: nowrap; }
.footer-brand span { color: var(--orange); }
.footer-inner p { margin: 0; font-size: .72rem; text-align: center; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 880px) {
  nav { display: none; }
  .hero { min-height: 560px; }
  .about-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-wrap: wrap; justify-content: center; padding-block: 28px; }
  .footer-inner p { flex-basis: 100%; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand-main { font-size: 1.35rem; }
  .amp { font-size: 1.15rem; }
  .brand-domain { display: none; }
  .button-small { min-height: 38px; padding-inline: 14px; font-size: .78rem; }
  .hero-content { padding-block: 82px 100px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h1 span { -webkit-text-stroke-width: 1px; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .text-link { align-self: flex-start; }
  .hero-mark { right: -16%; font-size: 20rem; }
  .section { padding-block: 75px; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; }
  .section-heading > p { text-align: left; }
  .parts-grid { grid-template-columns: 1fr; }
  .contact-inner { padding-block: 75px; }
  .phone-panel { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
