:root {
  --ink: #0e2742;
  --navy: #0a1e33;
  --red: #dc2218;
  --text: #14202e;
  --muted: #56657a;
  --line: #e4e1db;
  --paper: #fff;
  --soft: #f5f4f1;
  --steel: #88a0b8;
  --white: #fff;
  --nav-text: #33414f;
  --body-copy: #4a5868;
  --label: #7a8696;
  --on-dark: #fff;
  --on-dark-muted: #c7d3df;
  --on-dark-soft: #9db0c4;
  --deep-line: #33506e;
  --soft-line: #ece9e3;
  --media-line: #f0eee9;
  --input-bg: #fbfaf7;
  --shadow: 0 2px 12px rgba(14,39,66,.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "IBM Plex Sans", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 6px 22px rgba(14,39,66,.08);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 9px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.topbar a, .topbar strong { color: var(--on-dark); }
.topbar__group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.topbar__group:last-child { justify-content: flex-end; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.dot { color: var(--deep-line); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: max-content; }
.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(14,39,66,.12);
}
.brand__divider { width: 1px; height: 34px; background: var(--line); }
.brand__name { line-height: 1.1; }
.brand__name strong {
  display: block;
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}
.brand__name span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
}
.nav__links { display: flex; align-items: center; gap: clamp(12px, 1.35vw, 20px); color: var(--nav-text); font-size: 13.5px; font-weight: 600; }
.nav__links a[aria-current="page"] { color: var(--red); }
.nav__toggle { display: none; border: 0; background: var(--ink); color: var(--on-dark); padding: 10px 13px; border-radius: 4px; font: inherit; }
.is-empty-link { color: var(--steel); cursor: default; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--red);
  color: var(--on-dark);
  font-weight: 700;
  white-space: nowrap;
}
.button--light { background: var(--paper); border-color: var(--line); color: var(--ink); }
.button--ghost { background: transparent; border-color: rgba(255,255,255,.28); color: var(--on-dark); }

.section { padding: clamp(58px, 7vw, 84px) clamp(20px, 5vw, 64px); }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 42px; }
.section__head > div { min-width: 0; }
.section__head h2 { max-width: 760px; }
.section__head p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.6; text-align: right; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); }

h1, h2, h3 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; letter-spacing: 0; }
h1 { max-width: 720px; font-size: clamp(40px, 5.2vw, 62px); line-height: 1.04; }
h2 { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.08; }
h3 { font-size: 21px; line-height: 1.15; }
p { line-height: 1.7; }

.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); background: var(--soft); }
.hero__copy { padding: clamp(58px, 7vw, 78px) clamp(20px, 5vw, 64px); }
.hero__copy p { max-width: 590px; margin: 22px 0 30px; color: var(--body-copy); font-size: 17.5px; line-height: 1.6; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; padding: 0; list-style: none; }
.chips li { border: 1px solid var(--line); border-radius: 20px; background: var(--paper); color: var(--ink); font-size: 12.5px; font-weight: 600; line-height: 1; padding: 9px 16px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4,13,24,.12), rgba(4,13,24,.46)),
    linear-gradient(180deg, rgba(4,13,24,.08), rgba(4,13,24,.28)),
    url("/uploads/images/homepage-banner.jpg") center center / cover no-repeat,
    var(--navy);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(14,39,66,.12));
  pointer-events: none;
}
.hero-visual__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  border-radius: 3px;
  background: var(--red);
  color: var(--on-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 8px 12px;
  text-transform: uppercase;
}
.hero-visual__caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 310px;
  border-left: 3px solid var(--red);
  background: rgba(4,13,24,.66);
  color: var(--on-dark);
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mini-stats { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.mini-stat { padding: 22px 14px 0; border-right: 1px solid var(--line); }
.mini-stat:first-child { padding-left: 0; }
.mini-stat:last-child { border-right: 0; }
.mini-stat strong { display: block; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 32px; line-height: 1; }
.mini-stat span { color: var(--red); }
.mini-stat em { display: block; margin-top: 8px; color: var(--label); font-size: 10.5px; font-style: normal; font-weight: 600; letter-spacing: .06em; line-height: 1.3; text-transform: uppercase; }

.band, .models { display: grid; color: var(--on-dark); }
.band { grid-template-columns: repeat(4,1fr); background: var(--ink); }
.band__item { display: flex; align-items: center; gap: 16px; min-height: 102px; padding: 30px clamp(22px,3vw,40px); border-right: 1px solid rgba(255,255,255,.12); }
.band__item:last-child { border-right: 0; }
.band__item strong { font-family: "Space Grotesk", sans-serif; font-size: 38px; line-height: 1; }
.band__item span { color: var(--steel); font-size: 11px; font-weight: 600; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.models { grid-template-columns: repeat(3,1fr); background: var(--red); }
.models div { border-right: 1px solid rgba(255,255,255,.22); padding: 18px; text-align: center; font-size: 13.5px; font-weight: 700; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.models div:last-child { border-right: 0; }

.grid-2, .grid-3, .grid-4, .grid-5, .process, .events, .logo-grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-5, .process { grid-template-columns: repeat(5,1fr); }
.events { grid-template-columns: repeat(3,1fr); }
.logo-grid { grid-template-columns: repeat(3,1fr); }
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}
@keyframes eventMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.card, .service, .step, .logo-card, .event-card, .info-card {
  border-radius: 8px;
  overflow: hidden;
}
.card, .service, .info-card { border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.card__body, .service__body, .info-card { padding: 24px; }
.service__media {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--media-line);
}
.service__media img {
  width: 100%;
  max-width: 180px;
  height: 128px;
  object-fit: contain;
}
.placeholder {
  display: flex;
  align-items: flex-end;
  min-height: 126px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(14,39,66,.08), rgba(220,34,24,.06)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(14,39,66,.04) 12px 13px),
    var(--soft);
  color: var(--steel);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.placeholder--tall { min-height: 210px; }
.placeholder--dark { min-height: 160px; background: linear-gradient(135deg, rgba(220,34,24,.16), transparent 42%), var(--ink); color: var(--steel); }

.feature-list, .check-list, .link-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { color: var(--muted); font-size: 14px; font-weight: 500; line-height: 2; }
.check-list.info-card {
  padding: 0;
}
.check-list li, .link-list li { display: flex; gap: 12px; align-items: center; min-height: 48px; border-bottom: 1px solid var(--soft-line); color: var(--ink); font-weight: 600; }
.check-list li {
  padding: 0 24px;
}
.check-list li:last-child {
  border-bottom: 0;
}
.check-list li::before { content: ""; flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; background: var(--red); }
.link-list li::before { content: ">"; color: var(--red); font-weight: 700; }

.legacy { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.legacy h2, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.legacy p, .section--dark p { color: var(--on-dark-soft); }
.person-card { border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: var(--navy); overflow: hidden; }
.person-card__body { padding: 22px 20px 26px; }
.person-card small { display: block; margin: 10px 0; color: var(--steel); font-weight: 600; }

.step { border: 1px solid var(--line); background: var(--soft); padding: 26px 22px; }
.step:first-child { border-color: transparent; background: var(--ink); }
.step strong { display: block; margin-bottom: 16px; color: var(--steel); font-family: "IBM Plex Mono", monospace; font-size: 23px; font-weight: 600; line-height: 1; }
.step:first-child strong { color: var(--red); }
.step:first-child h3 { color: var(--on-dark); }
.step p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.step:first-child p { color: var(--on-dark-soft); }

.page-hero { background: var(--soft); padding: clamp(58px,7vw,84px) clamp(20px,5vw,64px); }
.page-hero p { max-width: 760px; color: var(--body-copy); font-size: 18px; }
.content-narrow { max-width: 980px; }
.content-narrow p { color: var(--muted); }
.content-narrow h2 { margin-top: 34px; margin-bottom: 14px; }
.quote-box { border-left: 4px solid var(--red); background: var(--soft); padding: 24px; color: var(--ink); font-size: 20px; font-weight: 600; line-height: 1.5; }

.logo-carousel {
  overflow: hidden;
  margin-inline: calc(clamp(20px, 5vw, 64px) * -1);
  padding: 4px clamp(20px, 5vw, 64px) 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logoMarquee 34s linear infinite;
}
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}
.logo-card {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(260px, 25vw, 360px);
  min-height: 158px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 30px;
}
.logo-card img {
  width: 100%;
  max-width: 270px;
  height: 108px;
  object-fit: contain;
}
.event-carousel {
  overflow: hidden;
  margin-inline: calc(clamp(20px, 5vw, 64px) * -1);
  padding: 4px clamp(20px, 5vw, 64px) 10px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.event-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: eventMarquee 32s linear infinite;
}
.event-carousel:hover .event-track {
  animation-play-state: paused;
}
.event-card {
  position: relative;
  flex: 0 0 clamp(260px, 29vw, 380px);
  height: 220px;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.event-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.event-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-left: 3px solid var(--red);
  background: rgba(4,13,24,.72);
  color: var(--white);
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.award-carousel .event-track {
  animation-duration: 26s;
}
.award-card {
  flex-basis: clamp(320px, 45vw, 620px);
  height: 320px;
}

.cta { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: var(--white); }
.cta__copy, .cta__contact { padding: clamp(58px,6vw,76px) clamp(20px,5vw,64px); }
.cta__copy { border-right: 1px solid rgba(255,255,255,.12); }
.cta h2 { color: var(--white); font-size: clamp(32px,4vw,44px); }
.cta p { max-width: 460px; margin: 20px 0 30px; color: var(--on-dark-soft); }
.contact-block { color: var(--on-dark-muted); font-size: 14px; line-height: 1.8; font-style: normal; }
.contact-block strong { display: block; margin-bottom: 20px; color: var(--steel); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.contact-block span { color: var(--steel); }
.contact-block div { margin-bottom: 14px; }

.footer {
  display: grid;
  gap: 24px;
  padding: 34px clamp(20px,5vw,64px) 20px;
  background: var(--navy);
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(130px, .55fr) minmax(190px, .75fr) minmax(280px, 1.05fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}
.footer__main {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer__logo {
  flex: 0 0 auto;
  width: 96px;
  height: 118px;
  border-radius: 7px;
  object-fit: contain;
  background: var(--white);
  padding: 6px;
}
.footer h2,
.footer h3 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}
.footer h2 {
  font-size: 20px;
}
.footer h3 {
  margin-bottom: 14px;
  font-size: 14px;
}
.footer__tagline {
  max-width: 320px;
  margin: 10px 0 0;
  color: var(--on-dark-soft);
  line-height: 1.55;
}
.footer a {
  color: var(--on-dark);
  text-decoration: none;
}
.footer a:hover {
  color: var(--red);
}
.footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__links a {
  color: var(--on-dark-muted);
}
.footer__contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.footer__contact div {
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.footer__contact span {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer__map-wrap p {
  margin: 10px 0 0;
  color: var(--on-dark-soft);
  font-size: 13px;
  line-height: 1.45;
}
.footer__map {
  width: 100%;
  min-height: 176px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--steel);
  font-size: 12px;
  line-height: 1.5;
}
.footer__bottom a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  overflow: hidden;
  padding: clamp(58px, 7vw, 78px) clamp(20px, 5vw, 64px);
  background: linear-gradient(90deg, var(--ink) 0 54%, var(--navy) 54% 100%);
  color: var(--white);
}
.about-hero h1 {
  color: var(--white);
  font-size: clamp(44px, 6vw, 58px);
}
.about-hero p {
  max-width: 590px;
  color: var(--on-dark-soft);
  font-size: 17.5px;
}
.about-hero__stat {
  flex: 0 0 auto;
  text-align: right;
}
.about-hero__stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  line-height: 1;
}
.about-hero__stat strong span { color: var(--red); }
.about-hero__stat em {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.about-strip {
  grid-template-columns: repeat(4, 1fr);
}
.about-history,
.about-leadership,
.about-quality {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.about-product-card {
  margin-top: 24px;
  background: var(--soft);
}
.about-product-card strong,
.about-chip-label {
  display: block;
  margin-bottom: 14px;
  color: var(--label);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-copy p {
  color: var(--nav-text);
  font-size: 16.5px;
}
.about-copy strong { color: var(--ink); }
.about-chips { margin-bottom: 0; }
.about-center-head {
  margin-bottom: 42px;
  text-align: center;
}
.about-center-head .eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}
.about-leadership {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.leader-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: var(--navy);
  padding: 34px;
}
.leader-card__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.leader-card__avatar {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(128px, 10vw, 156px);
  width: clamp(128px, 10vw, 156px);
  height: clamp(156px, 12vw, 188px);
  border-radius: 10px;
  background: var(--ink);
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
}
.leader-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader-card h3 { color: var(--white); }
.leader-card span {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.leader-card p {
  color: var(--on-dark-muted);
  font-size: 15px;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-split__panel {
  padding: clamp(58px, 6vw, 80px) clamp(20px, 5vw, 64px);
}
.about-split__panel:first-child {
  border-right: 1px solid var(--line);
}
.about-split__panel--soft { background: var(--soft); }
.about-split p,
.about-quality p { color: var(--body-copy); }
.about-split blockquote {
  margin: 0 0 26px;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.value-list li {
  position: relative;
  padding-left: 32px;
  color: var(--body-copy);
  line-height: 1.6;
}
.value-list li::before {
  content: "";
  position: absolute;
  top: .3em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
}
.value-list strong { color: var(--ink); }
.about-quality {
  background: var(--navy);
}
.about-quality h2 { color: var(--white); }
.about-quality p { color: var(--on-dark-soft); }
.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quality-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: var(--ink);
  padding: 32px 26px;
  text-align: center;
}
.quality-card strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 2px solid var(--red);
  border-radius: 10px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}
.quality-card span {
  color: var(--on-dark-muted);
  font-weight: 700;
  line-height: 1.5;
}
.about-red-band {
  padding: clamp(58px, 6vw, 72px) clamp(20px, 5vw, 64px);
  background: var(--red);
  text-align: center;
}
.about-red-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--on-dark-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-red-band h2 {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--white);
}
.about-red-band p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--on-dark-muted);
}

.parts-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  background: var(--soft);
}
.parts-hero__copy {
  padding: clamp(58px, 7vw, 84px) clamp(20px, 5vw, 64px);
}
.parts-hero__copy p {
  max-width: 600px;
  margin: 22px 0 30px;
  color: var(--body-copy);
  font-size: 17.5px;
}
.parts-hero__media {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(14,39,66,.92), rgba(14,39,66,.74)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.05) 14px 15px),
    var(--ink);
}
.parts-hero__media img {
  width: min(460px, 100%);
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
}
.parts-band .band__item strong {
  min-width: 74px;
  font-size: clamp(26px, 3vw, 38px);
}
.custom-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.custom-intro__media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.custom-intro__media img {
  width: min(420px, 100%);
  max-height: 300px;
  object-fit: contain;
}
.custom-intro__copy p {
  color: var(--body-copy);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  position: relative;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  padding: 16px 16px 16px 44px;
}
.feature-grid li strong,
.feature-grid li span {
  display: block;
}
.feature-grid li span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.feature-grid li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
}
.process--six {
  grid-template-columns: repeat(6, 1fr);
}
.process--four {
  grid-template-columns: repeat(4, 1fr);
}
.application-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.application-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--white);
  padding: 22px;
  border-bottom: 1px solid var(--media-line);
}
.application-card div {
  padding: 24px;
}
.application-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.application-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-grid li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(14,39,66,.04);
}
.product-range {
  align-items: stretch;
}
.range-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.range-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid var(--media-line);
}
.range-card div {
  padding: 22px;
}
.range-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.custom-quality {
  grid-template-columns: 1.05fr .95fr;
}
.custom-enquiry {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 7vw, 84px) clamp(20px, 5vw, 64px);
  background: var(--soft);
}
.custom-enquiry__copy p {
  max-width: 520px;
  color: var(--body-copy);
}
.contact-stack {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  color: var(--nav-text);
  line-height: 1.6;
}
.contact-stack span {
  display: block;
  color: var(--label);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-stack a {
  color: var(--ink);
  font-weight: 700;
}
.contact-stack em {
  color: var(--steel);
  font-style: normal;
  margin: 0 6px;
}
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}
.enquiry-form textarea {
  resize: vertical;
}
.enquiry-form__wide {
  grid-column: 1 / -1;
}
.form-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 7vw, 84px) clamp(20px, 5vw, 64px);
  background: var(--soft);
}
.contact-hero__copy p {
  max-width: 620px;
  color: var(--body-copy);
  font-size: 17.5px;
}
.contact-cards {
  display: grid;
  gap: 14px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-card strong,
.contact-card a {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.35;
}
.contact-card p {
  margin: 0;
  color: var(--body-copy);
}
.contact-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 7vw, 84px) clamp(20px, 5vw, 64px);
}
.quick-links-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 2px 12px rgba(14,39,66,.05);
}
.quick-links-card p {
  color: var(--muted);
}
.quick-links {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.quick-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 0;
}
.quick-links a::after {
  content: ">";
  color: var(--red);
}

@media (max-width: 1100px) {
  .hero, .legacy, .cta { grid-template-columns: 1fr; }
  .about-hero,
  .about-history,
  .about-leadership,
  .about-quality,
  .custom-quality,
  .contact-hero,
  .contact-section,
  .parts-hero,
  .custom-intro,
  .custom-enquiry,
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-hero {
    align-items: flex-start;
    background: var(--ink);
  }
  .about-hero__stat { text-align: left; }
  .about-split__panel:first-child { border-right: 0; }
  .hero-visual { min-height: 420px; }
  .parts-hero__media { min-height: 360px; }
  .section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .section__head p {
    max-width: 620px;
    text-align: left;
  }
  .grid-4, .grid-5, .process, .process--six, .process--four, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .events { grid-template-columns: repeat(2,1fr); }
  .logo-grid { grid-template-columns: repeat(3,1fr); }
  .logo-card {
    flex-basis: 280px;
    min-height: 146px;
  }
  .logo-card img {
    height: 98px;
  }
  .event-card {
    flex-basis: 290px;
    height: 190px;
  }
  .award-card {
    flex-basis: 440px;
    height: 250px;
  }
  .footer__grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }
  .footer__map-wrap {
    grid-column: 1 / -1;
  }
  .cta__copy { border-right: 0; }
}
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topbar, .section__head { align-items: flex-start; flex-direction: column; }
  .footer { grid-template-columns: 1fr; align-items: flex-start; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .footer__brand,
  .footer__map-wrap { grid-column: 1 / -1; }
  .footer__main { align-items: flex-start; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__map { min-height: 190px; }
  .topbar__group:last-child, .section__head p { justify-content: flex-start; text-align: left; }
  .nav { position: static; align-items: flex-start; flex-wrap: wrap; }
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .nav__links { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; border-top: 1px solid var(--line); }
  .nav__links .button { margin-top: 12px; padding: 13px 22px; border-top: 0; }
  .brand__logo {
    width: 54px;
    height: 54px;
  }
  .leader-card__head {
    flex-direction: column;
  }
  .leader-card__avatar {
    width: min(100%, 220px);
    height: 260px;
  }
  .band, .models, .mini-stats, .grid-2, .grid-3, .grid-4, .grid-5, .process, .events, .logo-grid, .industry-grid { grid-template-columns: 1fr; }
  .process--six,
  .process--four,
  .feature-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }
  .about-hero {
    flex-direction: column;
    gap: 24px;
    padding: 48px 20px;
  }
  .about-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }
  .about-hero p {
    font-size: 16px;
    line-height: 1.6;
  }
  .about-hero__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    text-align: left;
  }
  .about-hero__stat strong {
    font-size: 38px;
  }
  .about-hero__stat em {
    margin-top: 0;
    max-width: 150px;
  }
  .about-strip { grid-template-columns: 1fr; }
  .quality-cards { grid-template-columns: 1fr; }
  .band__item, .models div, .mini-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .mini-stat { border-bottom-color: var(--line); padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
  .event-track {
    animation: none;
  }
}
@media (max-width: 560px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 20px;
  }
  .topbar__group {
    gap: 8px;
    line-height: 1.2;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
  }
  .topbar__group:last-child {
    gap: 10px;
    font-size: 10px;
  }
  .topbar .dot {
    display: none;
  }
  .award-card {
    flex-basis: 300px;
    height: 200px;
  }
  .brand__divider { display: none; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual {
    min-height: 310px;
    background-position: center center;
  }
  .hero-visual__badge {
    top: 16px;
    right: 16px;
  }
  .hero-visual__caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}
