/* ============================================================
   raflanord.css
   A Raflatac-style corporate B2B layout, skinned with the
   NordLabels palette, logo and content (nordtosia).
   Structure = Raflatac. Colours/logo/content = NordLabels.
   ============================================================ */

:root {
  /* NordLabels palette */
  --paper: #fbfaf6;
  --white: #ffffff;
  --soft: #f1ece0;
  --cream: #f3eee2;
  --mist: #e7e1d3;
  --ink: #14150f;
  --body: #43443c;
  --muted: #777a74;
  --line: rgba(8, 8, 6, 0.12);
  --navy: #1e2d4a;
  --navy-soft: #2a3d63;
  --navy-deep: #16223a;
  --brass: #9c8157;
  --brass-deep: #7c6236;
  --brass-tint: rgba(156, 129, 87, 0.10);
  --accent: #00687b;
  --blue: #4ab8d4;
  --cream-text: #f2eddf;
  --font: "Helvetica Neue", "Helvetica", "Arimo", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(8, 8, 6, 0.06), 0 8px 24px rgba(8, 8, 6, 0.06);
  --shadow-md: 0 18px 44px rgba(8, 8, 6, 0.12);
  --wrap: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.12; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brass);
}

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
.section-head p:not(.eyebrow) { margin: 18px 0 0; font-size: 1.1rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
/* AA contrast: white on #7c6236 ≈ 5.7:1 (brass #9c8157 was only ~3.7:1) */
.btn-primary { background: var(--brass-deep); color: #fff; }
.btn-primary:hover { background: #67512c; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--brass); }
.btn-ghost:hover { border-color: var(--brass-deep); color: var(--brass-deep); background: var(--brass-tint); }

/* ---------- Scroll-reveal animations ----------
   Opacity-only fade on a pre-promoted layer — no motion, no stagger,
   nothing to re-rasterize. One system for every section. */
.reveal {
  opacity: 0;
  will-change: opacity;
  transition: opacity 340ms ease-out;
}
.reveal.is-visible { opacity: 1; }

/* hero entrance on load */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: heroIn 640ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-inner > *:nth-child(2) { animation-delay: 120ms; }
.hero-inner > *:nth-child(3) { animation-delay: 240ms; }
.hero-inner > *:nth-child(4) { animation-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-inner > * { animation: none; }
}

/* skip to content (accessibility, Raflatac has one) */
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  background: var(--brass-deep); color: #fff; font-weight: 700; font-size: 0.9rem;
  transition: top 160ms ease;
}
.skip-link:focus { top: 0; }

/* visually hidden but read by screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
  margin: -1px; padding: 0; border: 0;
}

/* honeypot field — off-screen for humans, visible to form-filling bots */
.hp-field {
  position: absolute !important; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.btn-light { background: var(--cream-text); color: var(--navy); }
.btn-light:hover { background: #fff; }
.btn-outline-light { background: transparent; color: var(--cream-text); border-color: rgba(242,237,223,0.5); }
.btn-outline-light:hover { border-color: #fff; color: #fff; }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brass);
  transition: gap 200ms ease, color 200ms ease;
}
.arrow-link svg { width: 18px; height: 18px; }
.arrow-link:hover { gap: 13px; color: var(--brass-deep); }

/* ============================================================
   HEADER / NAV  (Raflatac-style horizontal nav + mega dropdowns)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: 84px; max-width: none; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 2px; margin-left: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 transparent;
  transition: color 180ms ease, box-shadow 200ms ease;
}
button.nav-link { background: none; border: 0; font-family: inherit; }
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link,
.nav-item:focus-within > .nav-link { color: var(--brass); box-shadow: inset 0 -2px 0 var(--brass); }
.nav-link .caret { width: 12px; height: 12px; transition: transform 200ms ease; }
/* auto cross-axis margins center icons inside <button> even in engines
   with quirky flex-on-button behaviour (WebKit) */
.nav-link .caret, .lang-btn > svg, .search-toggle svg {
  flex: none; margin-top: auto; margin-bottom: auto;
}
.nav-item:hover .nav-link .caret,
.nav-item.open .nav-link .caret,
.nav-item:focus-within .nav-link .caret { transform: rotate(180deg); }

.header-spacer { flex: 1; }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* header search (icon + expanding input) */
.search-box { display: flex; align-items: center; gap: 6px; }
.search-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: transparent; border: 1.5px solid transparent; color: var(--ink); cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}
.search-toggle:hover { color: var(--brass-deep); border-color: var(--brass); }
.search-toggle svg { width: 19px; height: 19px; }
.search-input {
  width: 0; padding: 0; border: 0; border-bottom: 2px solid var(--brass);
  background: transparent; color: var(--ink); font-size: 0.92rem;
  opacity: 0; transition: width 240ms ease, opacity 200ms ease;
}
.search-box.open .search-input { width: 170px; padding: 6px 4px; opacity: 1; }
.search-input:focus { outline: none; }
.search-box { position: relative; }
.search-results {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 30;
}
.search-results:empty { display: none; }
.search-item {
  display: block;
  padding: 12px 16px;
  transition: background 150ms ease;
}
.search-item + .search-item { border-top: 1px solid var(--line); }
.search-item:hover { background: var(--soft); }
.search-item strong { display: block; color: var(--ink); font-size: 0.95rem; }
.search-item span { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

/* ============================================================
   REACH  (Europe map + animated key figures)
   ============================================================ */
.reach { background: var(--paper); }
.reach-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.reach-map { margin: 0; }
.map-mat { padding: 0; background: transparent; border: 0; }
.map-mat img { width: 100%; height: auto; }
.map-cap {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  color: var(--muted); font-size: 0.88rem;
}
.reach-swatch {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--brass); flex: none;
}
.reach-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.6vw, 48px) clamp(24px, 3vw, 40px);
  margin: 0;
}
.stat { text-align: left; border-left: 2px solid var(--brass); padding-left: 20px; }
.stat dd {
  margin: 0; color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; line-height: 1;
}
.stat dd span.unit { color: var(--brass); }
.stat dt { margin-top: 8px; color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* ============================================================
   FIND YOUR MATERIAL  (3-step selector teaser)
   ============================================================ */
.finder { background: var(--paper); }
.finder-grid { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: clamp(22px, 3vw, 40px); align-items: start; }
.finder-step { border-top: 2px solid var(--brass); padding-top: 20px; }
.finder-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-bottom: 12px; border-radius: 999px;
  background: var(--brass-tint); color: var(--brass-deep); font-weight: 700;
}
.finder-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.finder-step p { margin: 0; color: var(--body); font-size: 0.94rem; }
.finder-cta { justify-self: start; align-self: center; }

/* ============================================================
   NAMED ECO RANGE  (sustainability product chips)
   ============================================================ */
.eco-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(32px, 4vw, 48px);
}
.eco-card {
  padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--white);
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1), border-color 280ms ease, opacity 340ms ease-out;
}
.eco-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.eco-claim {
  display: inline-block; margin-bottom: 10px; padding: 3px 11px; border-radius: 999px;
  background: var(--brass-tint); color: var(--brass-deep);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.eco-card h3 { margin: 0 0 6px; font-size: 1.12rem; color: var(--ink); }
.eco-card p { margin: 0; font-size: 0.9rem; color: var(--body); }

/* mega dropdown */
.mega {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 560px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 22px;
  z-index: 20;
}
.mega.wide { min-width: 640px; grid-template-columns: 1fr 1fr 1fr; }
.nav-item:hover .mega,
.nav-item.open .mega,
.nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col-head {
  grid-column: 1 / -1;
  margin: 4px 8px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.mega a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 160ms ease;
}
.mega a:hover { background: var(--soft); }
.mega a strong { display: block; color: var(--ink); font-size: 0.95rem; }
.mega a span { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

/* mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   HERO  (full-width image, overlaid left text, two CTAs)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(460px, 64vh, 640px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(243,238,226,0.97) 0%, rgba(243,238,226,0.86) 40%, rgba(243,238,226,0.35) 72%, rgba(243,238,226,0.12) 100%),
    url("./assets/images/hero-label-rolls.jpg") center right / cover no-repeat,
    var(--cream);
}
@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(243,238,226,0.97) 0%, rgba(243,238,226,0.86) 40%, rgba(243,238,226,0.35) 72%, rgba(243,238,226,0.12) 100%),
      url("./assets/images/hero-label-rolls-900.jpg") center right / cover no-repeat,
      var(--cream);
  }
}
.hero-inner {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 96px);
}
.hero-eyebrow { color: var(--brass); }
.hero h1 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 48ch;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--body);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================
   STRENGTHS  (three columns with icons)
   ============================================================ */
.strengths { background: var(--paper); border-bottom: 1px solid var(--line); }
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.strength { display: grid; gap: 12px; align-content: start; }
.strength-icon {
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brass-tint);
  color: var(--brass);
}
.strength-icon svg { width: 28px; height: 28px; }
.strength h3 { font-size: 1.3rem; }
.strength p { margin: 0; color: var(--body); }

/* ============================================================
   PRODUCT PORTFOLIO  (intro + two ranges)
   ============================================================ */
.portfolio { background: var(--paper); }
.ranges { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 30px); }
.range {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.range.is-premium { background: var(--white); border-color: var(--brass); box-shadow: inset 4px 0 0 var(--brass); }
.range-tag {
  justify-self: start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.is-premium .range-tag { background: var(--soft); color: var(--brass); }
.range h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.range p { margin: 0; color: var(--body); }
.range-points { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.range-points li { position: relative; padding-left: 20px; font-size: 0.92rem; color: var(--body); }
.range-points li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brass);
}

/* ============================================================
   PRODUCT CATEGORY CARDS  (five-card grid)
   ============================================================ */
.categories { background: var(--paper); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 32px);
}
.pcard {
  display: grid;
  /* 3 children: media / body (stretches) / foot (pinned to the bottom) */
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1), box-shadow 300ms ease, opacity 340ms ease-out;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pcard-media { overflow: hidden; aspect-ratio: 16/10; background: var(--soft); }
.pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-body { padding: 24px 26px 8px; }
.pcard-body h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pcard-points { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.pcard-points li { position: relative; padding-left: 18px; font-size: 0.9rem; color: var(--body); }
.pcard-points li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.pcard-foot { padding: 18px 26px 26px; }
.pcard-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* Raflatac-style hover accent bar on cards */
.pcard, .ncard, .ind-card { position: relative; }
.pcard::after, .ncard::after, .ind-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; z-index: 3;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pcard:hover::after, .ncard:hover::after, .ind-card:hover::after { transform: scaleX(1); }

/* ============================================================
   SUSTAINABILITY  (light, Raflatac-style)
   ============================================================ */
.sustain { background: var(--soft); }
.sustain .eyebrow { color: var(--brass); }
.sustain h2 { color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.sustain-lede { max-width: 60ch; margin: 20px 0 0; font-size: 1.12rem; color: var(--body); }
.sustain-lede strong { color: var(--ink); }
.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 30px);
  margin-top: clamp(36px, 4vw, 52px);
}
.sustain-service {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.sustain-service .badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
}
.sustain-service h3 { color: var(--ink); font-size: 1.3rem; margin-bottom: 8px; }
.sustain-service p { margin: 0; color: var(--body); font-size: 0.96rem; }
.sustain-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px;
  margin-top: clamp(36px, 4vw, 48px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.cert-row { display: flex; flex-wrap: wrap; gap: 26px; }
.cert-row span { font-size: 0.9rem; color: var(--muted); }
.cert-row span b { color: var(--ink); font-weight: 700; }

/* ============================================================
   INDUSTRY VERTICALS  (light image cards, Raflatac-style)
   ============================================================ */
.industries { background: var(--paper); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
}
.ind-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1), box-shadow 300ms ease, opacity 340ms ease-out;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ind-media { aspect-ratio: 16/10; overflow: hidden; background: var(--soft); }
.ind-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.ind-card:hover .ind-media img { transform: scale(1.05); }
/* placeholder plate for industries without a photo yet */
.ind-media.plate {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(156,129,87,0.05) 14px 15px),
    var(--soft);
  color: var(--brass);
}
.ind-media.plate svg { width: 40px; height: 40px; opacity: 0.6; }
.ind-body { padding: 20px 24px; }
.ind-body h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 10px; }
.ind-explore {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brass); font-weight: 700; font-size: 0.88rem;
  transition: gap 200ms ease;
}
.ind-card:hover .ind-explore { gap: 11px; }

/* ============================================================
   NEWS FEED
   ============================================================ */
.news { background: var(--paper); }
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(32px, 4vw, 48px); flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 32px); }
.ncard {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1), box-shadow 300ms ease, opacity 340ms ease-out;
}
.ncard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.95) 44%, rgba(255,255,255,0.78) 68%, rgba(255,255,255,0.56) 100%);
}
.ncard > :not(.ncard-image) {
  position: relative;
  z-index: 2;
}
.ncard-image {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  width: 100%;
  height: 58%;
  object-fit: cover;
  opacity: 0.7;
  pointer-events: none;
  transform: scale(1.02);
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1);
}
.ncard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ncard:hover .ncard-image { transform: scale(1.06); }
.ncard-meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--muted); }
.ncard-tag { color: var(--brass); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.ncard h3 { font-size: 1.22rem; line-height: 1.2; }
.ncard p { margin: 0; color: var(--body); font-size: 0.95rem; }

/* ============================================================
   CTA BAND + CONTACT
   ============================================================ */
.cta-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.8rem); max-width: 18ch; margin: 0 auto; }
.cta-band p { max-width: 52ch; margin: 18px auto 0; color: var(--body); font-size: 1.1rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.contact-info p { color: var(--body); font-size: 1.05rem; margin: 18px 0 0; }
.contact-info .mail { display: inline-block; margin-top: 22px; color: var(--brass); font-weight: 700; border-bottom: 1px solid var(--brass); padding-bottom: 3px; }
.contact-info .mail:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

/* Print-ledger form: no panel — fields sit on the paper with underlines,
   sections divided by strong rules (like a printed order form). */
.iform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 6px 0 0;
}
.iform label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.iform .full { grid-column: 1 / -1; }
.iform input, .iform textarea {
  padding: 10px 2px;
  border: 0;
  border-bottom: 1.5px solid rgba(8, 8, 6, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}
.iform input:focus, .iform textarea:focus {
  outline: none;
  border-bottom-color: var(--brass-deep);
  box-shadow: 0 1.5px 0 var(--brass-deep);
}
.iform .check { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; font-weight: 400; }
.iform .check input { width: 18px; height: 18px; }
.iform button { grid-column: 1 / -1; justify-self: start; }
.form-status { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; }
.form-status[data-tone="success"] { color: var(--brass); }
.form-status[data-tone="error"] { color: #a2472f; }

/* ============================================================
   INQUIRY PAGE  (dedicated contact subpage)
   ============================================================ */
.page-head {
  padding: clamp(40px, 5vw, 64px) 0 clamp(8px, 1vw, 16px);
  background: var(--paper);
}
.crumbs {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: clamp(24px, 3vw, 36px);
  font-size: 0.85rem; color: var(--muted);
}
.crumbs a:hover { color: var(--brass-deep); }
.crumbs span[aria-hidden] { color: var(--brass); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 20ch; }
.page-lede { max-width: 60ch; margin: 18px 0 0; font-size: 1.12rem; color: var(--body); }

.inquiry-page { padding-top: clamp(32px, 4vw, 48px); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.inquiry-aside { display: grid; gap: clamp(24px, 3vw, 36px); position: sticky; top: 100px; }
.aside-block h3 { font-size: 1.05rem; margin-bottom: 12px; }
.aside-block p { margin: 0 0 10px; color: var(--body); font-size: 0.95rem; }
.aside-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.aside-steps li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); font-size: 0.95rem; }
.aside-steps li span {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--brass-tint); color: var(--brass-deep); font-weight: 700; font-size: 0.82rem;
}
.aside-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.aside-list li { position: relative; padding-left: 18px; color: var(--body); font-size: 0.93rem; }
.aside-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.aside-block .mail { display: inline-block; color: var(--brass); font-weight: 700; border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.aside-block .mail:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

/* form groups — one continuous cream ledger panel; sections divided
   by strong ink rules inside it, not by separate blocks. */
.iform-full {
  row-gap: 20px;
  background: var(--cream);
  border-top: 2px solid var(--ink);
  border-radius: 0 0 14px 14px;
  padding: clamp(22px, 3vw, 34px) clamp(20px, 2.6vw, 32px) clamp(26px, 3vw, 38px);
}
.fsection {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  row-gap: 22px;
}
.fsection + .fsection {
  border-top: 2px solid var(--ink);
  padding-top: 26px;
  margin-top: 10px;
}
.fgroup {
  display: flex;
  align-items: baseline;
  gap: 14px;
  grid-column: 1 / -1;
  margin: 0 0 2px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.fnum { color: var(--muted); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; }
.iform select {
  padding: 10px 24px 10px 2px;
  border: 0;
  border-bottom: 1.5px solid rgba(8, 8, 6, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c8157' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 14px;
}
.iform select:focus {
  outline: none;
  border-bottom-color: var(--brass-deep);
  box-shadow: 0 1.5px 0 var(--brass-deep);
}

/* choice chips (radios & checkboxes) */
.choice-row { border: 0; margin: 0; padding: 0; }
.choice-row legend { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; padding: 0; }
.choice-row { display: block; }
.choice-row .choice { display: inline-flex; margin: 0 8px 8px 0; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 0.9rem; font-weight: 600; color: var(--body);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.choice:hover span { border-color: var(--brass); }
.choice input:checked + span { border-color: var(--brass-deep); background: var(--brass-tint); color: var(--brass-deep); }
.choice input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }

/* drop zone + file list */
.drop-zone { display: grid; gap: 10px; }
.drop-inner {
  display: grid; justify-items: center; gap: 6px;
  padding: clamp(22px, 3vw, 34px);
  border: 1.5px dashed var(--brass);
  border-radius: 12px;
  background: var(--paper);
  color: var(--body);
  text-align: center;
  font-size: 0.94rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.drop-inner:hover, .drop-zone.is-drag .drop-inner { background: var(--brass-tint); border-color: var(--brass-deep); }
.drop-inner svg { width: 26px; height: 26px; color: var(--brass); }
.drop-inner strong { color: var(--brass-deep); }
.drop-inner small { color: var(--muted); font-size: 0.8rem; }
.file-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.file-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.88rem; color: var(--ink);
}
.file-list li .fsize { color: var(--muted); font-size: 0.8rem; margin-left: auto; }
.file-list li button {
  border: 0; background: transparent; color: var(--muted);
  font-size: 1.05rem; line-height: 1; cursor: pointer; padding: 2px 4px;
}
.file-list li button:hover { color: #a2472f; }

@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: 1fr; }
  .inquiry-aside { position: static; order: 2; }
}

/* ============================================================
   INDUSTRY SUBPAGES
   ============================================================ */
.page-media { margin: clamp(28px, 4vw, 44px) 0 0; }
.page-media img {
  width: 100%; height: clamp(260px, 34vw, 420px);
  object-fit: cover; border-radius: 16px;
}
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px);
}
.note-band {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: clamp(36px, 4vw, 52px);
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: 12px;
}
.note-band p { margin: 0; color: var(--body); font-size: 0.98rem; }
.note-band strong { color: var(--ink); }
@media (max-width: 900px) {
  .challenge-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(242,237,223,0.72); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: clamp(22px, 3vw, 44px); padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px); }
.footer-brand img { width: 90px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { margin: 18px 0 0; max-width: 32ch; font-size: 0.94rem; color: rgba(242,237,223,0.72); }
.footer-contact { margin: 20px 0 0; }
.footer-phone { display: inline-flex; align-items: center; gap: 9px; font-size: 1.2rem; font-weight: 600; color: #f2eddf; text-decoration: none; letter-spacing: 0.01em; }
.footer-phone svg { width: 17px; height: 17px; opacity: 0.7; flex: none; }
.footer-phone:hover { color: #ffffff; }
.footer-brand .footer-legal-id { margin: 10px 0 0; max-width: 48ch; font-size: 0.76rem; line-height: 1.5; color: rgba(242,237,223,0.48); }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.94rem; color: rgba(242,237,223,0.72); transition: color 180ms ease; }
.footer-col a:hover { color: #cbae80; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(242,237,223,0.15);
  font-size: 0.85rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a:hover { color: #cbae80; }

/* footer social + region */
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(242,237,223,0.3); color: rgba(242,237,223,0.8);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.footer-social a:hover { color: #fff; border-color: #cbae80; background: rgba(203,174,128,0.12); }
.footer-social svg { width: 17px; height: 17px; }
.footer-region {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(242,237,223,0.72); font-size: 0.85rem;
}
.footer-region svg { width: 15px; height: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards-grid, .ind-grid, .news-grid, .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-grid { grid-template-columns: 1fr; }
  .finder-grid { grid-template-columns: 1fr 1fr; }
}
/* Header squeeze: between 1100 and 1320px the five-item nav still fits on
   one row, but only with tighter paddings and a smaller wordmark. */
@media (min-width: 1100px) and (max-width: 1320px) {
  .brand img { width: 60px; }
  .header-inner { gap: 8px; }
  .primary-nav { margin-left: 0; gap: 0; }
  .nav-link { padding: 12px 6px; font-size: 0.86rem; }
  .header-actions { gap: 4px; }
  .header-actions .btn-primary { padding: 11px 15px; font-size: 0.85rem; }
  .search-toggle { width: 34px; }
  .lang-btn { padding: 10px 5px; }
}
/* Below 1100px the five-item nav no longer fits — switch to the hamburger. */
@media (max-width: 1099px) {
  .primary-nav, .header-spacer { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .header-inner { justify-content: space-between; }
  /* mobile nav panel */
  .primary-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 12px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .primary-nav.open .nav-item { width: 100%; }
  .primary-nav.open .mega {
    position: static; min-width: 0; grid-template-columns: 1fr; box-shadow: none;
    border: 0; opacity: 1; visibility: visible; transform: none; padding: 4px 8px 12px;
  }
  .primary-nav.open .mega.wide { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .ranges, .sustain-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-grid, .ind-grid, .news-grid, .eco-grid, .finder-grid { grid-template-columns: 1fr; }
  .iform { grid-template-columns: 1fr; }
  .fsection { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .reach-stats { grid-template-columns: 1fr; }
  .search-box { display: none; }
  .header-actions > .btn-primary { display: none; }
}

/* ============================================================
   LEGAL / PROSE PAGES
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin: clamp(32px, 4vw, 44px) 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.6; color: var(--body); }
.prose code { background: var(--soft); padding: 2px 7px; border-radius: 6px; font-size: 0.9em; }
.inline-link { color: var(--brass-deep); font-weight: 600; border-bottom: 1px solid var(--brass); }
.inline-link:hover { color: var(--ink); }
.policy-table { width: 100%; border-collapse: collapse; margin: 18px 0 8px; font-size: 0.94rem; }
.policy-table th, .policy-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--line); vertical-align: top; }
.policy-table th { background: var(--soft); color: var(--ink); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.policy-table td { background: var(--white); color: var(--body); }
.policy-updated { margin-top: 28px; color: var(--muted); font-size: 0.88rem; }
@media (max-width: 720px) {
  .policy-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   CONSENT BANNER (dormant until CONSENT_REQUIRED = true)
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 300;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
  max-width: 860px; margin: 0 auto;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.consent-banner p { flex: 1 1 320px; margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--body); }
.consent-banner p a { color: var(--brass-deep); font-weight: 600; border-bottom: 1px solid var(--brass); }
.consent-actions { display: flex; gap: 10px; }
.consent-actions .btn { padding: 10px 20px; font-size: 0.88rem; }
@media (max-width: 640px) {
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Inquiry confirmation page
   ============================================================ */
.thanks-page { padding: clamp(72px, 12vh, 140px) 0; }
.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.thanks-tick { width: clamp(72px, 9vw, 96px); height: auto; margin-bottom: 30px; }
.thanks-page .eyebrow { justify-content: center; }
.thanks-page h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 22ch; margin-top: 14px; }
.thanks-lede { margin: 20px 0 0; font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--body); }
.thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }

/* ============================================================
   News & stories — article pages
   ============================================================ */
.article-page { padding-top: clamp(40px, 5vw, 64px); }
.article-body { max-width: 780px; }
.article-body p, .article-body li { font-size: 1.06rem; line-height: 1.75; color: var(--body); }
.article-body h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin: clamp(36px, 4vw, 52px) 0 14px; }
.article-body ul { margin: 0 0 1em; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body li strong { color: var(--ink); }
.article-image {
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.article-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.article-cta {
  margin-top: clamp(44px, 5vw, 64px);
  padding: clamp(26px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.article-cta p { margin: 0; font-size: 1.02rem; max-width: 46ch; }
.article-cta strong { color: var(--ink); }
.article-back { margin-top: clamp(36px, 4vw, 48px); }

/* ============================================================
   LANGUAGE SWITCHER (header)
   ============================================================ */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 10px; font-size: 0.9rem; font-weight: 600;
  color: var(--ink); background: none; border: 0; cursor: pointer;
  border-radius: 6px; font-family: inherit; white-space: nowrap;
}
.lang-btn:hover { color: var(--brass); }
.lang-btn > svg { width: 17px; height: 17px; }
.lang-btn .caret { width: 11px; height: 11px; transition: transform 200ms ease; }
.lang-switch.open .lang-btn .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 120;
  min-width: 150px; padding: 6px; display: grid; gap: 2px;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  padding: 8px 12px; border-radius: 6px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
}
.lang-menu a:hover { background: var(--soft); color: var(--brass-deep); }
.lang-menu a[aria-current="true"] { background: var(--soft); color: var(--brass-deep); }

/* ============================================================
   PACKAGING (plastic packaging offering — hub + group pages)
   ============================================================ */
/* category tiles on the hub (reuse ind-grid look, packaging-specific) */
.pk-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.pk-tile {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.pk-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brass); }
.pk-tile-media { aspect-ratio: 16 / 10; background: #fff; border-bottom: 1px solid var(--line); }
.pk-tile-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pk-tile-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.pk-tile-body h3 { font-size: 1.2rem; color: var(--ink); }
.pk-tile-body p { margin: 0; font-size: 0.95rem; color: var(--body); flex: 1; }
.pk-tile .arrow-link { margin-top: 6px; }

/* a product line block on a group page */
.pk-line { margin-top: clamp(40px, 5vw, 64px); }
.pk-line:first-of-type { margin-top: 0; }
.pk-line-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pk-line-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.pk-line-range { font-weight: 700; color: var(--brass-deep); font-size: 0.95rem; }
.pk-line-kind { width: 100%; margin: 0; color: var(--body); font-size: 1.02rem; }
.pk-line-media {
  margin: 0 0 22px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden;
}
.pk-line-media img { width: 100%; height: auto; max-height: 300px; object-fit: contain; padding: 18px 24px; }

/* material badges */
.mats { display: inline-flex; flex-wrap: wrap; gap: 5px; }
.mat { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; background: var(--soft); color: var(--brass-deep); }
.mat.primary { background: var(--navy); color: var(--cream-text); }

/* spec table */
.pk-specs { overflow-x: auto; margin-top: 8px; -webkit-overflow-scrolling: touch; }
.pk-specs table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 520px; }
.pk-specs caption { text-align: left; font-weight: 700; color: var(--ink); margin-bottom: 10px; font-size: 0.95rem; }
.pk-specs th, .pk-specs td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.pk-specs thead th { background: var(--cream); color: var(--ink); font-weight: 700; position: sticky; left: 0; }
.pk-specs tbody th { font-weight: 700; color: var(--brass-deep); }
.pk-specs tbody tr:hover td, .pk-specs tbody tr:hover th { background: var(--brass-tint); }
.pk-specs .rowlabel { color: var(--muted); font-weight: 600; }

/* accessories (caps / droppers / lids) list */
.pk-acc { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 18px; }
.pk-acc-item { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.pk-acc-code { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.pk-acc-name { color: var(--body); font-size: 0.9rem; }
.pk-acc-meta { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.pk-acc-wt { color: var(--muted); font-size: 0.8rem; }
.pk-acc-sub { margin: 22px 0 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }

/* colour/option note under a line */
.pk-optnote { margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
.pk-optnote strong { color: var(--brass-deep); }

@media (max-width: 900px) {
  .pk-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pk-tiles { grid-template-columns: 1fr; }
}
