/* ═══════════════════════════════════════════════════════════════════════════
   ORANGE FILTERS & INDUSTRIAL — v2.1 "HAUL"
   ───────────────────────────────────────────────────────────────────────────
   A committed dark aesthetic, not a theme that flips: black ground, oversized
   condensed display type, real photography, orange as the only accent. Lifted
   from the company's own campaign banners rather than invented.

   1. Tokens      5. Hero + motion    9. Contact & forms
   2. Base        6. Sections        10. Footer
   3. Layout      7. Products        11. Responsive
   4. Header      8. Industries      12. Reduced motion / print
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ───────────────────────────────────────────────────────────── */
:root {
  /* Brand, sampled from the logo file */
  --orange: #f0882a;
  --orange-hi: #ffa552;
  --orange-lo: #d9741a;
  --navy: #1b3080;
  --navy-hi: #2a4099;

  /* Ground — near-black, faintly cool so photography sits on it cleanly */
  --ink-900: #08090c;
  --ink-850: #0b0d12;
  --ink-800: #12151c;
  --ink-700: #1a1f28;
  --ink-600: #232a35;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.2);

  --text: #ffffff;
  --soft: #b6bcc6;   /* body copy on dark      — 12.4:1 */
  --muted: #9aa0aa;  /* secondary copy         —  8.6:1 */
  --faint: #80868f;  /* labels, meta           —  5.6:1 */

  --danger: #ff8f83;
  --danger-bg: rgba(180, 35, 24, 0.16);
  --success: #5fd39b;
  --success-bg: rgba(6, 118, 71, 0.18);

  /* Type — Anton for display, Barlow for everything else */
  --display: Anton, 'Arial Narrow', Impact, sans-serif;
  --body: Barlow, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(3.25rem, 8.4vw, 7.25rem);
  --fs-h1: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.625rem);
  --fs-lead: clamp(1.0625rem, 1.4vw, 1.1875rem);
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-2xs: 0.6875rem;

  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 2.5rem; --sp-8: 3rem;
  --sp-9: 4rem;   --sp-10: 5rem;

  --section-y: clamp(3.75rem, 7.5vw, 6.75rem);
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 200ms;

  /* Masthead min-height plus its 1px bottom border. The filter bar parks
     directly beneath it, and in-page anchors clear both. */
  --masthead-h: calc(5rem + 1px);
}

/* ── 2. Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--masthead-h) + 1rem);
}

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--soft);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .88;
  /* Anton is already condensed, so a little positive tracking stops set-caps
     headings from reading as one solid block. Scales with font-size because it
     is in em, so the hero and a card title stay in proportion. */
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  text-wrap: balance;
}

p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; }
address { font-style: normal; }
abbr[title] { text-decoration: none; }

a { color: var(--orange); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-hi); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: var(--ink-900); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -100px; left: var(--sp-4); z-index: 300;
  padding: var(--sp-3) var(--sp-5);
  background: var(--orange); color: var(--ink-900);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--ink-900); }

/* Interface icons */
.icon { width: 1.25rem; height: 1.25rem; flex: none; fill: none; stroke: currentColor;
        stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--xs { width: .875rem; height: .875rem; }
.icon--solid { fill: currentColor; stroke: none; }

/* Brand marks — filled octagon aperture with a knocked-through glyph */
.mark { width: 3rem; height: 3rem; flex: none; }
.mark .mark__ap { fill: var(--orange); }
.mark .mark__gl { stroke: var(--ink-900); }
.mark--sm { width: 2rem; height: 2rem; }
.mark--lg { width: 4rem; height: 4rem; }
.mark--navy .mark__ap { fill: var(--navy); }
.mark--navy .mark__gl { stroke: #fff; }
.mark--ghost .mark__ap { fill: var(--ink-700); }
.mark--ghost .mark__gl { stroke: var(--orange); }

/* ── 3. Layout ───────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--ink-850); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Small orange-ruled label used above every section heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-2xs); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange);
}
.eyebrow::before { content: ''; width: 34px; height: 3px; background: var(--orange); flex: none; }

.sectionhead { max-width: 54rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.sectionhead__title { font-size: var(--fs-h2); }
.sectionhead__lead { margin-top: var(--sp-4); font-size: var(--fs-lead); color: var(--muted); max-width: 44rem; }
.sectionhead--split { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-8); max-width: none; }
.sectionhead--split .sectionhead__lead { margin-top: 0; max-width: 24rem; }

.section__more { margin-top: var(--sp-8); }

/* ── 4. Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: .9375rem 1.625rem;
  font-family: var(--body); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent; background: transparent; color: var(--text);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn .icon { transition: transform var(--dur) var(--ease); }
.btn:hover .icon:last-child { transform: translateX(3px); }

.btn--primary { background: var(--orange); border-color: var(--orange); color: var(--ink-900); }
.btn--primary:hover { background: var(--orange-hi); border-color: var(--orange-hi); color: var(--ink-900); }

.btn--outline { border-color: var(--line-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--orange); background: rgba(240,136,42,.14); color: var(--text); }

.btn--ghost { color: var(--muted); }
.btn--ghost:hover { color: var(--orange); }

.btn--lg { padding: 1.0625rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* ── 5. Header ───────────────────────────────────────────────────────────── */
.utilitybar {
  background: #000; border-bottom: 1px solid var(--line);
  font-size: var(--fs-2xs); letter-spacing: .1em; text-transform: uppercase; color: var(--faint);
}
.utilitybar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); min-height: 2.375rem; flex-wrap: wrap; }
.utilitybar__promise { display: flex; align-items: center; gap: var(--sp-3); }
.utilitybar__promise span:first-child { color: var(--orange); font-weight: 700; }
.utilitybar__promise i { color: var(--orange); font-style: normal; }
.utilitybar__contact { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.utilitybar__contact a, .utilitybar__hours { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--faint); text-decoration: none; }
.utilitybar__contact a:hover { color: var(--orange); }
.utilitybar__contact li:last-child a { color: var(--text); font-weight: 700; }
.utilitybar .icon { width: .875rem; height: .875rem; color: var(--orange); }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,12,.86); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.masthead.is-stuck { box-shadow: 0 12px 30px rgba(0,0,0,.6); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); min-height: 5rem; }

.logo { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.logo__img { height: 2.5rem; width: auto; max-width: min(15rem, 54vw); object-fit: contain; object-position: left center; }
.logo--footer .logo__img { height: 2.875rem; max-width: 17rem; }

.primarynav { display: flex; align-items: center; gap: var(--sp-7); }
.primarynav__list { display: flex; align-items: center; gap: var(--sp-5); }
.primarynav__link {
  position: relative; display: block; padding: var(--sp-2) 0;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.primarynav__link:hover, .primarynav__link.is-active { color: var(--text); }
.primarynav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--orange);
}
.primarynav__actions { display: flex; align-items: center; gap: var(--sp-3); }
.primarynav__actions .btn { padding: .75rem 1.25rem; font-size: var(--fs-2xs); }

.navtoggle {
  display: none; align-items: center; justify-content: center;
  width: 2.875rem; height: 2.875rem;
  border: 2px solid var(--line-strong); background: transparent; cursor: pointer; color: var(--text);
}
.navtoggle__close { display: none; }
.navtoggle[aria-expanded='true'] .navtoggle__open { display: none; }
.navtoggle[aria-expanded='true'] .navtoggle__close { display: block; }

.nav-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.62); }
.nav-scrim[hidden] { display: none; }

/* ── 6. Hero + motion ────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-850); }

.hero__media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 42%; opacity: .55;
  transition: opacity 900ms var(--ease);
}
/* Once the video is actually playing the still steps aside, so the two are
   never both half-visible at once. */
.hero__media.is-videoready img { opacity: 0; }

/* The video sits directly over the still, matched to it, and fades in only
   once it can actually play — so a slow or refused load leaves the poster in
   place rather than flashing a black box.

   It is laid out taller than its box and anchored to the top, so the bottom
   --hero-video-crop is clipped away. That is what removes the generator
   watermark burned into the corner of the clip; the hero already crops with
   object-fit: cover, so nothing about the framing changes. */
.hero__media video {
  position: absolute; top: 0; left: 0;
  width: 100%;
  height: calc(100% + var(--hero-video-crop, 0%));
  object-fit: cover; object-position: 72% 42%;
  opacity: 0;
  transition: opacity 900ms var(--ease);
  pointer-events: none;
}
.hero__media video.is-ready { opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  .hero__media video { display: none; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(97deg, var(--ink-900) 28%, rgba(8,9,12,.88) 48%, rgba(8,9,12,.15) 82%);
}
/* The angled orange plate on the right edge — the banner motif, tightened. */
.hero__wedge {
  position: absolute; z-index: -1; top: 0; right: 0; width: 260px; height: 100%;
  background: var(--orange); clip-path: polygon(56% 0, 100% 0, 100% 100%, 0 100%); opacity: .92;
}

.hero__inner { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(6rem, 9vw, 8rem); max-width: 50rem; }

.hero__title { font-size: var(--fs-hero); line-height: .86; }
.hero__title .accent { color: var(--orange); }

/* Pleat-wipe reveal: each line rises out of its own clipped band, and an
   orange comb sweeps across once, like media unfolding. */
/* Both hero animations are written to FAIL VISIBLE: the resting state is the
   finished state, and the keyframes travel from the hidden position to it.
   If the animation is never scheduled — a paused tab, an old engine, a
   blocked stylesheet — the headline is simply already in place rather than
   stranded off-screen behind a striped overlay. */
.js .hero__line { display: block; overflow: hidden; }
.js .hero__line > span {
  display: block;
  animation: pleatRise .82s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 110ms + 120ms);
}
@keyframes pleatRise { from { transform: translateY(108%); } to { transform: none; } }

.js .hero__comb {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  background: repeating-linear-gradient(90deg,
    var(--orange) 0 6px, transparent 6px 22px);
  transform-origin: left center;
  animation: combSweep 1.05s var(--ease) 1;
}
@keyframes combSweep {
  0%   { opacity: .9; clip-path: inset(0 100% 0 0); }
  55%  { opacity: .55; clip-path: inset(0 0 0 0); }
  100% { opacity: 0;   clip-path: inset(0 0 0 100%); }
}

.hero__lead { margin-top: var(--sp-6); max-width: 32rem; font-size: var(--fs-lead); color: var(--soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-8); }

.promisestrip {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-7);
  margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--line-strong);
}
.promisestrip li { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.promisestrip .icon { color: var(--orange); }

/* Airflow streamlines — a continuous, near-subliminal wind-tunnel trace. */
.hero__flow { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.hero__flow path { fill: none; stroke: var(--orange); stroke-width: 1.4; stroke-linecap: round; }
.js .hero__flow path {
  stroke-dasharray: 90 460;
  animation: flowDrift 9s linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes flowDrift { from { stroke-dashoffset: 550; } to { stroke-dashoffset: 0; } }

/* Stat rail across the base of the hero */
.statbar { position: relative; border-top: 1px solid var(--line-strong); background: rgba(0,0,0,.34); }
.statbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: var(--sp-5) var(--sp-4) var(--sp-6); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat__value { display: block; font-family: var(--display); font-size: clamp(1.875rem, 3.4vw, 2.75rem); line-height: 1; color: var(--orange); }
.stat__label { display: block; margin-top: var(--sp-2); font-size: var(--fs-2xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.pagehero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-850); padding-block: clamp(2.5rem, 5vw, 4.25rem); }
.pagehero__media { position: absolute; inset: 0; z-index: -2; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.pagehero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--ink-900) 34%, rgba(8,9,12,.7) 100%);
}
.pagehero__title { font-size: var(--fs-h1); margin-top: var(--sp-4); }
.pagehero__lead { margin-top: var(--sp-4); max-width: 44rem; font-size: var(--fs-lead); color: var(--soft); }
.pagehero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: var(--fs-2xs); letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb li { color: var(--faint); }
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); color: var(--orange); }
.breadcrumb a { color: var(--faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

/* ── 7. Brands ───────────────────────────────────────────────────────────── */
.brandband { padding-block: var(--sp-7); background: var(--ink-900); border-bottom: 1px solid var(--line); }
.brandband__inner { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.brandband__heading { font-family: var(--body); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); flex: none; }
.brandband__list { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6); align-items: center; }
/* Brand names are content, not ornament — they sit at --faint (5.4:1) rather
   than the dimmer grey a decorative row could get away with. */
.brandchip { font-family: var(--display); font-size: 1.3125rem; letter-spacing: .01em; color: var(--faint); text-transform: uppercase; transition: color var(--dur) var(--ease); }
.brandchip:hover { color: var(--text); }
.brandchip--sm { font-size: 1rem; }

/* ── 8. Cards ────────────────────────────────────────────────────────────── */
.cardgrid { display: grid; gap: var(--sp-5); }
.cardgrid--3 { grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-800); border: 1px solid var(--line); overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.card__media { position: relative; height: 13rem; background: var(--ink-900); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__no {
  position: absolute; top: 0; left: 0; padding: .5rem .875rem;
  background: var(--orange); color: var(--ink-900);
  font-family: var(--display); font-size: var(--fs-xs); letter-spacing: .12em;
}
.card__body { padding: var(--sp-6) var(--sp-5) var(--sp-6); display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }
.card__text { font-size: var(--fs-sm); color: var(--muted); }
.card__list { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.card__list li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--muted); }
.card__list .icon { color: var(--orange); margin-top: .3125rem; }
.card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-5);
  font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
}
.card:hover .card__link .icon { transform: translateX(3px); }
.card__link .icon { transition: transform var(--dur) var(--ease); }

/* Value cards use the brand mark instead of a photo */
.card--value { padding: var(--sp-6); }
.card--value .card__title { margin-top: var(--sp-5); }

/* ── 9. Filter cutaway (scroll-triggered explainer) ──────────────────────── */
.cutaway { background: var(--ink-850); border-block: 1px solid var(--line); }
.cutaway__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cutaway__stage { position: relative; aspect-ratio: 16 / 10; background: var(--ink-900); border: 1px solid var(--line); overflow: hidden; }
.cutaway__svg { width: 100%; height: 100%; }
.cutaway__caption { display: flex; gap: var(--sp-5); margin-top: var(--sp-5); }
.cutaway__key { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--muted); }
.cutaway__swatch { width: 12px; height: 12px; flex: none; }

.cut-media { fill: none; stroke: var(--ink-600); stroke-width: 2; }
.cut-pleat { stroke: #39424f; stroke-width: 2; fill: none; }
.cut-shell { fill: none; stroke: var(--line-strong); stroke-width: 2; }
.cut-dirty { fill: #7c828c; }
.cut-clean { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; }
.cut-caught { fill: var(--orange-lo); opacity: 0; }

/* Nothing moves until the section is actually on screen. */
.js .cutaway.is-revealed .cut-dirty { animation: dirtyIn 3.4s linear infinite; animation-delay: var(--d, 0s); }
.js .cutaway.is-revealed .cut-clean { stroke-dasharray: 40 160; animation: cleanOut 3s linear infinite; animation-delay: var(--d, 0s); }
.js .cutaway.is-revealed .cut-caught { animation: caughtUp 3.4s linear infinite; animation-delay: var(--d, 0s); }

@keyframes dirtyIn {
  0%   { transform: translateX(0);    opacity: 0; }
  12%  { opacity: 1; }
  78%  { transform: translateX(150px); opacity: 1; }
  86%  { transform: translateX(158px); opacity: 0; }
  100% { transform: translateX(158px); opacity: 0; }
}
@keyframes cleanOut { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
@keyframes caughtUp { 0%, 70% { opacity: 0; } 88% { opacity: .9; } 100% { opacity: .35; } }

/* ── 10. Process ─────────────────────────────────────────────────────────── */
.processlist { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)); gap: var(--sp-6); }
.processstep { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--line-strong); }
.processstep::before { content: ''; position: absolute; top: -2px; left: 0; width: 3rem; height: 2px; background: var(--orange); }
.processstep__num { font-family: var(--display); font-size: 2.25rem; line-height: 1; color: var(--orange); }
.processstep__title { font-size: var(--fs-h3); margin: var(--sp-3) 0 var(--sp-2); }
.processstep__body { font-size: var(--fs-sm); color: var(--muted); }

/* ── 11. Bands ───────────────────────────────────────────────────────────── */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--ink-900) 24%, rgba(8,9,12,.6) 64%, rgba(8,9,12,.86) 100%); }
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(3rem, 6vw, 5rem); flex-wrap: wrap; }
.band__text { max-width: 30rem; }
.band__title { font-size: var(--fs-h2); }
.band__body { margin-top: var(--sp-4); color: var(--soft); }
.band__tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2); width: min(26rem, 100%); }
.band__tile { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3) var(--sp-4); background: rgba(255,255,255,.07); border-left: 3px solid var(--orange); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); text-decoration: none; transition: background var(--dur) var(--ease); }
.band__tile:hover { background: rgba(240,136,42,.18); color: var(--text); }
.band__tile .mark { width: 1.75rem; height: 1.75rem; }

/* ── 12. Portal band ─────────────────────────────────────────────────────── */
.portalband { position: relative; background: var(--navy); overflow: hidden; }
.portalband::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 120% at 92% 50%, rgba(240,136,42,.28), transparent 68%); pointer-events: none; }
.portalband__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: var(--section-y); }
.portalband .eyebrow { color: var(--orange); }
.portalband__title { font-size: var(--fs-h2); }
.portalband__body { margin-top: var(--sp-4); font-size: var(--fs-lead); color: #c3cbe8; max-width: 34rem; }
.portalband__points { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6); margin-top: var(--sp-5); }
.portalband__points li { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); font-weight: 600; color: #fff; }
.portalband__points .icon { color: var(--orange); }
.portalband__actions { display: grid; gap: var(--sp-4); justify-items: start; }
.portalband__note { font-size: var(--fs-sm); color: #c3cbe8; }
.portalband__note a { color: var(--orange); }

/* ── 13. CTA ─────────────────────────────────────────────────────────────── */
.cta { background: var(--ink-900); border-top: 1px solid var(--line); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); padding-block: clamp(2.75rem, 5vw, 4.25rem); flex-wrap: wrap; }
.cta__title { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta__body { margin-top: var(--sp-3); color: var(--muted); max-width: 34rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ── 14. Products ────────────────────────────────────────────────────────── */
.filterbar { position: sticky; top: var(--masthead-h); z-index: 60; background: rgba(8,9,12,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.filterbar__inner { display: grid; gap: var(--sp-4); padding-block: var(--sp-4); }
.filterbar__search { position: relative; }
.filterbar__searchicon { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }
.filterbar__search input {
  width: 100%; padding: .8125rem .875rem .8125rem 2.625rem;
  font: inherit; font-size: var(--fs-sm); color: var(--text);
  background: var(--ink-800); border: 1px solid var(--line-strong);
}
.filterbar__search input::placeholder { color: var(--faint); }
.filterbar__search input:focus { outline: none; border-color: var(--orange); }

.filterbar__chips, .jumpbar__list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: .5rem .875rem; font-size: var(--fs-2xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: var(--ink-800); border: 1px solid var(--line);
  cursor: pointer; text-decoration: none; transition: all var(--dur) var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.is-active { background: var(--orange); border-color: var(--orange); color: var(--ink-900); }
.chip .mark { width: 1.125rem; height: 1.125rem; }
.chip.is-active .mark .mark__ap { fill: var(--ink-900); }
.chip.is-active .mark .mark__gl { stroke: var(--orange); }

.jumpbar { padding-block: var(--sp-5); border-bottom: 1px solid var(--line); }

.catalogue { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); gap: var(--sp-5); }
.prodcat { display: flex; flex-direction: column; background: var(--ink-800); border: 1px solid var(--line); scroll-margin-top: 10rem; overflow: hidden; transition: border-color var(--dur) var(--ease); }
.prodcat:hover { border-color: var(--line-strong); }
.prodcat[hidden] { display: none; }
.prodcat:target { border-color: var(--orange); }
/* The plates are pre-composited on the dark ground (see
   scripts/build-product-plates.py), so the media strip no longer needs a white
   backing — that white was what made the old cards read as holes in the page. */
.prodcat__media { height: 11rem; background: var(--ink-900); overflow: hidden; }
.prodcat__media img { width: 100%; height: 100%; object-fit: cover; }

/* Stand-in for a category we hold no photograph for: the same plate gradient
   and glow as a real product shot, with the category mark in place of one. */
.prodcat__media--mark {
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse 62% 74% at 50% 56%, rgba(240,136,42,.14), transparent 70%),
    linear-gradient(180deg, #14181f, #0a0c11);
  border-bottom: 1px solid var(--line);
}
.mark--plate { width: 4.5rem; height: 4.5rem; opacity: .9; }
.prodcat__head { display: flex; gap: var(--sp-4); align-items: flex-start; padding: var(--sp-5) var(--sp-5) var(--sp-4); }
.prodcat__title { font-size: var(--fs-h3); }
.prodcat__blurb { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--muted); }
.prodcat__items { display: grid; gap: var(--sp-2); padding: 0 var(--sp-5); }
.prodcat__items li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--soft); }
.prodcat__items .icon { color: var(--orange); margin-top: .3125rem; flex: none; }
.prodcat__brands { margin: var(--sp-5) var(--sp-5) 0; padding-top: var(--sp-4); border-top: 1px solid var(--line); }
.prodcat__brandslabel { font-family: var(--body); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: var(--sp-3); }
.prodcat__brands ul { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }
.prodcat__cta { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: auto; padding: var(--sp-5); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); text-decoration: none; }
.prodcat__cta:hover .icon { transform: translateX(3px); }
.prodcat__cta .icon { transition: transform var(--dur) var(--ease); }

.catalogue__empty { margin-top: var(--sp-7); padding: var(--sp-8); text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); }
.catalogue__empty[hidden] { display: none; }

/* ── 15. Panels & industries ─────────────────────────────────────────────── */
.panel { padding: clamp(1.75rem, 4vw, 3rem); background: var(--ink-800); border: 1px solid var(--line); }
.panel--split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.panel__title { font-size: var(--fs-h2); }
.panel__body { margin-block: var(--sp-4) var(--sp-6); color: var(--muted); }
.panel__brands { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-content: center; }

.industrystack { display: grid; gap: var(--sp-5); }
.industry { display: grid; grid-template-columns: 6rem 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); padding: clamp(1.5rem, 3.5vw, 2.5rem); background: var(--ink-800); border: 1px solid var(--line); scroll-margin-top: 7.5rem; transition: border-color var(--dur) var(--ease); }
.industry:hover, .industry:target { border-color: var(--orange); }
.industry__aside { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.industry__index { font-family: var(--display); font-size: 1.5rem; color: var(--ink-600); }
.industry__title { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.industry__summary { margin-top: var(--sp-3); font-size: var(--fs-lead); font-weight: 500; color: var(--text); }
.industry__detail { margin-top: var(--sp-3); color: var(--muted); }
.industry__points { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr)); gap: var(--sp-2) var(--sp-5); margin-top: var(--sp-5); }
.industry__points li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--soft); }
.industry__points .icon { color: var(--orange); margin-top: .25rem; flex: none; }
.industry__cta { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); text-decoration: none; }
.industry__cta:hover .icon { transform: translateX(3px); }
.industry__cta .icon { transition: transform var(--dur) var(--ease); }

/* ── 16. About ───────────────────────────────────────────────────────────── */
.prose-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose { display: grid; gap: var(--sp-5); font-size: var(--fs-lead); color: var(--muted); }
.prose__promise { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); margin-top: var(--sp-3); padding-top: var(--sp-5); border-top: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.375rem, 2.6vw, 1.875rem); color: var(--text); text-transform: uppercase; }
.prose__promise span { color: var(--orange); }

.factcard { padding: var(--sp-6); background: var(--ink-800); border: 1px solid var(--line); position: sticky; top: 7rem; }
.factcard__title { font-size: var(--fs-h3); margin-bottom: var(--sp-5); }
.factcard__list { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.factcard__list dt { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.factcard__list dd { margin-top: var(--sp-1); font-size: var(--fs-sm); font-weight: 500; color: var(--text); }

.faq { display: grid; gap: var(--sp-2); }
.faq__item { background: var(--ink-800); border: 1px solid var(--line); transition: border-color var(--dur) var(--ease); }
.faq__item[open] { border-color: var(--line-strong); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); font-weight: 600; color: var(--text); cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange); }
.faq__marker { display: inline-flex; flex: none; color: var(--orange); transition: transform var(--dur) var(--ease); }
.faq__item[open] .faq__marker { transform: rotate(180deg); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); font-size: var(--fs-sm); color: var(--muted); }

/* ── 17. Contact & forms ─────────────────────────────────────────────────── */
.contactlayout { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contactform { padding: clamp(1.5rem, 3.5vw, 2.5rem); background: var(--ink-800); border: 1px solid var(--line); scroll-margin-top: 6.5rem; }
.contactform__title { font-size: var(--fs-h2); }
.contactform__intro { margin-block: var(--sp-3) var(--sp-6); font-size: var(--fs-sm); color: var(--muted); }

.form { display: grid; gap: var(--sp-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form__hint { margin-top: calc(var(--sp-4) * -1); font-size: var(--fs-xs); color: var(--faint); }
.form__privacy { font-size: var(--fs-xs); color: var(--faint); text-align: center; }

.form__mailnote { margin-top: calc(var(--sp-4) * -1); padding: var(--sp-3) var(--sp-4); font-size: var(--fs-xs); color: var(--soft); text-align: center; background: rgba(240,136,42,.12); border-left: 3px solid var(--orange); }
.form__mailnote[hidden] { display: none; }
.form__mailnote strong { color: var(--text); }

.field { display: grid; gap: var(--sp-2); }
.field__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.req { color: var(--orange); margin-left: 2px; }

.field__input {
  width: 100%; padding: .8125rem .875rem; font: inherit; font-size: var(--fs-sm);
  color: var(--text); background: var(--ink-900); border: 1px solid var(--line-strong);
  transition: border-color var(--dur) var(--ease);
}
.field__input::placeholder { color: var(--faint); }
.field__input:focus { outline: none; border-color: var(--orange); }
.field__input.has-error { border-color: var(--danger); }
.field__textarea { resize: vertical; min-height: 9.5rem; line-height: 1.6; }
.field__selectwrap { position: relative; }
.field__select { appearance: none; padding-right: 2.5rem; cursor: pointer; }
.field__selecticon { position: absolute; right: .875rem; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }
.field__error { font-size: var(--fs-xs); font-weight: 500; color: var(--danger); }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.errorsummary { padding: var(--sp-4) var(--sp-5); margin-bottom: var(--sp-5); background: var(--danger-bg); border-left: 4px solid var(--danger); }
.errorsummary__title { font-family: var(--body); font-size: var(--fs-sm); font-weight: 700; color: var(--danger); margin-bottom: var(--sp-2); }
.errorsummary ul { display: grid; gap: var(--sp-1); list-style: disc; padding-left: var(--sp-5); }
.errorsummary li, .errorsummary a { font-size: var(--fs-sm); color: var(--danger); }

.successpanel { text-align: center; padding-block: var(--sp-5); }
.successpanel__icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; margin-bottom: var(--sp-5); background: var(--success-bg); color: var(--success); }
.successpanel__icon .icon { width: 1.75rem; height: 1.75rem; stroke-width: 2.4; }
.successpanel__title { font-size: var(--fs-h2); }
.successpanel__body { margin-block: var(--sp-4) var(--sp-6); color: var(--muted); }
.successpanel__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

.mailtofallback { display: flex; gap: var(--sp-4); margin-top: var(--sp-6); padding: var(--sp-5); background: var(--success-bg); border-left: 4px solid var(--success); }
.mailtofallback[hidden] { display: none; }
.mailtofallback__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; flex: none; background: var(--ink-900); color: var(--success); }
.mailtofallback__title { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.mailtofallback__body { font-size: var(--fs-sm); color: var(--muted); }
.mailtofallback__body + .mailtofallback__body { margin-top: var(--sp-2); }
.mailtofallback__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); }

.contactdetails { display: grid; gap: var(--sp-5); }
.contactcards { display: grid; gap: var(--sp-2); }
.contactcard { display: flex; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); background: var(--ink-800); border: 1px solid var(--line); }
.contactcard__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; flex: none; background: var(--ink-900); color: var(--orange); }
.contactcard__label { font-family: var(--body); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 2px; }
.contactcard__value { font-weight: 600; font-size: var(--fs-sm); color: var(--text); text-decoration: none; }
a.contactcard__value:hover { color: var(--orange); }

.portalcard { padding: var(--sp-6); background: var(--navy); }
.portalcard__title { font-size: var(--fs-h3); }
.portalcard__body { margin-block: var(--sp-3) var(--sp-5); font-size: var(--fs-sm); color: #c3cbe8; }

.mapcard { padding: var(--sp-5); background: var(--ink-800); border: 1px solid var(--line); }
.mapcard__title { font-size: var(--fs-h3); margin-bottom: var(--sp-4); }
.mapcard__frame { aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--line); background: var(--ink-700); }
.mapcard__frame iframe { width: 100%; height: 100%; border: 0; }
.mapcard__note { margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--muted); }

/* ── 18. Error pages ─────────────────────────────────────────────────────── */
.errorpage { position: relative; isolation: isolate; min-height: 68vh; display: grid; place-items: center; overflow: hidden; }
.errorpage__media { position: absolute; inset: 0; z-index: -2; }
.errorpage__media img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.errorpage::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(8,9,12,.65), var(--ink-900) 78%); }
.errorpage__inner { text-align: center; padding-block: var(--sp-10); }
.errorpage__code { font-family: var(--display); font-size: clamp(5rem, 18vw, 11rem); line-height: .85; color: transparent; -webkit-text-stroke: 2px rgba(240,136,42,.6); margin-bottom: var(--sp-4); }
.errorpage__title { font-size: var(--fs-h1); }
.errorpage__body { margin: var(--sp-4) auto 0; max-width: 34rem; color: var(--muted); }
.errorpage__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-7); }
.errorpage__links { display: flex; flex-wrap: wrap; gap: var(--sp-5); justify-content: center; margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--line); }
.errorpage__links a { color: var(--muted); font-size: var(--fs-sm); text-decoration: none; }
.errorpage__links a:hover { color: var(--orange); }

/* ── 19. Footer ──────────────────────────────────────────────────────────── */
.sitefooter { background: #000; color: var(--muted); padding-block: clamp(3rem, 6vw, 4.5rem) var(--sp-6); font-size: var(--fs-sm); border-top: 3px solid var(--orange); }
.sitefooter__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3.5rem); }
.sitefooter__tagline { margin-top: var(--sp-4); max-width: 20rem; }
.sociallinks { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.sociallinks a { display: inline-flex; align-items: center; justify-content: center; width: 2.375rem; height: 2.375rem; border: 1px solid var(--line-strong); color: var(--muted); transition: all var(--dur) var(--ease); }
.sociallinks a:hover { color: var(--ink-900); background: var(--orange); border-color: var(--orange); }
.sitefooter__heading { font-family: var(--body); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin-bottom: var(--sp-4); }
.sitefooter__col ul { display: grid; gap: var(--sp-3); }
.sitefooter__col a { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--muted); text-decoration: none; }
.sitefooter__col a:hover { color: var(--orange); }
.sitefooter__contact { display: grid; gap: var(--sp-4); }
.sitefooter__contact li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.sitefooter__contact .icon { color: var(--orange); margin-top: .1875rem; flex: none; }
.sitefooter__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3); margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--faint); }

/* ── 20. Reveal ──────────────────────────────────────────────────────────── */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--delay, 0ms); }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* ── 20b. Touch targets ──────────────────────────────────────────────────── */
/* On a phone these are all thumb targets. WCAG 2.5.8 sets a 24px floor; we
   aim for 44px, which is the size a finger actually is. Padding does the work
   so nothing moves visually on desktop. */
@media (max-width: 900px) {
  .utilitybar__contact a,
  .utilitybar__hours { padding-block: .8125rem; }

  .logo { padding-block: .3125rem; }

  .sitefooter__col a,
  .errorpage__links a { padding-block: .625rem; }

  /* Inline links inside a sentence are exempt from the 24px target rule, but
     these two are real calls to action — vertical padding grows the hit area
     without disturbing the line. */
  .portalband__note a,
  .catalogue__empty a,
  .mailtofallback__body a { padding-block: .5rem; }

  .card__link,
  .prodcat__cta,
  .industry__cta { padding-top: var(--sp-5); padding-bottom: var(--sp-2); }

  .breadcrumb a { padding-block: .5rem; display: inline-block; }

  .sociallinks a { width: 2.75rem; height: 2.75rem; }

  .faq__q { padding-block: var(--sp-4); }

  .chip { padding-block: .75rem; }

  /* iOS Safari zooms the whole page when a focused field is under 16px, and
     often leaves it zoomed. 16px is the floor for any control you can type in. */
  .field__input,
  .filterbar__search input { font-size: 1rem; }
}

/* ── 21. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .portalband__inner, .panel--split, .prose-layout, .contactlayout, .cutaway__inner { grid-template-columns: 1fr; }
  .factcard { position: static; }
  .sitefooter__grid { grid-template-columns: 1fr 1fr; }
  .hero__wedge { width: 150px; }
}

@media (max-width: 900px) {
  .navtoggle { display: inline-flex; position: relative; z-index: 96; }
  .primarynav {
    position: fixed; top: 0; right: 0; z-index: 95;
    width: min(22rem, 88vw); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: var(--sp-6);
    padding: 6rem var(--sp-5) var(--sp-6); overflow-y: auto;
    background: var(--ink-850); border-left: 1px solid var(--line);
    /* Closed by CLIPPING, not by translating off-canvas. A fixed panel pushed
       to x:375-705 stretches the document's scrollable width, and neither
       body's overflow-x:hidden nor overflow-x on the root can contain it —
       overflow-x on the root also stops the sticky masthead working. Clipping
       keeps the panel inside the viewport, so there is nothing to overflow. */
    clip-path: inset(0 0 0 100%); visibility: hidden;
    /* visibility flips instantly on OPEN (0s, no delay) so the panel can take
       focus the moment the class lands — a visibility:hidden element cannot be
       focused, and transitioning it would swallow the first link. On CLOSE it
       is held until the wipe finishes. */
    transition: clip-path 280ms var(--ease), visibility 0s linear 280ms;
  }
  .primarynav.is-open {
    clip-path: inset(0 0 0 0); visibility: visible;
    transition: clip-path 280ms var(--ease), visibility 0s linear 0s;
  }
  .primarynav__list { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .primarynav__link { padding: var(--sp-3) 0; font-size: 1.0625rem; }
  .primarynav__link.is-active::after { width: 2rem; right: auto; }
  .primarynav__actions { flex-direction: column; align-items: stretch; }
  .primarynav__actions .btn { width: 100%; padding: var(--sp-4); font-size: var(--fs-xs); }
  body.nav-open { overflow: hidden; }

  .statbar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

  .industry { grid-template-columns: 1fr; }
  .industry__aside { flex-direction: row; justify-content: flex-start; align-items: center; }
  .band__tiles { width: 100%; }
}

@media (max-width: 640px) {
  :root { --fs-2xs: 0.75rem; }

  /* Buttons are nowrap by default, which is right on a wide screen. At phone
     widths a long uppercase, letter-spaced label ("Open the B2B Portal") is
     wider than the screen, and because grid items default to min-width:auto it
     pushed the whole track — and the page — past the viewport. Let them wrap. */
  .btn { white-space: normal; padding-inline: 1.25rem; }
  .btn--lg { padding-inline: 1.5rem; }

  /* Belt and braces: a grid/flex item should never be forced wider than its
     track by its own content. */
  .contactlayout > *, .cardgrid > *, .catalogue > *,
  .industrystack > *, .prose-layout > * { min-width: 0; }
  .utilitybar__promise, .utilitybar__hours { display: none; }
  .utilitybar__inner { justify-content: center; }
  .utilitybar__contact { gap: var(--sp-4); justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .form__hint { margin-top: 0; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta__actions, .hero__actions { width: 100%; }
  .cta__actions .btn, .hero__actions .btn { flex: 1 1 100%; }
  .sitefooter__grid { grid-template-columns: 1fr; }
  .sitefooter__base { flex-direction: column; }
  .logo__img { height: 2.125rem; }
  .hero__wedge { display: none; }
  .band__tiles { grid-template-columns: 1fr; }
  .sectionhead--split { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
}

@media (max-width: 420px) {
  .statbar__inner { grid-template-columns: 1fr; }
  .stat { border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--line); }
}

/* ── 22. Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  /* Nothing may be left mid-animation and therefore invisible. */
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .hero__line > span { animation: none; }
  .js .hero__comb { display: none; }
  .js .hero__flow path { animation: none; stroke-dasharray: none; opacity: .35; }
  .js .cutaway.is-revealed .cut-dirty,
  .js .cutaway.is-revealed .cut-clean,
  .js .cutaway.is-revealed .cut-caught { animation: none; }
  .js .cutaway .cut-caught { opacity: .6; }
  .btn:hover, .card:hover { transform: none; }
}

/* ── 23. Print ───────────────────────────────────────────────────────────── */
@media print {
  .utilitybar, .masthead, .navtoggle, .filterbar, .jumpbar, .cta, .portalband,
  .nav-scrim, .skip-link, .hero__media, .hero__flow, .hero__comb, .cutaway { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: .75em; color: #555; }
  .card, .prodcat, .industry { break-inside: avoid; border: 1px solid #ccc; }
}

/* ── Enquiry: equipment fieldset ──────────────────────────────────────────── */
.fieldset {
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: var(--sp-5);
  margin-block: var(--sp-2) var(--sp-5);
  background: rgba(255, 255, 255, .02);
}
.fieldset__legend {
  padding-inline: var(--sp-3);
  margin-left: calc(var(--sp-3) * -1);
  font-family: var(--body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.fieldset__hint {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--muted);
}
.field__help {
  margin-bottom: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--muted);
}
.field__textarea--sm { min-height: 5rem; }

/* ── Photo dropzone ───────────────────────────────────────────────────────── */
.dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  border: 2px dashed var(--line);
  background: var(--ink-850);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.dropzone:hover,
.dropzone.is-dragover { border-color: var(--orange); background: rgba(240, 136, 42, .06); }

/* The real input covers the whole zone so the entire area is the control —
   which also means keyboard focus and the native picker keep working. */
.dropzone__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropzone__input:focus-visible + .dropzone__icon { outline: 2px solid var(--orange); outline-offset: 4px; }
.dropzone__icon { color: var(--orange); }
.dropzone__icon svg { width: 2rem; height: 2rem; }
.dropzone__label { font-size: var(--fs-sm); color: var(--text); }
.dropzone__label strong { color: var(--orange); }
.dropzone__meta { font-size: var(--fs-2xs); color: var(--faint); }

/* ── Chosen files ─────────────────────────────────────────────────────────── */
.filelist { list-style: none; margin-top: var(--sp-3); display: grid; gap: var(--sp-2); }
.filelist__item {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto auto;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  background: var(--ink-800);
  border: 1px solid var(--line);
}
.filelist__item.is-toobig { border-color: var(--danger, #f87171); }
.filelist__thumb {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink-900);
  font-size: var(--fs-2xs);
  font-weight: 700;
  color: var(--faint);
}
.filelist__thumb img { width: 100%; height: 100%; object-fit: cover; }
.filelist__name {
  font-size: var(--fs-xs);
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filelist__size { font-size: var(--fs-2xs); color: var(--faint); white-space: nowrap; }
.filelist__item.is-toobig .filelist__size { color: var(--danger, #f87171); }
.filelist__remove {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filelist__remove:hover { color: var(--orange); border-color: var(--orange); }
.filelist__remove--all { width: auto; padding-inline: var(--sp-3); font-size: var(--fs-2xs); }

/* ── Upload progress ──────────────────────────────────────────────────────── */
.sendprogress { margin-top: var(--sp-3); }
.sendprogress__bar { height: 4px; background: var(--ink-800); overflow: hidden; }
.sendprogress__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 200ms linear;
}
.sendprogress__text {
  margin-top: var(--sp-2);
  font-size: var(--fs-2xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__error--send {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border-left: 3px solid var(--danger, #f87171);
  background: rgba(248, 113, 113, .08);
  color: var(--text);
  font-size: var(--fs-xs);
}

/* Warnings on the confirmation — a photo that did not make it must be said
   out loud, never quietly dropped. */
.successpanel__warnings {
  list-style: none;
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-left: 3px solid var(--orange);
  background: rgba(240, 136, 42, .08);
  display: grid;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--soft);
}

@media (max-width: 30rem) {
  .filelist__item { grid-template-columns: 2.25rem 1fr auto; }
  .filelist__size { grid-column: 2 / -1; }
}

/* ── Contact page: email mode ─────────────────────────────────────────────
   Shown when contactMode is 'email' in site.js. The address is kept in plain
   sight rather than behind a fallback, because a mailto link does nothing at
   all for anyone using webmail in a browser tab — and that silence is exactly
   where enquiries used to be lost. */
.mailpanel__direct {
  margin-top: var(--sp-4);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.mailpanel__direct a { font-weight: 600; word-break: break-word; }

.mailpanel__aside {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--ink-850);
  border-left: 3px solid var(--orange);
}
.mailpanel__asidetitle {
  font-family: var(--body);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-3);
}
.mailpanel__list { display: grid; gap: var(--sp-3); }
.mailpanel__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: start;
  font-size: var(--fs-sm);
  color: var(--soft);
}
.mailpanel__list .icon { color: var(--orange); margin-top: .3em; }

.mailpanel__alt {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.mailpanel__altlabel {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--sp-3);
}
.mailpanel__hours {
  margin-top: var(--sp-3);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--faint);
}
