:root {
  --ink: #070b0e;
  --ink-2: #0d1317;
  --ink-3: #141c21;
  --paper: #f4f6f2;
  --muted: #aeb8bd;
  --line: rgba(244, 246, 242, 0.22);
  --line-dark: rgba(7, 11, 14, 0.2);
  --cyan: #00bce8;
  --magenta: #f0007f;
  --lime: #c9f31d;
  --display: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  --content: min(100% - 48px, 1440px);
  --pad: clamp(72px, 8vw, 140px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

::selection { background: var(--lime); color: var(--ink); }

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.protected-media {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.protected-media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.brand-lockup svg { pointer-events: none; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-touch-callout: none; -webkit-user-drag: none; user-drag: none; }
.media-guard {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  display: flex;
  align-items: center;
  color: var(--paper);
}
.header-inner {
  width: var(--content);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.site-brand { flex: 0 0 auto; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); }
.brand-mark { width: 43px; height: 49px; overflow: visible; }
.mark-cyan { fill: var(--cyan); }
.mark-magenta { fill: var(--magenta); }
.mark-lime { fill: var(--lime); }
.brand-words { display: grid; line-height: 0.85; letter-spacing: -0.035em; font-family: var(--display); font-size: 1.12rem; }
.brand-words strong { font-weight: 900; }
.brand-lockup--compact .brand-mark { width: 36px; height: 41px; }
.brand-lockup--compact .brand-words { font-size: 1rem; }

.navigation-frame {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(244,246,242,.34);
  background: rgba(7,11,14,.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.primary-navigation .menu { display: flex; margin: 0; padding: 0; list-style: none; }
.primary-navigation li { display: flex; }
.primary-navigation a,
.header-enquiry {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 15px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-navigation a { border-right: 1px solid rgba(244,246,242,.16); }
.primary-navigation a:hover,
.primary-navigation a:focus-visible { color: var(--cyan); background: rgba(255,255,255,.045); }
.header-enquiry { color: var(--ink); background: var(--paper); padding-inline: 19px; }
.header-enquiry:hover,
.header-enquiry:focus-visible { background: var(--lime); }
.menu-toggle { display: none; border: 0; background: none; text-transform: uppercase; font-family: var(--display); font-weight: 900; letter-spacing: .08em; }

.section-kicker {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: .78rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  padding: 0 21px;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button span { font-size: 1.05rem; }
.button--lime { background: var(--lime); color: var(--ink); }
.button--lime:hover { background: var(--paper); }
.button--outline { border-color: currentColor; background: transparent; }
.button--outline:hover { background: var(--paper); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--paper); }
.button--dark:hover { background: var(--magenta); color: var(--ink); }
.text-link,
.catalogue-link,
.map-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero {
  min-height: 820px;
  height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(390px, 36%) 1fr;
  background: var(--ink);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px clamp(34px, 4.6vw, 80px) 62px max(24px, calc((100vw - 1440px) / 2));
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 76%, rgba(7,11,14,.88) 90%, rgba(7,11,14,0) 100%);
}
.hero-copy-inner { width: min(560px, 100%); }
.hero-copy .section-kicker { color: var(--cyan); }
.hero-copy h1,
.capabilities-hero h1,
.products-hero h1,
.product-detail-copy h1,
.contact-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero-copy h1 em,
.capabilities-hero h1 em,
.products-hero h1 em,
.contact-hero h1 em { color: var(--lime); font-style: normal; }
.hero-intro { max-width: 470px; margin: 30px 0 34px; color: #d0d6d8; font-size: 1.03rem; line-height: 1.65; }
.hero-register { display: grid; grid-template-columns: repeat(2, max-content); gap: 3px 22px; margin-top: 46px; color: var(--muted); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-register span:nth-child(1)::before { background: var(--cyan); }
.hero-register span:nth-child(2)::before { background: var(--magenta); }
.hero-register span:nth-child(3)::before { background: var(--lime); }
.hero-register span:nth-child(4)::before { background: var(--paper); }
.hero-register span::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 9px; }
.hero-image { position: relative; min-width: 0; }
.hero-image::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(90deg, rgba(7,11,14,.66) 0, transparent 28%), linear-gradient(0deg, rgba(7,11,14,.55) 0, transparent 32%); }
.hero-media { height: 100%; }
.hero-media img { object-position: 54% 50%; }
.hero-image-index { position: absolute; right: max(24px, calc((100vw - 1440px) / 2)); bottom: 55px; z-index: 4; display: grid; justify-items: end; text-transform: uppercase; font-family: var(--display); font-weight: 900; letter-spacing: .1em; }
.hero-image-index span:first-child { color: var(--magenta); font-size: 2.5rem; line-height: 1; }
.hero-image-index span:last-child { font-size: .72rem; }

.capability-chapters { background: var(--ink); }
.chapter-heading {
  width: var(--content);
  margin: 0 auto;
  padding: var(--pad) 0 clamp(60px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}
.chapter-heading .section-kicker { color: var(--cyan); grid-column: 1 / -1; margin-bottom: 0; }
.chapter-heading h2,
.range-preview h2,
.home-van h2,
.closing-cta h2,
.about-profile h2,
.about-principles h2,
.specification-note h2,
.catalogue-note h2,
.process-sequence h2,
.brief-checklist h2,
.process-van h2,
.product-overview h2,
.product-applications h2,
.related-ranges h2,
.product-enquiry h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.3vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.chapter-heading .text-link { justify-self: end; margin-bottom: 10px; }
.chapter { min-height: 410px; display: grid; grid-template-columns: 43% 57%; border-top: 1px solid var(--line); background: var(--ink-2); }
.chapter--reverse { grid-template-columns: 57% 43%; }
.chapter--reverse .chapter-image { order: 2; }
.chapter-image, .chapter-media { min-height: 410px; }
.chapter-image { overflow: hidden; }
.chapter-media img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.chapter:hover .chapter-media img { transform: scale(1.025); }
.chapter-copy { display: grid; grid-template-columns: 64px 1fr 40px; align-items: center; gap: clamp(20px, 3vw, 48px); padding: clamp(42px, 6vw, 92px); }
.chapter-number { align-self: start; font-family: var(--display); font-size: 1.2rem; font-weight: 900; }
.chapter-label { margin: 0 0 12px; font-family: var(--display); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.chapter-copy h3 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(2.25rem, 3.5vw, 4.2rem); line-height: .95; letter-spacing: -.045em; text-transform: uppercase; }
.chapter-copy p:last-child { max-width: 570px; margin: 0; color: #c5cdd0; }
.chapter-copy > a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; font-size: 1.15rem; }
.chapter--cyan .chapter-number, .chapter--cyan .chapter-label { color: var(--cyan); }
.chapter--lime .chapter-number, .chapter--lime .chapter-label { color: var(--lime); }
.chapter--magenta .chapter-number, .chapter--magenta .chapter-label { color: var(--magenta); }
.chapter--white .chapter-number, .chapter--white .chapter-label { color: var(--paper); }

.range-preview { width: var(--content); margin: 0 auto; padding: var(--pad) 0; display: grid; grid-template-columns: minmax(280px, .72fr) 1.28fr; gap: clamp(60px, 8vw, 130px); }
.range-preview-intro { align-self: start; position: sticky; top: 30px; }
.range-preview-intro .section-kicker { color: var(--magenta); }
.range-preview-intro > p:last-child { color: var(--muted); max-width: 520px; margin-top: 28px; }
.range-preview-list { border-top: 1px solid var(--line); }
.range-row { display: grid; grid-template-columns: 48px 110px 1fr 30px; align-items: center; gap: 24px; min-height: 145px; border-bottom: 1px solid var(--line); transition: background .2s ease, color .2s ease; }
.range-row:hover { background: var(--paper); color: var(--ink); }
.range-row-index { font-family: var(--display); font-weight: 900; color: var(--cyan); }
.range-row-image { height: 98px; overflow: hidden; }
.range-thumb { height: 100%; }
.range-row-title { display: grid; }
.range-row-title small { font-family: var(--display); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.range-row-title strong { font-family: var(--display); font-size: clamp(1.5rem, 2vw, 2rem); line-height: 1; text-transform: uppercase; }
.range-row-arrow { font-size: 1.3rem; }
.range-preview > .button { grid-column: 2; justify-self: start; margin-top: -72px; }

.home-van { background: var(--lime); color: var(--ink); min-height: 610px; display: grid; grid-template-columns: 44% 56%; align-items: center; padding: 80px max(24px, calc((100vw - 1440px) / 2)); overflow: hidden; }
.home-van-copy { max-width: 610px; position: relative; z-index: 3; }
.home-van-copy .section-kicker { color: #324000; }
.home-van-copy > p:not(.section-kicker) { max-width: 560px; margin: 28px 0 34px; }
.van-stage { position: relative; align-self: end; min-height: 450px; display: flex; align-items: flex-end; }
.van-cutout { overflow: visible; width: 115%; margin-left: -8%; z-index: 2; filter: drop-shadow(28px 32px 24px rgba(7,11,14,.32)); }
.van-cutout img { object-fit: contain; }
.van-ground { position: absolute; left: 10%; right: -4%; bottom: 3%; height: 11%; border-radius: 50%; background: rgba(7,11,14,.24); filter: blur(19px); transform: skewX(-12deg); }

.closing-cta { position: relative; min-height: 590px; padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)); display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--ink-2); }
.closing-cta .section-kicker { color: var(--cyan); }
.closing-cta h2 { font-size: clamp(3.4rem, 7vw, 7.4rem); max-width: 1100px; }
.closing-cta-actions { margin-top: 50px; display: flex; align-items: center; gap: 40px; }
.contact-inline { font-family: var(--display); font-size: 1.25rem; font-weight: 900; border-bottom: 2px solid var(--paper); }
.closing-bars { position: absolute; right: 4vw; top: 0; bottom: 0; display: flex; gap: 15px; opacity: .65; transform: skewX(-13deg); }
.closing-bars span { width: clamp(18px, 2.2vw, 38px); height: 47%; }
.closing-bars span:nth-child(1) { background: var(--cyan); }
.closing-bars span:nth-child(2) { background: var(--magenta); margin-top: 18%; }
.closing-bars span:nth-child(3) { background: var(--lime); margin-top: 7%; }

/* Internal-page foundations */
.internal-page, .product-detail { padding-top: 92px; }
.internal-hero { width: var(--content); min-height: 620px; margin: 0 auto; display: grid; grid-template-columns: 170px 1fr minmax(260px, 370px); align-items: end; gap: clamp(35px, 5vw, 90px); padding: 110px 0 80px; }
.internal-index { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding: 8px 24px 8px 0; border-right: 1px solid var(--line); color: var(--cyan); font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.internal-hero-copy .section-kicker { color: var(--magenta); }
.internal-hero-copy h1 { margin: 0; max-width: 850px; font-family: var(--display); font-size: clamp(3.1rem, 5.4vw, 6.2rem); line-height: .93; letter-spacing: -.055em; text-transform: uppercase; }
.internal-hero-aside { padding-top: 24px; border-top: 4px solid var(--lime); color: #cbd1d3; }

.about-profile { background: var(--paper); color: var(--ink); display: grid; grid-template-columns: 31% 69%; }
.about-profile-marker { min-height: 100%; padding: 90px max(24px, calc((100vw - 1440px) / 2)); background: var(--cyan); display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.about-profile-marker span { font-family: var(--display); font-size: clamp(10rem, 24vw, 28rem); line-height: .74; font-weight: 950; letter-spacing: -.13em; transform: translateX(-7%); }
.about-profile-marker i { display: block; width: 38%; height: 12px; background: var(--ink); }
.about-profile-marker i:nth-of-type(2) { background: var(--magenta); }
.about-profile-marker i:nth-of-type(3) { background: var(--lime); }
.about-profile-copy { padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)) var(--pad) clamp(48px, 7vw, 110px); }
.about-profile-copy h2 { max-width: 840px; margin-bottom: 48px; }
.about-profile-copy p { max-width: 820px; font-size: 1.05rem; }
.about-profile-copy p:first-of-type { font-size: 1.25rem; line-height: 1.55; }

.about-principles { width: var(--content); margin: 0 auto; padding: var(--pad) 0; }
.about-principles header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 70px; }
.about-principles .section-kicker { color: var(--lime); }
.about-principles ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.about-principles li { display: grid; grid-template-columns: 70px .8fr 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.about-principles li > span { color: var(--magenta); font-family: var(--display); font-weight: 900; }
.about-principles h3 { margin: 0; font-family: var(--display); font-size: 1.85rem; line-height: 1; text-transform: uppercase; }
.about-principles li p { margin: 0; color: var(--muted); }

.internal-van-band { min-height: 520px; display: grid; grid-template-columns: 42% 58%; align-items: center; padding: 70px max(24px, calc((100vw - 1440px) / 2)); background: var(--magenta); color: var(--ink); overflow: hidden; }
.internal-van-band > div:first-child { position: relative; z-index: 4; }
.internal-van-band p:not(.section-kicker) { max-width: 520px; }
.van-stage--small { min-height: 350px; }
.about-contact-register { justify-self: end; width: min(100%, 620px); display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px auto; gap: 0 14px; align-items: end; }
.about-contact-register span { display: block; height: 72%; background: var(--cyan); transform: skewX(-13deg); }
.about-contact-register span:nth-child(2) { height: 100%; background: var(--paper); }
.about-contact-register span:nth-child(3) { height: 84%; background: var(--lime); }
.about-contact-register strong { grid-column: 1 / -1; margin-top: 18px; font-family: var(--display); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; text-align: right; }

/* Capabilities */
.capabilities-hero { width: var(--content); min-height: 700px; margin: 0 auto; display: grid; grid-template-columns: 1fr 130px; align-items: end; gap: 70px; padding: 140px 0 80px; }
.capabilities-hero .section-kicker { color: var(--cyan); }
.capabilities-hero > div:first-child > p:last-child { max-width: 650px; margin: 35px 0 0; color: var(--muted); font-size: 1.1rem; }
.capability-spectrum { align-self: stretch; display: grid; grid-template-rows: auto 1fr auto; justify-items: center; font-family: var(--display); font-weight: 900; color: var(--paper); }
.capability-spectrum i { width: 24px; margin: 18px 0; background: linear-gradient(var(--cyan) 0 33.3%, var(--magenta) 33.3% 66.6%, var(--lime) 66.6%); transform: skewY(-16deg); }
.capability-index { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid var(--line); }
.capability-index a { min-height: 100px; padding: 22px clamp(12px, 2vw, 30px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); font-family: var(--display); font-size: .77rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.capability-index a:hover { background: var(--paper); color: var(--ink); }
.capability-index span { color: var(--cyan); }
.capability-group { scroll-margin-top: 20px; display: grid; grid-template-columns: 20% 30% 50%; min-height: 560px; border-bottom: 1px solid var(--line); }
.capability-group:nth-child(even) { background: var(--ink-2); }
.capability-group-head { padding: 65px clamp(24px, 4vw, 70px); }
.capability-group-head span { display: block; color: var(--lime); font-family: var(--display); font-size: 1.3rem; font-weight: 900; margin-bottom: 28px; }
.capability-group-head h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.8rem); line-height: .95; text-transform: uppercase; }
.capability-group-image, .capability-ledger-media { height: 100%; min-height: 560px; }
.capability-group-items { padding: 36px clamp(28px, 5vw, 75px); display: flex; flex-direction: column; justify-content: center; }
.capability-detail { padding: 30px 0; border-bottom: 1px solid var(--line); }
.capability-detail:last-child { border-bottom: 0; }
.capability-detail-title { display: flex; gap: 24px; align-items: baseline; }
.capability-detail-title span { color: var(--magenta); font-family: var(--display); font-weight: 900; }
.capability-detail h3 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.2vw, 2.45rem); line-height: 1; text-transform: uppercase; }
.capability-detail p { margin: 13px 0 0 50px; max-width: 720px; color: var(--muted); }
.capability-detail-short { color: var(--paper) !important; font-weight: 700; }
.specification-note { width: var(--content); margin: 0 auto; padding: var(--pad) 0; display: grid; grid-template-columns: 110px .9fr 1fr; gap: clamp(35px, 5vw, 90px); align-items: start; }
.specification-note-number { font-family: var(--display); font-weight: 900; color: var(--cyan); }
.specification-note .section-kicker { color: var(--magenta); }
.specification-note > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.specification-note .button { grid-column: 3; justify-self: start; }

/* Product catalogue */
.products-hero { width: var(--content); min-height: 610px; margin: 0 auto; padding: 150px 0 80px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.products-hero .section-kicker { color: var(--magenta); }
.products-hero-copy { padding: 32px 0 5px 40px; border-left: 1px solid var(--line); }
.products-hero-copy p { margin: 0 0 30px; color: var(--muted); }
.product-catalogue { width: var(--content); margin: 0 auto; padding-bottom: var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 90px 28px; }
.catalogue-item:nth-child(4n+2), .catalogue-item:nth-child(4n+3) { transform: translateY(70px); }
.catalogue-image { position: relative; display: block; aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink-2); }
.catalogue-media { height: 100%; }
.catalogue-image-index { position: absolute; z-index: 3; left: 0; bottom: 0; min-width: 70px; padding: 11px 15px; color: var(--ink); background: var(--lime); font-family: var(--display); font-weight: 900; }
.catalogue-info { display: grid; grid-template-columns: 1fr auto; column-gap: 25px; align-items: start; padding-top: 22px; }
.catalogue-info > p:first-child { grid-column: 1 / -1; margin: 0 0 9px; color: var(--cyan); font-family: var(--display); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-info h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.2rem); line-height: .95; text-transform: uppercase; }
.catalogue-info > p:not(:first-child) { grid-column: 1 / -1; color: var(--muted); max-width: 650px; }
.catalogue-link { grid-column: 1 / -1; justify-self: start; }
.catalogue-note { margin-top: 80px; padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)); background: var(--paper); color: var(--ink); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.catalogue-note .section-kicker { color: #8e004c; }
.catalogue-note > p { font-size: 1.1rem; }
.catalogue-note .button { grid-column: 2; justify-self: start; }

/* Process page */
.process-hero { width: var(--content); min-height: 650px; margin: 0 auto; display: grid; grid-template-columns: 180px 1fr; gap: clamp(45px, 7vw, 120px); align-items: end; padding: 145px 0 85px; }
.process-hero-rail { align-self: stretch; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; padding: 10px 34px 10px 0; color: var(--cyan); font-family: var(--display); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.process-hero .section-kicker { color: var(--magenta); }
.process-hero h1 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 6vw, 6.8rem); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.process-hero > div:last-child > p:last-child { max-width: 680px; margin: 35px 0 0; color: var(--muted); }
.process-sequence { border-top: 1px solid var(--line); }
.process-sequence article { min-height: 330px; display: grid; grid-template-columns: minmax(150px, 24%) 1fr; border-bottom: 1px solid var(--line); }
.process-sequence article > span { display: flex; align-items: flex-start; padding: 52px max(24px, calc((100vw - 1440px) / 2)); font-family: var(--display); font-size: clamp(3rem, 7vw, 8rem); line-height: 1; font-weight: 950; color: transparent; -webkit-text-stroke: 1px var(--line); border-right: 1px solid var(--line); }
.process-sequence article:nth-child(1) > span { -webkit-text-stroke-color: var(--cyan); }
.process-sequence article:nth-child(2) > span { -webkit-text-stroke-color: var(--magenta); }
.process-sequence article:nth-child(3) > span { -webkit-text-stroke-color: var(--lime); }
.process-sequence article > div { padding: 52px max(24px, calc((100vw - 1440px) / 2)) 52px clamp(40px, 7vw, 120px); }
.process-sequence h2 { max-width: 900px; font-size: clamp(2.2rem, 3.7vw, 4.2rem); }
.process-sequence article p:last-child { max-width: 760px; color: var(--muted); }
.brief-checklist { background: var(--cyan); color: var(--ink); display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)); }
.brief-checklist .section-kicker { color: #003b49; }
.brief-checklist-copy > p:last-child { max-width: 520px; }
.brief-checklist ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.brief-checklist li { display: grid; grid-template-columns: 54px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.9rem); font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.brief-checklist li span { color: #7b0042; }
.process-van { min-height: 600px; display: grid; grid-template-columns: 58% 42%; align-items: center; gap: 30px; padding: 70px max(24px, calc((100vw - 1440px) / 2)); overflow: hidden; }
.process-van > div:last-child { max-width: 560px; position: relative; z-index: 4; }
.process-van .section-kicker { color: var(--lime); }
.process-van p:not(.section-kicker) { color: var(--muted); }

/* Contact */
.contact-hero { width: var(--content); min-height: 600px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; padding: 145px 0 80px; }
.contact-hero .section-kicker { color: var(--cyan); }
.contact-direct { border-left: 1px solid var(--line); padding-left: clamp(25px, 4vw, 60px); display: grid; gap: 12px; }
.contact-direct p { color: var(--muted); max-width: 520px; }
.contact-direct a { width: fit-content; border-bottom: 1px solid currentColor; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 900; }
.contact-workspace { display: grid; grid-template-columns: 58% 42%; background: var(--paper); color: var(--ink); }
.contact-form-panel { padding: var(--pad) clamp(35px, 7vw, 120px) var(--pad) max(24px, calc((100vw - 1440px) / 2)); }
.contact-form-heading { display: grid; grid-template-columns: 62px 1fr; gap: 22px; margin-bottom: 50px; }
.contact-form-heading > span { color: #7b0042; font-family: var(--display); font-weight: 900; }
.contact-form-heading h2, .contact-info-block h2 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.3rem); line-height: .95; text-transform: uppercase; }
.contact-form-heading .section-kicker { color: #00657c; }
.contact-form { display: grid; gap: 24px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: grid; gap: 9px; font-family: var(--display); font-size: .78rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #5c666b; border-radius: 0; padding: 14px 0; color: var(--ink); background: transparent; font-family: var(--body); font-size: 1rem; letter-spacing: normal; text-transform: none; }
.contact-form textarea { border: 1px solid #5c666b; padding: 15px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid var(--cyan); outline-offset: 3px; border-color: var(--ink); }
.contact-form ::placeholder { color: #596368; opacity: 1; }
.form-privacy { max-width: 680px; margin: -4px 0 0; color: #424c50; font-size: .88rem; }
.form-privacy a { border-bottom: 1px solid currentColor; font-weight: 700; }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message { margin-bottom: 28px; padding: 18px 20px; border-left: 5px solid; font-weight: 700; }
.form-message--success { background: #e9f5c0; border-color: #526500; }
.form-message--error { background: #ffe0ec; border-color: #9b004f; }
.contact-info-rail { padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)) var(--pad) clamp(35px, 5vw, 80px); background: var(--ink-2); color: var(--paper); }
.contact-info-block { margin-bottom: 45px; }
.contact-info-block > span { color: var(--magenta); font-family: var(--display); font-weight: 900; }
.contact-info-block .section-kicker { color: var(--lime); margin-top: 25px; }
.contact-info-block address { margin-top: 30px; color: #cfd5d7; }
.map-frame { height: 420px; overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link { margin-top: 22px; }

/* Product detail */
.product-detail-hero { min-height: 750px; display: grid; grid-template-columns: 40% 60%; }
.product-detail-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 145px clamp(35px, 5vw, 85px) 75px max(24px, calc((100vw - 1440px) / 2)); position: relative; z-index: 4; background: var(--ink); }
.product-detail-copy .back-link { align-self: flex-start; margin-bottom: auto; }
.product-detail-copy .section-kicker { color: var(--cyan); }
.product-detail-copy > p:not(.section-kicker) { margin: 30px 0 34px; color: var(--muted); }
.product-detail-copy .button { align-self: flex-start; }
.product-detail-image { position: relative; min-width: 0; }
.product-hero-media { height: 100%; }
.product-register { position: absolute; z-index: 3; bottom: 32px; right: 32px; display: flex; gap: 7px; }
.product-register span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); font-family: var(--display); font-size: .7rem; font-weight: 900; }
.product-register span:nth-child(1) { background: var(--cyan); }
.product-register span:nth-child(2) { background: var(--magenta); }
.product-register span:nth-child(3) { background: var(--lime); }
.product-overview { width: var(--content); margin: 0 auto; padding: var(--pad) 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.product-overview .section-kicker { color: var(--magenta); }
.product-overview-copy p { margin-top: 0; color: var(--muted); font-size: 1.08rem; }
.product-spec-grid { display: grid; grid-template-columns: 42% 58%; border-block: 1px solid var(--line); }
.product-feature-list { padding: 70px clamp(35px, 7vw, 120px) 70px max(24px, calc((100vw - 1440px) / 2)); background: var(--lime); color: var(--ink); }
.product-feature-list .section-kicker { color: #3d4d00; }
.product-feature-list ul { margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.product-feature-list li { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-weight: 700; }
.product-specs { margin: 0; padding: 70px max(24px, calc((100vw - 1440px) / 2)) 70px clamp(35px, 7vw, 120px); }
.product-specs div { padding: 0 0 25px; margin-bottom: 25px; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--cyan); font-family: var(--display); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-specs dd { margin: 10px 0 0; color: #ccd3d5; }
.product-applications { width: var(--content); margin: 0 auto; padding: var(--pad) 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.product-applications .section-kicker { color: var(--magenta); }
.product-applications ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-applications li { display: grid; grid-template-columns: 40px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.4rem; font-weight: 900; text-transform: uppercase; }
.product-applications li span { color: var(--lime); }
.related-ranges { padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)); background: var(--paper); color: var(--ink); }
.related-ranges header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 55px; }
.related-ranges .section-kicker { color: #8e004c; }
.related-range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-range-grid > a { display: block; }
.related-media { aspect-ratio: 4 / 3; }
.related-range-grid > a > span { display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; padding-top: 18px; }
.related-range-grid small { grid-column: 1 / -1; font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.related-range-grid strong { font-family: var(--display); font-size: 1.5rem; line-height: 1; text-transform: uppercase; }
.related-range-grid i { font-style: normal; }
.product-enquiry { min-height: 520px; padding: var(--pad) max(24px, calc((100vw - 1440px) / 2)); background: var(--magenta); color: var(--ink); display: flex; flex-direction: column; justify-content: center; }
.product-enquiry .section-kicker { color: var(--ink); }
.product-enquiry p:not(.section-kicker) { max-width: 670px; }
.product-enquiry .button { align-self: flex-start; margin-top: 20px; }

/* Legal and fallback */
.legal-hero { width: var(--content); margin: 0 auto; padding: 150px 0 65px; border-bottom: 1px solid var(--line); }
.legal-hero .section-kicker { color: var(--cyan); }
.legal-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 6vw, 6rem); line-height: .92; text-transform: uppercase; }
.legal-hero > p:last-child { color: var(--muted); }
.legal-content { width: min(100% - 48px, 900px); margin: 0 auto; padding: 80px 0 var(--pad); }
.legal-content h2 { margin: 52px 0 15px; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1; text-transform: uppercase; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #c8d0d3; }
.policy-table-wrap { overflow-x: auto; margin: 38px 0; }
.policy-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.policy-table th, .policy-table td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { color: var(--lime); font-family: var(--display); text-transform: uppercase; }
.entry-list { width: var(--content); margin: 0 auto; padding: 70px 0 var(--pad); }
.entry-summary { padding: 30px 0; border-bottom: 1px solid var(--line); }
.entry-summary h2 { font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.not-found-page { min-height: 100svh; padding: 160px max(24px, calc((100vw - 1200px) / 2)) 90px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.not-found-page .section-kicker { color: var(--cyan); }
.not-found-page h1 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 11vw, 10rem); line-height: .82; text-transform: uppercase; }
.not-found-page > p:not(.section-kicker) { max-width: 620px; color: var(--muted); }
.not-found-page > div:last-child { display: flex; align-items: center; gap: 35px; margin-top: 25px; }
.not-found-spectrum { position: absolute; right: 6vw; top: 18%; display: flex; gap: 15px; transform: skewX(-12deg); opacity: .55; }
.not-found-spectrum span { width: 35px; height: 340px; }
.not-found-spectrum span:nth-child(1) { background: var(--cyan); }
.not-found-spectrum span:nth-child(2) { background: var(--magenta); transform: translateY(100px); }
.not-found-spectrum span:nth-child(3) { background: var(--lime); transform: translateY(45px); }

/* Footer */
.site-footer { position: relative; background: #040709; color: var(--paper); }
.footer-spectrum { height: 8px; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.footer-spectrum span:nth-child(1) { background: var(--cyan); }
.footer-spectrum span:nth-child(2) { background: var(--magenta); }
.footer-spectrum span:nth-child(3) { background: var(--lime); }
.footer-main { width: var(--content); margin: 0 auto; padding: 90px 0 70px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; }
.footer-statement .section-kicker { color: var(--cyan); }
.footer-statement h2 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 6vw, 6.8rem); line-height: .86; letter-spacing: -.05em; text-transform: uppercase; }
.footer-contact { border-left: 1px solid var(--line); padding-left: clamp(25px, 5vw, 70px); display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-contact .brand-lockup { margin-bottom: 26px; }
.footer-contact address { color: var(--muted); margin-bottom: 10px; }
.footer-contact > a { border-bottom: 1px solid currentColor; }
.footer-nav-row { border-block: 1px solid var(--line); }
.footer-nav-row .menu { width: var(--content); margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.footer-nav-row a { min-height: 62px; display: flex; align-items: center; border-right: 1px solid var(--line); padding: 0 20px; font-family: var(--display); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav-row a:hover { background: var(--paper); color: var(--ink); }
.footer-legal { width: var(--content); margin: 0 auto; padding: 25px 0 34px; display: flex; justify-content: space-between; gap: 30px; color: #9ba5aa; font-size: .78rem; }

/* Motion: content stays visible without JavaScript. */
@media (prefers-reduced-motion: no-preference) {
  .js .chapter,
  .js .catalogue-item,
  .js .capability-group,
  .js .process-sequence article { opacity: .001; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
  .js .is-visible { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  :root { --content: min(100% - 40px, 1100px); }
  .site-header { height: 82px; }
  .primary-navigation a, .header-enquiry { padding-inline: 10px; font-size: .65rem; }
  .brand-words { display: none; }
  .home-hero { min-height: 740px; grid-template-columns: 42% 58%; }
  .hero-copy { padding-left: 28px; }
  .capability-index { grid-template-columns: repeat(3, 1fr); }
  .capability-index a:nth-child(3n) { border-right: 0; }
  .capability-group { grid-template-columns: 24% 31% 45%; }
  .capability-detail p { margin-left: 0; }
  .product-detail-hero { grid-template-columns: 45% 55%; }
  .footer-nav-row .menu { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --content: min(100% - 32px, 820px); --pad: 80px; }
  body { font-size: 16px; }
  .site-header { height: 76px; }
  .header-inner { width: calc(100% - 32px); }
  .brand-words { display: grid; }
  .menu-toggle { display: flex; align-items: center; gap: 13px; min-height: 44px; cursor: pointer; }
  .menu-toggle-lines, .menu-toggle-lines::before { width: 25px; height: 2px; background: currentColor; display: block; transition: transform .2s ease; }
  .menu-toggle-lines { position: relative; }
  .menu-toggle-lines::before { content: ""; position: absolute; top: -7px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(90deg); }
  .navigation-frame { display: none; position: fixed; inset: 76px 0 0; background: var(--ink); border: 0; flex-direction: column; align-items: stretch; padding: 28px 16px 40px; overflow-y: auto; }
  .navigation-frame.is-open { display: flex; }
  .primary-navigation .menu { flex-direction: column; }
  .primary-navigation li { display: block; }
  .primary-navigation a { min-height: 65px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 1rem; padding: 0 10px; }
  .header-enquiry { min-height: 58px; margin-top: 30px; justify-content: center; font-size: .85rem; }

  .home-hero { height: auto; min-height: 100svh; display: block; padding-top: 76px; }
  .hero-copy { min-height: 540px; padding: 95px 22px 45px; background: var(--ink); }
  .hero-image { height: 54svh; min-height: 390px; }
  .hero-image::after { background: linear-gradient(0deg, rgba(7,11,14,.5), transparent 45%); }
  .hero-media img { object-position: 60% 50%; }
  .hero-register { margin-top: 38px; }
  .chapter-heading { grid-template-columns: 1fr; gap: 35px; }
  .chapter-heading .text-link { justify-self: start; }
  .chapter, .chapter--reverse { grid-template-columns: 1fr; }
  .chapter--reverse .chapter-image { order: 0; }
  .chapter-image, .chapter-media { min-height: 330px; height: 45vw; }
  .chapter-copy { grid-template-columns: 48px 1fr 38px; padding: 45px 24px; }
  .range-preview { grid-template-columns: 1fr; gap: 55px; }
  .range-preview-intro { position: static; }
  .range-preview > .button { grid-column: 1; margin-top: 0; }
  .home-van, .internal-van-band { grid-template-columns: 1fr; padding-block: 75px 20px; }
	.about-contact-register { justify-self: start; width: min(70%, 520px); margin-top: 55px; grid-template-rows: 190px auto; }
  .van-stage { min-height: 360px; }
  .van-cutout { width: 110%; margin-left: -5%; }
  .closing-bars { opacity: .25; }

  .internal-page, .product-detail { padding-top: 76px; }
  .internal-hero { grid-template-columns: 90px 1fr; min-height: 600px; padding-top: 90px; }
  .internal-hero-aside { grid-column: 2; }
  .about-profile { grid-template-columns: 1fr; }
  .about-profile-marker { min-height: 280px; padding: 55px 24px; }
  .about-profile-marker span { font-size: 13rem; }
  .about-profile-copy { padding-inline: 24px; }
  .about-principles header { grid-template-columns: 1fr; }
  .about-principles li { grid-template-columns: 50px 1fr; }
  .about-principles li p { grid-column: 2; }
  .capabilities-hero { min-height: 630px; }
  .capability-group { grid-template-columns: 28% 72%; }
  .capability-group-head { padding: 50px 24px; }
  .capability-group-image { grid-row: 2; }
  .capability-group-items { grid-column: 2; grid-row: 1 / span 2; }
  .specification-note { grid-template-columns: 80px 1fr; }
  .specification-note > p, .specification-note .button { grid-column: 2; }
  .products-hero { grid-template-columns: 1fr; min-height: 640px; gap: 45px; }
  .products-hero-copy { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0 0; }
  .product-catalogue { gap: 70px 20px; }
  .catalogue-item:nth-child(4n+2), .catalogue-item:nth-child(4n+3) { transform: none; }
  .catalogue-note { grid-template-columns: 1fr; }
  .catalogue-note .button { grid-column: 1; }
  .process-hero { grid-template-columns: 100px 1fr; }
  .process-sequence article { grid-template-columns: 120px 1fr; }
  .brief-checklist { grid-template-columns: 1fr; }
  .process-van { grid-template-columns: 1fr; }
  .contact-hero { grid-template-columns: 1fr; min-height: 650px; gap: 50px; }
  .contact-direct { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  .contact-workspace { grid-template-columns: 1fr; }
  .contact-form-panel, .contact-info-rail { padding-inline: 24px; }
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-detail-copy { min-height: 610px; padding: 120px 24px 65px; }
  .product-detail-image { height: 64vw; min-height: 440px; }
  .product-overview { grid-template-columns: 1fr; gap: 45px; }
  .product-spec-grid { grid-template-columns: 1fr; }
  .product-feature-list, .product-specs { padding-inline: 24px; }
  .product-applications { grid-template-columns: 1fr; gap: 45px; }
  .footer-main { grid-template-columns: 1fr; gap: 60px; }
  .footer-contact { border-left: 0; border-top: 1px solid var(--line); padding: 40px 0 0; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 28px); --pad: 66px; }
  .brand-mark { width: 36px; height: 41px; }
  .brand-words { font-size: .9rem; }
  .hero-copy { min-height: 530px; padding-top: 74px; }
  .hero-copy h1, .capabilities-hero h1, .products-hero h1, .product-detail-copy h1, .contact-hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .hero-intro { font-size: 1rem; }
  .hero-image { min-height: 330px; height: 46svh; }
  .hero-image-index { right: 18px; bottom: 20px; }
  .chapter-heading h2, .range-preview h2, .home-van h2, .closing-cta h2, .about-profile h2, .about-principles h2, .specification-note h2, .catalogue-note h2, .process-sequence h2, .brief-checklist h2, .process-van h2, .product-overview h2, .product-applications h2, .related-ranges h2, .product-enquiry h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .chapter-image, .chapter-media { height: 67vw; min-height: 260px; }
  .chapter-copy { grid-template-columns: 35px 1fr; gap: 18px; padding-inline: 16px; }
  .chapter-copy > a { grid-column: 2; }
  .range-row { grid-template-columns: 36px 78px 1fr; gap: 12px; min-height: 116px; }
  .range-row-image { height: 76px; }
  .range-row-arrow { display: none; }
  .home-van { padding-inline: 18px; }
  .van-stage { min-height: 255px; }
  .van-cutout { width: 120%; margin-left: -10%; }
  .closing-cta { padding-inline: 18px; min-height: 520px; }
  .closing-cta-actions { flex-direction: column; align-items: flex-start; }
  .internal-hero { grid-template-columns: 1fr; min-height: 560px; gap: 36px; padding-top: 75px; }
  .internal-index { display: none; }
  .internal-hero-aside { grid-column: 1; }
  .internal-hero-copy h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .about-profile-marker { min-height: 220px; }
  .about-profile-marker span { font-size: 10rem; }
  .about-profile-copy { padding-inline: 18px; }
	.about-contact-register { width: 86%; grid-template-rows: 145px auto; }
  .about-principles li { grid-template-columns: 38px 1fr; gap: 18px; }
  .capabilities-hero { grid-template-columns: 1fr; min-height: 600px; padding-top: 110px; }
  .capability-spectrum { display: none; }
  .capability-index { grid-template-columns: 1fr 1fr; }
  .capability-index a:nth-child(3n) { border-right: 1px solid var(--line); }
  .capability-index a:nth-child(even) { border-right: 0; }
  .capability-group { grid-template-columns: 1fr; }
  .capability-group-head { padding-bottom: 28px; }
  .capability-group-image { grid-column: 1; grid-row: 2; min-height: 290px; height: 75vw; }
  .capability-ledger-media { min-height: 290px; }
  .capability-group-items { grid-column: 1; grid-row: 3; padding-inline: 18px; }
  .specification-note { grid-template-columns: 1fr; gap: 28px; }
  .specification-note > p, .specification-note .button { grid-column: 1; }
  .product-catalogue { grid-template-columns: 1fr; }
  .catalogue-image { aspect-ratio: 4 / 3; }
  .catalogue-note { margin-top: 0; padding-inline: 18px; }
  .process-hero { grid-template-columns: 1fr; min-height: 610px; padding-top: 100px; }
  .process-hero-rail { border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; padding: 0 0 20px; }
  .process-sequence article { grid-template-columns: 1fr; }
  .process-sequence article > span { min-height: 135px; border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 18px; }
  .process-sequence article > div { padding: 38px 18px 55px; }
  .brief-checklist { padding-inline: 18px; }
  .process-van { padding-inline: 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .contact-hero { padding-top: 110px; }
  .map-frame { height: 330px; }
  .product-detail-copy { min-height: 560px; }
  .product-detail-image { height: 92vw; min-height: 350px; }
  .product-overview { padding-inline: 0; }
  .related-ranges { padding-inline: 18px; }
  .related-ranges header { grid-template-columns: 1fr; }
  .related-range-grid { grid-template-columns: 1fr; }
  .product-enquiry { padding-inline: 18px; }
  .legal-content { width: calc(100% - 32px); padding-top: 55px; }
  .not-found-page { padding-inline: 18px; }
  .not-found-page > div:last-child { flex-direction: column; align-items: flex-start; }
  .not-found-spectrum { opacity: .2; }
  .footer-nav-row .menu { grid-template-columns: 1fr 1fr; }
  .footer-legal { flex-direction: column; }
}

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

@supports not (height: 100svh) {
  .home-hero, .not-found-page { min-height: 100vh; }
}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .navigation-frame { background: rgba(7,11,14,.96); }
}
