:root {
  --navy: #0b2a3c;
  --navy-deep: #031f2f;
  --brand-gold: #e7a841;
  --brand-gold-soft: #f4d28a;
  --steel: #5d727d;
  --muted: #62757d;
  --paper: #f5f2eb;
  --line: #dfe7ea;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 31, 43, 0.12);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--brand-gold-soft);
  outline-offset: 3px;
}

.container { width: min(1360px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 32px)); }

.announcement-bar {
  background: var(--navy-deep);
  color: var(--brand-gold);
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: min(275px, 24vw);
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-logo {
  width: min(280px, 100%);
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 42px;
  padding: 0 16px;
  background: var(--brand-gold);
  color: var(--navy);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
}

.brand-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 4px;
  color: var(--brand-gold-soft);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
  flex-wrap: wrap;
  min-width: 0;
  row-gap: 10px;
}

.main-nav a {
  color: rgba(255,255,255,0.88);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-gold-soft);
  border-color: var(--brand-gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: #092538;
  box-shadow: 0 18px 38px rgba(5, 22, 30, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 8px;
  color: rgba(255,255,255,0.86);
  font-size: 11px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(231, 168, 65, 0.14);
  color: var(--brand-gold-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.support-link {
  color: var(--brand-gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mini-cart {
  background: var(--brand-gold);
  color: var(--navy);
  border: 0;
  border-radius: 999px;
  min-width: 96px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  font-weight: 800;
}

.mini-cart strong {
  background: rgba(11, 42, 60, 0.12);
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(3, 31, 47, 0.96) 0%, rgba(11, 42, 60, 0.92) 52%, rgba(18, 58, 83, 0.72) 100%),
    url("assets/Photos/Impeller2-optimized.webp") right center / auto 115% no-repeat,
    var(--navy);
  color: white;
  padding: 82px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 210, 138, 0.55), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--brand-gold-soft);
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--brand-gold);
}

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; margin: 0 0 12px; }

h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.lede {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
  margin: 18px 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: var(--brand-gold);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}

.full { width: 100%; }

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px;
}

.hero-metrics li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.hero-metric-link {
  display: block;
  min-height: 100%;
}

.hero-metric-clickable {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-metric-clickable:hover,
.hero-metric-clickable:focus-within {
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,210,138,0.55);
  transform: translateY(-1px);
}

.metric-logo {
  width: 112px;
  height: 28px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 8px;
}

.hero-metrics strong {
  display: block;
  color: var(--brand-gold-soft);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
  width: min(100%, 430px);
  backdrop-filter: blur(10px);
}

.panel-label {
  margin: 0 0 12px;
  color: var(--brand-gold-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.panel-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 2.7vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.panel-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.section {
  padding: 82px 0;
}

.compact-section {
  padding: 64px 0 0;
}

.alt-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading.inline {
  align-items: center;
}

.assist-copy {
  color: var(--muted);
  font-size: 0.96rem;
}

.market-grid, .solution-grid, .process-steps, .product-grid, .doc-grid, .cosmos-range-grid {
  display: grid;
  gap: 20px;
}

.market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-card, .solution-card, .product-card, .doc-card, .contact-card, .cosmos-range-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-card:hover, .solution-card:hover, .product-card:hover, .doc-card:hover, .contact-card:hover, .cosmos-range-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(11, 42, 60, 0.14);
}

.market-card,
.solution-card,
.product-card,
.doc-card,
.contact-card,
.cosmos-range-card,
.capability-panel,
.process-steps article {
  border-radius: var(--radius);
}

.market-card {
  padding: 24px 22px;
}

.market-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--brand-gold);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 10px;
}

.market-card h3,
.solution-card h3,
.product-card h3,
.doc-card h3,
.contact-card h3,
.cosmos-range-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 1.9vw, 1.9rem);
  letter-spacing: -0.03em;
  text-transform: none;
}

.market-card p, .solution-card p, .product-card p, .doc-card p, .contact-card p, .cosmos-range-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subtree-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.subtree-tab {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-gold);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.subtree-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(11, 42, 60, 0.14);
  border-color: rgba(231, 168, 65, 0.7);
}

.subtree-tab strong {
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.subtree-tab small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-card {
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.solution-card p {
  flex: 1;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 800;
  margin-bottom: 14px;
}

.solution-card a {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.process-wrap {
  display: grid;
  gap: 30px;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article {
  padding: 24px 22px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--brand-gold);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}

.process-steps h3 {
  margin-bottom: 8px;
}

.process-steps p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.bespoke-gallery-section {
  padding-top: 0;
}

.manufacturing-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.manufacturing-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.manufacturing-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.cta-strip {
  background: var(--navy);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer {
  background: #0b1c2b;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand { margin-bottom: 16px; }

.site-footer h3 {
  color: white;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(3, 31, 47, 0.97) 0%, rgba(11, 42, 60, 0.93) 52%, rgba(18, 58, 83, 0.74) 100%),
    url("assets/Photos/Impeller2-optimized.webp") right center / auto 115% no-repeat,
    var(--navy);
  color: white;
  padding: 64px 0 52px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,210,138,0.8), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero.compact {
  padding: 54px 0 42px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.coatings-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: min(100%, 560px);
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 44px rgba(0,0,0,0.2);
}

.coatings-brand-lockup img {
  width: min(230px, 48vw);
  height: auto;
  object-fit: contain;
}

.coatings-brand-lockup span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-hero-action {
  margin-top: 22px;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px !important;
  color: var(--brand-gold-soft) !important;
}

.kit-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  padding: 22px;
}

.kit-card {
  position: relative;
  overflow: hidden;
}

.kit-card-coming-soon {
  min-height: 100%;
}

.kit-card-coming-soon .product-header,
.kit-card-coming-soon .product-meta,
.kit-card-coming-soon .kit-includes-note,
.kit-card-coming-soon .kit-reference-list {
  filter: saturate(0.72);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(1px);
  pointer-events: all;
}

.coming-soon-overlay span {
  display: inline-flex;
  min-width: 148px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 42, 60, 0.18);
  border-radius: 8px;
  background: rgba(11, 42, 60, 0.92);
  color: white;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.coating-card {
  display: flex;
  flex-direction: column;
}

.coating-product-image {
  aspect-ratio: 4 / 3;
  margin: -4px -4px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.coating-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-header {
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.product-meta p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.kit-parts {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.kit-parts li::before {
  content: '•';
  color: var(--brand-gold);
  margin-right: 8px;
}

.kit-includes-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.kit-includes-note strong {
  color: var(--navy);
}

.kit-reference-list {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}

.kit-reference-list summary {
  padding: 12px 14px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.kit-reference-list p {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.kit-sample-visual {
  position: relative;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kit-sample-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.kit-sample-note {
  position: relative;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-gold);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.kit-sample-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.compatibility-notice {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 168, 65, 0.42);
  border-left: 5px solid var(--brand-gold);
  border-radius: 12px;
  background: #fff8ec;
}

.compatibility-notice.compact {
  margin: 18px 0 0;
}

.compatibility-notice p {
  margin: 0;
  color: var(--navy);
  line-height: 1.65;
  font-size: 0.95rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.coating-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: stretch;
}

.certification-panel {
  grid-column: 1 / -1;
  border-color: rgba(184, 135, 48, 0.34);
  background: #fffaf0;
}

.focus-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.focus-panel h2,
.focus-panel h3 {
  margin-bottom: 12px;
}

.focus-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.muted-panel {
  background: var(--paper);
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-group select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 0 12px;
}

.resource-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.resource-links a {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.doc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doc-card {
  padding: 24px 22px;
}

.doc-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.cosmos-range-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cosmos-range-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px 22px;
  border-top: 5px solid var(--brand-gold);
}

.cosmos-range-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  margin: -6px -4px 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4f5 100%);
  border: 1px solid rgba(223, 231, 234, 0.9);
}

.cosmos-range-image img {
  width: auto;
  max-width: 100%;
  height: 165px;
  object-fit: contain;
  object-position: center;
}

.cosmos-range-card p {
  flex: 1;
}

.model-selector {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.model-selector h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.model-chip-grid:last-child {
  margin-bottom: 0;
}

.model-chip-grid button {
  border: 1px solid rgba(11, 42, 60, 0.18);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.model-chip-grid button:hover,
.model-chip-grid button:focus-visible {
  border-color: var(--brand-gold);
  background: #fff7df;
  transform: translateY(-1px);
}

.model-chip-with-doc {
  display: inline-flex;
  align-items: stretch;
  min-height: 30px;
}

.model-chip-with-doc button {
  border-radius: 6px 0 0 6px;
}

.datasheet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  border: 1px solid rgba(11, 42, 60, 0.18);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #ffffff;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.datasheet-icon:hover,
.datasheet-icon:focus-visible {
  border-color: var(--brand-gold);
  background: #fff7df;
  color: var(--navy);
}

.cosmos-range-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cosmos-range-actions a {
  display: inline-flex;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: '✓';
  color: var(--brand-gold);
  font-weight: 800;
  margin-right: 10px;
}

.capability-panel {
  background: var(--navy);
  color: white;
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-panel h3 {
  margin-bottom: 14px;
}

.capability-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}

.capability-panel li::before {
  content: '•';
  color: var(--brand-gold);
  margin-right: 10px;
}

.guarantee-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
}

.guarantee-box strong {
  display: block;
  color: var(--brand-gold-soft);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  padding: 28px 22px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-list a { color: var(--navy); font-weight: 700; }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-meta span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.side-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: white;
  box-shadow: -18px 0 45px rgba(5, 22, 30, 0.25);
  transform: translateX(105%);
  transition: transform 0.25s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.side-cart.open { transform: translateX(0); }

.cart-header,
.cart-footer {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: auto; }

.cart-header button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  padding: 18px 22px;
  flex: 1;
  overflow: auto;
}

.empty-state {
  color: var(--muted);
  margin: 0;
}

.empty-state-card {
  grid-column: 1 / -1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.cart-item small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 10px;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 22, 30, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .hero-grid,
  .market-grid,
  .solution-grid,
  .subtree-tabs,
  .process-steps,
  .kit-grid,
  .product-grid,
  .cosmos-range-grid,
  .doc-grid,
  .coating-focus-grid,
  .manufacturing-gallery,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    gap: 10px;
    font-size: 10px;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .page-hero {
    background-position: center center, right -120px center, center center;
    background-size: auto, auto 105%, auto;
  }

  .hero-grid,
  .market-grid,
  .solution-grid,
  .subtree-tabs,
  .process-steps,
  .kit-grid,
  .product-grid,
  .cosmos-range-grid,
  .doc-grid,
  .manufacturing-gallery,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .filter-panel,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .section-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-logo {
    width: min(245px, 76vw);
    height: auto;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 7px 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .coatings-brand-lockup {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .coatings-brand-lockup img {
    width: min(220px, 72vw);
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
  }
}


.policy-updated {
  margin-top: 14px !important;
  color: rgba(255,255,255,0.68) !important;
  font-size: 0.9rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.policy-main {
  display: grid;
  gap: 18px;
}

.policy-section,
.policy-aside,
.policy-link-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.policy-section {
  padding: 26px;
}

.policy-section h2,
.policy-aside h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  text-transform: none;
  letter-spacing: -0.03em;
}

.policy-section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-aside {
  position: sticky;
  top: 118px;
  padding: 22px;
}

.policy-link-card,
.policy-hub-grid .policy-link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.policy-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 168, 65, 0.65);
}

.policy-link-card strong {
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.policy-link-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.policy-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .policy-layout,
  .policy-hub-grid {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }
}

.sykes-visual-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-gold);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.sykes-visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.sykes-visual-panel h3 {
  margin-bottom: 8px;
}

.sykes-visual-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sykes-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sykes-kit-card {
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--brand-gold);
}

.sykes-kit-card .button {
  margin-top: auto;
}

.sykes-kit-parts li {
  display: grid;
  gap: 2px;
}

.sykes-kit-parts li::before {
  content: none;
}

.sykes-kit-parts strong {
  color: var(--navy);
}

.sykes-kit-parts span {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .sykes-kit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sykes-kit-grid {
    grid-template-columns: 1fr;
  }
}

