:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Consolas, monospace;
  --red: #ed1c24;
  --red-deep: #b80f18;
  --red-soft: #fff0f0;
  --ink: #17191d;
  --charcoal: #15171a;
  --charcoal-soft: #22252a;
  --paper: #f6f5f1;
  --warm: #ece9e2;
  --white: #ffffff;
  --muted: #6b6d70;
  --line: #dcd9d1;
  --header-height: 78px;
  --shell: min(1420px, calc(100vw - 88px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: inherit;
}

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

button {
  color: inherit;
}

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

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

.viewport-section {
  min-height: calc(100svh - var(--header-height));
  scroll-margin-top: var(--header-height);
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--red);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  height: var(--header-height);
  position: sticky;
  z-index: 200;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 25, 29, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 184.6px;
  display: block;
}

.site-header .brand {
  transform: translateY(3px);
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 46px);
}

.desktop-nav > a,
.nav-products > a {
  min-width: max-content;
  display: flex;
  align-items: center;
  position: relative;
  color: #3e4044;
  font-size: 14px;
  font-weight: 540;
  transition: color 180ms ease;
}

.desktop-nav > a::after,
.nav-products > a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  margin-inline: auto;
  background: var(--red);
  transition: width 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-products > a:hover,
.nav-products > a:focus-visible {
  color: var(--red);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.nav-products > a:hover::after,
.nav-products > a:focus-visible::after {
  width: 100%;
}

.nav-products {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.nav-products > a {
  gap: 8px;
}

.nav-products > a span {
  margin-top: -4px;
  font-size: 15px;
}

.mega-menu {
  height: 0;
  position: fixed;
  z-index: 190;
  top: var(--header-height);
  right: 0;
  left: 0;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(16, 17, 19, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, height 0ms linear 180ms, visibility 0ms linear 180ms;
}

.nav-products:hover .mega-menu,
.nav-products:focus-within .mega-menu {
  height: min(410px, calc(100vh - var(--header-height)));
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, height 0ms linear 0ms, visibility 0ms linear 0ms;
}

.mega-menu-inner {
  height: 100%;
  padding: 30px 0 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px 56px;
}

.mega-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mega-column > span {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.mega-column > strong {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 670;
}

.mega-column a {
  margin: 0 0 5px;
  color: #65676b;
  font-size: 13px;
  transition: color 160ms ease, transform 160ms ease;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--red);
  transform: translateX(3px);
}

.mega-feature {
  grid-column: 4;
  grid-row: 1 / span 2;
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.mega-feature > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f3f1ec;
  mix-blend-mode: multiply;
}

.mega-feature > div {
  padding: 27px 25px;
  display: flex;
  flex-direction: column;
}

.mega-feature span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mega-feature strong {
  max-width: 180px;
  margin-top: 13px;
  font-size: 22px;
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.mega-feature i {
  margin-top: auto;
  font-size: 21px;
  font-style: normal;
  align-self: flex-end;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.search-trigger,
.menu-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-trigger {
  min-height: 42px;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-left: 1px solid var(--line);
  color: #3e4044;
  font-size: 12px;
}

.search-trigger:hover,
.search-trigger:focus-visible {
  color: var(--red);
}

.search-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  width: 6px;
  height: 1.6px;
  position: absolute;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.language {
  padding: 20px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #55565a;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.language-picker { position: relative; }
.language-list { width: 220px; max-height: min(70vh, 520px); padding: 9px; position: absolute; z-index: 240; top: calc(100% - 3px); right: 0; overflow: auto; background: var(--white); border: 1px solid var(--line); box-shadow: 0 22px 45px rgba(15, 16, 19, .16); opacity: 0; visibility: hidden; transform: translateY(8px); transition: 170ms ease; }
.language-picker:hover .language-list, .language-picker:focus-within .language-list, .language-picker.is-open .language-list { opacity: 1; visibility: visible; transform: none; }
.language-list a { display: block; padding: 10px 12px; color: #4c4e52; font-size: 12px; }
.language-list a:hover, .language-list a:focus-visible, .language-list a[aria-current="true"] { background: #fff0f0; color: var(--red); }
.header-enquiry { min-height: 44px; padding: 0 15px; display: inline-flex; align-items: center; gap: 12px; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; white-space: nowrap; }

.menu-trigger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-trigger span {
  width: 21px;
  height: 1px;
  background: var(--ink);
}

.search-panel {
  max-height: 0;
  position: fixed;
  z-index: 185;
  top: var(--header-height);
  right: 0;
  left: 0;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(16, 17, 19, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: max-height 260ms ease, opacity 180ms ease, visibility 0ms linear 260ms;
}

.search-panel.is-open {
  max-height: 540px;
  opacity: 1;
  visibility: visible;
  transition: max-height 260ms ease, opacity 180ms ease, visibility 0ms;
}

.search-panel-inner {
  padding: 40px 0 48px;
}

.search-panel label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-field {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 17px;
  border-bottom: 2px solid var(--ink);
}

.search-field .search-icon {
  color: var(--red);
}

.search-field input {
  min-width: 0;
  height: 62px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 34px);
  letter-spacing: -0.035em;
}

.search-field input::placeholder {
  color: #aaa8a3;
}

.search-field button {
  padding: 12px 0 12px 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.search-results {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.search-results a {
  min-height: 106px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.search-results a:hover,
.search-results a:focus-visible {
  background: var(--red);
  color: var(--white);
}

.search-results span {
  font-size: 14px;
  font-weight: 650;
}

.search-results small {
  grid-column: 1;
  color: var(--muted);
  font-size: 11px;
}

.search-results a:hover small,
.search-results a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.search-results i {
  grid-row: 1 / 3;
  grid-column: 2;
  font-style: normal;
  align-self: end;
}

.search-results > p {
  padding: 20px;
  color: var(--muted);
}

.search-history { margin-top: 18px; }
.search-history-heading { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.search-history-heading button { border: 0; background: transparent; color: var(--red); cursor: pointer; font: inherit; }
.search-history-list { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.search-history-list button { padding: 8px 12px; border: 1px solid var(--line); background: #f7f7f5; color: #55575a; cursor: pointer; font-size: 11px; }
.search-history-list button:hover { border-color: var(--red); color: var(--red); }

.eyebrow {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff8a8f;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--red);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: #ff8a8f;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-copy {
  width: var(--shell);
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  position: relative;
  z-index: 2;
}

.hero-copy-inner {
  width: min(610px, 100%);
  padding: clamp(74px, 10vh, 120px) 0 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 620px;
  margin-top: 26px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5.7vw, 96px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.hero h1 em {
  display: block;
  margin-top: 13px;
  color: var(--white);
  font: inherit;
  font-size: 0.92em;
}

.hero-lead {
  max-width: 515px;
  margin-top: 35px;
  color: #bebfc1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-visual {
  min-height: 0;
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 17, 20, 0.78) 0%, rgba(15, 17, 20, 0.58) 30%, rgba(15, 17, 20, 0.22) 55%, rgba(15, 17, 20, 0.03) 78%);
}

.hero-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.82) contrast(1.04);
}

.hero-visual.is-changing[data-effect="fade"] > img { animation: hero-fade .75s ease both; }
.hero-visual.is-changing[data-effect="slide"] > img { animation: hero-slide .72s cubic-bezier(.2,.7,.2,1) both; }
.hero-visual[data-effect="blocks"]::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: repeating-conic-gradient(from 0deg, rgba(237,28,36,.92) 0 25%, rgba(18,20,24,.94) 0 50%) 0/12.5% 25%; opacity: 0; }
.hero-visual.is-changing[data-effect="blocks"]::before { animation: hero-blocks .9s ease both; }
@keyframes hero-fade { from { opacity: .25; transform: scale(1.025); } to { opacity: 1; transform: none; } }
@keyframes hero-slide { from { opacity: .35; transform: translateX(7%); } to { opacity: 1; transform: none; } }
@keyframes hero-blocks { 0% { opacity: .8; clip-path: inset(0 0 0 0); } 55%,100% { opacity: 0; clip-path: inset(0 100% 0 0); } }
.hero-pagination { display: none; }
.hero-pagination button { width: 28px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.42); cursor: pointer; }
.hero-pagination button.active { background: var(--red); }

.hero-visual figcaption {
  display: none;
}

.hero-visual figcaption span {
  color: #ff8a8f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.certification-strip {
  min-height: 84px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.certification-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.certification-inner > p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certification-list {
  display: flex;
  align-items: center;
}

.certification-list span {
  min-width: 90px;
  padding: 5px 20px;
  border-left: 1px solid var(--line);
  color: #4a4c50;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: center;
}

.section {
  padding: clamp(76px, 8vh, 108px) 0;
}

.product-section {
  display: flex;
  align-items: center;
  background: var(--paper);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(720px, 1.34fr);
  gap: 24px;
}

.product-intro {
  min-height: 640px;
  padding: 54px 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--charcoal);
  color: var(--white);
}

.product-intro h2,
.application-heading h2,
.about-heading h2,
.contact-heading h2 {
  margin-top: 23px;
  font-size: clamp(43px, 4vw, 65px);
  font-weight: 460;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.product-intro h2 {
  color: var(--white);
}

.product-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 28px;
  color: #bdbec0;
  font-size: 15px;
  line-height: 1.72;
}

.product-intro .text-link {
  margin-top: auto;
  color: var(--white);
}

.product-intro .text-link:hover,
.product-intro .text-link:focus-visible {
  color: #ff8a8f;
}

.product-matrix {
  min-height: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-tile {
  min-height: 310px;
  padding: 20px 20px 23px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.product-tile-featured {
  background: var(--red-soft);
}

.product-tile:hover {
  background: var(--red);
  color: var(--white);
}

.product-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.product-tile:hover .product-tile-top {
  color: var(--white);
}

.product-tile > img {
  width: 50%;
  height: 52%;
  position: absolute;
  z-index: 0;
  top: 38px;
  right: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease, opacity 200ms ease;
}

.product-tile-mark {
  position: absolute;
  top: 34px;
  right: 22px;
  color: #ece9e3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 132px;
  font-weight: 400;
  line-height: 1;
  transition: color 200ms ease, transform 260ms ease;
}

.product-tile:hover .product-tile-mark {
  color: rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}

.product-tile:hover > img {
  opacity: 0.48;
  transform: translateY(-4px) scale(1.03);
}

.product-tile-copy {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.product-tile-copy h3 {
  max-width: 230px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.product-tile-copy p {
  max-width: 245px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.product-tile:hover .product-tile-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.application-section {
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
}

.application-heading {
  display: grid;
  grid-template-columns: minmax(620px, 1.45fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.application-heading h2 {
  color: var(--white);
}

.application-heading > p {
  max-width: 390px;
  padding-left: 24px;
  border-left: 1px solid var(--red);
  color: #aaaeb2;
  font-size: 14px;
  line-height: 1.68;
}

.application-grid {
  height: min(54vh, 540px);
  min-height: 480px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.application-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.application-primary {
  grid-row: 1 / 3;
}

.application-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.application-primary > img {
  object-position: 55% center;
}

.application-card:hover > img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.025);
}

.application-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0.08) 28%, rgba(9, 10, 12, 0.92) 100%);
}

.application-number {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 24px;
  color: #ff8a8f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.application-copy {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 23px;
  left: 25px;
}

.application-copy h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.application-primary .application-copy h3 {
  font-size: 56px;
}

.application-copy p {
  max-width: 440px;
  margin-top: 9px;
  color: #c4c5c7;
  font-size: 12px;
  line-height: 1.55;
}

.about-section {
  display: flex;
  align-items: center;
  background: var(--paper);
}

.about-heading {
  display: grid;
  grid-template-columns: 0.43fr 1.57fr;
  gap: 62px;
  align-items: start;
}

.about-heading h2 {
  max-width: 1020px;
  margin-top: -8px;
  color: var(--ink);
}

.about-body {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(670px, 1.26fr);
  gap: 70px;
  align-items: stretch;
}

.about-story {
  display: flex;
  flex-direction: column;
}

.about-lead {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px !important;
  line-height: 1.46 !important;
}

.about-story > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.about-story > p + p {
  margin-top: 18px;
}

.value-list {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.value-list div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.value-list div + div {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.value-list span {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.value-list strong {
  font-size: 12px;
  font-weight: 620;
}

.quality-platform {
  padding: 32px;
  background: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: 0 14px 40px rgba(23, 25, 29, 0.06);
}

.quality-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.quality-topline p {
  max-width: 430px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.25;
}

.quality-topline span {
  color: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.fact-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-row div {
  min-height: 95px;
  padding: 20px 16px 16px 0;
  display: flex;
  flex-direction: column;
}

.fact-row div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.fact-row strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.fact-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.quality-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.quality-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quality-grid div {
  min-height: 72px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.quality-grid div:hover {
  background: var(--red);
  color: var(--white);
}

.quality-grid span {
  color: #9a9892;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.quality-grid div:hover span {
  color: rgba(255, 255, 255, 0.68);
}

.quality-grid strong {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.contact-section {
  min-height: min(760px, calc(100svh - var(--header-height)));
  padding: 84px 0;
  display: flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
}

.contact-section .eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.contact-heading {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.contact-heading h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(55px, 6vw, 94px);
}

.contact-heading p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.95fr;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-details > * {
  min-height: 132px;
  padding: 25px 24px 25px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.contact-details > * + * {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details strong {
  margin-top: auto;
  color: var(--white);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.5;
}

.contact-primary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.contact-primary i {
  position: absolute;
  top: 25px;
  right: 24px;
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-primary:hover i,
.contact-primary:focus-visible i {
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 68px 0 28px;
  background: #111215;
  color: #a2a3a5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand p {
  margin-top: 19px;
  color: #737579;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-top div > span {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top a,
.footer-top p {
  color: #838589;
  font-size: 12px;
  line-height: 1.68;
  transition: color 160ms ease;
}

.footer-top a:hover,
.footer-top a:focus-visible {
  color: var(--white);
}
.footer-top .footer-email { margin-top: 10px; color: #fff; text-decoration: underline; text-underline-offset: 4px; }

:focus-visible { outline: 3px solid #f4b2b5; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media (max-width: 1320px) { .header-enquiry { display: none; } .header-inner { grid-template-columns: 155px 1fr auto; gap: 22px; } .desktop-nav { gap: 22px; } }

.footer-bottom {
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #5f6165;
  font-size: 10px;
}

@media (max-width: 1220px) {
  :root {
    --shell: min(100% - 52px, 1160px);
  }

  .header-inner {
    grid-template-columns: 165px 1fr auto;
    gap: 22px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav > a,
  .nav-products > a {
    font-size: 13px;
  }

  .mega-menu-inner {
    gap: 25px;
  }

  .hero {
    grid-template-columns: minmax(450px, 0.88fr) minmax(530px, 1.12fr);
  }

  .hero-copy-inner {
    padding-right: 38px;
  }

  .product-layout {
    grid-template-columns: 0.58fr 1.42fr;
  }

  .product-intro {
    padding-inline: 32px;
  }

  .product-tile {
    padding-inline: 16px;
  }

  .about-body {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 840px);
    --header-height: 72px;
  }

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

  .brand {
    width: 171.6px;
  }

  .desktop-nav {
    height: auto;
    max-height: 0;
    padding: 0 20px;
    position: fixed;
    z-index: 180;
    top: var(--header-height);
    right: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 0ms linear 260ms;
  }

  .desktop-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 14px 24px;
    opacity: 1;
    visibility: visible;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 0ms;
  }

  .desktop-nav > a,
  .nav-products > a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .desktop-nav > a::after,
  .nav-products > a::after {
    display: none;
  }

  .nav-products {
    height: auto;
    display: block;
  }

  .mega-menu {
    display: none;
  }

  .menu-trigger {
    display: flex;
  }

  .language {
    display: none;
  }

  .search-trigger span:last-child {
    display: none;
  }

  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-copy {
    min-height: inherit;
  }

  .hero-copy-inner {
    width: min(610px, 100%);
    min-height: inherit;
    padding: 84px 0 72px;
  }

  .hero-visual {
    min-height: 0;
  }

  .certification-inner {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .certification-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }

  .certification-list span {
    min-width: 0;
    padding-inline: 8px;
  }

  .product-layout,
  .application-heading,
  .about-heading,
  .about-body,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .product-intro {
    min-height: 440px;
  }

  .product-intro .text-link {
    margin-top: 46px;
  }

  .product-matrix {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(280px, 1fr));
  }

  .application-heading,
  .contact-heading {
    gap: 30px;
  }

  .application-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .application-card,
  .application-primary {
    min-height: 480px;
    grid-row: auto;
  }

  .about-heading {
    gap: 30px;
  }

  .about-heading h2 {
    margin-top: 0;
  }

  .about-body {
    gap: 50px;
  }

  .about-story {
    min-height: 420px;
  }

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

  .contact-details > * + * {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .header-actions {
    gap: 5px;
  }

  .search-trigger {
    padding-left: 0;
    border-left: 0;
  }

  .search-panel-inner {
    padding-top: 27px;
  }

  .search-field {
    grid-template-columns: 18px 1fr auto;
    gap: 12px;
  }

  .search-field input {
    height: 56px;
    font-size: 19px;
  }

  .search-results {
    grid-template-columns: 1fr;
    max-height: 320px;
    overflow-y: auto;
  }

  .search-results a {
    min-height: 80px;
  }

  .hero-copy-inner {
    min-height: 560px;
    padding: 68px 0 58px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 75px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual figcaption {
    right: 18px;
    bottom: 20px;
  }

  .certification-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
  }

  .certification-list span:nth-child(4) {
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .product-intro {
    min-height: 500px;
    padding: 38px 26px;
  }

  .product-intro h2,
  .application-heading h2,
  .about-heading h2,
  .contact-heading h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .product-matrix {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .product-tile {
    min-height: 290px;
  }

  .application-grid {
    margin-top: 40px;
  }

  .application-card,
  .application-primary {
    min-height: 430px;
  }

  .application-copy h3,
  .application-primary .application-copy h3 {
    font-size: 43px;
  }

  .quality-platform {
    padding: 26px 19px;
  }

  .quality-topline {
    flex-direction: column;
    gap: 14px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .fact-row div {
    min-height: 80px;
  }

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

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list div {
    padding: 15px 0;
  }

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

  .contact-section {
    padding: 74px 0;
  }

  .contact-heading h2 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .contact-details {
    margin-top: 45px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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