/* AU-IMX precision industrial design layer */
:root {
  --navy: #081f33;
  --navy2: #0d334d;
  --ink: #172329;
  --muted: #59696c;
  --gold: #c19a52;
  --bronze: #9d6f35;
  --sand: #eee7db;
  --pale: #f4f6f4;
  --white: #ffffff;
  --line: #d9dfdd;
  --line-dark: #2b4558;
  --success: #1c7252;
  --shadow: 0 22px 55px rgba(8, 31, 51, .09);
  --shadow-strong: 0 30px 80px rgba(8, 31, 51, .16);
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-space: clamp(72px, 8vw, 120px);
}

html { scroll-padding-top: 92px; }
body {
  color: var(--ink);
  background: #fcfcfa;
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
main { min-height: 50vh; }
main:focus { outline: 0; }
img { height: auto; }
button, input, select, textarea, .btn { font-family: inherit; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 5vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.4vw, 3.75rem); line-height: 1.08; }
h3 { line-height: 1.2; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid #2f789c;
  outline-offset: 3px;
}

.skip {
  top: 12px;
  left: 12px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip:focus { top: 12px; transform: translateY(0); }

.topline {
  height: 32px;
  padding-inline: var(--gutter);
  background: #061827;
  color: #d9e1e3;
  letter-spacing: .12em;
  font-size: .66rem;
}
.topline span:last-child { display: flex; align-items: center; gap: 12px; }
.topline i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  gap: clamp(20px, 3vw, 48px);
  padding-inline: var(--gutter);
  background: rgba(252, 252, 250, .96);
  border-color: var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.site-header[data-raised="true"] { box-shadow: 0 12px 36px rgba(8, 31, 51, .08); }
.brand { display: inline-flex; min-width: 146px; min-height: 62px; align-items: center; margin-right: auto; }
.brand img { width: 146px; height: 62px; object-fit: contain; }

.site-header nav {
  position: static;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: .86rem;
  font-weight: 700;
}
.site-header nav > a,
.nav-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  color: #26363d;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color .16s ease;
}
.site-header nav > a:hover,
.site-header nav > a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible { color: var(--bronze); }
.nav-trigger span { margin-left: 4px; font-size: .72rem; transition: transform .16s ease; }
.nav-trigger[aria-expanded="true"] span { transform: rotate(180deg); }
.nav-group { position: static; }

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: .7fr 2fr;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-group:focus-within .mega-menu,
.nav-group:hover .mega-menu,
.mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-intro {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--line);
}
.mega-intro > span,
.mega-links small {
  display: block;
  color: var(--bronze);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mega-intro strong { display: block; margin: 12px 0 26px; color: var(--navy); font: 700 1.4rem/1.3 "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif; }
.mega-intro a { color: var(--navy); font-weight: 800; }
.mega-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 24px; }
.mega-links a { padding: 12px 14px; border-left: 2px solid transparent; transition: background-color .15s ease, border-color .15s ease; }
.mega-links a:hover { border-color: var(--gold); background: var(--pale); }
.mega-links span { display: block; color: var(--navy); font-weight: 800; }
.mega-links small { margin-top: 3px; color: var(--muted); font-size: .7rem; font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.45; }
.nav-mobile-actions { display: none; }
.head-actions { gap: 16px; }
.head-actions .btn { white-space: nowrap; }

.menu {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: 700 .78rem "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}
.menu-lines { display: grid; width: 19px; gap: 5px; }
.menu-lines i { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .18s ease; }
.menu[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.btn {
  min-height: 48px;
  border-radius: 7px;
  padding: .82rem 1.35rem;
  letter-spacing: .01em;
  box-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(8, 31, 51, .16); }
.btn.small { min-height: 44px; padding: .65rem 1rem; }
.btn.outline { background: var(--white); }
.btn.outline:hover { color: var(--white); background: var(--navy); }
.arrow { display: inline-flex; min-height: 44px; align-items: center; color: var(--bronze); }

.hero {
  width: 100%;
  min-height: 540px;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(46px, 6vw, 100px);
  padding: clamp(70px, 7vw, 110px) var(--gutter);
  background: linear-gradient(120deg, #f3f5f3 0%, #fcfcfa 56%, #eef1ef 100%);
}
.hero-copy { max-width: 720px; }
.hero-copy p { max-width: 660px; color: #536468; font-size: clamp(1rem, 1.25vw, 1.17rem); }
.page-hero { min-height: 460px; align-items: center; padding-block: clamp(64px, 6vw, 94px); }
.page-hero h1 { max-width: 780px; font-size: clamp(2.5rem, 4.7vw, 4.8rem); }
.page-hero .hero-art { height: 360px; min-height: 360px; }
.page-hero .hero-product-image,
.page-hero .hero-product-image img { height: 360px; }
.page-hero .industrial-scene { inset: 0; border-radius: var(--radius-lg); }

.premium-home-hero {
  min-height: 680px;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  padding-block: clamp(64px, 6.5vw, 100px);
  overflow: hidden;
}
.premium-home-hero .hero-copy { max-width: 730px; }
.premium-home-hero h1 { max-width: 720px; font-size: clamp(3rem, 4.65vw, 5rem); letter-spacing: -.055em; }
.premium-home-hero .hero-copy > p { max-width: 650px; margin-bottom: 0; }
.premium-home-hero .actions { margin-top: 28px; }
.premium-home-hero .hero-art { height: clamp(460px, 38vw, 570px); min-height: 0; margin: 0; }
.premium-home-hero .home-hero-media { border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); }
.premium-home-hero .home-hero-media::after { background: linear-gradient(180deg, transparent 48%, rgba(3, 18, 29, .78)); }
.premium-home-hero .home-hero-media img { object-position: 58% center; }
.premium-home-hero .home-hero-media figcaption { left: 26px; right: 26px; bottom: 24px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-proof span { position: relative; padding-left: 15px; color: #3b4e54; font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.hero-proof span::before { content: ""; position: absolute; top: .48em; left: 0; width: 6px; height: 6px; background: var(--gold); }
.hero-index { position: absolute; top: -18px; right: -18px; z-index: 3; display: grid; width: 104px; height: 104px; place-content: center; border: 1px solid rgba(255,255,255,.5); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.hero-index b { font: 800 1.5rem "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif; color: var(--gold); }
.hero-index span { font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }

.trustbar {
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  border-block: 1px solid #dfd5c5;
  background: var(--sand);
  color: #5c4a2d;
  font-size: .68rem;
}

.section,
.split,
.product-layout,
.contact-layout,
.form-section { padding-inline: var(--gutter); }
.section { padding-block: var(--section-space); }
.section > :where(.section-head, .product-grid, .category-grid, .article-grid, .map-panel, .process-flow, .industry-feature-grid, .catalogue-tools, .catalogue-empty),
.section.intro > *,
.split > *,
.product-layout > *,
.contact-layout > *,
.form-section > * { max-width: var(--container); }
.section-head { max-width: var(--container); margin-inline: auto; margin-bottom: clamp(34px, 4vw, 58px); }
.section-head > div { max-width: 850px; }
.section-head p { max-width: 680px; }
.section.intro { max-width: none; grid-template-columns: 1.08fr .72fr; gap: clamp(50px, 9vw, 140px); align-items: end; }
.section.intro > *:first-child { justify-self: end; width: min(760px, 100%); }
.section.intro > *:last-child { justify-self: start; width: min(520px, 100%); }
.section.intro p { margin-bottom: 8px; }

.premium-categories { background: var(--pale); }
.category-grid {
  max-width: var(--container);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.category-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
}
.category-image { position: absolute; inset: 0; z-index: -2; opacity: .12; transition: opacity .25s ease, transform .35s ease; }
.category-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.3), #fff 72%); }
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, transparent 45%, rgba(193,154,82,.08)); }
.category-card:hover { background: var(--navy); transform: none; }
.category-card:hover .category-image { opacity: .24; transform: scale(1.04); }
.category-card:hover .category-image::after { background: linear-gradient(180deg, rgba(8,31,51,.18), var(--navy) 74%); }
.category-card .num { color: var(--bronze); letter-spacing: .12em; }
.category-card h3 { max-width: 280px; font-size: 1.5rem; }
.category-card p { max-width: 330px; font-size: .92rem; }

.featured-products { background: #fff; }
.product-grid {
  max-width: var(--container);
  margin-inline: auto;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8,31,51,.03);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card[hidden] { display: none; }
.product-card > div:last-child { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.product-visual { height: auto; aspect-ratio: 4 / 3; background: #edf0ee; }
.product-visual.photo img { transition: transform .35s ease; }
.product-card:hover .product-visual.photo img { transform: scale(1.035); }
.product-visual em { position: absolute; right: 14px; bottom: 14px; z-index: 2; padding: 7px 10px; background: rgba(8,31,51,.88); color: var(--white); font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity .18s ease, transform .18s ease; }
.product-card:hover .product-visual em,
.product-visual:focus-visible em { opacity: 1; transform: translateY(0); }
.product-card .tag { color: var(--bronze); }
.product-card h3 { margin: 10px 0 8px; font-size: 1.24rem; }
.product-card p { flex: 1; margin-bottom: 18px; color: var(--muted); font-size: .9rem; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.product-actions a { min-height: 40px; display: inline-flex; align-items: center; font-size: .78rem; font-weight: 800; }
.product-actions a:last-child { color: var(--navy); }

.process-section { overflow: hidden; background: #fff; }
.process-flow { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.process-flow > div { position: relative; min-height: 230px; padding: 30px 20px; border-right: 1px solid var(--line); }
.process-flow > div:last-child { border-right: 0; }
.process-flow > div::after { content: ""; position: absolute; right: -5px; top: 42px; z-index: 2; width: 9px; height: 9px; border: 2px solid var(--gold); border-left: 0; border-bottom: 0; transform: rotate(45deg); background: #fff; }
.process-flow > div:last-child::after { display: none; }
.process-flow span { color: var(--bronze); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.process-flow h3 { margin-top: 42px; font-size: 1.15rem; }
.process-flow p { font-size: .82rem; }

.section.navy { max-width: none; padding-block: var(--section-space); background: #071b2b; }
.section.navy > .eyebrow,
.section.navy > h2,
.section.navy > .why-grid { max-width: var(--container); margin-inline: auto; }
.section.navy > h2 { max-width: 800px; margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.why-grid { border-top: 1px solid var(--line-dark); }
.why-grid > div { min-height: 260px; padding: 34px 28px; border-left-color: var(--line-dark); }
.why-grid b { font-size: .72rem; letter-spacing: .12em; }
.why-grid h3 { margin-top: 50px; }

.industry-feature { background: var(--sand); }
.industry-feature-grid { max-width: var(--container); margin-inline: auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.industry-feature-grid a { min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border: 1px solid #d8cdbd; background: rgba(255,255,255,.52); transition: background-color .18s ease, transform .18s ease; }
.industry-feature-grid a:hover { transform: translateY(-4px); background: var(--white); }
.industry-feature-grid span { margin-bottom: auto; color: var(--bronze); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.industry-feature-grid h3 { font-size: 1.5rem; }
.industry-feature-grid b { color: var(--navy); font-size: .8rem; }

.map-panel {
  max-width: var(--container);
  margin-inline: auto;
  min-height: 420px;
  grid-template-columns: .95fr 1.05fr;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 72px);
  background: #0a2a42;
  box-shadow: var(--shadow);
}
.map-panel h2 { max-width: 680px; color: var(--white); font-size: clamp(2rem, 3vw, 3.25rem); }
.map-panel .eyebrow { color: #d7b978; }
.routes span { border-radius: 5px; }

.article-grid { max-width: var(--container); margin-inline: auto; gap: 12px; }
.article-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 28px; border-top: 2px solid var(--gold); background: var(--pale); }
.article-grid article p { flex: 1; }
.inquiry { max-width: none; padding-block: clamp(52px, 6vw, 80px); background: var(--sand); }
.inquiry > *:first-child { margin-left: max(0px, calc((100vw - var(--container)) / 2)); }

.catalogue-section { background: #fff; }
.catalogue-tools { max-width: var(--container); margin: 0 auto 42px; padding: 28px; border: 1px solid var(--line); background: var(--pale); }
.catalogue-tools > div:first-child { display: grid; grid-template-columns: 190px minmax(0, 1fr); align-items: center; margin-bottom: 20px; }
.catalogue-tools label { color: var(--navy); font-weight: 800; }
.catalogue-tools input { min-height: 52px; border-radius: 6px; background: var(--white); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chips button { min-height: 44px; border: 1px solid var(--line); border-radius: 4px; padding: 8px 12px; background: var(--white); color: #3d4e52; font: 700 .75rem "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif; cursor: pointer; }
.filter-chips button:hover,
.filter-chips button.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.catalogue-status { margin: 16px 0 0; color: var(--muted); font-size: .78rem; font-weight: 700; }
.catalogue-empty { max-width: var(--container); margin: 36px auto 0; padding: 56px; text-align: center; background: var(--pale); }

.product-layout { max-width: var(--container); margin-inline: auto; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(44px, 6vw, 90px); padding-block: clamp(70px, 7vw, 110px); }
.product-layout article { max-width: 850px; }
.product-layout article h2 { margin-top: 44px; padding-top: 8px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.product-layout .lede > h2 { margin-top: 0; }
.disclaimer,
.safety { border-left-width: 3px; border-radius: 0 6px 6px 0; }
.pill-list span { border-radius: 4px; }
.table-wrap { border: 1px solid var(--line); }
table { background: var(--white); }
th, td { padding: 15px 18px; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
.downloads a { min-height: 112px; display: flex; flex-direction: column; justify-content: center; border-radius: 6px; transition: border-color .15s ease, background-color .15s ease; }
.downloads a:hover { border-color: var(--gold); background: #fffaf0; }
.faq details { padding: 18px 0; }
.faq summary { min-height: 44px; display: flex; align-items: center; }
.rfq-side { top: 104px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--pale); }
.breadcrumbs { padding: 15px var(--gutter); border-top: 1px solid var(--line); background: #eef1ef; }

.form-section { padding-block: clamp(64px, 7vw, 100px); }
.rfq-form,
.contact-form { border: 1px solid var(--line); border-radius: 10px; padding: clamp(24px, 4vw, 52px); box-shadow: 0 12px 38px rgba(8,31,51,.07); }
fieldset { gap: 20px; margin-bottom: 38px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
fieldset:last-of-type { border-bottom: 0; }
legend { width: 100%; margin-bottom: 20px; font-size: 1.32rem; }
.rfq-form label,
.contact-form label { gap: 7px; font-size: .82rem; }
input, select, textarea { min-height: 50px; border-radius: 6px; padding: 12px 14px; }
textarea { min-height: 150px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #9eaba9; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(47,120,156,.2); border-color: #2f789c; }
.consent { min-height: 44px; gap: 10px !important; }
.consent input { min-width: 20px; min-height: 20px; }
.contact-layout { max-width: none; grid-template-columns: minmax(290px, 380px) minmax(0, 1fr); gap: 24px; padding-block: clamp(64px, 7vw, 100px); }
.contact-layout > *:first-child { justify-self: end; width: 100%; }
.contact-layout > *:last-child { justify-self: start; width: 100%; max-width: 900px; }
.contact-card { border-radius: 8px; }
.contact-card dd a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }
.contact-card dd a:hover { text-decoration-color: currentColor; }

.resource-grid { max-width: var(--container); margin-inline: auto; }
.resource-grid article { min-height: 220px; display: flex; flex-direction: column; border-radius: 6px; background: var(--white); }
.resource-grid article a { margin-top: auto; color: var(--bronze); font-weight: 800; }
.filterbar { max-width: var(--container); margin-inline: auto; }

.cta-band {
  padding: clamp(54px, 6vw, 86px) var(--gutter);
  background: #0b2b42;
}
.cta-band > div:first-child { max-width: 820px; margin-left: max(0px, calc((100vw - var(--container)) / 2)); }
.cta-band h2 { font-size: clamp(2rem, 3.2vw, 3.5rem); }
.cta-band p { margin-bottom: 0; color: #c8d4d9; }
.cta-band > div:last-child { margin-right: max(0px, calc((100vw - var(--container)) / 2)); }

footer { padding: clamp(60px, 7vw, 96px) var(--gutter) 28px; background: #051622; }
.foot-main { max-width: var(--container); margin-inline: auto; grid-template-columns: 1.7fr repeat(3, 1fr); gap: clamp(30px, 5vw, 80px); }
.foot-main > div:first-child > .footer-brand-logo { width: 220px; height: auto; padding: 10px 14px; border-radius: 6px; background: #fff; }
.foot-main p { color: #9eafb5; }
.foot-main a { min-height: 36px; display: inline-flex; align-items: center; }
.footer-rfq { color: #d7b978; font-weight: 800; }
.foot-bottom { max-width: var(--container); margin: 60px auto 0; }
.foot-bottom button { border: 0; padding: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom button:hover, .foot-bottom button:focus-visible { color: var(--white); }
.wa-float { width: 52px; height: 52px; border-radius: 8px; right: 18px; bottom: 18px; }

.cookie {
  left: 50%;
  right: auto;
  bottom: 16px;
  width: min(680px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px 12px 18px;
  transform: translateX(-50%);
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .84rem; }
.cookie p span { color: var(--muted); }
.cookie p a, .consent a { color: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-actions .btn { white-space: nowrap; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header { gap: 20px; }
  .site-header nav { gap: 18px; }
  .head-actions .text-link { display: none; }
  .premium-home-hero { grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr); }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .process-flow > div:nth-child(3) { border-right: 0; }
  .process-flow > div:nth-child(3)::after { display: none; }
  .process-flow > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .industry-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1050px) {
  .topline span:last-child { display: none; }
  .topline { justify-content: center; }
  .site-header { height: 72px; backdrop-filter: none; }
  .brand { margin-right: 0; }
  .brand { min-width: 122px; min-height: 52px; }
  .brand img { width: 122px; height: 52px; }
  .menu { display: inline-flex; margin-left: auto; }
  .head-actions { display: none; }
  .site-header nav#site-nav {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(430px, 100%);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 24px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -24px 30px 60px rgba(8,31,51,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .22s ease, opacity .18s ease, visibility .22s;
  }
  .site-header nav#site-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
  .site-header nav#site-nav > a,
  .nav-trigger { width: 100%; min-height: 50px; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-group { width: 100%; }
  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0 20px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mega-menu.open { display: grid; }
  .mega-intro { padding: 0 0 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .mega-intro strong { margin: 8px 0 12px; font-size: 1.05rem; }
  .mega-links { grid-template-columns: 1fr; gap: 1px; }
  .mega-links small { display: none; }
  .mega-links a { padding-block: 10px; }
  .nav-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
  .nav-mobile-actions a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--navy); border-radius: 6px; font-weight: 800; }
  .nav-mobile-actions .btn { color: var(--white); }
  .hero,
  .premium-home-hero { grid-template-columns: 1fr; gap: 42px; }
  .premium-home-hero .hero-copy { max-width: 820px; }
  .premium-home-hero .hero-art { width: 100%; height: 470px; min-height: 470px; }
  .page-hero .hero-art { width: 100%; max-width: 700px; justify-self: start; }
  .product-layout { grid-template-columns: 1fr; }
  .rfq-side { position: static; max-width: 700px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; --section-space: 68px; }
  .topline { height: 28px; font-size: .6rem; }
  .site-header { top: 0; padding-inline: 16px; }
  .site-header nav#site-nav { top: 100px; }
  .menu-label { display: none; }
  .hero,
  .page-hero,
  .premium-home-hero { padding: 52px var(--gutter); }
  .premium-home-hero { gap: 32px; }
  .premium-home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); }
  .premium-home-hero .hero-copy > p { font-size: 1rem; }
  .premium-home-hero .actions { flex-direction: row; align-items: stretch; }
  .premium-home-hero .actions .btn { flex: 1; padding-inline: 12px; }
  .premium-home-hero .hero-art { height: 300px; min-height: 300px; }
  .hero-index { top: -12px; right: -8px; width: 82px; height: 82px; }
  .home-hero-media figcaption span { display: block; text-align: left; }
  .hero-proof { gap: 8px 14px; }
  .trustbar { justify-content: flex-start; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .section.intro { grid-template-columns: 1fr; gap: 24px; }
  .section.intro > * { justify-self: stretch !important; width: 100% !important; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 300px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { aspect-ratio: 16 / 11; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-flow > div { min-height: 190px; border-bottom: 1px solid var(--line); }
  .process-flow > div:nth-child(3) { border-right: 1px solid var(--line); }
  .process-flow > div:nth-child(2n) { border-right: 0; }
  .process-flow > div:nth-child(3)::after { display: block; }
  .process-flow > div:nth-child(2n)::after { display: none; }
  .process-flow h3 { margin-top: 25px; }
  .industry-feature-grid { grid-template-columns: 1fr; }
  .industry-feature-grid a { min-height: 220px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid > div { min-height: 210px; }
  .map-panel { grid-template-columns: 1fr; gap: 44px; padding: 32px 24px; }
  .routes { justify-content: flex-start; }
  .article-grid { grid-template-columns: 1fr; }
  .catalogue-tools { padding: 20px; }
  .catalogue-tools > div:first-child { grid-template-columns: 1fr; gap: 8px; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .filter-chips button { flex: 0 0 auto; }
  .product-layout { padding-block: 60px; }
  .downloads { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout > * { justify-self: stretch !important; }
  .rfq-form fieldset,
  .contact-form { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .form-section { padding-inline: 14px; }
  .rfq-form,
  .contact-form { padding: 22px 18px; }
  .cta-band { align-items: flex-start; flex-direction: column; gap: 28px; }
  .cta-band > div { margin: 0 !important; }
  .cta-band > div:last-child { width: 100%; display: grid; grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-main > div:first-child { grid-column: 1 / -1; }
  .foot-bottom { gap: 16px; }
  .cookie { flex-direction: column; align-items: stretch; gap: 10px; }
  .cookie p span { display: inline; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .btn { min-height: 46px; padding: 10px 12px; }
}

@media (max-width: 390px) {
  .premium-home-hero .actions { flex-direction: column; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .premium-home-hero .hero-art { height: 260px; min-height: 260px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow > div { border-right: 0 !important; }
  .process-flow > div::after { display: none !important; }
  .foot-main { grid-template-columns: 1fr; }
  .foot-main > div:first-child { grid-column: auto; }
  .cookie { width: calc(100% - 20px); bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* News and Resources navigation */
.resources-menu {
  left: auto;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: min(430px, calc(100vw - (var(--gutter) * 2)));
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px;
}
.resources-menu .mega-links { grid-template-columns: 1fr; }

.news-grid,
.home-news-card,
.news-hero { max-width: var(--container); margin-inline: auto; }
.news-card,
.home-news-card {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.news-card > div,
.home-news-card > div { align-self: center; padding: clamp(28px, 4vw, 56px); }
.news-card h2 { max-width: 820px; font-size: clamp(1.85rem, 3vw, 3rem); }
.home-news-card { grid-template-columns: minmax(220px, 320px) minmax(0, 1fr); }
.home-news-card > div { padding: clamp(24px, 3vw, 42px); }
.home-news-card h3 { max-width: 760px; font-size: clamp(1.45rem, 2.2vw, 2.2rem); }
.news-card-image,
.home-news-image { min-height: 100%; background: #fffaf0; }
.news-card-image img,
.home-news-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-news { padding-top: clamp(68px, 7vw, 106px); padding-bottom: clamp(68px, 7vw, 106px); background: var(--pale); }

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .65fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding: clamp(64px, 8vw, 120px) var(--gutter);
}
.news-hero h1 { max-width: 900px; font-size: clamp(2.7rem, 5.2vw, 5.6rem); }
.news-hero figure { margin: 0; border: 1px solid var(--line); background: #fffaf0; box-shadow: var(--shadow); }
.news-hero figure img { display: block; width: 100%; height: auto; }
.news-hero figcaption { padding: 12px 16px; color: var(--muted); font-size: .78rem; }
.news-article { max-width: 900px; }
.news-article .lead { color: var(--ink); font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.65; }
.agency-box { margin-top: clamp(44px, 6vw, 72px); padding: clamp(28px, 5vw, 56px); border-left: 5px solid var(--gold); background: var(--sand); }
.agency-box h2 { margin-top: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }

@media (max-width: 1050px) {
  .resources-menu { width: 100%; }
  .news-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr); }
}

@media (max-width: 760px) {
  .news-card,
  .home-news-card,
  .news-hero { grid-template-columns: 1fr; }
  .news-card-image img,
  .home-news-image img { aspect-ratio: 5 / 4; object-fit: cover; }
  .news-hero { padding: 54px 20px; }
  .news-hero h1 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .news-hero figure { max-width: 560px; }
  .agency-box .btn { width: 100%; text-align: center; }
}
