:root {
  --black: #0b0d0e;
  --matte: #111416;
  --charcoal: #181c20;
  --graphite: #252b30;
  --steel: #6f7d87;
  --steel-2: #b9c2c8;
  --silver: #d7dcde;
  --warm-white: #f3f5f2;
  --paper: #fbfcf8;
  --blue: #2f6f8f;
  --blue-dark: #214e65;
  --orange: #e56f22;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(13, 15, 16, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 6px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--warm-white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--black);
  padding: 10px 14px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-height);
  background: rgba(11, 13, 14, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.36));
}

.brand-mark svg path:first-child {
  fill: var(--silver);
}

.brand-mark svg path:last-child {
  fill: var(--blue);
}

.brand-text {
  display: grid;
  color: var(--warm-white);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--steel-2);
  font-size: 0.68rem;
  font-weight: 800;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a,
.mobile-nav a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}

.header-cta {
  padding: 12px 15px;
  color: var(--black);
  background: var(--silver);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--warm-white);
  display: block;
}

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

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--matte);
  padding: 12px 20px 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 900;
  color: var(--warm-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-quote {
  color: var(--blue) !important;
}

.industrial-grid {
  position: relative;
  overflow: hidden;
}

.industrial-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.hero {
  min-height: auto;
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 111, 143, 0.12), transparent 26%),
    linear-gradient(180deg, #f3f5f2 0%, #e5eaec 100%);
}

.catalogue-hero {
  background:
    linear-gradient(90deg, rgba(11, 13, 14, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 13, 14, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f3f5f2 0%, #e5eaec 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.catalogue-cover {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 214, 211, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 238, 0.86)),
    var(--paper);
  box-shadow: 0 22px 58px rgba(11, 13, 14, 0.18);
  overflow: hidden;
}

.catalogue-cover.reveal {
  opacity: 1;
  transform: none;
}

.catalogue-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 13, 14, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 13, 14, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.cover-kicker {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.72fr;
  gap: 1px;
  border-bottom: 1px solid rgba(212, 214, 211, 0.18);
  background: rgba(11, 13, 14, 0.09);
}

.cover-kicker span {
  min-width: 0;
  padding: 13px 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.cover-title-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.98fr) minmax(380px, 1.02fr);
  gap: 44px;
  padding: 42px 42px 34px;
  align-items: end;
}

.cover-title {
  min-width: 0;
  border-left: 5px solid var(--blue);
  padding-left: 22px;
}

.cover-title h1 {
  max-width: 720px;
  color: var(--black);
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
}

.cover-copy {
  min-width: 0;
  max-width: 620px;
}

.cover-copy p {
  margin: 0 0 16px;
  color: #30373d;
}

.cover-title h1,
.cover-copy p,
.cover-title .eyebrow {
  overflow-wrap: break-word;
}

.cover-title .eyebrow {
  white-space: normal;
}

.hero-media-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
  padding: 0 42px 42px;
}

.hero-photo-main,
.hero-photo-small {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(13, 15, 16, 0.14);
  border-radius: var(--radius);
  background: var(--black);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-photo-main {
  grid-row: auto;
}

.hero-photo-main img,
.hero-photo-small img,
.product-image img,
.preview-tile > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-photo-main:hover,
.hero-photo-small:hover,
.hero-photo-main:focus-within,
.hero-photo-small:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 143, 0.62);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.hero-photo-main figcaption,
.hero-photo-small figcaption,
.product-image figcaption {
  position: relative;
  z-index: 2;
  display: block;
  padding: 13px 14px;
  color: var(--warm-white);
  font-size: 0.88rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.hero-photo-main:hover img,
.hero-photo-small:hover img {
  transform: scale(1.035);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 42px;
  align-items: center;
}

.hero-shell > *,
.board-cell,
.product-card,
.preview-tile {
  min-width: 0;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  color: var(--warm-white);
  font-size: clamp(2.35rem, 4.8vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(244, 240, 232, 0.76);
}

.catalogue-hero .cover-title h1 {
  color: var(--black);
}

.catalogue-hero .cover-copy p {
  color: #30373d;
}

.catalogue-hero .cover-title .eyebrow {
  color: var(--blue);
}

.catalogue-hero .btn-secondary {
  color: var(--black);
  border-color: rgba(13, 15, 16, 0.22);
  background: rgba(13, 15, 16, 0.045);
}

.catalogue-hero .hero-actions {
  margin-top: 22px;
}

.hero-lead {
  margin-top: 24px;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 14px 18px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--warm-white);
  box-shadow: 0 16px 34px rgba(229, 111, 34, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c95b1b;
}

.btn-secondary {
  color: var(--warm-white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.catalogue-board {
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(212, 214, 211, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 20, 22, 0.94);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 14px;
  color: var(--steel-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 12px;
  margin-top: 14px;
}

.board-cell {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(212, 214, 211, 0.2);
  border-radius: var(--radius);
  background: #121517;
}

.board-cell.wide {
  grid-column: span 2;
}

.board-cell.tall {
  grid-row: span 2;
}

.board-cell hardware-image-placeholder {
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.board-cell strong {
  position: relative;
  z-index: 1;
  display: block;
  padding: 12px;
  color: var(--warm-white);
  font-size: 0.85rem;
  line-height: 1.2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-tags span {
  border: 1px solid rgba(212, 214, 211, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(244, 240, 232, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.045);
}

.supply-strip {
  background: var(--blue);
  color: var(--warm-white);
}

.supply-strip-inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  font-size: 0.86rem;
  font-weight: 900;
}

.supply-strip a {
  text-decoration: none;
}

.category-nav-section {
  padding: 34px 0 40px;
  background: #080909;
  border-top: 1px solid rgba(212, 214, 211, 0.16);
  border-bottom: 1px solid rgba(212, 214, 211, 0.16);
}

.category-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
}

.category-nav-head h2 {
  margin: 0;
  color: var(--warm-white);
  font-size: 1.42rem;
  line-height: 1.1;
}

.category-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.category-nav-tile {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(212, 214, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 111, 143, 0.2), transparent 58%),
    #171b1e;
  color: var(--warm-white);
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.category-nav-tile span {
  color: var(--blue);
  font-size: 0.78rem;
}

.category-nav-tile:hover,
.category-nav-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 143, 0.68);
  background:
    linear-gradient(90deg, rgba(47, 111, 143, 0.3), transparent 58%),
    #1e2428;
}

.section {
  padding: 88px 0;
}

.section-heading h2,
.contact-copy h2,
.enquiry-form h2,
.legal-content h1 {
  margin: 0;
  color: var(--warm-white);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.contact-copy p {
  max-width: 700px;
  color: rgba(244, 240, 232, 0.72);
}

.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.split-heading p {
  margin: 0;
}

.about-band {
  background: var(--warm-white);
  color: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: start;
}

.about-band .section-heading h2,
.about-band .content-panel,
.about-band .section-heading p {
  color: var(--black);
}

.content-panel {
  padding: 30px;
  border: 1px solid var(--dark-line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.content-panel p:first-child {
  margin-top: 0;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.72)),
    var(--warm-white);
  color: var(--black);
}

.product-section .section-heading h2,
.product-section .section-heading p,
.contact-section .contact-copy h2,
.contact-section .contact-copy p {
  color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.feature-card,
.application-card,
.enquiry-form,
.preview-tile {
  border: 1px solid rgba(212, 214, 211, 0.18);
  border-radius: var(--radius);
}

.product-card {
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  border-color: rgba(13, 15, 16, 0.13);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card::before,
.feature-card::before,
.application-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.product-card:hover,
.product-card:focus-within,
.preview-tile:hover,
.preview-tile:focus-within,
.feature-card:hover,
.application-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 111, 143, 0.58);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

hardware-image-placeholder {
  display: block;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: var(--charcoal);
}

.product-image {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: var(--charcoal);
}

.product-image::after,
.hero-photo-main::after,
.hero-photo-small::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent);
  pointer-events: none;
  z-index: 1;
}

.placeholder-svg {
  width: 100%;
  height: 100%;
  transition: transform 220ms ease;
}

.product-card:hover .placeholder-svg,
.product-card:hover .product-image img,
.preview-tile:hover .placeholder-svg,
.preview-tile:hover > img,
.board-cell:hover .placeholder-svg {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body h3,
.feature-card h3,
.application-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.22;
}

.product-body p,
.feature-card p,
.application-card p {
  margin: 0;
  color: #465058;
  font-size: 0.91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 111, 143, 0.34);
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
  background: rgba(47, 111, 143, 0.08);
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.preview-section {
  background:
    linear-gradient(180deg, rgba(17, 20, 22, 0.96), rgba(37, 43, 48, 0.94)),
    var(--charcoal);
  color: var(--warm-white);
}

.preview-section .section-heading h2 {
  color: var(--warm-white);
}

.preview-section .section-heading p {
  color: rgba(244, 240, 232, 0.72);
}

.preview-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.preview-tile {
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  background: #121517;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.preview-tile > img,
.preview-tile > hardware-image-placeholder {
  flex: 1;
  min-height: 156px;
}

.preview-tile span {
  display: block;
  padding: 12px 14px;
  color: var(--warm-white);
  font-size: 0.86rem;
  font-weight: 950;
  border-top: 1px solid rgba(212, 214, 211, 0.18);
}

.trade-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(47, 111, 143, 0.18), transparent 24%),
    var(--charcoal);
}

.trade-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.trade-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.trade-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(215, 220, 222, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(32, 38, 42, 0.82), rgba(15, 18, 20, 0.76));
}

.trade-copy h2 {
  max-width: 720px;
}

.feature-grid,
.application-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 205px;
  padding: 0 24px 24px;
  background: linear-gradient(180deg, #20262a, #15191c);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-card h3 {
  margin-top: 22px;
  color: var(--warm-white);
}

.feature-card p {
  color: rgba(244, 240, 232, 0.68);
}

.support-photo,
.contact-support-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(215, 220, 222, 0.22);
  background: var(--black);
}

.support-photo img,
.contact-support-photo img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.support-photo,
.contact-support-photo {
  display: flex;
  flex-direction: column;
}

.support-photo {
  min-height: 420px;
}

.support-photo img,
.contact-support-photo img {
  flex: 1;
  min-height: 0;
}

.support-photo figcaption,
.contact-support-photo figcaption {
  padding: 10px 12px;
  color: var(--warm-white);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #101316;
}

.contact-support-photo {
  border-color: rgba(13, 15, 16, 0.14);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.contact-support-photo figcaption {
  color: var(--black);
  background: var(--paper);
  border-top: 1px solid rgba(13, 15, 16, 0.1);
}

.applications-section {
  background: var(--warm-white);
  color: var(--black);
}

.applications-section .section-heading h2,
.applications-section .application-card h3 {
  color: var(--black);
}

.applications-section .section-heading p,
.applications-section .application-card p {
  color: #3d454b;
}

.application-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-card {
  min-height: 148px;
  padding: 0 24px 24px;
  background: var(--paper);
  border-color: rgba(13, 15, 16, 0.13);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.application-card h3 {
  margin-top: 22px;
}

.process-section {
  background:
    linear-gradient(140deg, rgba(11, 13, 14, 0.96), rgba(37, 43, 48, 0.92)),
    var(--black);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(212, 214, 211, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.process-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--warm-white);
  font-weight: 950;
}

.process-list strong {
  display: block;
  color: var(--warm-white);
  line-height: 1.3;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.86)),
    var(--warm-white);
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-copy,
.enquiry-form {
  min-height: 640px;
}

.contact-info-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr);
  gap: 18px;
}

.contact-text {
  padding: 28px;
  border: 1px solid rgba(13, 15, 16, 0.13);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.contact-details {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-details div {
  padding: 22px;
  border: 1px solid rgba(13, 15, 16, 0.14);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fffdfa;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0;
  color: var(--black);
  font-weight: 900;
}

.enquiry-form {
  padding: 28px;
  background: var(--paper);
  color: var(--black);
  border-color: rgba(13, 15, 16, 0.15);
  box-shadow: var(--shadow);
}

.enquiry-form h2 {
  margin-bottom: 22px;
  color: var(--black);
  font-size: 1.55rem;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.form-field label {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 950;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 15, 16, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
  padding: 12px 13px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(47, 111, 143, 0.22);
  border-color: var(--blue);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--black);
  font-weight: 900;
}

.form-status.is-error {
  color: #8c2d1c;
}

.site-footer {
  padding: 58px 0 22px;
  background: #080909;
  color: var(--warm-white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.8fr 0.9fr;
  gap: 34px;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: rgba(244, 240, 232, 0.68);
  font-style: normal;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 0.96rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: rgba(244, 240, 232, 0.88);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--warm-white);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  z-index: 500;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--orange);
  color: var(--warm-white);
  font-size: 1.3rem;
  font-weight: 950;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #c95b1b;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

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

.simple-header {
  position: static;
}

.legal-page {
  background: var(--warm-white);
  color: var(--black);
}

.legal-main {
  padding: 68px 0;
}

.legal-content {
  max-width: 850px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.legal-content h1,
.legal-content h2 {
  color: var(--black);
}

.legal-content h2 {
  margin: 30px 0 8px;
}

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

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

@media (max-width: 1120px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-shell,
  .cover-title-row,
  .about-layout,
  .trade-intro,
  .trade-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .preview-rail,
  .category-nav-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-main {
    grid-row: auto;
  }

  .supply-strip-inner,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 0;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .trade-copy,
  .support-photo,
  .contact-copy,
  .enquiry-form {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: calc(100vw - 28px);
    max-width: 1220px;
  }

  .hero .container,
  .catalogue-cover,
  .cover-title-row,
  .cover-title,
  .cover-copy {
    max-width: 100%;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text span {
    font-size: 0.96rem;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .catalogue-cover {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .cover-kicker,
  .cover-title-row,
  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .cover-title-row {
    gap: 24px;
    padding: 30px 20px 26px;
    overflow: hidden;
  }

  .cover-title {
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    max-width: 100%;
  }

  .cover-title h1,
  .cover-copy p,
  .cover-title .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy,
  .catalogue-board {
    max-width: 360px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-media-grid {
    grid-auto-rows: 132px;
    padding: 0 20px 28px;
  }

  .hero-photo-main {
    grid-row: auto;
  }

  .catalogue-board {
    padding: 14px;
  }

  .board-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 118px;
    gap: 10px;
  }

  .board-cell.wide,
  .board-cell.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .board-header {
    display: grid;
  }

  .supply-strip-inner,
  .product-grid,
  .preview-rail,
  .category-nav-grid,
  .feature-grid,
  .application-grid,
  .process-list,
  .footer-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .product-card {
    min-height: auto;
  }

  .content-panel,
  .enquiry-form,
  .legal-content {
    padding: 24px;
  }

  .contact-grid {
    gap: 32px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(330px, calc(100vw - 28px));
    margin-left: 14px;
    margin-right: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(330px, calc(100vw - 28px));
  }

  .hero h1 {
    font-size: 1.78rem;
    line-height: 1.08;
  }

  .cover-title .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .cover-title-row {
    padding-inline: 14px;
  }

  .hero-media-grid {
    padding-inline: 14px;
  }

  .hero p {
    font-size: 0.97rem;
  }

  .board-grid {
    grid-auto-rows: 126px;
  }

  .hero-tags {
    display: none;
  }
}
