:root {
  --red: #d9222a;
  --red-dark: #b8161f;
  --ink: #111111;
  --muted: #656565;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --line: #dededb;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html, body { max-width: 100%; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.04;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
h1, h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h1 { margin-bottom: 24px; font-size: clamp(3rem, 8vw, 6.4rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.4rem, 6vw, 4.8rem); }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.mobile-title { display: none; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 28px), 1440px); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.09);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.brand span { font-size: 1.1rem; text-transform: uppercase; letter-spacing: -.03em; }
.brand strong { font-weight: 900; }
.brand em { color: var(--red); font-style: normal; font-weight: 900; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: .94rem; font-weight: 750; text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--red); }
.nav-cta { padding: 10px 18px; color: #fff; background: var(--red); border-radius: 999px; }
.nav-cta:hover { background: var(--red-dark); }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { padding: 28px 0 90px; overflow: hidden; }
.hero-banner { border: 1px solid #ddd; box-shadow: var(--shadow); }
.hero-banner img { width: 100%; height: auto; }
.hero-copy { padding-top: 72px; text-align: center; }
.hero-copy h1 { max-width: 1000px; margin-inline: auto; }
.hero-lead { max-width: 760px; margin: 0 auto 34px; font-size: 1.25rem; color: #3b3b3b; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #ff7d83; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border-color: var(--ink); background: #fff; color: var(--ink); }
.button-secondary:hover { border-color: var(--red); color: var(--red); }
.microcopy { margin-top: 16px; color: var(--muted); font-size: .88rem; }

.proof-strip { background: var(--ink); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 126px; padding: 28px 24px; border-left: 1px solid #343434; }
.proof-grid > div:last-child { border-right: 1px solid #343434; }
.proof-grid strong { display: block; margin-bottom: 5px; font-size: 1.02rem; }
.proof-grid span { display: block; color: #bdbdbd; font-size: .86rem; line-height: 1.5; }

.split-intro, .section-heading-row, .about-grid, .faq-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.split-intro { margin-bottom: 52px; }
.split-intro > p, .section-heading-row > p { margin-bottom: 8px; color: var(--muted); font-size: 1.05rem; }
.supplier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.supplier-card { position: relative; min-height: 276px; padding: 30px 24px; background: var(--soft); border-top: 4px solid var(--red); }
.supplier-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.supplier-card { transition: transform .18s ease, box-shadow .18s ease; }
.card-number { display: block; margin-bottom: 66px; color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.supplier-card p { margin: 0; color: #555; font-size: .92rem; }

.section-dark { background: var(--ink); color: #fff; }
.section-dark .section-heading-row > p { color: #bcbcbc; }
.section-heading-row { margin-bottom: 48px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 294px; padding: 28px 24px; border: 1px solid #353535; background: #191919; }
.category-card:hover { border-color: var(--red); }
.category-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 54px;
  border: 2px solid var(--red);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
}
.category-card p { margin: 0; color: #bdbdbd; font-size: .91rem; }
.category-wide { grid-column: span 4; display: grid; grid-template-columns: 80px 1fr; min-height: 0; align-items: center; }
.category-wide .category-mark { margin: 0; }
.stock-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.stock-gallery figure { position: relative; margin: 0; overflow: hidden; background: #242424; border: 1px solid #353535; }
.stock-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.stock-gallery figcaption { padding: 12px 14px; color: #fff; font-size: .82rem; font-weight: 800; }
.genuine-callout { display: grid; grid-template-columns: auto 1fr; gap: 28px; margin-top: 18px; padding: 24px 28px; background: var(--red); }
.genuine-callout strong { text-transform: uppercase; }
.genuine-callout span { color: #ffe6e7; }

.process { background: var(--soft); }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfcfcb; }
.process-list li { padding: 26px 22px 0; border-left: 1px solid #cfcfcb; }
.process-list li:last-child { border-right: 1px solid #cfcfcb; }
.process-list > li > span { display: block; margin-bottom: 72px; color: var(--red); font-family: Impact, sans-serif; font-size: 2.6rem; }
.process-list p { margin: 0; color: #555; font-size: .92rem; }
.condition-note { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; padding: 34px; background: #fff; border-top: 4px solid var(--red); }
.condition-note .eyebrow { display: block; }
.condition-note p { margin: 0; color: var(--muted); }

.arrangements-inner { max-width: 900px; }
.arrangement-list article { padding: 24px 0; border-top: 1px solid var(--line); }
.arrangement-list article:last-child { border-bottom: 1px solid var(--line); }
.arrangement-list span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.arrangement-list h3 { margin-top: 8px; }
.arrangement-list p, .disclaimer { margin-bottom: 0; color: var(--muted); }
.disclaimer { margin-top: 20px; font-size: .82rem; }

.about { background: var(--red); color: #fff; }
.about-grid { align-items: start; }
.about-copy { padding-top: 4px; }
.about-copy p { font-size: 1.08rem; }
.about-copy p:last-child { margin-bottom: 0; }

.faq-layout { align-items: start; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 44px 22px 0; font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 15px; right: 4px; color: var(--red); font-size: 1.8rem; font-weight: 400; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { padding-right: 30px; color: var(--muted); }

.enquiry { background: var(--ink); color: #fff; }
.enquiry-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.enquiry-intro { position: sticky; top: 120px; }
.enquiry-intro > p:not(.eyebrow) { color: #bcbcbc; }
.direct-contact { display: grid; gap: 12px; margin-top: 34px; }
.direct-contact a { padding: 16px 0; border-top: 1px solid #3b3b3b; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.direct-contact a:last-child { border-bottom: 1px solid #3b3b3b; }
.direct-contact span { display: block; color: #8f8f8f; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.enquiry-form { padding: 34px; background: #fff; color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: block; margin-bottom: 18px; font-size: .84rem; font-weight: 800; }
.enquiry-form label span { color: #878787; font-weight: 500; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #c9c9c9;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,34,42,.12); }
.form-submit { width: 100%; border: 0; }
.text-button { width: 100%; padding: 15px; border: 0; background: none; color: var(--red); font-weight: 800; text-decoration: underline; cursor: pointer; }
.form-note, .form-status { margin: 4px 0 0; color: #6e6e6e; font-size: .78rem; }
.form-status { color: var(--red); font-weight: 700; }

.site-footer { padding: 60px 0 24px; background: #090909; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 68px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand { margin-bottom: 12px; }
.footer-brand img { width: 46px; height: 46px; }
.footer-grid p, .footer-grid a { margin: 4px 0; color: #aaa; font-size: .86rem; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 44px; padding-top: 20px; border-top: 1px solid #292929; }
.footer-bottom p { margin: 0; color: #777; font-size: .72rem; }

@media (max-width: 960px) {
  .section { padding: 84px 0; }
  .proof-grid, .supplier-grid, .category-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-top: 1px solid #343434; }
  .proof-grid > div:nth-child(4) { border-top: 1px solid #343434; }
  .category-wide { grid-column: span 2; }
  .stock-gallery { grid-template-columns: repeat(2, 1fr); }
  .split-intro, .section-heading-row, .about-grid, .faq-layout { gap: 40px; }
  .enquiry-grid { gap: 46px; }
  .footer-grid { gap: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 30px), var(--max)); }
  .shell-wide { width: 100%; }
  .section { padding: 58px 0; }
  .site-header { background: #fff; }
  .header-inner { min-height: 68px; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 1rem; white-space: nowrap; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px 15px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px 10px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { padding: 0 0 48px; border-top: 6px solid var(--red); }
  .hero-banner { display: none; }
  .hero-copy { padding-top: 42px; text-align: left; }
  .desktop-title { display: none; }
  .mobile-title { display: inline; }
  .hero-copy h1 { max-width: 560px; margin-inline: 0; }
  h1 { font-size: clamp(2.65rem, 12vw, 3.4rem); line-height: .98; }
  h2 { font-size: clamp(2.05rem, 9vw, 2.65rem); line-height: 1; }
  h3 { overflow-wrap: normal; }
  .hero-lead { max-width: 600px; margin: 0 0 26px; font-size: 1.03rem; }
  .hero-actions { justify-content: flex-start; }
  .button { width: 100%; }
  .supplier-grid, .category-grid, .process-list, .split-intro, .section-heading-row, .about-grid, .faq-layout, .enquiry-grid, .footer-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid > div { min-height: 132px; padding: 22px 18px; border-right: 1px solid #343434; border-bottom: 1px solid #343434; }
  .proof-grid > div + div { border-top: 0; }
  .split-intro, .section-heading-row { gap: 14px; }
  .split-intro > *, .section-heading-row > *, .about-grid > *, .faq-layout > *, .enquiry-grid > * { min-width: 0; }
  .supplier-grid { gap: 10px; }
  .supplier-card { min-height: 0; padding: 24px 20px; }
  .supplier-card:hover { transform: none; }
  .card-number { margin-bottom: 22px; }
  .category-wide { grid-column: auto; grid-template-columns: 64px 1fr; }
  .category-grid { gap: 10px; }
  .category-card { min-height: 0; padding: 24px 20px; }
  .category-mark { margin-bottom: 22px; }
  .genuine-callout { grid-template-columns: 1fr; gap: 8px; }
  .stock-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
  .stock-gallery figcaption { padding: 10px; font-size: .75rem; }
  .process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 12px; padding: 26px 0; border-left: 0; border-bottom: 1px solid #cfcfcb; }
  .process-list li:last-child { border-right: 0; }
  .process-list > li > span { margin: 0; }
  .condition-note { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; padding: 24px 20px; }
  .enquiry-intro { position: static; }
  .enquiry-form { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { min-height: 64px; }
  .brand { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: .9rem; }
  .site-nav { inset-block-start: 64px; }
  .hero-copy { padding-top: 34px; }
  .hero { padding-bottom: 44px; }
  h1 { font-size: clamp(2.45rem, 11.8vw, 2.85rem); }
  h2 { font-size: clamp(1.95rem, 9vw, 2.2rem); }
  .eyebrow { font-size: .7rem; letter-spacing: .13em; }
  .proof-grid > div { min-height: 126px; padding: 20px 14px; }
  .proof-grid strong { font-size: .95rem; }
  .proof-grid span { font-size: .78rem; }
  .supplier-card, .category-card { padding-inline: 20px; }
  .category-wide { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; }
  .category-wide .category-mark { width: 48px; height: 48px; }
  .genuine-callout { padding: 22px 20px; }
  .process-list li { grid-template-columns: 44px minmax(0, 1fr); }
  .enquiry-form { padding: 22px 16px; }
  .footer-grid { gap: 28px; }
}

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