:root {
  --paper: #ece8df;
  --paper-light: #f7f4ed;
  --ink: #171a19;
  --ink-soft: #2a2f2d;
  --muted: #5f6562;
  --line: rgba(23, 26, 25, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --brand: #425a9a;
  --brand-light: #9fb7df;
  --accent: #c54b30;
  --accent-ink: #a73d27;
  --white: #fffefa;
  --shell: min(1360px, calc(100vw - 96px));
  --serif: "Newsreader", Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(18, 21, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.brand-logo {
  width: clamp(210px, 18vw, 252px);
  height: auto;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.footer-brand .brand-logo {
  width: min(100%, 300px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  transition: gap 240ms var(--ease), border-color 240ms ease;
}

.header-cta:hover {
  gap: 36px;
  border-color: var(--accent);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 52% 48%;
  filter: saturate(0.76) contrast(1.08);
  animation: hero-scale 1.6s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 15, 14, 0.95) 0%, rgba(12, 15, 14, 0.72) 47%, rgba(12, 15, 14, 0.48) 100%),
    linear-gradient(0deg, rgba(12, 15, 14, 0.78) 0%, transparent 42%);
}

.hero-grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-height) + 78px);
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(56px, 8vw, 128px);
}

.eyebrow,
.section-kicker,
.mono-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(211, 86, 55, 0.14);
}

.hero h1,
.section-intro h2,
.process h2,
.about h2,
.finishes h2,
.partners h2,
.quality h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 910px;
  margin-top: 28px;
  font-size: clamp(4.25rem, 8.2vw, 8.7rem);
  line-height: 0.84;
}

.hero h1 em,
.section-intro h2 em,
.process h2 em,
.about h2 em,
.finishes h2 em,
.partners h2 em,
.quality h2 em,
.contact h2 em {
  font-weight: 400;
  color: var(--brand-light);
}

.hero-lede {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

.button-primary {
  min-width: 208px;
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: #ad3f28;
}

.button-dark {
  min-width: 224px;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--brand);
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 240ms var(--ease), color 200ms ease;
}

.text-link:hover {
  gap: 32px;
  color: var(--accent);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.line-spec {
  position: relative;
  align-self: end;
  margin-bottom: 58px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.line-spec::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 34%;
  background: var(--accent);
}

.line-spec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.coating-visual {
  --spray-cycle: 9.2s;
  position: relative;
  height: 178px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 52% 56%, rgba(123, 150, 139, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(1, 7, 5, 0.12)),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.045) 50%, transparent 50.2%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 70px);
}

.coating-measure,
.coating-caption {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coating-measure {
  top: 10px;
}

.coating-caption {
  bottom: 10px;
}

.coating-caption span:last-child {
  color: var(--brand-light);
}

.paint-line-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.conveyor-rail-shadow,
.conveyor-rail,
.conveyor-dashes {
  fill: none;
}

.conveyor-rail-shadow {
  stroke: rgba(1, 5, 4, 0.42);
  stroke-width: 5;
}

.conveyor-rail {
  stroke: rgba(222, 228, 224, 0.64);
  stroke-width: 2;
}

.conveyor-dashes {
  stroke: rgba(148, 185, 218, 0.8);
  stroke-width: 1.5;
  stroke-dasharray: 3 17;
  animation: conveyor-feed 1.6s linear infinite;
}

.moving-workpiece {
  transform-origin: center;
  animation: workpiece-cycle var(--spray-cycle) var(--ease) infinite;
}

.profile-hanger rect {
  fill: #aeb5b1;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1;
}

.profile-hanger path {
  fill: none;
  stroke: rgba(225, 229, 225, 0.72);
  stroke-width: 1.2;
}

.profile-ground-shadow {
  fill: rgba(1, 6, 5, 0.28);
}

.raw-surface,
.coated-surface {
  stroke: rgba(7, 12, 12, 0.42);
  stroke-width: 0.72;
}

.raw-end,
.coated-end {
  stroke: rgba(5, 9, 10, 0.56);
  stroke-width: 0.8;
}

.raw-end {
  fill: #87908b;
}

.coated-end {
  fill: #2d6398;
}

.raw-end-void,
.coated-end-void {
  stroke-width: 0.75;
}

.raw-end-void {
  fill: #1a211f;
  stroke: #d7dad7;
}

.coated-end-void {
  fill: #102c46;
  stroke: #8bb7dd;
}

.raw-surface-top {
  fill: url("#raw-top");
}

.raw-surface-face {
  fill: url("#raw-face");
}

.raw-surface-bevel {
  fill: url("#raw-bevel");
}

.coated-surface-top {
  fill: url("#coated-top");
}

.coated-surface-face {
  fill: url("#coated-face");
}

.coated-surface-bevel {
  fill: url("#coated-bevel");
}

.profile-specular,
.coated-specular {
  fill: none;
  stroke-linecap: round;
}

.profile-specular {
  stroke: rgba(255, 255, 255, 0.44);
}

.profile-specular-top {
  stroke-width: 1.15;
}

.profile-specular-face {
  stroke-width: 0.68;
  opacity: 0.64;
}

.coated-specular {
  stroke: rgba(192, 224, 248, 0.58);
}

.coated-specular-top {
  stroke-width: 1.1;
}

.coated-specular-face {
  stroke-width: 0.64;
  opacity: 0.7;
}

.profile-groove,
.coated-groove {
  fill: none;
  stroke-width: 3;
}

.profile-groove {
  stroke: rgba(18, 24, 22, 0.82);
}

.coated-groove {
  stroke: #123a60;
}

.coated-grain {
  fill: url("#powder-grain");
  opacity: 0.34;
  pointer-events: none;
}

.coating-reveal-mask {
  transform-box: fill-box;
  transform-origin: right center;
  animation: coating-reveal var(--spray-cycle) var(--ease) infinite;
}

.front-spray-rig {
  transform: translate(570px, -33px);
  animation: front-carriage var(--spray-cycle) var(--ease) infinite;
}

.front-powder-cloud {
  opacity: 0;
  animation: spray-cycle var(--spray-cycle) ease-in-out infinite;
}

.powder-haze {
  filter: url("#powder-aerosol");
  mix-blend-mode: screen;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.powder-haze-outer {
  fill: url("#powder-plume-outer");
  animation: powder-haze-breathe 1.12s ease-in-out infinite alternate;
}

.powder-haze-core {
  fill: url("#powder-plume-core");
  animation: powder-core-breathe 0.72s ease-in-out infinite alternate;
}

.powder-contact {
  fill: rgba(169, 211, 243, 0.44);
  filter: url("#powder-soft");
  mix-blend-mode: screen;
  transform-box: fill-box;
  transform-origin: center;
  animation: powder-contact-pulse 0.82s ease-in-out infinite alternate;
}

.powder-streams path {
  fill: none;
  stroke: rgba(198, 226, 247, 0.74);
  stroke-width: 0.82;
  stroke-dasharray: 2 6;
  animation: powder-stream 0.52s linear infinite;
}

.powder-particles circle {
  fill: #d8ecfb;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: front-powder-particle 0.92s linear infinite var(--particle-delay);
}

.front-gun {
  pointer-events: none;
}

.gun-body {
  fill: url("#gun-metal");
  stroke: rgba(224, 230, 228, 0.46);
  stroke-width: 0.8;
}

.gun-band {
  fill: #386f9f;
  stroke: rgba(164, 207, 238, 0.64);
  stroke-width: 0.7;
}

.gun-nozzle-rim {
  fill: url("#gun-metal");
  stroke: rgba(240, 244, 242, 0.62);
  stroke-width: 0.82;
}

.gun-nozzle-core {
  fill: url("#gun-nozzle");
  stroke: rgba(198, 208, 207, 0.36);
  stroke-width: 0.62;
}

.gun-electrode {
  fill: none;
  stroke: #d9e0dd;
  stroke-width: 1.1;
}

.gun-electrode-tip {
  fill: #e5ece8;
}

.powder-extraction path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.8;
}

.powder-extraction path:last-child {
  stroke: rgba(126, 173, 215, 0.48);
  stroke-dasharray: 4 3;
  animation: extraction-flow 1.1s linear infinite;
}

.application-state {
  position: absolute;
  top: 42px;
  left: 50%;
  padding: 4px 7px;
  background: rgba(11, 16, 16, 0.72);
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.application-state span {
  margin-right: 5px;
  color: var(--brand-light);
}

.spec-readout,
.facility-spec,
.finish-meta {
  margin: 0;
}

.spec-readout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  padding-top: 20px;
}

.spec-readout > div {
  padding: 0 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.spec-readout .spec-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
}

.line-spec dt,
.finish-meta dt,
.facility-spec dt {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.line-spec dd,
.finish-meta dd,
.facility-spec dd {
  font-size: 12px;
}

.line-spec dd {
  margin: 7px 0 0;
}

.finish-meta dd,
.facility-spec dd {
  margin: 0;
}

.spec-readout .spec-wide dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.line-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.line-status i {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(255, 255, 255, 0.18));
  background-size: 200% 100%;
  animation: line-flow 2.4s linear infinite;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-foot p {
  margin: 0;
}

.hero-ruler {
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 28px);
}

.hero-ruler span {
  display: block;
  width: 46%;
  height: 1px;
  margin-top: 4px;
  background: var(--accent);
}

.proof-strip {
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px clamp(22px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.proof-item sup,
.salt-spray-note sup {
  margin-left: 3px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.24em;
  letter-spacing: 0;
  vertical-align: top;
}

.proof-item sup {
  color: var(--accent-ink);
}

.salt-spray-note sup {
  color: var(--brand-light);
}

.proof-item span {
  max-width: 180px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  position: relative;
  padding: 150px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 0.55fr;
  gap: 44px;
  align-items: end;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  align-self: start;
  padding-top: 10px;
  color: var(--brand);
}

.section-kicker-light {
  color: var(--brand-light);
}

.section-intro h2,
.process h2,
.about h2,
.finishes h2,
.partners h2,
.quality h2,
.contact h2 {
  font-size: clamp(3.2rem, 5.2vw, 6.2rem);
  line-height: 0.94;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.capability-list {
  border-bottom: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  min-height: 610px;
  border-bottom: 1px solid var(--line);
}

.capability:last-child {
  border-bottom: 0;
}

.capability figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #c9c9c4;
}

.capability figure::after,
.about-image::after,
.quality-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 64%, rgba(66, 90, 154, 0.24));
  mix-blend-mode: multiply;
}

.capability figure img,
.about-image img,
.quality-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.capability:hover figure img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.capability figcaption,
.image-index,
.quality-visual > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(18, 21, 20, 0.76);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 6vw, 88px);
  border-left: 1px solid var(--line);
}

.capability-reverse figure {
  grid-column: 2;
  grid-row: 1;
}

.capability-reverse .capability-copy {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--line);
  border-left: 0;
}

.capability-number {
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 11px;
}

.capability h3 {
  margin: 22px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.capability-copy p {
  max-width: 490px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.process {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process::after,
.quality::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.process-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.16;
}

.process-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(64px, 10vw, 160px);
}

.process-copy {
  align-self: start;
  position: sticky;
  top: 138px;
}

.process-copy h2 {
  margin-top: 30px;
}

.process-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.process-tech {
  display: grid;
  gap: 7px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-tech span {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-tech strong {
  font-size: 14px;
  font-weight: 500;
}

.stage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.stage {
  position: relative;
  min-height: 116px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: padding 260ms var(--ease), background 260ms ease;
}

.stage::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--stage);
  transition: height 260ms var(--ease);
}

.stage:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.stage:hover::before {
  height: 70px;
}

.stage > span {
  color: var(--stage);
  font-family: var(--mono);
  font-size: 11px;
}

.stage h3,
.stage p {
  margin: 0;
}

.stage h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.stage p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about {
  background: var(--paper-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(64px, 9vw, 140px);
}

.about-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about-image img {
  object-position: 54% center;
}

.about-copy h2 {
  margin-top: 28px;
}

.about-lede {
  margin: 34px 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.about-copy > p:not(.section-kicker):not(.about-lede) {
  color: var(--muted);
  font-size: 15px;
}

.facility-spec {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.facility-spec > div {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.facility-spec dt {
  color: var(--muted);
}

.facility-spec dd {
  font-size: 13px;
}

.finishes {
  overflow: hidden;
  background: var(--paper);
}

.finish-photo {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  opacity: 0.085;
}

.finish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.3);
}

.finish-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
}

.finish-copy h2 {
  margin-top: 28px;
}

.finish-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
}

.finish-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.finish-controls button {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  transition: background 200ms ease, color 200ms ease;
}

.finish-controls button:nth-child(even) {
  border-right: 0;
}

.finish-controls button i {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  background: transparent;
  transition: background 180ms ease, transform 220ms var(--ease);
}

.finish-controls button:hover,
.finish-controls button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.finish-controls button[aria-pressed="true"] i {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
}

.finish-studio {
  border: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.75);
  backdrop-filter: blur(10px);
}

.profile-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.finish-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 26, 25, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 25, 0.1) 1px, transparent 1px),
    #dad7cf;
  background-size: 60px 60px;
}

.finish-stage::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border: 1px solid rgba(23, 26, 25, 0.16);
}

.finish-samples {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  width: calc(100% - 42px);
  padding: 54px 0 78px;
  gap: clamp(8px, 1.2vw, 18px);
}

.finish-sample {
  min-width: 0;
  margin: 0;
}

.etc457-graphic {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(13px 17px 12px rgba(22, 25, 24, 0.2));
  transform-origin: 50% 72%;
  transition: filter 360ms ease, transform 420ms var(--ease);
}

.finish-sample:hover .etc457-graphic {
  filter: drop-shadow(17px 22px 15px rgba(22, 25, 24, 0.25));
  transform: translateY(-6px) scale(1.025);
}

.etc457-depth {
  fill: var(--sample-edge);
  stroke: none;
}

.etc457-front {
  fill: var(--sample-face);
  stroke: rgba(10, 15, 17, 0.58);
  stroke-width: 0.28px;
  transition: fill 420ms var(--ease);
}

.etc457-polyamide-depth {
  fill: #23292c;
  stroke: none;
}

.etc457-polyamide-front {
  fill: #23292c;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 0.15px;
}

.etc457-sheen,
.etc457-texture {
  pointer-events: none;
}

.etc457-sheen {
  fill: url(#etc457-sheen);
  opacity: 0.26;
  mix-blend-mode: screen;
  transition: opacity 320ms ease;
}

.etc457-texture {
  fill: url(#etc457-grain);
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 320ms ease;
}

.finish-studio[data-finish="metallic"] .etc457-sheen {
  opacity: 0.82;
}

.finish-studio[data-finish="texture"] .etc457-sheen {
  opacity: 0.12;
}

.finish-studio[data-finish="texture"] .etc457-texture {
  opacity: 0.74;
}

.finish-sample figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px solid rgba(23, 26, 25, 0.22);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finish-sample figcaption strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finish-light {
  position: absolute;
  top: 6%;
  right: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 68%);
  filter: blur(4px);
}

.finish-stage-footer {
  position: absolute;
  right: 18px;
  bottom: 12px;
  left: 18px;
  display: flex;
  z-index: 3;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.finish-stage-footer p {
  margin: 0;
}

.finish-stage-footer strong {
  color: var(--ink);
  font-weight: 500;
}

.finish-stage-footer small {
  max-width: 260px;
  color: #555b58;
  font: inherit;
  text-align: right;
}

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

.finish-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.finish-meta > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.finish-meta > div:last-child {
  border-right: 0;
}

.finish-meta dt {
  color: var(--muted);
}

.finish-meta dd {
  font-size: 11px;
}

.partners {
  overflow: hidden;
  background: #dfe1dc;
}

.partners::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 26, 25, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 25, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  pointer-events: none;
}

.partners::after {
  position: absolute;
  top: 0;
  right: 0;
  width: min(32vw, 500px);
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  content: "";
}

.partners-layout {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(64px, 8vw, 122px);
  align-items: start;
}

.partners-copy {
  position: sticky;
  top: calc(var(--header-height) + 46px);
  flex: 0 1 39%;
  min-width: 0;
}

.partners-copy h2 {
  max-width: 660px;
  margin-top: 28px;
}

.partners-copy > p:not(.section-kicker) {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--muted);
}

.partner-scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-scope div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px 18px 14px 0;
}

.partner-scope div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.partner-scope dt,
.partner-index,
.partner-name {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.partner-scope dt,
.partner-index {
  color: var(--muted);
}

.partner-scope dd {
  margin: 0;
  font-size: 12px;
}

.partner-board {
  flex: 1 1 61%;
  align-self: flex-start;
  min-width: 0;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 226px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 24px 28px 0 rgba(23, 26, 25, 0.045);
}

.partner-card {
  --partner-card-inline: 20px;
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 19px var(--partner-card-inline) 17px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.82);
}

.partner-card::after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 34px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.partner-card-combined {
  grid-column: span 2;
}

.partner-mark {
  min-height: 134px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.partner-mark-combined {
  width: calc(100% + (var(--partner-card-inline) * 2));
  margin-inline: calc(var(--partner-card-inline) * -1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-lockup-slot {
  min-width: 0;
  display: grid;
  place-items: center;
}

.partner-mark img {
  width: auto;
  max-width: 82%;
  max-height: 82px;
  object-fit: contain;
}

.partner-mark-tiger img {
  width: 100%;
  max-width: 150px;
  max-height: 82px;
}

.partner-mark-akzo img {
  width: 100%;
  max-width: 182px;
  max-height: 91px;
}

.partner-mark-syntha img {
  width: 100%;
  max-width: 226px;
  max-height: 58px;
}

.partner-mark-basf img {
  width: 100%;
  max-width: 174px;
  max-height: 87px;
}

.partner-mark-chemetall {
  position: relative;
  width: 185px;
  max-width: 100%;
  height: 62px;
  overflow: hidden;
  align-self: center;
  justify-self: center;
}

.partner-mark-chemetall img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  transform: translate(-50%, -50%);
}

.partner-mark-axalta img {
  width: 100%;
  max-width: 88px;
  max-height: 90px;
}

.partner-name {
  color: var(--ink);
}

.quality {
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px 110px;
}

.quality-copy h2 {
  margin-top: 28px;
}

.quality-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.salt-spray-note {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.salt-spray-note strong {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.04em;
}

.salt-spray-note span {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.45;
}

.quality-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.test-programme {
  grid-column: 1 / -1;
  padding-top: 46px;
  border-top: 1px solid var(--line-light);
}

.test-programme > p {
  color: var(--brand-light);
}

.test-programme ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.test-programme li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.test-programme li:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.test-programme li:nth-child(even) {
  padding-left: 28px;
}

.test-programme li span {
  color: var(--brand-light);
  font-family: var(--mono);
  font-size: 9px;
}

.contact-banner {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--ink);
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 26, 25, 0.45), transparent 55%, rgba(23, 26, 25, 0.3));
}

.contact-banner-copy {
  position: absolute;
  z-index: 1;
  right: 48px;
  bottom: 24px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact {
  background: var(--paper-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.contact-copy h2 {
  margin-top: 28px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 490px;
  margin: 34px 0 0;
  color: var(--muted);
}

.contact-copy > .contact-lead {
  display: grid;
  gap: 2px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-lead strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-lead span {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: color 200ms ease, padding 220ms var(--ease);
}

.direct-contact a:hover {
  padding-left: 8px;
  color: var(--brand);
}

.service-availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-availability > div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 16px 12px 0;
}

.service-availability > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.service-availability dt {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-availability dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.contact-copy > .service-availability-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.enquiry-form {
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.enquiry-form label > span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 180ms ease;
}

.enquiry-form input {
  height: 46px;
}

.enquiry-form textarea {
  min-height: 124px;
  padding: 12px 0;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand);
}

.enquiry-form input:focus-visible,
.enquiry-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.enquiry-form textarea::placeholder {
  color: var(--muted);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 54px;
  align-items: end;
  margin-top: 104px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-details .mono-label {
  display: block;
  margin-bottom: 15px;
  color: var(--brand);
}

.contact-details address,
.contact-details p {
  margin: 0;
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
}

.directions-link {
  display: inline-flex;
  gap: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  transition: gap 240ms var(--ease), color 180ms ease;
}

.directions-link:hover {
  gap: 54px;
  color: var(--brand);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
  background: #121514;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  width: max-content;
  font-size: 12px;
}

.footer-meta {
  justify-self: end;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  margin-top: 76px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
}

.preview-credit {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 980;
  display: grid;
  width: 196px;
  padding: 0.55rem 0.7rem 0.65rem;
  gap: 0.32rem;
  border: 1px solid rgba(36, 37, 95, 0.28);
  border-top: 3px solid #2d6194;
  background: rgba(255, 255, 255, 0.97);
  color: #414553;
  box-shadow: 0 12px 34px rgba(23, 25, 31, 0.18);
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.preview-credit::before {
  position: absolute;
  top: -3px;
  left: -1px;
  width: 28px;
  height: 3px;
  background: #f47721;
  content: "";
}

.preview-credit span {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.preview-credit img {
  width: 156px;
  height: auto;
}

.preview-credit:hover,
.preview-credit:focus-visible {
  border-color: #2d6194;
  box-shadow: 0 16px 38px rgba(23, 25, 31, 0.24);
  transform: translateY(-2px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease) var(--delay, 0ms), transform 700ms var(--ease) var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-scale {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

@keyframes coating-reveal {
  0%, 9% { transform: scaleX(0.01); }
  13% { transform: scaleX(0.1); }
  67%, 82% { transform: scaleX(0.9); }
  84%, 100% { transform: scaleX(0.01); }
}

@keyframes front-carriage {
  0%, 9% {
    opacity: 1;
    transform: translate(570px, -33px);
  }
  67%, 75% {
    opacity: 1;
    transform: translate(62px, 0);
  }
  82% {
    opacity: 0;
    transform: translate(62px, 0);
  }
  89% {
    opacity: 0;
    transform: translate(570px, -33px);
  }
  95%, 100% {
    opacity: 1;
    transform: translate(570px, -33px);
  }
}

@keyframes workpiece-cycle {
  0% {
    opacity: 1;
    transform: translateX(-7px);
  }
  78% {
    opacity: 1;
    transform: translateX(7px);
  }
  83% {
    opacity: 0;
    transform: translateX(16px);
  }
  89% {
    opacity: 0;
    transform: translateX(-16px);
  }
  95%, 100% {
    opacity: 1;
    transform: translateX(-7px);
  }
}

@keyframes conveyor-feed {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

@keyframes spray-cycle {
  0%, 9% { opacity: 0; }
  13%, 67% { opacity: 1; }
  74% { opacity: 0.2; }
  81%, 100% { opacity: 0; }
}

@keyframes powder-haze-breathe {
  from {
    opacity: 0.66;
    transform: scaleX(0.9) scaleY(0.94);
  }
  to {
    opacity: 0.9;
    transform: scaleX(1.05) scaleY(1.08);
  }
}

@keyframes powder-core-breathe {
  from {
    opacity: 0.6;
    transform: scaleX(0.92) scaleY(0.96);
  }
  to {
    opacity: 0.88;
    transform: scaleX(1.03) scaleY(1.06);
  }
}

@keyframes powder-contact-pulse {
  from {
    opacity: 0.28;
    transform: scaleX(0.86) scaleY(0.72);
  }
  to {
    opacity: 0.54;
    transform: scaleX(1.08) scaleY(1.16);
  }
}

@keyframes powder-stream {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 16; }
}

@keyframes front-powder-particle {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  18% {
    opacity: 0.86;
  }
  72% {
    opacity: 0.54;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--particle-x), -48px, 0) scale(1.18);
  }
}

@keyframes extraction-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 14; }
}

@keyframes line-flow {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 1200px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 330px;
    gap: 52px;
  }

  .section-intro {
    grid-template-columns: 0.3fr 1.2fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .capability-copy {
    padding: 50px;
  }

  .process-layout,
  .finish-layout {
    gap: 72px;
  }

  .quality-grid {
    gap: 72px 64px;
  }

  .partners-layout {
    gap: 64px;
  }

  .partner-card {
    --partner-card-inline: 16px;
  }

  .partner-board {
    grid-auto-rows: 210px;
  }

  .contact-grid {
    gap: 72px;
  }

  .enquiry-form {
    padding: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 760px);
    --header-height: 74px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100svh - var(--header-height));
    display: grid;
    align-content: center;
    padding: 36px max(20px, calc((100vw - min(100% - 40px, 760px)) / 2));
    background: rgba(18, 21, 20, 0.98);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 440ms var(--ease), opacity 250ms ease, visibility 440ms;
  }

  .site-header.is-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--serif);
    font-size: clamp(2.1rem, 7vw, 3.6rem);
    line-height: 1.1;
  }

  .mobile-nav a span {
    color: var(--accent);
    font-family: var(--mono);
    font-size: 9px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 130px;
    padding-bottom: 142px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero h1 {
    max-width: 730px;
  }

  .line-spec {
    display: block;
    width: min(100%, 620px);
    align-self: auto;
    justify-self: end;
    margin: 0;
  }

  .hero-inner {
    min-height: max(100svh, 1080px);
    gap: 64px;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 110px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro > p:last-child {
    grid-column: auto;
    max-width: 580px;
  }

  .capability,
  .capability-reverse {
    grid-template-columns: 1fr;
  }

  .capability figure,
  .capability-reverse figure {
    grid-column: 1;
    grid-row: 1;
    min-height: 460px;
  }

  .capability-copy,
  .capability-reverse .capability-copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 400px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .process-layout,
  .about-grid,
  .finish-layout,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .stage-list {
    margin-top: 18px;
  }

  .about-grid {
    gap: 72px;
  }

  .about-image {
    min-height: 620px;
  }

  .finish-layout {
    gap: 72px;
  }

  .finish-studio {
    max-width: 720px;
  }

  .partners-layout {
    flex-direction: column;
    gap: 72px;
  }

  .partners-copy {
    position: static;
    flex: 0 1 auto;
    max-width: 650px;
  }

  .partner-board {
    flex: 0 1 auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quality-grid {
    gap: 72px;
  }

  .quality-copy {
    max-width: 650px;
  }

  .quality-visual {
    min-height: 660px;
  }

  .test-programme {
    grid-column: auto;
  }

  .contact-grid {
    gap: 72px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .directions-link {
    width: max-content;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 2;
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 760px) {
  .preview-credit {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    padding: 0.55rem 16px 0.6rem;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    box-shadow: none;
  }

  .preview-credit span {
    font-size: 0.52rem;
  }

  .preview-credit img {
    width: 112px;
  }

  .preview-credit:hover,
  .preview-credit:focus-visible {
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    min-height: 770px;
  }

  .hero-inner {
    min-height: max(100svh, 1020px);
    gap: 48px;
  }

  .line-spec {
    padding-left: 12px;
  }

  .coating-visual {
    height: 150px;
  }

  .application-state,
  .spec-readout {
    display: none;
  }

  .line-status {
    gap: 7px;
    font-size: 7px;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 15, 14, 0.94), rgba(12, 15, 14, 0.58));
  }

  .hero-inner {
    min-height: 770px;
    padding-top: 130px;
  }

  .hero-copy {
    min-width: 0;
  }

  .eyebrow {
    position: relative;
    display: block;
    max-width: 100%;
    padding-left: 17px;
  }

  .eyebrow span {
    position: absolute;
    top: 0.4em;
    left: 0;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 24px;
    font-size: clamp(3rem, 15vw, 5.6rem);
    line-height: 0.88;
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .hero-foot {
    bottom: 22px;
  }

  .hero-foot p {
    display: none;
  }

  .hero-foot {
    grid-template-columns: 1fr auto;
  }

  .proof-item {
    min-height: 154px;
    padding: 26px 18px;
  }

  .proof-item strong {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .proof-item span {
    margin-top: 13px;
    font-size: 10px;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro h2,
  .process h2,
  .about h2,
  .finishes h2,
  .partners h2,
  .quality h2,
  .contact h2 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .capability figure,
  .capability-reverse figure {
    min-height: 300px;
  }

  .capability-copy,
  .capability-reverse .capability-copy {
    min-height: 380px;
    padding: 38px 24px;
  }

  .capability h3 {
    font-size: 2.8rem;
  }

  .process-layout {
    gap: 64px;
  }

  .stage {
    min-height: 100px;
    grid-template-columns: 54px 1fr;
  }

  .stage h3 {
    font-size: 23px;
  }

  .about-image {
    min-height: 480px;
  }

  .about-lede {
    font-size: 21px;
  }

  .finish-controls {
    grid-template-columns: 1fr;
  }

  .finish-controls button,
  .finish-controls button:nth-child(even) {
    border-right: 0;
  }

  .finish-stage {
    min-height: 570px;
  }

  .finish-samples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 24px);
    padding: 28px 2px 92px;
    gap: 22px 10px;
  }

  .etc457-graphic {
    width: min(100%, 170px);
    margin-inline: auto;
  }

  .finish-sample figcaption {
    margin-top: 6px;
  }

  .finish-stage-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .finish-stage-footer small {
    max-width: none;
    text-align: left;
  }

  .finish-meta {
    grid-template-columns: 1fr;
  }

  .finish-meta > div,
  .finish-meta > div:last-child {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .finish-meta > div:last-child {
    border-bottom: 0;
  }

  .partner-scope {
    margin-top: 36px;
  }

  .partner-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 184px;
    box-shadow: 14px 16px 0 rgba(23, 26, 25, 0.045);
  }

  .partner-card:nth-child(3),
  .partner-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .partner-card {
    --partner-card-inline: 14px;
    padding: 16px var(--partner-card-inline) 14px;
  }

  .partner-mark {
    min-height: 108px;
  }

  .partner-mark-syntha img {
    max-width: 100%;
    max-height: 50px;
  }

  .partner-mark-chemetall {
    width: 170px;
    height: 57px;
  }

  .partner-mark-axalta img {
    max-width: 72px;
    max-height: 72px;
  }

  .quality-visual {
    min-height: 440px;
  }

  .salt-spray-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .test-programme ol {
    grid-template-columns: 1fr;
  }

  .test-programme li:nth-child(odd) {
    border-right: 0;
  }

  .test-programme li:nth-child(even) {
    padding-left: 0;
  }

  .contact-banner {
    height: 230px;
  }

  .contact-banner-copy {
    right: 16px;
    bottom: 12px;
    left: 16px;
  }

  .contact-banner-copy span:last-child {
    display: none;
  }

  .enquiry-form {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-availability {
    grid-template-columns: 1fr;
  }

  .service-availability > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 74px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom a {
    width: max-content;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .moving-workpiece,
  .coating-reveal-mask,
  .front-spray-rig,
  .front-powder-cloud,
  .powder-haze,
  .powder-contact,
  .conveyor-dashes,
  .powder-streams path,
  .powder-extraction path:last-child {
    animation: none !important;
  }

  .moving-workpiece {
    opacity: 1;
    transform: none;
  }

  .coating-reveal-mask {
    transform: scaleX(0.52);
  }

  .front-spray-rig {
    opacity: 1;
    transform: translate(320px, -17px);
  }

  .front-powder-cloud {
    opacity: 0.66;
  }

  .powder-particles {
    display: none;
  }
}
