@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Familjen+Grotesk:wght@500;600&display=swap');

:root {
  --navy: #071724;
  --navy-2: #0b2030;
  --navy-3: #123247;
  --copper: #c56d3d;
  --copper-light: #e39a6f;
  --copper-deep: #9a4f28;
  --ivory: #f4f0e7;
  --paper: #fbfaf6;
  --sage: #dfe5dc;
  --ink: #0a1b27;
  --slate: #56666f;
  --line: #cbc9c1;
  --line-strong: #a8b0ab;
  --field-bg: #fffcf7;
  --field-radius: 10px;
  --control-radius: 8px;
  --panel-radius: 16px;
  --shadow-field: inset 0 1px 0 rgba(255, 255, 255, .65), 0 1px 2px rgba(7, 23, 36, .04);
  --shadow-focus: 0 0 0 3px rgba(197, 109, 61, .22);
  --shadow-panel: 0 4px 24px rgba(7, 23, 36, .08), 0 32px 90px rgba(7, 23, 36, .28);
  --max: 1460px;
  --pad: clamp(22px, 4.2vw, 68px)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

/* ScrollSmoother-style smooth scroll (Lenis). Kill native smooth conflict. */
html.has-smooth-scroll {
  scroll-behavior: auto !important
}

html.lenis,
html.lenis body {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain
}

.lenis.lenis-stopped {
  overflow: hidden
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 15px/1.65 Manrope, system-ui, sans-serif;
  overflow-x: hidden
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none
}

/* Keep interactive wrappers clickable; images themselves are not the hit target */
picture,
.image-panel,
.page-hero-media,
.product-card-media,
.brand {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none
}

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

.frame {
  width: min(calc(100% - 2*var(--pad)), var(--max));
  margin-inline: auto
}

.mono {
  font: 500 10px/1.5 "DM Mono", monospace;
  letter-spacing: .13em;
  text-transform: uppercase
}

.utility {
  height: 34px;
  background: #06131d;
  color: #90a2ac
}

.utility .frame {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 9px/1 "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase
}

.utility b {
  color: var(--copper-light);
  font-weight: 500
}

.nav {
  height: 92px;
  background: #ffffff;
  color: #071724;
  border-bottom: 1px solid rgba(7, 23, 36, .1);
  position: sticky;
  top: 0;
  z-index: 100
}

.nav .frame {
  height: 100%;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase
}

.brand-logo {
  height: 64px;
  width: auto;
  max-width: min(270px, 100%);
  border-radius: 0
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--copper-light);
  transform: rotate(45deg);
  display: grid;
  place-items: center
}

.brand-mark:after {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--ivory)
}

.brand-type b {
  display: block;
  font: 600 16px/1 Familjen Grotesk, sans-serif;
  letter-spacing: .06em
}

.brand-type small {
  display: block;
  margin-top: 4px;
  color: #9dafb8;
  font: 8px/1 "DM Mono", monospace;
  letter-spacing: .11em
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px
}

.nav-mobile-scroll {
  display: contents
}

.nav-links>a,
.nav-mobile-scroll>a,
.nav-item>a {
  position: relative;
  font: 600 12px/1.2 Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: inherit
}

.nav-links>a:after,
.nav-mobile-scroll>a:after,
.nav-item>a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--copper);
  transition: .25s
}

.nav-links>a:hover:after,
.nav-links>a[aria-current="page"]:after,
.nav-mobile-scroll>a:hover:after,
.nav-mobile-scroll>a[aria-current="page"]:after,
.nav-item>a:hover:after,
.nav-item>a[aria-current="page"]:after,
.nav-item:hover>a:after,
.nav-item:focus-within>a:after {
  right: 0
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%
}

.nav-item>a {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.nav-item>a:before {
  content: none
}

.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .7;
  transition: transform .2s ease
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg)
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0%;
  margin-left: 0px;
  transform: translateY(6px);
  min-width: 220px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(7, 23, 36, .1);
  border-radius: var(--control-radius);
  box-shadow: 0 18px 40px rgba(7, 23, 36, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 120
}

.nav-dropdown:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  font: 600 11px/1.3 Manrope, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #071724;
  white-space: nowrap
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(197, 109, 61, .1);
  color: var(--copper-deep);
  outline: none
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.nav-mobile-contact {
  display: none
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 26px;
  background: linear-gradient(180deg, #d07a48 0%, var(--copper) 48%, var(--copper-deep) 100%);
  color: white;
  border: 1px solid var(--copper-deep);
  border-radius: var(--control-radius);
  font: 700 10px/1 Manrope, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 8px 18px rgba(154, 79, 40, .22);
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease, filter .2s ease
}

.button:hover,
.nav-cta:hover {
  background: #ffffff;
  color: var(--copper-deep);
  border-color: var(--copper-deep);
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 23, 36, .12)
}

.button:focus-visible,
.nav-cta:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus), 0 8px 18px rgba(154, 79, 40, .18)
}

.button.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
  color: white;
  box-shadow: none;
  filter: none
}

.button.outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
  filter: none;
  box-shadow: 0 10px 22px rgba(7, 23, 36, .16)
}

.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(7, 23, 36, .1)
}

.button.light:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 23, 36, .2)
}

.menu {
  display: none;
  background: transparent;
  border: 1px solid rgba(7, 23, 36, .18);
  color: #071724;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease
}

.menu:hover {
  background: #071724;
  border-color: #071724;
  color: #ffffff
}

.home-hero {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden
}

.home-hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.home-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 54% 46%;
  position: relative;
  z-index: 1
}

.home-copy {
  padding: 76px 54px 48px 0;
  display: flex;
  flex-direction: column
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--copper-light);
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .15em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--copper-light);
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .15em;
  text-transform: uppercase
}

.breadcrumbs:before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none
}

.breadcrumbs li {
  display: flex;
  align-items: center
}

.breadcrumbs li+li:before {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: 0
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color .2s
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ivory)
}

.breadcrumbs [aria-current="page"] {
  color: rgba(255, 255, 255, .55)
}

.legal-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #c5d2d8;
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase
}

h1 {
  margin: 25px 0 23px;
  font: 500 clamp(58px, 5.4vw, 87px)/.94 Familjen Grotesk, sans-serif;
  letter-spacing: -.06em
}

h1 em {
  color: var(--copper-light);
  font-style: normal
}

.hero-lede {
  max-width: 650px;
  color: #b9c7ce;
  font-size: 15px;
  line-height: 1.78
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px
}

.hero-metrics {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, .17)
}

.metric {
  min-height: 96px;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, .17)
}

.metric:first-child {
  border-left: 0;
  padding-left: 0
}

.metric b {
  display: block;
  font: 600 25px/1 Familjen Grotesk, sans-serif
}

.metric span {
  display: block;
  margin-top: 9px;
  color: #8fa4af;
  font: 9px/1.45 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.home-media {
  position: relative;
  min-height: 720px;
  margin-right: calc((100vw - min(calc(100vw - 2*var(--pad)), var(--max)))/-2);
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%)
}

.home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.83) contrast(1.08)
}

.home-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 23, 36, .78), transparent 30%), linear-gradient(180deg, transparent 45%, rgba(7, 23, 36, .74))
}

.floating-proof {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 38px;
  width: min(420px, 83%);
  padding: 23px 25px;
  background: rgba(244, 240, 231, .97);
  color: var(--ink);
  border-top: 4px solid var(--copper)
}

.floating-proof h2 {
  margin: 13px 0 0;
  font: 600 22px/1.15 Familjen Grotesk, sans-serif;
  letter-spacing: -.03em
}

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

.proof-grid div {
  padding: 13px 10px 0;
  border-left: 1px solid var(--line)
}

.proof-grid div:first-child {
  border-left: 0;
  padding-left: 0
}

.proof-grid b {
  display: block;
  font: 500 10px "DM Mono", monospace
}

.proof-grid small {
  display: block;
  margin-top: 4px;
  color: #748087;
  font-size: 8px;
  text-transform: uppercase
}

.cert-rail {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(197, 109, 61, .06), transparent 55%),
    linear-gradient(180deg, #f7f4ec 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line)
}

.cert-rail:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 23, 36, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 36, .03) 1px, transparent 1px);
  background-size: 36px 36px
}

.cert-rail:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px
}

.cert-rail .frame {
  position: relative;
  z-index: 1;
  min-height: 100px;
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr)
}

.cert-intro,
.cert {
  display: flex;
  align-items: center
}

.cert-intro {
  color: #69757b;
  font: 9px/1.55 "DM Mono", monospace;
  letter-spacing: .11em;
  text-transform: uppercase
}

.cert {
  padding: 0 26px;
  gap: 14px;
  border-left: 1px solid var(--line)
}

.seal {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #87969c;
  border-radius: 50%;
  color: var(--copper);
  font: 500 11px "DM Mono", monospace
}

.cert b {
  display: block;
  font: 600 13px Familjen Grotesk, sans-serif
}

.cert small {
  display: block;
  margin-top: 4px;
  color: #758087;
  font: 8px "DM Mono", monospace;
  text-transform: uppercase
}

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden
}

.page-hero-grid {
  min-height: 525px;
  display: grid;
  grid-template-columns: 48% 52%;
  position: relative;
  z-index: 1
}

.page-hero-copy {
  padding: 82px 62px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.page-hero h1 {
  font-size: clamp(52px, 5vw, 78px);
  max-width: 760px
}

.page-hero p {
  max-width: 610px;
  color: #b8c6cd;
  line-height: 1.8
}

.page-hero-media {
  position: relative;
  min-height: 525px;
  margin-right: calc((100vw - min(calc(100vw - 2*var(--pad)), var(--max)))/-2);
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%)
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08)
}

.page-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 23, 36, .75), transparent 35%), linear-gradient(180deg, transparent 50%, rgba(7, 23, 36, .45))
}

.section {
  padding: 94px 0
}

.section.paper {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 70% at 8% 12%, rgba(197, 109, 61, .07), transparent 55%),
    radial-gradient(ellipse 70% 60% at 92% 88%, rgba(7, 23, 36, .05), transparent 50%),
    linear-gradient(180deg, #f7f4ec 0%, var(--paper) 42%, #f0ece3 100%)
}

.section.paper:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 23, 36, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 36, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .2) 55%, rgba(0, 0, 0, .45));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .2) 55%, rgba(0, 0, 0, .45))
}

.section.paper:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px
}

.section.paper > .frame {
  position: relative;
  z-index: 1
}

.section.navy {
  background: var(--navy-2);
  color: var(--ivory)
}

.section.sage {
  background: var(--sage)
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 45px
}

.section-no {
  color: var(--copper);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase
}

h2 {
  margin: 13px 0 0;
  font: 500 clamp(38px, 4vw, 58px)/1.04 Familjen Grotesk, sans-serif;
  letter-spacing: -.05em
}

.section-head p {
  max-width: none;
  margin: 0;
  color: var(--slate);
  line-height: 1.75
}

.navy .section-head p {
  color: #aab9c1
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.copy-lg {
  font-size: 18px;
  line-height: 1.75
}

.copy-muted {
  color: var(--slate)
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #aeb3af;
  border-left: 1px solid #aeb3af
}

.fact {
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid #aeb3af;
  border-bottom: 1px solid #aeb3af
}

.fact b {
  display: block;
  color: var(--copper);
  font: 600 30px Familjen Grotesk, sans-serif
}

.fact span {
  display: block;
  margin-top: 25px;
  font: 500 10px/1.5 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.image-panel {
  min-height: 410px;
  overflow: hidden;
  border-radius: 10px
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-caption {
  padding: 12px 0;
  color: #77838a;
  font: 9px "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 44px;
  align-items: start
}

.legal-aside {
  position: sticky;
  top: 108px
}

.legal-card {
  margin-bottom: 18px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(7, 23, 36, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 14px 36px rgba(7, 23, 36, .06)
}

.legal-card:last-child {
  margin-bottom: 0
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.08
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--slate);
  line-height: 1.75
}

.legal-card p:last-child {
  margin-bottom: 0
}

.legal-index {
  margin: 0;
  padding: 0;
  list-style: none
}

.legal-index li+li {
  margin-top: 10px
}

.legal-index a {
  display: block;
  position: relative;
  padding: 12px 14px 12px 18px;
  color: var(--ink);
  font: 500 11px/1.4 "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(7, 23, 36, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .55);
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background-color .2s ease, box-shadow .2s ease
}

.legal-index a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color .2s ease
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: var(--copper);
  border-color: rgba(197, 109, 61, .4);
  transform: translateX(4px);
  background: rgba(255, 255, 255, .92);
  outline: none
}

.legal-index a.is-active,
.legal-index a[aria-current="true"] {
  color: var(--copper-deep);
  border-color: rgba(197, 109, 61, .36);
  background: linear-gradient(135deg, rgba(197, 109, 61, .14), rgba(255, 255, 255, .96));
  box-shadow: 0 14px 28px rgba(197, 109, 61, .12);
  transform: translateX(6px)
}

.legal-index a.is-active:before,
.legal-index a[aria-current="true"]:before {
  background: linear-gradient(180deg, var(--copper), var(--copper-light))
}

.legal-doc {
  min-width: 0
}

.legal-block {
  margin-bottom: 18px;
  padding: 34px;
  border: 1px solid rgba(7, 23, 36, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72)
}

.legal-block:last-child {
  margin-bottom: 0
}

.legal-block:target {
  border-color: rgba(197, 109, 61, .3);
  box-shadow: 0 0 0 1px rgba(197, 109, 61, .08), 0 20px 44px rgba(7, 23, 36, .07)
}

.legal-block h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.3vw, 40px)
}

.legal-block h3 {
  margin: 26px 0 12px;
  font: 500 clamp(20px, 2vw, 26px)/1.12 Familjen Grotesk, sans-serif;
  letter-spacing: -.03em;
  color: var(--ink)
}

.legal-block p,
.legal-block li {
  color: var(--slate);
  line-height: 1.82
}

.legal-block p {
  margin: 0 0 14px
}

.legal-block p:last-child {
  margin-bottom: 0
}

.legal-block ul {
  margin: 0 0 16px;
  padding-left: 20px
}

.legal-block li+li {
  margin-top: 8px
}

.legal-callout {
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(197, 109, 61, .1), rgba(255, 255, 255, .76))
}

.legal-callout p {
  margin: 0
}

.legal-hero-panel {
  position: relative;
  min-height: 100%;
  padding: 54px clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(6, 19, 29, .9), rgba(18, 50, 71, .78)),
    radial-gradient(circle at top right, rgba(227, 154, 111, .22), transparent 42%);
  color: var(--ivory)
}

.legal-hero-panel:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  pointer-events: none
}

.legal-hero-panel>* {
  position: relative;
  z-index: 1
}

.legal-hero-panel .section-no {
  color: #f0b28c
}

.legal-hero-panel p {
  margin: 0;
  max-width: 440px;
  color: #d4dce0
}

.legal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.legal-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--ivory);
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #adb3b0;
  border-left: 1px solid #adb3b0
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #b6beb5;
  border-left: 1px solid #b6beb5
}

.mini-product {
  min-height: 175px;
  padding: 25px;
  border-right: 1px solid #b6beb5;
  border-bottom: 1px solid #b6beb5;
  background: rgba(255, 255, 255, .2);
  transition: background .2s ease
}

a.mini-product {
  color: inherit;
  text-decoration: none
}

a.mini-product:hover,
a.mini-product:focus-visible {
  background: rgba(197, 109, 61, .1);
  outline: none
}

.mini-product b {
  color: var(--copper);
  font: 500 10px "DM Mono", monospace
}

.mini-product h3 {
  margin: 24px 0 8px;
  font: 600 20px Familjen Grotesk, sans-serif
}

.mini-product p {
  margin: 0;
  color: var(--slate);
  font-size: 13px
}

.product-card {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 330px;
  border-right: 1px solid #adb3b0;
  border-bottom: 1px solid #adb3b0;
  background: #ebe8df
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06)
}

.product-card-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: 10px
}

.product-card-media img {
  transition: transform .55s ease, filter .35s ease
}

.product-card-media:hover img {
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.08)
}

.product-3d-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(7, 23, 36, .72);
  color: #f4f0e7;
  backdrop-filter: blur(6px)
}

.product-3d-section {
  overflow: hidden
}

.product-3d-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center
}

.product-3d-copy h2 {
  margin: 14px 0 12px;
  font: 600 clamp(32px, 3.4vw, 48px)/1.08 Familjen Grotesk, sans-serif;
  max-width: 14ch
}

.product-3d-copy > p {
  margin: 0;
  max-width: 42ch;
  color: #aebcc4;
  line-height: 1.75
}

.product-3d-list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.product-3d-list li {
  position: relative;
  padding-left: 14px;
  color: #c5d0d6;
  font: 500 13px/1.5 Manrope, sans-serif
}

.product-3d-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--copper-light);
  position: absolute;
  left: 0;
  top: .55em
}

.product-3d-cta {
  display: inline-flex
}

.product-3d-stage {
  position: relative;
  min-height: clamp(340px, 52vh, 560px);
  border: 1px solid rgba(197, 109, 61, .35);
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(197, 109, 61, .18), transparent 62%),
    linear-gradient(160deg, #0d2434 0%, #071724 55%, #0a1c2a 100%);
  box-shadow: var(--shadow-panel)
}

.product-model-viewer {
  width: 100%;
  height: clamp(340px, 52vh, 560px);
  --poster-color: transparent;
  background: transparent
}

.product-3d-hint {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 23, 36, .55);
  color: #e8ecef;
  letter-spacing: .1em
}

.product-copy {
  padding: 30px;
  display: flex;
  flex-direction: column
}

.product-copy h3 {
  margin: 28px 0 10px;
  font: 600 25px/1.1 Familjen Grotesk, sans-serif
}

.product-copy p {
  margin: 0;
  color: #667279
}

.product-copy .spec-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px
}

.product-copy .spec-list li {
  color: #4d5c64;
  font: 500 12px/1.45 Manrope, sans-serif;
  padding-left: 14px;
  position: relative
}

.product-copy .spec-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--copper);
  position: absolute;
  left: 0;
  top: .55em
}

.product-copy a,
.product-enquire:not(.button),
.product-action {
  margin-top: auto;
  color: var(--copper);
  font: 700 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease
}

.product-copy h3 a {
  margin-top: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  text-decoration: none
}

.product-copy h3 a:hover,
.product-copy h3 a:focus-visible {
  color: var(--copper)
}

.product-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px
}

.product-card-actions .product-action,
.product-card-actions .product-enquire:not(.button) {
  margin-top: 0
}

.product-copy a {
  padding-top: 18px;
  background: none;
  border: 0
}

.product-copy a:hover {
  color: var(--ink)
}

.product-action,
.product-enquire:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--copper);
  border-radius: var(--control-radius)
}

.product-action:hover,
.product-action:focus-visible,
.product-enquire:not(.button):hover,
.product-enquire:not(.button):focus-visible {
  color: var(--paper);
  background: var(--copper);
  border-color: var(--copper);
  outline: none
}

.product-detail-facts .fact {
  display: flex;
  flex-direction: column
}

.product-detail-facts .fact span {
  margin-top: 18px
}

.product-detail-facts .fact p {
  margin: 12px 0 0;
  color: var(--slate);
  font: 500 14px/1.65 Manrope, sans-serif;
  text-transform: none;
  letter-spacing: 0
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.product-related-card {
  display: grid;
  grid-template-rows: 190px auto;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 36, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.product-related-card:hover,
.product-related-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(197, 109, 61, .35);
  box-shadow: 0 18px 40px rgba(7, 23, 36, .1);
  outline: none
}

.product-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.82) contrast(1.06)
}

.product-related-card > div {
  padding: 18px 18px 20px
}

.product-related-card .mono {
  color: var(--copper);
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase
}

.product-related-card h3 {
  margin: 8px 0 12px;
  font: 500 24px/1.1 Familjen Grotesk, sans-serif;
  letter-spacing: -.03em
}

.product-related-card span {
  color: var(--copper);
  font: 700 10px/1.4 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #c9cdc6;
  vertical-align: top
}

.spec-table th {
  width: 28%;
  font: 600 12px/1.4 "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink)
}

.spec-table td {
  color: #56666f;
  font: 500 14px/1.55 Manrope, sans-serif
}

.section.navy .spec-table th,
.section.navy .spec-table td {
  border-bottom-color: rgba(255, 255, 255, .16)
}

.section.navy .spec-table th {
  color: var(--ivory)
}

.section.navy .spec-table td {
  color: #b7c4cb
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(20, 36, 44, .12)
}

.faq-item {
  border-bottom: 1px solid rgba(20, 36, 44, .12);
  padding: 0
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font: 600 17px/1.35 Familjen Grotesk, sans-serif;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font: 500 22px/1 "DM Mono", monospace;
  color: var(--copper, #b87333)
}

.faq-item[open] summary::after {
  content: "–"
}

.faq-item p {
  margin: 0 0 20px;
  max-width: 62ch;
  color: #56666f;
  font: 500 15px/1.6 Manrope, sans-serif
}

.section.navy .faq-list {
  border-top-color: rgba(255, 255, 255, .16)
}

.section.navy .faq-item {
  border-bottom-color: rgba(255, 255, 255, .16)
}

.section.navy .faq-item summary {
  color: var(--ivory)
}

.section.navy .faq-item p {
  color: #b7c4cb
}

.seo-expand {
  max-width: 68ch
}

.seo-expand a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid #e39a6f;
  border-left: 0.5px solid #e39a6f;
  border-right: 0.5px solid #e39a6f;
  border-bottom: 0.5px solid #e39a6f;
  border-radius: 10px;
}

.application {
  min-height: 180px;
  padding: 28px;
  
}

.application b {
  color: var(--copper-light);
  font: 500 15px "DM Mono", monospace
}

.application h3 {
  margin: 25px 0 8px;
  font: 600 20px Familjen Grotesk, sans-serif
}

.application p {
  margin: 0;
  color: #aab9c1;
  font-size: 13px
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
  gap: 76px
}

.process-intro {
  position: sticky;
  top: 30px
}

.process-intro p {
  color: #aab9c1
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, .22)
}

.process-step {
  min-height: 94px;
  display: grid;
  grid-template-columns: 70px 1fr 150px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.process-step .n {
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .22);
  color: var(--copper-light);
  font: 500 10px "DM Mono", monospace
}

.process-step strong {
  padding: 20px 27px;
  font: 500 clamp(17px, 1.5vw, 23px) Familjen Grotesk, sans-serif
}

.process-step small {
  padding-right: 8px;
  color: #718b99;
  text-align: right;
  font: 9px "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.process-step:last-child {
  background: rgba(197, 109, 61, .12);
  border-bottom-color: var(--copper)
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #b6beb5;
  border-left: 1px solid #b6beb5
}

.quality-card {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid #b6beb5;
  border-bottom: 1px solid #b6beb5
}

.quality-card b {
  color: var(--copper);
  font: 500 10px "DM Mono", monospace
}

.quality-card h3 {
  margin: 28px 0 10px;
  font: 600 22px Familjen Grotesk, sans-serif
}

.quality-card p {
  margin: 0;
  color: var(--slate)
}

.test-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .2)
}

.test-item {
  padding: 23px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  gap: 15px
}

.test-item b {
  color: var(--copper-light);
  font: 500 10px "DM Mono", monospace
}

.test-item span {
  font-weight: 600
}

.notice {
  padding: 20px 22px;
  border-left: 3px solid var(--copper);
  background: rgba(197, 109, 61, .09);
  color: var(--slate);
  font-size: 13px
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #b6beb5;
  border-left: 1px solid #b6beb5
}

.leader {
  padding: 36px;
  border-right: 1px solid #b6beb5;
  border-bottom: 1px solid #b6beb5
}

.leader .initial {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--copper-light);
  font: 500 22px Familjen Grotesk, sans-serif
}

.leader h3 {
  margin: 28px 0 5px;
  font: 600 24px Familjen Grotesk, sans-serif
}

.leader small {
  color: var(--copper);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase
}

.leader p {
  color: var(--slate)
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px
}

.contact-card {
  padding: 30px;
  border: 1px solid #b6beb5;
  border-radius: var(--field-radius);
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .4)
}

.contact-card b {
  display: block;
  color: var(--copper);
  font: 500 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em
}

.contact-card p,
.contact-card a {
  display: block;
  margin: 12px 0 0
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.field.full {
  grid-column: 1/-1
}

.form-legal {
  grid-column: 1 / -1;
  margin: 0;
  display: block;
  color: var(--slate);
  font: 500 13px/1.55 Manrope, sans-serif;
  white-space: nowrap
}

.form-legal a {
  color: var(--copper-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease
}

.form-legal a:hover,
.form-legal a:focus-visible {
  color: var(--copper);
  outline: none
}

.form.is-sent > .form-legal {
  display: none
}

.field label {
  font: 600 10px/1.2 "DM Mono", monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--navy-3)
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--field-radius);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--field-bg) 100%);
  padding: 14px 16px;
  color: var(--ink);
  font: 500 15px/1.4 Manrope, sans-serif;
  outline: none;
  box-shadow: var(--shadow-field);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(180deg, #ffffff 0%, var(--field-bg) 100%),
    linear-gradient(45deg, transparent 50%, var(--slate) 50%),
    linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position: 0 0, calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: auto, 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px
}

.field textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.55
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a969d
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #8f9a95
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--copper);
  background: #fff;
  box-shadow: var(--shadow-focus), var(--shadow-field)
}

.product-picks {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0
}

.product-picks legend {
  padding: 0;
  font: 600 10px/1.2 "DM Mono", monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--navy-3)
}

.field-hint {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.4
}

.product-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px
}

.check-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--field-radius);
  background: linear-gradient(180deg, #ffffff 0%, var(--field-bg) 100%);
  box-shadow: var(--shadow-field);
  cursor: pointer;
  font: 500 14px/1.35 Manrope, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.check-option input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--copper);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  background: transparent;
  cursor: pointer
}

.check-option:hover {
  border-color: #8f9a95
}

.check-option:has(input:checked) {
  border-color: var(--copper);
  background: #fff;
  box-shadow: var(--shadow-focus), var(--shadow-field)
}

.check-option:has(input:focus-visible) {
  border-color: var(--copper);
  box-shadow: var(--shadow-focus), var(--shadow-field)
}

.product-picks.is-invalid .check-option {
  border-color: #b42318
}

.product-picks.is-invalid .field-hint {
  color: #b42318
}

.field.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.form-result {
  margin: 0
}

.form-result[hidden] {
  display: none !important
}

.form-result-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 22px 22px 20px;
  border-radius: var(--panel-radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(197, 109, 61, .1), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--field-bg) 100%);
  box-shadow: var(--shadow-field);
  animation: form-result-in .45s ease both
}

.form-result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(197, 109, 61, .12);
  color: var(--copper-deep);
  border: 1px solid rgba(197, 109, 61, .28)
}

.form-result-icon:before {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px)
}

.form-result-eyebrow {
  margin: 0 0 6px;
  color: var(--copper);
  font: 500 10px/1.4 "DM Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase
}

.form-result-title {
  margin: 0 0 8px;
  font: 600 clamp(22px, 2.4vw, 28px)/1.15 Familjen Grotesk, sans-serif;
  letter-spacing: -.03em;
  color: var(--navy)
}

.form-result-text {
  margin: 0;
  max-width: 42ch;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65
}

.form-result.is-success .form-result-card {
  border-color: rgba(27, 94, 32, .18);
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(46, 125, 50, .1), transparent 55%),
    linear-gradient(180deg, #f7fbf7 0%, #eef6ef 100%)
}

.form-result.is-success .form-result-icon {
  background: rgba(46, 125, 50, .12);
  color: #1b5e20;
  border-color: rgba(46, 125, 50, .28)
}

.form-result.is-success .form-result-eyebrow {
  color: #2e7d32
}

.form-result.is-error .form-result-card {
  border-color: rgba(180, 35, 24, .2);
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(180, 35, 24, .08), transparent 55%),
    linear-gradient(180deg, #fff8f7 0%, #fdecea 100%)
}

.form-result.is-error .form-result-icon {
  background: rgba(180, 35, 24, .1);
  color: #b42318;
  border-color: rgba(180, 35, 24, .28)
}

.form-result.is-error .form-result-icon:before,
.form-result.is-error .form-result-icon:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2.5px;
  background: currentColor;
  border: 0;
  transform: none;
  top: 50%;
  left: 50%;
  margin: -1.25px 0 0 -8px
}

.form-result.is-error .form-result-icon:before {
  transform: rotate(45deg)
}

.form-result.is-error .form-result-icon:after {
  transform: rotate(-45deg)
}

.form-result.is-error .form-result-eyebrow {
  color: #b42318
}

.form.is-sent > .field:not(.form-result) {
  display: none
}

.form.is-sent .form-result {
  grid-column: 1 / -1
}

@keyframes form-result-in {
  from {
    opacity: 0;
    transform: translateY(10px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width: 560px) {
  .form-result-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px
  }
}

.enquire-dialog {
  width: min(580px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible
}

.enquire-dialog::backdrop {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(197, 109, 61, .16), transparent 42%),
    rgba(4, 14, 22, .78);
  backdrop-filter: blur(6px)
}

.enquire-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), transparent 28%),
    linear-gradient(145deg, rgba(197, 109, 61, .09), transparent 46%),
    var(--paper);
  border: 1px solid rgba(167, 145, 122, .45);
  border-radius: var(--panel-radius);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow-panel);
  overflow: auto;
  max-height: calc(100vh - 40px)
}

.enquire-panel:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-light), var(--copper-deep));
  border-radius: var(--panel-radius) var(--panel-radius) 0 0
}

.enquire-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(167, 145, 122, .28)
}

.enquire-head .mono {
  color: var(--copper);
  margin-bottom: 8px
}

.enquire-head h2 {
  margin: 0;
  font: 600 clamp(28px, 3.2vw, 36px)/1.05 Familjen Grotesk, sans-serif;
  letter-spacing: -.02em
}

.enquire-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  background: linear-gradient(180deg, #fff, var(--ivory));
  color: var(--ink);
  font: 500 24px/1 Familjen Grotesk, sans-serif;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: var(--shadow-field);
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease
}

.enquire-close:hover,
.enquire-close:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
  outline: none;
  box-shadow: var(--shadow-focus)
}

.enquire-lede {
  margin: 0 0 24px;
  color: var(--slate);
  font: 500 14px/1.6 Manrope, sans-serif
}

.enquire-form .field select:disabled,
.enquire-form .field select[readonly] {
  color: var(--ink);
  background: #f3f0e8;
  cursor: default
}

.enquire-actions {
  display: flex;
  margin-top: 6px
}

.enquire-actions .button {
  margin: 0;
  min-width: 180px
}

@media (prefers-reduced-motion: no-preference) {
  .enquire-dialog[open] {
    animation: enquire-in .3s cubic-bezier(.22, 1, .36, 1)
  }

  .enquire-dialog[open]::backdrop {
    animation: enquire-backdrop .3s ease
  }
}

@keyframes enquire-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes enquire-backdrop {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.cta {
  background: var(--copper);
  color: white
}

.cta .frame {
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.cta h2 {
  margin: 0;
  max-width: 780px
}

.cta p {
  margin: 10px 0 0;
  color: #f6d8c6
}

.cta .button {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
  box-shadow: none
}

.cta .button:hover {
  background: #ffffff;
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 23, 36, .18)
}

footer {
  background: #06131d;
  color: #8ea0aa
}

.footer-main {
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 45px
}

.footer-main h4 {
  color: var(--ivory);
  font: 600 12px Familjen Grotesk, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.footer-main a,
.footer-main p {
  display: block;
  margin: 9px 0;
  font-size: 13px
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--control-radius);
  color: #b7c4cb;
  transition: color .2s ease, border-color .2s ease, background .2s ease
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ffffff;
  border-color: var(--copper-light);
  background: rgba(208, 122, 72, .16);
  outline: none
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  font: 9px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .09em
}

.footer-bottom .frame {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom a {
  color: var(--copper-light);
  text-decoration: none;
  transition: color .2s ease
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  outline: none
}

@media(max-width:1100px) {
  .nav .frame {
    grid-template-columns: 200px 1fr auto;
    gap: 16px
  }

  .nav-links {
    gap: 18px
  }

  .brand-logo {
    height: 52px;
    max-width: min(200px, 100%)
  }

  .home-grid,
  .page-hero-grid {
    grid-template-columns: 1fr
  }

  .home-media,
  .page-hero-media {
    margin-right: 0;
    clip-path: none;
    min-height: min(500px, 55vh)
  }

  .home-copy,
  .page-hero-copy {
    min-height: 0;
    padding: 48px 0 36px
  }

  .floating-proof {
    right: 30px
  }

  .cert-rail .frame {
    grid-template-columns: 1fr 1fr
  }

  .cert-intro {
    grid-column: 1/-1;
    min-height: 55px
  }

  .cert {
    min-height: 76px
  }

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

  .product-grid {
    grid-template-columns: 1fr
  }

  .process-layout {
    grid-template-columns: 1fr
  }

  .process-intro {
    position: static
  }

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

@media(max-width:780px) {
  :root {
    --pad: clamp(16px, 5vw, 28px)
  }

  .hide-mobile {
    display: none
  }

  .nav {
    height: 72px
  }

  .brand-logo {
    height: 46px;
    max-width: min(200px, 58vw)
  }

  .nav .frame {
    grid-template-columns: 1fr auto;
    gap: 12px
  }

  .nav-cta {
    display: none
  }

  .nav.open {
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-color: transparent
  }

  /* Keep logo + menu button above the scrim */
  .nav.open .frame {
    position: relative;
    z-index: 201
  }

  /* Scrim behind panel (not over the header bar) */
  .nav:after {
    content: "";
    position: fixed;
    top: var(--menu-top, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 198;
    background: rgba(7, 23, 36, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease
  }

  .nav.open:after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
  }

  .nav-links {
    display: block;
    position: fixed;
    top: var(--menu-top, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--menu-top, 72px));
    max-height: calc(100dvh - var(--menu-top, 72px));
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: #ffffff;
    color: #071724;
    border-top: 1px solid rgba(7, 23, 36, .1);
    box-shadow: 0 18px 40px rgba(7, 23, 36, .12);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -14px, 0);
    transition:
      opacity .32s ease,
      transform .4s cubic-bezier(.22, 1, .36, 1),
      visibility .32s ease
  }

  .nav.open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0)
  }

  .nav-mobile-scroll {
    padding: 12px var(--pad) 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }

  .nav-mobile-scroll>a,
  .nav-item>a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    letter-spacing: .08em;
    padding: 0;
    border-bottom: 1px solid rgba(7, 23, 36, .08)
  }

  .nav-mobile-scroll>a,
  .nav-item,
  .nav-mobile-contact {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    transition:
      opacity .28s ease,
      transform .36s cubic-bezier(.22, 1, .36, 1);
    transition-delay: 0s
  }

  .nav.open .nav-mobile-scroll>a:nth-child(1) {
    transition-delay: .05s
  }

  .nav.open .nav-mobile-scroll>a:nth-child(2) {
    transition-delay: .09s
  }

  .nav.open .nav-item {
    transition-delay: .13s
  }

  .nav.open .nav-mobile-scroll>a:nth-child(4) {
    transition-delay: .17s
  }

  .nav.open .nav-mobile-scroll>a:nth-child(5) {
    transition-delay: .21s
  }

  .nav.open .nav-mobile-contact {
    transition-delay: .26s
  }

  .nav.open .nav-mobile-scroll>a,
  .nav.open .nav-item,
  .nav.open .nav-mobile-contact {
    opacity: 1;
    transform: translate3d(0, 0, 0)
  }

  .nav.open .nav-links a:after,
  .nav.open .nav-item>a:after,
  .nav.open .nav-mobile-scroll>a:after {
    display: none !important
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
    height: auto
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none
  }

  .nav-dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    margin-top: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: none;
    border-color: transparent;
    background: #f7f5f0;
    transition: max-height .25s ease, opacity .2s ease, margin .2s ease, padding .2s ease, visibility .2s ease
  }

  .nav-dropdown:before {
    display: none
  }

  .nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 280px;
    margin: 4px 0 8px;
    padding: 8px;
    border: 1px solid rgba(7, 23, 36, .08);
    border-radius: var(--control-radius)
  }

  .nav-item.open .nav-caret {
    transform: rotate(180deg)
  }

  .nav-dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    white-space: normal
  }

  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px var(--pad) 20px;
    padding: 14px 16px;
    border: 1px solid rgba(7, 23, 36, .1);
    border-radius: var(--control-radius);
    background: #f4f0e7
  }

  @media (prefers-reduced-motion: reduce) {
    .nav:after,
    .nav-links,
    .nav-mobile-scroll>a,
    .nav-item,
    .nav-mobile-contact {
      transition-duration: .01ms !important;
      transition-delay: 0s !important
    }
  }

  body:has(.nav.open) {
    overflow: hidden
  }

  body:has(.nav.open)::before {
    content: "";
    display: block;
    height: 72px
  }

  .nav-mobile-contact .mono {
    color: var(--copper);
    margin-bottom: 2px
  }

  .nav-mobile-contact strong {
    font: 600 16px/1.3 Familjen Grotesk, sans-serif;
    color: #071724;
    text-transform: none;
    letter-spacing: 0
  }

  .nav-mobile-contact a {
    font: 500 14px/1.45 Manrope, sans-serif;
    letter-spacing: 0;
    text-transform: none;
    color: #3d4d56;
    min-height: 40px;
    display: flex;
    align-items: center;
    word-break: break-word
  }

  .nav-mobile-contact a:hover,
  .nav-mobile-contact a:focus-visible {
    color: var(--copper)
  }

  .menu {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    font-size: 0;
    line-height: 0;
    position: relative
  }

  .menu:before,
  .menu:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), top .28s ease, opacity .2s ease, box-shadow .28s ease
  }

  .menu:before {
    top: 16px;
    box-shadow: 0 5px 0 currentColor
  }

  .menu:after {
    top: 26px
  }

  .menu:hover:before {
    box-shadow: 0 5px 0 currentColor
  }

  .menu[aria-expanded="true"]:before,
  .menu[aria-expanded="true"]:hover:before {
    top: 21px;
    box-shadow: none;
    transform: rotate(45deg)
  }

  .menu[aria-expanded="true"]:after {
    top: 21px;
    transform: rotate(-45deg)
  }

  .home-grid,
  .page-hero-grid {
    min-height: 0
  }

  .home-copy,
  .page-hero-copy {
    padding: 40px 0 28px;
    min-height: 0
  }

  .home-copy h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px)
  }

  .home-media,
  .page-hero-media {
    min-height: 280px;
    max-height: 420px
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 28px
  }

  .metric {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
    min-height: auto;
    padding: 16px 0
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 16px;
    max-width: none
  }

  .cert-rail .frame {
    grid-template-columns: 1fr
  }

  .cert {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0;
    min-height: 0
  }

  .section {
    padding: 56px 0
  }

  .section-head,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .section-head p {
    margin: 0
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .legal-aside {
    position: static
  }

  .legal-block {
    padding: 26px
  }

  .product-related-grid {
    grid-template-columns: 1fr
  }

  .product-related-card {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto
  }

  .product-related-card img {
    min-height: 120px
  }

  .fact-grid,
  .application-grid,
  .quality-grid,
  .leader-grid,
  .test-list,
  .mini-product-grid {
    grid-template-columns: 1fr
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .product-card img {
    height: 220px
  }

  .product-3d-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .product-3d-copy h2 {
    max-width: none
  }

  .product-3d-stage,
  .product-model-viewer {
    min-height: 320px;
    height: 320px
  }

  .product-copy {
    padding: 22px
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 16px 0
  }

  .process-step small {
    display: none
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0
  }

  .spec-table th {
    padding-bottom: 4px
  }

  .spec-table tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #c9cdc6
  }

  .spec-table td {
    border-bottom: 0
  }

  .cta .frame {
    padding: 40px 0;
    display: block;
    min-height: 0
  }

  .cta .button {
    margin-top: 20px;
    width: 100%
  }

  .legal-meta {
    gap: 8px
  }

  .legal-meta span,
  .legal-pill-row span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 9px
  }

  .legal-hero-panel {
    padding: 28px 18px
  }

  .legal-card {
    padding: 18px
  }

  .legal-block {
    padding: 22px 18px
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 28px
  }

  .footer-bottom .frame {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0
  }

  .footer-bottom a {
    display: inline
  }

  .form {
    grid-template-columns: 1fr
  }

  .form-legal {
    white-space: normal
  }

  .field.full {
    grid-column: auto
  }

  .product-picks-grid {
    grid-template-columns: 1fr
  }

  .enquire-dialog {
    width: min(100vw - 24px, 580px);
    max-height: calc(100dvh - 24px)
  }

  .enquire-panel {
    padding: 22px 18px;
    max-height: calc(100dvh - 24px)
  }

  .enquire-actions .button {
    width: 100%;
    min-width: 0
  }

  .image-panel {
    min-height: 240px
  }
}

@media(max-width:420px) {
  .brand-logo {
    height: 40px
  }

  .home-copy h1,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 40px)
  }

  .nav-links {
    font-size: 1em
  }

  .nav-mobile-scroll {
    padding: 12px var(--pad) 0
  }

  .nav.open .nav-mobile-contact {
    margin: 8px var(--pad) 16px;
    padding: 12px 14px
  }
}

@media(max-width:780px) and (max-height:480px) {
  .nav {
    height: 56px
  }

  body:has(.nav.open)::before {
    height: 56px
  }

  .brand-logo {
    height: 36px
  }

  .nav-mobile-scroll {
    padding: 8px var(--pad) 0;
    gap: 0
  }

  .nav.open .nav-mobile-scroll>a,
  .nav.open .nav-item>a {
    min-height: 40px;
    font-size: 12px
  }

  .nav.open .nav-mobile-contact {
    margin: 6px var(--pad) 12px;
    padding: 10px 12px;
    gap: 2px
  }

  .nav-mobile-contact strong {
    font-size: 14px
  }

  .nav-mobile-contact a {
    min-height: 32px;
    font-size: 13px
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    will-change: transform, opacity, filter, clip-path
  }

  .reveal-clip {
    overflow: hidden
  }

  .reveal-perspective {
    transform-style: preserve-3d;
    perspective: 900px
  }

  /* SplitText: never clip heading glyphs; never break mid-word */
  h1.reveal-split,
  h2.reveal-split {
    overflow: visible;
    perspective: 700px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none
  }

  /* Base h1 uses line-height .94 — too tight for masked chars */
  h1.reveal-split {
    line-height: 1.08;
    letter-spacing: -.06em
  }

  .reveal-split .reveal-word {
    display: inline-block;
    white-space: nowrap;
    vertical-align: baseline;
    word-break: keep-all;
    letter-spacing: inherit
  }

  .reveal-split .reveal-char-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    /* Vertical room only — horizontal pad was blowing letter-spacing */
    padding: .18em 0 .22em;
    margin: -.12em 0 -.14em;
    line-height: 1;
    letter-spacing: 0
  }

  .reveal-split .reveal-char {
    display: inline-block;
    transform-origin: 50% 100%;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    line-height: 1;
    letter-spacing: 0;
    margin: 0
  }

  .reveal-split.is-words .reveal-word {
    transform-origin: 50% 100%;
    will-change: transform, opacity, filter;
    backface-visibility: hidden
  }
}

/* Always-on split layout guards (even if motion reduced after split ran) */
h1.reveal-split,
h2.reveal-split {
  overflow: visible;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none
}

h1.reveal-split {
  line-height: 1.08;
  letter-spacing: -.06em
}

.reveal-split .reveal-word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
  letter-spacing: inherit
}

.reveal-split .reveal-char-mask,
.reveal-split .reveal-char {
  letter-spacing: 0
}

.go-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--copper-deep);
  border-radius: var(--control-radius);
  background: linear-gradient(180deg, #d07a48 0%, var(--copper) 48%, var(--copper-deep) 100%);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 22px rgba(7, 23, 36, .22);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease, color .2s ease, border-color .2s ease
}

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

.go-top:hover,
.go-top:focus-visible {
  background: #fff;
  color: var(--copper-deep);
  border-color: var(--copper-deep);
  outline: none
}

.go-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}

@media (max-width: 720px) {
  .go-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px
  }
}