/* =============================================================
   Shreegopal Polychem, Industrial monochrome aesthetic
   White + ink. Brand magenta reserved as a single loud section per page.
   ============================================================= */

:root {
  /* Soft palette, light surfaces with warm undertones, gentle ink */
  --paper: #FDFCFA;
  --paper-soft: #FAF6F2;
  --paper-card: #FFFFFF;
  --paper-deep: #F4EEE8;
  --ink: #1F1B2D;
  --ink-soft: #3A3548;
  --muted: #7B7585;
  --line: #EFE9E2;
  --line-strong: #DDD3C8;

  /* Brand magenta + soft pastel companions for gradients/washes */
  --accent: #C9347C;
  --accent-ink: #A3225E;
  --accent-soft: #FBEAF2;

  /* Soft pastel washes, used in tints, gradients, hover states */
  --tint-peach: #FCE7E0;
  --tint-blush: #F8DDE6;
  --tint-cream: #FCF3E2;
  --tint-mint:  #E5F0E8;
  --tint-sky:   #E5EBF5;
  --tint-lavender: #EFE6F2;

  /* Pop kept as alias for backward compat */
  --pop: #C9347C;
  --pop-ink: #A3225E;
  --pop-soft: #FBEAF2;

  /* Category accents, used across products pages so each catalogue
     family has its own personality. Soft enough to coexist on one screen. */
  --cat-moisture: #1FA294;   /* aqua-teal, water/desiccant */
  --cat-moisture-soft: #DFF3F0;
  --cat-colour:   #C9347C;   /* brand magenta, pigments */
  --cat-colour-soft: #FBEAF2;
  --cat-additive: #E89B1F;   /* amber-gold, functional grades */
  --cat-additive-soft: #FBEFD9;
  --cat-fillers:  #6B9E3F;   /* sage-green, performance/eco */
  --cat-fillers-soft: #E8F1DC;

  --deep: #1F1B2D;
  --deep-ink: #15121F;

  /* Brand blue, sampled from the logo's "S" mark. Used as the single
     brand-aligned accent for the mega-menu column headings. */
  --brand-blue: #435CAA;
  --brand-blue-soft: #E4E8F4;

  /* Radii, softness baseline */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Vertical rhythm token - all sections should use this so the
     spacing is consistent across the page. Override in section CSS
     only when there's a deliberate reason. */
  --section-pad: clamp(3rem, 6vw, 5.5rem);

  /* Single typography stack, Inter only, site-wide.
     Legacy --font-display / --font-accent / --font-mono aliases
     all map to Inter for any leftover references. */
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-sans);
  --font-accent:  var(--font-sans);
  --font-mono:    var(--font-sans);

  /* Type scale, editorial, generous */
  /* Site-wide type scale, single source of truth.
     Inter throughout. Used by global h1-h6 base rules below. */
  --fs-xs:    0.75rem;       /* 12, micro labels, eyebrows, tags */
  --fs-sm:    0.875rem;      /* 14, captions, secondary text */
  --fs-base:  1rem;          /* 16, body */
  --fs-lg:    1.125rem;      /* 18, lead paragraph */
  --fs-xl:    1.375rem;      /* 22, h3, card titles */
  --fs-2xl:   1.75rem;       /* 28, h2 default */
  --fs-3xl:   clamp(1.85rem, 1.4rem + 2vw, 2.5rem);   /* 30-40, section H2 */
  --fs-4xl:   clamp(2.25rem, 1.6rem + 3vw, 3.25rem);  /* 36-52, page H1 */
  --fs-5xl:   clamp(2.8rem, 2rem + 4vw, 4.5rem);      /* 45-72, hero H1 */
  --fs-6xl:   clamp(3.5rem, 2.4rem + 5vw, 5.5rem);    /* hero display */

  /* Layout */
  --max-w: 1480px;
  --max-w-narrow: 820px;
  --radius: 6px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 260ms;

  --shadow-sm: 0 1px 2px rgba(26, 25, 21, 0.05);
  --shadow: 0 10px 28px rgba(26, 25, 21, 0.07), 0 2px 6px rgba(26, 25, 21, 0.04);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { display: block; max-width: 100%; height: auto; }

/* Headings, uniform Inter sans-serif scale, site-wide.
   One scale, consistent weights, consistent letter-spacing.
   All page-scoped headers inherit from these unless explicitly
   overridden. Body text uses --fs-base (1rem / 16px). */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 1rem;
  font-optical-sizing: auto;
}
/* Italic emphasis in headings, keep parent weight, italic only.
   Prevents the "two-fonts" look from weight 400 italic vs weight 600 regular. */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-style: italic;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
h1 { font-size: var(--fs-4xl); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-3xl); font-weight: 600; line-height: 1.12; letter-spacing: -0.025em; }
h3 { font-size: var(--fs-xl);  font-weight: 600; line-height: 1.25; letter-spacing: -0.018em; }
h4 { font-size: var(--fs-lg);  font-weight: 600; line-height: 1.3; letter-spacing: -0.012em; }
h5 { font-size: var(--fs-base); font-weight: 600; line-height: 1.35; letter-spacing: 0; }
h6 { font-size: var(--fs-xs);   font-weight: 600; line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

p { margin: 0 0 1rem; color: var(--ink-soft); }
ul, ol { padding-left: 1.1rem; margin: 0 0 1rem; color: var(--ink-soft); }
li { margin-bottom: 0.4rem; }
strong { font-weight: 600; color: var(--ink); }
small { font-size: var(--fs-sm); color: var(--muted); }

a {
  color: var(--ink);
  text-decoration: none;
  text-decoration-skip-ink: auto;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a:hover { color: var(--ink); }

::selection { background: rgba(31, 27, 45, 0.18); color: var(--ink); }
::-moz-selection { background: rgba(31, 27, 45, 0.18); color: var(--ink); }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3.5rem 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; z-index: 9999;
  font-size: var(--fs-sm);
}
.skip-link:focus { left: 0; color: var(--paper); }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 900px) { .container { padding-inline: 6rem; } }
.container-narrow { max-width: var(--max-w-narrow); }

.section { padding-block: var(--section-pad); }
.section-sm { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section-deep { background: var(--deep); color: #E9DDCD; }
.section-deep h1, .section-deep h2, .section-deep h3, .section-deep h4 { color: #F5EDE0; }
.section-deep p, .section-deep li { color: rgba(233, 221, 205, 0.75); }
.section-soft { background: var(--paper-soft); }

/* Loud magenta section, one per page, used as a confident statement
   (final CTA, brand block, big quote). */
.section-pop {
  background: var(--pop);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section-pop h1,
.section-pop h2,
.section-pop h3,
.section-pop h4 { color: #fff; }
.section-pop p,
.section-pop li { color: rgba(255, 255, 255, 0.88); }
.section-pop .section-index,
.section-pop .product-hero__category { color: rgba(255, 255, 255, 0.7); }
.section-pop em { color: #fff; font-style: italic; }
.section-pop a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
.section-pop a:not(.btn):hover { color: rgba(255, 255, 255, 0.7); }
.section-pop .btn {
  background: #fff;
  color: var(--pop-ink);
  border-color: #fff;
}
.section-pop .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}
.section-pop .btn-ghost,
.section-pop .btn.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.section-pop .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.section-pop .btn-text,
.section-pop a.btn-text { color: #fff; }

.lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

/* Numbered section label */
.section-index {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
/* (Removed the decorative ::before dash on .section-index, too generic.) */

.section-head { max-width: 860px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { margin-bottom: 1.25rem; }

/* Rule line */
.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 62px;
  padding-block: 0.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  line-height: 1;
}
.brand:hover { color: var(--ink); }

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .brand-logo { height: 44px; }
}

/* Footer logo can run larger */
.site-footer .brand-logo { height: 64px; }
@media (max-width: 640px) {
  .site-footer .brand-logo { height: 52px; }
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.7rem;
  align-items: center;
}
.nav-links > li { margin: 0; position: relative; display: flex; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 0.5rem 0;
  position: relative;
  line-height: 1.4;
}
/* Top-level nav links: UPPERCASE + bold (dropdown/mega-menu items stay normal) */
.nav-links > li > a {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.nav-links a:hover { color: var(--ink); }
.nav-links > li > a[aria-current="page"] { color: var(--ink); }
.nav-links > li > a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ink);
  z-index: 1;
}

/* Dropdown caret intentionally removed, Products link reads as a plain
   nav item, dropdown still opens on hover. */
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M1 3 L5 7 L9 3' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M1 3 L5 7 L9 3' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 10px 10px;
          mask-size: 10px 10px;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  opacity: 1;
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 280px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  list-style: none;
  margin: 0;
}
/* Invisible bridge across the 12px gap so hover doesn't drop while
   travelling from the trigger to the dropdown panel. */
.dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown li { margin: 0; }
.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.dropdown a .num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.dropdown a:hover { background: var(--paper-soft); color: var(--ink); }
.dropdown-all {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}
.dropdown-all a { font-weight: 600; color: var(--ink); }
.dropdown-all a .num { color: var(--ink-soft); letter-spacing: 0; }
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Mega menu, wide, multi-column nav dropdown (Plastalloy-style).
   Used on the Products nav item to show all 25 products grouped
   by category, all visible at once. One hover, one click to land.
   ============================================================ */
.has-dropdown:hover > .mega-menu,
.has-dropdown:focus-within > .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu {
  position: fixed;
  top: calc(var(--header-h, 64px) + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: min(1320px, calc(100vw - 2rem));
  background: var(--paper-card, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius, 12px);
  padding: 1.75rem 2.25rem 1.5rem;
  box-shadow: 0 4px 12px -2px rgba(31, 27, 45, 0.06), 0 24px 56px -18px rgba(31, 27, 45, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 100;
  list-style: none;
  margin: 0;
}
.mega-menu::before {
  /* Invisible hover bridge, fits the gap between trigger <li> bottom
     and the fixed-position panel. Sized to the actual gap so it never
     overlays the trigger link itself (which would swallow clicks). */
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
/* Secondary bridge directly under the trigger <li> covering the same
   gap from the <li> side, pointer-events stays none unless hovered/
   focused, so it never blocks clicks on adjacent nav items. */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: -0.5rem; right: -0.5rem;
  top: 100%;
  height: 18px;
  pointer-events: none;
}
.has-dropdown:hover::after,
.has-dropdown:focus-within::after {
  pointer-events: auto;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 1.75rem;
}
.mega-menu__col {
  min-width: 0;
}
.mega-menu__col--wide {
  grid-column: span 2;
}
.mega-menu__col--wide ul {
  column-count: 2;
  column-gap: 1.5rem;
}
.mega-menu__heading {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-blue) 35%, var(--line));
}
/* Secondary heading inside the same column (e.g., Desiccant Masterbatch
   sitting below Desiccant Powder). Adds top breathing room so the two
   headings don't crowd each other. */
.mega-menu__heading--secondary {
  margin-top: 1.4rem;
}

/* Nested sub-list: parent product name + indented vertical list of
   grade/brand variants. Plain typography, no chrome, matches the rest
   of the mega-menu, just smaller and indented under the parent link. */
.mega-menu__group { margin-bottom: 0.75rem; }
.mega-menu__group:last-child { margin-bottom: 0; }
.mega-menu__group-link {
  font-weight: 600;
  color: var(--ink) !important;
  display: block;
  margin-bottom: 0.15rem;
}
.mega-menu__col ul.mega-menu__sublist {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0;
  display: block;
}
.mega-menu__col .mega-menu__sublist li { margin: 0; display: block; }
.mega-menu__col .mega-menu__sublist a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-radius: 3px;
  padding: 0.18rem 0.55rem 0.18rem 1.1rem;
  margin-inline: -0.55rem;
  line-height: 1.4;
  transition: color 200ms ease, background 200ms ease;
}
.mega-menu__col .mega-menu__sublist a:hover {
  color: var(--ink);
  background: var(--paper-soft);
}
.mega-menu__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__col li {
  margin: 0;
  break-inside: avoid;
}
.mega-menu__col a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.4rem 0.55rem;
  margin-inline: -0.55rem;
  border-radius: 3px;
  line-height: 1.35;
  transition: color 200ms ease, background 200ms ease;
}
.mega-menu__col a:hover {
  color: var(--ink);
  background: var(--paper-soft);
}
.mega-menu__footer {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.mega-menu__footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 200ms ease;
}
.mega-menu__footer a:hover { gap: 0.6rem; }

/* Hide mega-menu on smaller screens, mobile menu takes over below. */
@media (max-width: 980px) {
  .mega-menu { display: none; }
}

/* Hidden on mobile (shown >=980px below). Scoped to .nav so it beats the
   later, equal-specificity `.btn { display: inline-flex }` rule. */
.nav .nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span::before { position: absolute; top: -5px; left: 0; }
.nav-toggle span::after { position: absolute; top: 5px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 1.25rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--line); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.95rem 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav .nav-cta { display: inline-flex; }
  .mobile-menu { display: none !important; }
}

/* -------- Hero (editorial, type-led) -------- */
.hero {
  position: relative;
  padding-block: clamp(1.25rem, 2vw, 2rem) clamp(2rem, 4vw, 3.25rem);
  min-height: clamp(715px, 96vh, 995px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  isolation: isolate;
}
.hero > .container { flex: 1; }

/* Hero rotating backgrounds */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  transform: translateZ(0);
  filter: brightness(1.02) saturate(1.4) contrast(1.12);
}
.hero-bg:nth-of-type(1),
.hero-bg:nth-of-type(2) {
  filter: brightness(1.04) saturate(1.65) contrast(1.16);
}
.hero-bg:nth-of-type(3) {
  filter: brightness(1.18) saturate(0.7) contrast(1.05);
}
@media (min-width: 900px) {
  .hero-bg {
    left: auto;
    width: 65%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.5) 40%, #000 75%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.5) 40%, #000 75%, #000 100%);
  }
  .hero-backdrop::before { display: none; }
  .hero-backdrop::after { display: none; }
}
.hero-bg.is-active { opacity: 1; }
.hero-bg-paper {
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-soft) 100%);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(250, 250, 245, 0.98) 0%,
      rgba(250, 250, 245, 0.95) 36%,
      rgba(250, 250, 245, 0.7) 46%,
      rgba(250, 250, 245, 0.22) 58%,
      rgba(250, 250, 245, 0) 68%,
      rgba(250, 250, 245, 0) 100%);
  pointer-events: none;
}

/* Left tint blur layer, soft blur on left side only */
.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(95deg, #000 0%, #000 46%, transparent 62%);
  mask-image: linear-gradient(95deg, #000 0%, #000 46%, transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; }
@media (min-width: 900px) {
  .hero-inner { padding-inline-start: 7rem; margin-inline-start: max(0px, calc((100vw - var(--max-w)) / 2 - 5rem)); }
}

@media (max-width: 760px) {
  .hero-backdrop::before { display: none; }
  .hero-backdrop::after {
    background:
      linear-gradient(180deg,
        rgba(250, 250, 245, 0.92) 0%,
        rgba(250, 250, 245, 0.78) 50%,
        rgba(250, 250, 245, 0.92) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-soft);
  display: inline-block;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0 0.35rem 0.75rem;
  border-left: 2px solid rgba(31, 27, 45, 0.25);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: var(--fs-5xl);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
  letter-spacing: -0.01em;
}

/* Rotating hero slides */
.hero-slides {
  position: relative;
  min-height: clamp(180px, 20vw, 240px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1), transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
  transition-delay: 150ms;
}
.hero-slide h1, .hero-slide p.h1 { margin-bottom: 0; }
/* Slides 2 and 3 use <p class="h1"> for SEO (one H1 per page) but
   inherit all the H1 visual treatment from the global h1 rules. */
.hero-slide p.h1 {
  font-family: var(--font-sans);
  font-size: var(--fs-h1, clamp(2.4rem, 1.6rem + 3.4vw, 4.2rem));
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.hero-slide p.h1 em {
  font-family: inherit;
  font-style: italic;
  color: var(--accent);
  font-weight: inherit;
}

/* Manual prev/next arrow buttons, white circles with dark chevrons.
   Standard slider chrome, clearly clickable on every photo background. */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border: 1px solid rgba(31, 27, 45, 0.12);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.06), 0 12px 28px -14px rgba(31, 27, 45, 0.3);
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.hero-arrow svg { width: 22px; height: 22px; display: block; }
.hero-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.08), 0 18px 36px -16px rgba(31, 27, 45, 0.4);
}
.hero-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hero-arrow--prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.hero-arrow--next { right: clamp(0.75rem, 2vw, 1.5rem); }
@media (max-width: 640px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow svg { width: 18px; height: 18px; }
}

.hero-dots {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem;
  margin-left: -0.5rem;
}
.hero-dot {
  width: 28px; height: 4px;
  background: var(--line-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
  border-radius: 2px;
}
.hero-dot:hover { background: var(--muted); }
.hero-dot.is-active { background: var(--accent); width: 44px; }
.hero-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.hero-aside {
  max-width: 520px;
  margin-left: 0;
  margin-top: 1.25rem;
  padding: 1.1rem 0 1rem 0;
  background: transparent;
  border-top: 1px solid rgba(228, 221, 204, 0.6);
}
.hero-aside .lead { margin-bottom: 1rem; max-width: 48ch; font-size: clamp(0.9375rem, 0.85rem + 0.3vw, 1.0625rem); }
.hero-aside .actions { display: flex; gap: 2.5rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* Editorial link-button pair */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ink);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.btn-text::after { content: "→"; transition: transform var(--dur) var(--ease); }
.btn-text:hover { color: var(--ink); border-color: var(--ink); }
.btn-text:hover::after { transform: translateX(3px); }
.btn-text.muted { color: var(--ink-soft); border-color: var(--line-strong); }
.btn-text.muted:hover { color: var(--ink); border-color: var(--ink); }

/* Solid button */
/* Stacked-paper buttons, primary sits on a magenta "shadow card"
   created with a hard box-shadow (no blur). On hover the button presses
   toward the shadow, and the shadow shrinks underneath. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 var(--accent);
  transform: translate(0, 0);
  transition: transform 220ms var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow 220ms var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--accent);
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
/* Accent (magenta) variant: keep magenta fill but use ink shadow so the
   layer is still visible against the button colour. */
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.btn-accent:hover {
  background: var(--deep-ink, var(--ink));
  border-color: var(--ink);
  box-shadow: 2px 2px 0 0 var(--ink);
}
.btn-accent:active {
  box-shadow: 0 0 0 0 var(--ink);
}

/* Hero visual, editorial stamped block */
.hero-stamp {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-stamp::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(26,25,21,0.035) 14px 15px);
  pointer-events: none;
}
.hero-stamp-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stamp-big {
  font-family: var(--font-sans);
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 300;
  font-variation-settings: "SOFT" 20, "opsz" 144;
}
.hero-stamp-big sup {
  font-size: 0.35em;
  color: var(--pop);
  font-family: var(--font-mono);
  letter-spacing: 0;
  vertical-align: 1.7em;
  margin-left: 0.1em;
}
.hero-stamp-caption {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.3;
  margin-top: 0.6rem;
  font-variation-settings: "SOFT" 80;
  max-width: 22ch;
}
.hero-stamp-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-stamp-seal::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--pop);
  display: inline-block;
  transform: rotate(45deg);
}

/* -------- Marquee facts strip -------- */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.fact:last-child { border-right: 0; }
@media (max-width: 719px) {
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.fact-num {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 1.6rem + 3vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-variation-settings: "SOFT" 20;
}
.fact-num em { font-family: var(--font-sans); font-style: italic; color: var(--pop); font-weight: 400; }
.fact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

/* -------- Product catalog list -------- */
.catalog {
  border-top: 1px solid var(--ink);
}
.catalog-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background var(--dur) var(--ease), padding-inline var(--dur) var(--ease);
}
@media (min-width: 760px) {
  .catalog-row { grid-template-columns: 56px minmax(220px, 1fr) 1.3fr auto; padding: 2.25rem 0.5rem; }
}
.catalog-row:hover {
  background: var(--paper-soft);
  padding-inline: 0.75rem;
}
@media (min-width: 760px) { .catalog-row:hover { padding-inline: 1.5rem; } }

.catalog-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
  align-self: start;
}
.catalog-name {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color var(--dur) var(--ease);
}
.catalog-row:hover .catalog-name { color: var(--ink); }
.catalog-desc {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
  max-width: 52ch;
}
@media (max-width: 759px) { .catalog-desc { display: none; } }
.catalog-arrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  align-self: center;
}
.catalog-arrow::after { content: "→"; transition: transform var(--dur) var(--ease); }
.catalog-row:hover .catalog-arrow { color: var(--ink); }
.catalog-row:hover .catalog-arrow::after { transform: translateX(4px); }

/* -------- Merged About + Catalog (side-by-side) -------- */
#catalog .section-head { margin-bottom: clamp(1.25rem, 2vw, 2rem); }

.about-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .about-catalog {
    grid-template-columns: 1.25fr 1fr;
    gap: 3.5rem;
  }
}
.about-catalog__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.about-catalog__lead {
  margin: 0 0 1.75rem;
  max-width: none;
}
.about-catalog-features {
  list-style: none;
  padding: 0 0 0 3rem;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}
.about-catalog-features li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.about-feature__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-feature__icon svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 520px) {
  .about-feature__icon { width: 44px; height: 44px; }
  .about-feature__icon svg { width: 24px; height: 24px; }
}
.about-feature__text {
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.1875rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.about-catalog-actions {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.about-catalog-actions .btn-text {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  gap: 0.65rem;
  padding: 0.5rem 0;
}
.about-catalog-actions .btn-text:hover::after { transform: translateX(5px); }

/* -------- Catalog: radial layout (homepage) -------- */
.catalog-radial {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1;
  isolation: isolate;
}
.about-catalog .catalog-radial { --radius: 175px; }
@media (min-width: 960px) {
  .about-catalog .catalog-radial { max-width: 490px; --radius: 160px; margin-top: 3rem; }
}

.catalog-radial__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  z-index: 3;
  transition: transform var(--dur) var(--ease);
}
.catalog-radial__center:hover { transform: translate(-50%, -50%) scale(1.04); }
.catalog-radial__center:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 6px;
  border-radius: 4px;
}

.catalog-radial__center-default,
.catalog-radial__center-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  transition: opacity 280ms var(--ease);
}
.catalog-radial__center-default { opacity: 1; }
.catalog-radial__center-info { opacity: 0; pointer-events: none; }
.catalog-radial.is-hovering .catalog-radial__center-default { opacity: 0; }
.catalog-radial.is-hovering .catalog-radial__center-info { opacity: 1; }

.catalog-radial__logo {
  width: 165px;
  height: auto;
  display: block;
}
.catalog-radial__hub-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
  max-width: 14ch;
}
.catalog-radial__hub-detail {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 20ch;
  margin-top: 0.4rem;
}

.catalog-radial__lines { display: none; }

.catalog-radial__items {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.catalog-radial__item {
  --angle: 0deg;
  --radius: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
  transform: rotate(var(--angle)) translateY(0) rotate(calc(var(--angle) * -1)) scale(0.7);
  opacity: 0;
  transition:
    transform 1800ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    opacity 1300ms ease-out var(--delay, 0ms),
    filter 300ms var(--ease) 0ms;
}
.catalog-radial.is-revealed .catalog-radial__item {
  transform: rotate(var(--angle)) translateY(calc(var(--radius) * -1)) rotate(calc(var(--angle) * -1)) scale(1);
  opacity: 1;
}

/* Spotlight: hover one product, dim the others (uses filter, not opacity,
   so it doesn't conflict with the reveal opacity transition) */
.catalog-radial.is-revealed.is-hovering .catalog-radial__item:not(:hover) {
  filter: opacity(0.28);
}
.catalog-radial.is-revealed.is-hovering .catalog-radial__item:hover .catalog-radial__label {
  color: var(--ink);
  font-weight: 600;
}

.catalog-radial__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  width: 100%;
  height: 100%;
}
.catalog-radial__item a:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 4px;
  border-radius: 50%;
}

.catalog-radial__thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--paper-card);
  border: 2px solid var(--paper-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.catalog-radial__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}
.catalog-radial__item:hover .catalog-radial__thumb {
  transform: scale(1.08);
  border-color: var(--ink);
  box-shadow: 0 8px 22px -12px rgba(15, 16, 32, 0.32);
}
.catalog-radial__item:hover .catalog-radial__thumb img {
  filter: none;
}
.catalog-radial__label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.catalog-radial__item:hover .catalog-radial__label { color: var(--ink); font-weight: 600; }

/* Tablet + Mobile, horizontal scroll carousel (with autoplay via JS) */
@media (max-width: 960px) {
  .catalog-radial {
    aspect-ratio: auto;
    max-width: 100%;
    margin-top: 2rem;
    overflow: visible;
  }
  .catalog-radial__center { display: none; }
  .catalog-radial__items {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 1.5rem 1.5rem;
    margin-inline: -1.5rem;
    scrollbar-width: none;
  }
  .catalog-radial__items::-webkit-scrollbar { display: none; }
  .catalog-radial__item {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    flex: 0 0 auto;
    width: 140px;
    height: auto;
    margin: 0;
    scroll-snap-align: start;
  }
  .catalog-radial__item a {
    flex-direction: column;
    gap: 0.7rem;
    justify-content: flex-start;
    text-align: center;
    padding: 0.5rem 0;
  }
  .catalog-radial__thumb { width: 110px; height: 110px; flex-shrink: 0; }
  .catalog-radial__label {
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.3;
  }
}
@media (max-width: 520px) {
  .catalog-radial__item { width: 120px; }
  .catalog-radial__thumb { width: 92px; height: 92px; }
  .catalog-radial__label { font-size: 0.82rem; }
}

/* -------- Products simple grid (products.html) -------- */
.products-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .products-simple-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .products-simple-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .products-simple-grid { grid-template-columns: 1fr; } }

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper-card);
  border: 1px solid var(--paper-deep);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.product-tile:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 48px -28px rgba(15, 16, 32, 0.4);
}
.product-tile:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 3px;
}

.product-tile__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--paper-deep);
}
.product-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease), filter 500ms var(--ease);
}
.product-tile:hover .product-tile__photo img {
  transform: scale(1.06);
}

.product-tile__info {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tile__index {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.product-tile__name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 0.55rem;
  line-height: 1.2;
}
.product-tile__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  flex: 1;
}
.product-tile__cta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
  transition: color var(--dur) var(--ease);
}
.product-tile:hover .product-tile__cta {
  color: var(--ink);
}

/* -------- Industries (typographic list) -------- */
.industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.industries-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  margin: 0;
}
.industries-list .idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.industries-list .name {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.75rem);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.industries-list .desc {
  color: var(--ink-soft);
  max-width: 38ch;
  text-align: right;
}
@media (max-width: 680px) {
  .industries-list li { grid-template-columns: 40px 1fr; }
  .industries-list .desc { display: none; }
}

/* -------- Industries foot (homepage strip CTA) -------- */
.industries-foot {
  margin-top: 2.5rem;
}
.industries-foot .btn-text {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  gap: 0.65rem;
  padding: 0.5rem 0;
}
.industries-foot .btn-text:hover::after { transform: translateX(5px); }

/* -------- Split columns (about + quality) -------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.split-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .split-wide { grid-template-columns: 4fr 7fr; gap: 4rem; } }

/* -------- Quality head (heading only at top) -------- */
.quality-head {
  max-width: 860px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.quality-head h2 { margin-bottom: 0; }

/* -------- Quality stage (photo left + content right) -------- */
.quality-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .quality-stage {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}
.quality-stage__media {
  position: relative;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  isolation: isolate;
}
@media (min-width: 900px) {
  .quality-stage__media { max-width: 420px; }
}
.quality-stage__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--line-strong);
}
.quality-stage__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 2rem;
}
.quality-stage__lead {
  max-width: 60ch;
  margin: 0;
}
.quality-stage__content .btn-text {
  margin-top: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  gap: 0.65rem;
  padding: 0.5rem 0;
}
.quality-stage__content .btn-text:hover::after { transform: translateX(5px); }

.quality-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.quality-points li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.quality-point__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quality-point__icon svg {
  width: 28px;
  height: 28px;
}
.quality-point__text {
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-soft);
  padding-top: 0.5rem;
}
.quality-point__text strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 520px) {
  .quality-point__icon { width: 44px; height: 44px; }
  .quality-point__icon svg { width: 24px; height: 24px; }
}

.quote {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 1.1rem + 0.9vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin: 0 0 1rem;
}

/* Feature list (ticks) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transform: translateY(1px);
}

/* Variant: check marks, for "certified / verified" lists.
   Visually distinct from the default arrow bullets to avoid monotony. */
.feature-list--checks li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
  transform: translateY(2px);
}
.feature-list--checks li {
  grid-template-columns: 22px 1fr;
}
.feature-list--checks li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 3px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
  left: 4px;
  top: 0.95rem;
  pointer-events: none;
}

/* Definition card, for quality / spec highlights */
.def-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 2rem;
}
.def-card dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.def-card dd {
  margin: 0 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--ink);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.def-card dd:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }

/* -------- Page hero (inner pages) -------- */
.page-hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem); max-width: 20ch; margin-bottom: 0.85rem; }
.page-hero h1 em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
  letter-spacing: -0.01em;
}
.page-hero .lead { max-width: 52ch; }

/* applications.html, home-hero style intro: image bleeds in on the right
   and fades into white on the left where the headline + lead sit. */
body.applications-page,
body.applications-page .site-header { background: #ffffff; }

.applications-intro {
  background: #ffffff;
}

/* The hero block: text + backdrop image overlaid */
.applications-intro__hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6.5vw, 5.5rem) clamp(3.5rem, 6.5vw, 5.5rem);
  background: #ffffff;
  isolation: isolate;
  min-height: clamp(360px, 60vw, 500px);
  display: flex;
  align-items: center;
}

/* Backdrop layer: holds the image, sits behind the text */
.applications-intro__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.applications-intro__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.04) saturate(1.1) contrast(1.02);
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (min-width: 900px) {
  .applications-intro__bg {
    left: auto;
    right: 0;
    width: 65%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 100%);
  }
}

/* White tint overlay so the text reads cleanly on the left half;
   ends earlier so the right side stays fully bright + crisp */
.applications-intro__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 35%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.15) 45%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media (max-width: 899px) {
  .applications-intro__backdrop::after {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 50%,
        rgba(255, 255, 255, 0.92) 100%);
  }
}

.applications-intro__hero > .container {
  position: relative;
  z-index: 1;
}

/* Copy column: width-capped so text stays in the white-tinted left band */
.applications-intro__copy {
  max-width: 68ch;
}
.applications-intro__copy .breadcrumbs {
  margin: 0 0 1.85rem;
}
.applications-intro__copy .section-index {
  display: inline-block;
  margin: 0 0 1.25rem;
}
.applications-intro__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.1;
  max-width: 13ch;
  margin: 0 0 1.85rem;
  color: var(--ink);
}
.applications-intro__title em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
  letter-spacing: -0.01em;
  /* Add a touch more vertical breathing inside the italic line */
  line-height: 1.05;
}
/* Line break inside the H1 only kicks in at desktop where we want
   "Polymer additives for" on line 1 and "every industry." on line 2 */
.applications-intro__title-br { display: none; }
@media (min-width: 720px) {
  .applications-intro__title-br { display: inline; }
}
.applications-intro__lead {
  max-width: 28ch;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Cards section below the hero, clean white with normal padding */
.applications-intro > .container {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5.5rem);
}
.applications-intro .industry-grid__hint {
  margin-top: 0;
}

/* --- Catalog hero (products.html), deep ink wall, corporate B2B presence.
   Dark navy block, white text, restrained magenta accent. ---------------- */
.page-hero--catalog {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(3rem, 5vw, 4.5rem);
}
.page-hero--catalog .breadcrumbs { color: rgba(255, 255, 255, 0.45); }
.page-hero--catalog .breadcrumbs a { color: rgba(255, 255, 255, 0.65); }
.page-hero--catalog .breadcrumbs a:hover { color: #fff; }
.page-hero--catalog .breadcrumbs .sep { color: rgba(255, 255, 255, 0.3); }

.page-hero--catalog h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.page-hero--catalog h1 em {
  /* Lighter, friendlier magenta on dark, the brand --pop is too saturated. */
  color: #F2A6CB;
}
.page-hero--catalog .lead {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { opacity: 0.6; }

/* -------- Product detail layout -------- */
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-inline: auto;
}
.product-overview { min-width: 0; }

.product-overview h2 { margin-top: 2.5rem; }
.product-overview h2:first-child { margin-top: 0; }
.product-overview p { line-height: 1.7; max-width: 65ch; }

/* When a product spec section has no "How it works" sidebar, the
   wrap element gets a --full modifier and the spec grid expands to
   full width so it can display as a 3-column card grid. */
@media (min-width: 900px) {
  .prod-spec-wrap.prod-spec-wrap--full { grid-template-columns: 1fr !important; max-width: none !important; }
}

/* ============================================================
   Product spec table, rendered as a clean 3-column card grid.
   Each row becomes its own small card (label + value) so the spec
   sheet reads as a pleasing data composition rather than a database
   dump. Falls back to a list at mobile.
   ============================================================ */
.prod-spec-wrap .spec-table,
.prod-spec-wrap--full .spec-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
  border: none;
  margin: 0;
}
@media (min-width: 640px) {
  .prod-spec-wrap .spec-table,
  .prod-spec-wrap--full .spec-table { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .prod-spec-wrap--full .spec-table { grid-template-columns: repeat(3, 1fr); }
}

.prod-spec-wrap .spec-table thead,
.prod-spec-wrap .spec-table tbody { display: contents; }

.prod-spec-wrap .spec-table tr {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.05rem 1.2rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--line, rgba(31, 27, 45, 0.08));
  border-radius: 10px;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}
.prod-spec-wrap .spec-table tr:hover {
  background: #f4f6fb;
  border-color: rgba(67, 92, 170, 0.2);
  transform: translateY(-2px);
}

.prod-spec-wrap .spec-table th,
.prod-spec-wrap .spec-table td {
  padding: 0;
  border: none;
  text-align: left;
}
.prod-spec-wrap .spec-table th {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(31, 27, 45, 0.6));
}
.prod-spec-wrap .spec-table td {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink, #1F1B2D);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* Keep the original (legacy) spec table style available for
   any non-product page that still uses .spec-table outside
   .prod-spec-wrap. */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.spec-table th, .spec-table td {
  padding: 0.9rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  font-weight: 500;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  width: 45%;
  padding-right: 1rem;
}
.spec-table td { color: var(--ink); font-weight: 500; }

.product-sidebar {
  position: sticky;
  top: 90px;
  padding: 2.25rem 1.85rem;
  background: var(--paper-card);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 16px 40px rgba(20, 21, 43, 0.07);
}
.product-sidebar h3 {
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-family: var(--font-sans);
}
.product-sidebar p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.product-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 0.65rem; }
.product-sidebar .btn:last-of-type { margin-bottom: 0; }

.applications-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.tag.primary {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-color: transparent;
}

.product-masthead {
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.product-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 16px, rgba(26,25,21,0.03) 16px 17px);
  pointer-events: none;
}
.product-masthead .meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.product-masthead h1 {
  font-size: clamp(2.5rem, 1.8rem + 3vw, 3.75rem);
  margin: 0;
  max-width: 18ch;
}

/* Grid for benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.benefit-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.benefit h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  line-height: 1.25;
  color: var(--ink);
}
.benefit p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* Grades / variants row */
.grades-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.grade-chip {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* ============================================================
   Use-case grid (applications.html), soft cards with category chip
   ============================================================ */

.usecase-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .usecase-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px)  { .usecase-grid { grid-template-columns: repeat(3, 1fr); } }

.usecase-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem 1.5rem 1.4rem;
  background: var(--paper-card);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 8px 22px rgba(31, 27, 45, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.06), 0 18px 36px rgba(31, 27, 45, 0.09);
}
.usecase-card__cat {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
}
.usecase-card h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.25;
}
.usecase-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   Industry grid (applications.html), image card per industry
   ============================================================ */

.industry-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (min-width: 640px)  { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-grid__hint {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.industry-grid__hint::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink-soft);
  opacity: 0.5;
}

.industry-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 10px 26px rgba(31, 27, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.06), 0 22px 44px rgba(31, 27, 45, 0.10);
}

.industry-card__toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.industry-card__toggle:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.industry-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-soft);
}
.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-card__media img { transform: scale(1.04); }
.industry-card__body {
  position: relative;
  padding: 1.25rem 3rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.industry-card__body h2,
.industry-card__body h3,
.industry-card__title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--ink);
}
.industry-card__body p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.industry-card__icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1.4rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.industry-card__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  transform: translate(-65%, -50%) rotate(45deg);
  transition: border-color 0.25s ease;
}
.industry-card__toggle:hover .industry-card__icon {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateX(2px);
}
.industry-card__toggle:hover .industry-card__icon::before {
  border-top-color: var(--paper);
  border-right-color: var(--paper);
}

/* Phones: compact horizontal rows (thumbnail + title + 2-line teaser) instead
   of tall stacked image cards. Each card is just a launcher — full content
   opens in the modal — so 13 industries fit in a fraction of the scroll.
   Tablet/desktop (>=640px) keep the full image cards. */
@media (max-width: 639px) {
  .industry-card__toggle { flex-direction: row; align-items: stretch; }
  .industry-card__media {
    aspect-ratio: auto;
    width: 104px;
    flex-shrink: 0;
  }
  .industry-card__body {
    padding: 0.8rem 2.5rem 0.8rem 1.05rem;
    gap: 0.2rem;
    justify-content: center;
  }
  .industry-card__body h2,
  .industry-card__body h3,
  .industry-card__title { font-size: 1.02rem; line-height: 1.2; }
  .industry-card__body p {
    font-size: 0.85rem;
    line-height: 1.45;
    flex: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .industry-card__icon {
    top: 50%;
    bottom: auto;
    right: 0.85rem;
    margin-top: -14px; /* center the 28px chevron vertically (transform is used by hover) */
  }
}

/* Detail blocks live inline as data sources for the modal, kept in DOM but hidden visually */
.industry-card__detail {
  display: none;
}

/* ============================================================
   Industry detail modal (applications.html), pops up on card click
   ============================================================ */

.industry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* Top padding clears the sticky site-header (~72px) with a thin gap so
     the panel starts just under the nav, not behind it. */
  padding: clamp(82px, 9.5vh, 92px) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.industry-modal[hidden] { display: none; }
.industry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.industry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 30, 0.5);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.industry-modal__panel {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  width: min(960px, 100%);
  /* Cap height to whatever remains below the nav padding, never overflowing
     the viewport even on short screens. */
  max-height: min(calc(100vh - 100px), 720px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20, 17, 30, 0.28);
  display: grid;
  grid-template-columns: 1fr;
  transform: translateY(14px) scale(0.985);
  transition: transform 0.28s ease;
}
.industry-modal.is-open .industry-modal__panel {
  transform: translateY(0) scale(1);
}
@media (min-width: 760px) {
  .industry-modal__panel {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
.industry-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(20, 17, 30, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.industry-modal__close:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(90deg);
}
.industry-modal__close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.industry-modal__media {
  background: var(--paper-soft);
  overflow: hidden;
  min-height: 220px;
  max-height: 320px;
}
@media (min-width: 760px) {
  .industry-modal__media {
    max-height: none;
  }
}
.industry-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.industry-modal__body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
}
.industry-modal__body .section-index {
  margin: 0;
}
.industry-modal__body h2,
.industry-modal__body h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0.15rem 0 0.35rem;
}
.industry-modal__copy p {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}
.industry-modal__copy p:last-child {
  margin-bottom: 0;
}
.industry-modal__actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
}

/* Lock background scroll while modal is open */
body.industry-modal-open {
  overflow: hidden;
}

/* ============================================================
   Catalog grid (products.html), refined product cards
   ============================================================ */

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 640px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.03), 0 12px 28px rgba(31, 27, 45, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(31, 27, 45, 0.08), 0 28px 56px rgba(31, 27, 45, 0.12);
}
.catalog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-soft);
}
.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.catalog-card:hover .catalog-card__media img { transform: scale(1.05); }
.catalog-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.catalog-card__cat {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.catalog-card__name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.catalog-card__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.catalog-card__cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, gap 0.2s ease;
}
.catalog-card:hover .catalog-card__cta {
  color: var(--ink);
  gap: 0.55rem;
}

/* ============================================================
   PROD, Simple Plastiblends-inspired product page system
   Banner hero + brief description + bulleted lists + grades + CTA
   Used across all 8 product pages
   ============================================================ */

.prod {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}
.prod h1, .prod h2, .prod h3, .prod h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.prod p, .prod li { font-family: var(--font-sans); }
.prod .container.prod-container {
  max-width: 1200px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* Banner hero, clean cream-paper text hero, no background image */
.prod-banner {
  position: relative;
  width: calc(100% - 3rem);
  max-width: calc(var(--max-w) - 3rem);
  margin-inline: auto;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
  min-height: clamp(360px, 60vw, 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FBF7EE;
  border-radius: 20px;
  border-bottom: 0;
}
@media (min-width: 900px) {
  .prod-banner {
    width: calc(100% - 4rem);
    max-width: calc(var(--max-w) - 4rem);
  }
}
.prod-banner::before {
  /* Subtle corner glow, single restrained accent, no decorative dots */
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(122, 155, 90, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.prod-banner__img,
.prod-banner__overlay { display: none !important; }

/* Photo hero - image only, text lives below the card */
.prod-banner--photo {
  min-height: clamp(380px, 46vw, 500px);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}
.prod-banner--photo .prod-banner__img {
  display: block !important;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1);
  transform-origin: center;
  /* slow Ken Burns zoom-in on every product hero */
  animation: prod-hero-kenburns 20s ease-out both;
}
.prod-banner--photo .prod-banner__overlay { display: none !important; }
.prod-banner--photo .prod-banner__inner { display: none !important; }

/* Caption below the photo hero card */
.prod-hero-caption {
  text-align: center;
  padding: 0.75rem 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.prod-hero-caption h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.55rem;
}
.prod-hero-caption .prod-hero-tagline {
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  color: var(--ink-soft);
  margin: 0;
}
.prod-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.92);
  transform: scale(1.02);
  animation: prod-banner-zoom 12s ease-out forwards;
}
/* Mobile/tablet: shift right-of-frame compositions (e.g. calcium-filler's
   carry-bag image) so the subject stays in view at narrower widths. */
@media (max-width: 899px) {
  /* Mobile: keep the photo hero landscape (not a tall portrait crop) so the
     product photo reads horizontally and the subject stays prominent. */
  .prod-banner--photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  /* selector matches the .prod-banner--photo .prod-banner__img base (0,2,0)
     specificity and comes later in source, so the right-shift actually wins */
  .prod-banner--photo .prod-banner__img--right { object-position: 85% 50%; }
  /* Zoom-in for landscape banners where the subject reads too small at narrow
     widths (e.g. fr-masterbatch flame test). Override prod-banner-zoom so the
     final scale stays fixed at 1.4. */
  .prod-banner--photo .prod-banner__img--zoom {
    /* keep the subject large at narrow widths AND show the slow zoom motion */
    animation: prod-hero-kenburns-zoom 20s ease-out both;
  }
}
@keyframes prod-banner-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes prod-hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.10); }
}
/* zoomed variant for narrow-width landscape banners: subject stays large */
@keyframes prod-hero-kenburns-zoom {
  from { transform: scale(1.3); }
  to   { transform: scale(1.4); }
}
.prod-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 12, 24, 0.92) 0%, rgba(15, 12, 24, 0.55) 45%, rgba(15, 12, 24, 0.18) 100%),
    linear-gradient(135deg, rgba(15, 12, 24, 0.3) 0%, transparent 50%);
}
.prod-banner__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 5rem);
  color: var(--ink);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.prod-banner .breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.prod-banner .breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.prod-banner .breadcrumbs a:hover { color: var(--ink); }
.prod-banner .breadcrumbs .sep { margin: 0 0.45rem; opacity: 0.6; }
.prod-banner__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 0.85rem;
}
.prod-banner h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.028em;
  max-width: 18ch;
}
.prod-banner__tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Light banner, used on individual product pages that have no hero photo.
   Same layout as .prod-banner but with a clean white background and dark type,
   so the page feels open and on-brand with the new white products theme.
   Soft corner orbs add a whisper of brand colour without overpowering. */
.prod-banner--light {
  background: #ffffff;
  min-height: clamp(240px, 30vw, 400px);
  align-items: center;
  border-bottom: 1px solid rgba(31, 27, 45, 0.08);
  border-radius: 0;
  margin-inline: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.prod-banner--light::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -8%;
  width: 460px;
  height: 460px;
  background:
    radial-gradient(circle, var(--cat-additive-soft) 0%, transparent 65%),
    radial-gradient(circle at 40% 60%, var(--cat-colour-soft) 0%, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  filter: blur(8px);
}
.prod-banner--light::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -6%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--cat-moisture-soft) 0%, transparent 65%);
  opacity: 0.8;
  pointer-events: none;
  filter: blur(8px);
}
.prod-banner--light .prod-banner__inner { color: var(--ink); position: relative; z-index: 1; }
.prod-banner--light .breadcrumbs {
  color: rgba(31, 27, 45, 0.55);
}
.prod-banner--light .breadcrumbs a {
  color: rgba(31, 27, 45, 0.55);
}
.prod-banner--light .breadcrumbs a:hover { color: var(--ink); }
.prod-banner--light .prod-banner__eyebrow { color: var(--pop); }
.prod-banner--light h1 { color: var(--ink); }
.prod-banner--light .prod-banner__tagline { color: rgba(31, 27, 45, 0.72); }

/* Body sections */
.prod-section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}
.prod-section--soft {
  background: #F7F4ED;
}
.prod-section--bottom { padding-bottom: clamp(5rem, 8vw, 7rem); }

/* Scroll-reveal, sections fade up gently as they enter view.
   Triggered via .is-in class added by a small IntersectionObserver
   that runs on every product page. */
.prod-section,
.prod-banner__inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
.prod-section.is-in,
.prod-banner__inner > *.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Hero internals stagger */
.prod-banner__inner > *:nth-child(1).is-in { transition-delay: 100ms; }
.prod-banner__inner > *:nth-child(2).is-in { transition-delay: 200ms; }
.prod-banner__inner > *:nth-child(3).is-in { transition-delay: 300ms; }
.prod-banner__inner > *:nth-child(4).is-in { transition-delay: 400ms; }

/* Honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .prod-section, .prod-banner__inner > * { opacity: 1; transform: none; transition: none; }
  .prod-banner__img,
  .prod-banner--photo .prod-banner__img { animation: none !important; transform: none !important; }
}
.prod-section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 1.3rem + 1.4vw, 2.2rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.prod-section__subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  max-width: 60ch;
  line-height: 1.55;
}

/* Intro description */
.prod-intro {
  max-width: 820px;
}
.prod-intro p {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
}

/* Overview block: copy + stats on left, product photo on right */
.prod-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .prod-overview {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(5rem, 9vw, 8rem);
  }
}

/* Lead definition paragraph, distinct visual treatment so the
   first sentence reads as a deliberate definition lead. Inter,
   semibold name + regular body, subtle ink-rule above for accent.
   Plain, professional, what LLMs cite verbatim. */
.prod-overview__copy .prod-definition {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.008em;
  margin: 0 0 clamp(1rem, 1.5vw, 1.25rem);
  padding-top: 0;
  border-top: none;
  max-width: 58ch;
}
.prod-overview__copy .prod-definition strong {
  font-weight: 600;
  letter-spacing: -0.012em;
}

/* Supporting chemistry paragraph, smaller, lighter, supporting role */
.prod-overview__copy p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  max-width: 56ch;
}

/* Stats strip, 4-column horizontal layout on desktop for clean
   data presentation. Bigger numbers, lighter labels, vertical
   dividers between items. */
.prod-stats {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (min-width: 640px) {
  .prod-stats { grid-template-columns: repeat(4, 1fr); }
}
.prod-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}
.prod-stats li:first-child { padding-left: 0; border-left: none; }
@media (max-width: 639px) {
  .prod-stats li { padding-left: 0; border-left: none; }
  .prod-stats li:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
  }
}
.prod-stats__num {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.05;
}
.prod-stats__num small {
  font-size: 0.55em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 0.15em;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}
.prod-stats__lbl {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* Hero product photo, more prominent, larger aspect ratio
   variant available, cleaner styling, subtle warm-cream backdrop
   that complements the white studio photos. */
.prod-overview__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f2f7;
  border-radius: var(--radius-lg, 14px);
  box-shadow:
    0 1px 2px rgba(31, 27, 45, 0.04),
    0 18px 40px -20px rgba(31, 27, 45, 0.18);
}
.prod-overview__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.prod-overview__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  display: block;
  padding: 8%;
  mix-blend-mode: multiply;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.prod-overview__photo:hover img { transform: scale(1.03); }

/* Full-photo variant: image fills the square card edge-to-edge instead of the
   white-cutout blend treatment — for dark or landscape product photos (e.g.
   White MB) that would otherwise letterbox and not blend into the card. */
.prod-overview__photo--cover img {
  object-fit: cover;
  object-position: center;
  padding: 8%;
  mix-blend-mode: normal;
  border-radius: 10px;
}

/* Process: 3-step visual flow */
.prod-process {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 800px) { .prod-process { grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); } }
.prod-process li {
  position: relative;
  padding: 1.85rem 1.6rem 1.6rem;
  background: var(--paper-card);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.03), 0 14px 32px rgba(31, 27, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-process li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.05), 0 22px 48px rgba(31, 27, 45, 0.10);
}
.prod-process__step {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.prod-process__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.prod-process h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.25;
}
.prod-process p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Two-column lists (characteristics + applications) */
.prod-twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 800px) { .prod-twocol { grid-template-columns: 1fr 1fr; } }
.prod-block h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  margin: 0 0 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.prod-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prod-points li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  transition: color 200ms ease, padding-left 220ms ease;
}
.prod-points li:last-child { border-bottom: 1px solid var(--line); }
.prod-points li:hover { color: var(--ink); padding-left: 1.5rem; }
.prod-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.55;
  transition: opacity 200ms ease;
}
.prod-points li:hover::before { opacity: 1; }

/* ── Feature grid - 2-col cards with blue left accent ── */
.feat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 560px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
.feat-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-blue, #435CAA);
  border-radius: 8px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink-soft);
  background: #fff;
}
.feat-grid__check {
  color: var(--brand-blue, #435CAA);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.88rem;
  margin-top: 0.1em;
}

/* ── Application pill tags ── */
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.app-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(67, 92, 170, 0.3);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--brand-blue, #435CAA);
  background: rgba(67, 92, 170, 0.05);
  line-height: 1.3;
  white-space: nowrap;
}

/* ── Specs: dark navy section ── */
.prod-section--specs {
  background: linear-gradient(135deg, #0d1733 0%, #1a2d6b 100%);
}
.prod-section--specs .prod-section__title {
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
}

.spec-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  border: none;
}
@media (min-width: 560px) { .spec-clean { grid-template-columns: repeat(3, 1fr); } }
.spec-clean tbody { display: contents; }
.spec-clean tr {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  background: rgba(67, 92, 170, 0.06);
  border: 1px solid rgba(67, 92, 170, 0.14);
  border-radius: 10px;
}
.spec-clean th {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue, #435CAA);
  text-align: left;
  padding: 0;
  border: none;
}
.spec-clean td {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  border: none;
  line-height: 1.45;
}

/* ─────────────────────────────────────────────────────────────────
   spec-editorial - two-column editorial layout for product specs
   Left: title + note + cta (sticky on desktop)
   Right: clean branded row-list
   ───────────────────────────────────────────────────────────────── */
/* Stacked layout: title + note ABOVE, spec card BELOW (full width) */
.spec-editorial {
  display: block;
}
.spec-editorial__intro {
  margin-bottom: 1.5rem;
}
/* suppress prod-section__title bottom margin inside intro */
.spec-editorial__intro .prod-section__title { margin-bottom: 0; }
.spec-editorial__note {
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--ink, #1F1B2D);
  line-height: 1.55;
  margin: 0.85rem 0 1.5rem;
}
/* On mobile: hide the long note - heading goes straight to the card */
@media (max-width: 759px) { .spec-editorial__note { display: none; } }
.spec-editorial__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-blue, #435CAA);
  background: rgba(67, 92, 170, 0.07);
  border: 1px solid rgba(67, 92, 170, 0.28);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.spec-editorial__cta:hover {
  background: rgba(67, 92, 170, 0.14);
  border-color: rgba(67, 92, 170, 0.55);
  transform: translateY(-1px);
}
.spec-editorial__cta:focus-visible {
  outline: 2px solid var(--brand-blue, #435CAA);
  outline-offset: 2px;
}

/* TDS request CTA: secondary action next to "Request a sample" */
.spec-editorial__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
}
.spec-editorial__ctas .spec-editorial__cta { margin-top: 0; }
.spec-editorial__cta--tds {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #128C7E;
  background: rgba(18, 140, 126, 0.07);
  border: 1px solid rgba(18, 140, 126, 0.28);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.spec-editorial__cta--tds:hover {
  background: rgba(18, 140, 126, 0.14);
  border-color: rgba(18, 140, 126, 0.55);
  color: #0B6D5F;
  gap: 0.55rem;
  transform: translateY(-1px);
}
.spec-editorial__cta--tds:focus-visible {
  outline: 2px solid #128C7E;
  outline-offset: 2px;
}
.spec-editorial__cta svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  opacity: 0.85;
}
.spec-editorial__cta--tds .arrow { font-weight: 400; opacity: 0.7; }

/* spec-rows - dl/dt/dd row list with strong blue top accent */
.spec-rows {
  display: block;
  margin: 0;
  border-top: 2px solid var(--brand-blue, #435CAA);
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(7rem, 0.9fr) 1.4fr;
  gap: 0.4rem 1.25rem;
  padding: 1rem 0.25rem 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  border-radius: 6px;
  transition: background 0.16s;
  position: relative;
}
.spec-row::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 1.3rem;
  width: 0.55rem;
  height: 0.55rem;
  background-color: #032E66;
  border-radius: 50%;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: rgba(67, 92, 170, 0.04); }
.spec-row dt {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink, #1F1B2D);
  line-height: 1.5;
  padding-top: 0;
}
.spec-row dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  font-weight: 400;
  color: var(--ink, #1F1B2D);
  line-height: 1.55;
}

/* ── prod-spec-card: soft tinted card with brand-blue accent ── */
.prod-spec-card {
  background: rgba(67, 92, 170, 0.05);
  border: 1px solid rgba(67, 92, 170, 0.16);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: none;
}
.prod-spec-card .spec-rows { border-top: none; }
.prod-spec-card .spec-row {
  border-bottom: 1px solid rgba(67, 92, 170, 0.12);
}
.prod-spec-card .spec-row:last-child { border-bottom: none; }
.prod-spec-card .spec-row:hover { background: rgba(67, 92, 170, 0.04); }

/* ── Read-more toggle for prod-overview on mobile ── */
@media (max-width: 799px) {
  .prod-overview__more {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s ease;
  }
  .prod-overview__more.is-open { max-height: 600px; }
  .prod-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue, #435CAA);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem 0;
    font-family: var(--font-sans);
    letter-spacing: 0.005em;
  }

  /* On multi-grade pages the grades gallery below repeats the same product
     photos, so hide the now-redundant overview photo on mobile. Scoped via
     :has() so single-product pages (no .prod-grades) keep their photo. */
  body:has(.prod-grades) .prod-overview__photo { display: none; }
}
@media (min-width: 800px) {
  .prod-readmore-btn { display: none; }
  .prod-overview__more { max-height: none !important; overflow: visible !important; }
}

/* ── Mobile product switcher: quick jump to another product. Hidden on desktop
   (≥980px) where the hover mega-menu already covers this. ── */
.prod-switcher { display: none; }
@media (max-width: 979.98px) {
  .prod-switcher {
    display: block;
    background: var(--paper, #fff);
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0;
    /* Stick just below the sticky site-header (63px) so the product
       switcher stays reachable while scrolling the page. */
    position: sticky;
    top: 62px;
    z-index: 90;
    box-shadow: 0 6px 16px -12px rgba(31, 27, 45, 0.35);
  }
  .prod-switcher__field { position: relative; }
  .prod-switcher__select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0.72rem 2.6rem 0.72rem 2.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink, #1f1b2d);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(31, 27, 45, 0.05),
                0 10px 22px -14px rgba(31, 27, 45, 0.3);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .prod-switcher__select:hover {
    border-color: rgba(31, 27, 45, 0.25);
    box-shadow: 0 1px 2px rgba(31, 27, 45, 0.05),
                0 14px 28px -14px rgba(31, 27, 45, 0.36);
  }
  .prod-switcher__select:focus-visible {
    outline: 2px solid var(--ink, #1f1b2d);
    outline-offset: 2px;
  }
  .prod-switcher__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.15rem;
    height: 1.15rem;
    color: var(--ink, #1f1b2d);
    pointer-events: none;
  }
  .prod-switcher__chevron {
    position: absolute;
    right: 1.05rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.05rem;
    height: 1.05rem;
    color: var(--ink-soft, #4a4555);
    pointer-events: none;
  }
}

/* ── Related product image in card ── */
.prod-related__img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fff;
  filter: brightness(1.06) saturate(1.08) contrast(1.02);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04);
}
/* prod-related__link overrides handled in prod-related-v2 block below */
.prod-related-v2__grid li { display: flex; }
.prod-related-v2__grid .prod-related__link { width: 100%; }

/* ── Americhem-style: product feature tags in overview ── */
.prod-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.prod-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  background: rgba(67, 92, 170, 0.06);
  border: 1px solid rgba(67, 92, 170, 0.22);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-blue, #435CAA);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Key benefits: clean list with green dot marker, wrapped in soft green box ── */
.prod-benefits-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 3rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .prod-benefits-strip { grid-template-columns: repeat(2, 1fr); }
}
.prod-benefit-card {
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0 1.4rem;
  position: relative;
}
/* Small green dot marker */
.prod-benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  background-color: #22c55e;
  border-radius: 50%;
}
.prod-benefit-card__icon { display: none; }
.prod-benefit-card h3 {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--ink, #1F1B2D);
  letter-spacing: -0.012em;
  line-height: 1.4;
}
.prod-benefit-card p {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.55;
  color: var(--ink, #1F1B2D);
}

/* ── Numbered benefit grid (3-col on desktop) ── */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}
@media (min-width: 680px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-item { padding-top: 0.9rem; border-top: 2px solid var(--brand-blue, #435CAA); }
.benefit-item__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-blue, #435CAA);
  margin-bottom: 0.4rem;
}
.benefit-item__title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.benefit-item__desc {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Application image cards ── */
.app-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 600px) { .app-img-grid { grid-template-columns: repeat(3, 1fr); } }
.app-more {
  margin: 1.5rem 0 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--ink-soft);
  font-style: italic;
}
.app-more a {
  color: var(--brand-blue, #435CAA);
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
  margin-left: 0.35rem;
}
.app-more a:hover { text-decoration: underline; }
.app-img-card {
  position: relative;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.app-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-img-card__text {
  position: relative;
  z-index: 1;
  padding: 0.75rem 0.9rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.55);
}

/* Legacy - keep for other pages not yet migrated */
.feat-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.feat-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.feat-list li::before { content: "✓"; color: var(--brand-blue, #435CAA); font-weight: 600; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1em; }
.app-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.app-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.app-list li::before { content: "→"; color: var(--brand-blue, #435CAA); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.15em; }

/* Available grades, chip grid */
.prod-grades {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}
.prod-grades a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.prod-grades a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(31, 27, 45, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 52, 124, 0.15);
}
.prod-grades__arrow {
  color: var(--muted);
  font-size: 1.05rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.prod-grades a:hover .prod-grades__arrow {
  color: var(--ink);
  transform: translateX(3px);
}

/* ============================================================
   GRADE CARD GRID, image + name + tag + description per grade
   Plastiblends-style visual showcase of product variants
   ============================================================ */
.prod-grade-grid__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 56rem;
  margin-inline: auto;
}
.prod-grade-grid__head .section-index {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.prod-grade-grid__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.prod-grade-grid__head h2 em {
  font-family: inherit;
  font-style: italic;
  color: var(--ink);
  font-weight: inherit;
}
.prod-grade-grid__head .prod-section__subtitle {
  max-width: 50ch;
  margin-inline: auto;
}

.prod-grade-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 640px)  { .prod-grade-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .prod-grade-grid { grid-template-columns: repeat(3, 1fr); } }

.grade-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1), box-shadow 350ms ease, border-color 350ms ease;
}
.grade-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.04), 0 24px 50px -22px rgba(31, 27, 45, 0.16);
}
.grade-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}
.grade-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  display: block;
  filter: none;
  transition: transform 500ms ease;
}
.grade-card:hover .grade-card__media img { transform: scale(1.04); }
.grade-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.grade-card__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 700;
}
.grade-card__name {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.grade-card__desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.grade-card__cta {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.grade-card__cta span {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 0.25s ease;
}
.grade-card__cta:hover { color: var(--ink); }
.grade-card__cta:hover span { transform: translateX(3px); }

/* CTA block */
.prod-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 760px) {
  .prod-cta { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 3rem; }
}
.prod-cta__copy h2 {
  font-size: clamp(1.4rem, 1.15rem + 0.8vw, 1.85rem);
  margin: 0 0 0.65rem;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.prod-cta__copy p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 50ch;
}
.prod-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(31, 27, 45, 0.15);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.prod-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 22px rgba(201, 52, 124, 0.28);
  transform: translateY(-1px);
}
.prod-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.prod-btn--ghost:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 6px 18px rgba(201, 52, 124, 0.12);
}

/* Related, quiet */
.prod-related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 540px) { .prod-related { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .prod-related { grid-template-columns: repeat(3, 1fr); } }
.prod-related li { border-bottom: 1px solid var(--line); }
@media (min-width: 540px) and (max-width: 719px) {
  .prod-related li:nth-child(2n+1) { border-right: 1px solid var(--line); }
}
@media (min-width: 720px) {
  .prod-related li:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
}
.prod-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: padding 0.25s ease, color 0.2s ease, background 0.2s ease;
}
.prod-related a:hover {
  background: var(--paper-soft);
  color: var(--ink);
  padding-left: 1.75rem;
}
.prod-related__arrow { color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; }
.prod-related a:hover .prod-related__arrow { color: var(--ink); transform: translateX(4px); }

/* ============================================================
   MRP, Industrial Precision Product Page
   ============================================================ */

.mrp {
  background: var(--paper);
  color: var(--ink);
}
.mrp .container.mrp-container {
  max-width: 1280px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.mrp h1, .mrp h2, .mrp h3, .mrp h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.mrp p, .mrp li {
  font-family: var(--font-sans);
}

/* ---- Hero ---- */
.mrp-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.mrp-hero .breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.mrp-hero .breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.mrp-hero .breadcrumbs a:hover { color: var(--ink); }
.mrp-hero .breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }
.mrp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: end;
}
@media (min-width: 900px) {
  .mrp-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.mrp-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.mrp-eyebrow__num {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.66rem;
}

.mrp-hero__text h1 {
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5.25rem);
  line-height: 0.98;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.mrp-hero__text h1 em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.mrp-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  max-width: 50ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.mrp-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mrp-hero__actions .btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mrp-hero__actions .btn:hover { background: var(--ink); }
.mrp-hero__actions .btn-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.25rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mrp-hero__actions .btn-text:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Hero photo, full bleed inside its column, cinematic ratio */
.mrp-hero__photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-soft);
}
.mrp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.mrp-hero__photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* ---- Meta strip, pure data, full-width band below hero ---- */
.mrp-meta-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
}
.mrp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 0;
}
@media (min-width: 720px) { .mrp-meta { grid-template-columns: repeat(5, 1fr); gap: 1rem 2.5rem; } }
.mrp-meta div { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.mrp-meta dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin: 0;
}
.mrp-meta dd {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---- Body sections ---- */
.mrp-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.mrp-section:last-of-type { border-bottom: 0; }
.mrp-section h2 {
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  max-width: 22ch;
}
.mrp-section p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 60ch;
}

.mrp-prose { max-width: 720px; }

/* ---- Numbered list (benefits), clean editorial ---- */
.mrp-list {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) { .mrp-list { grid-template-columns: 1fr 1fr; } }
.mrp-list li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.mrp-list li:nth-child(1), .mrp-list li:nth-child(2) { padding-top: 1.25rem; }
@media (min-width: 800px) {
  .mrp-list li:nth-child(2n+1) { padding-right: clamp(1rem, 3vw, 2rem); }
  .mrp-list li:nth-child(2n) { padding-left: clamp(1rem, 3vw, 2rem); border-left: 1px solid var(--line); }
}
.mrp-list__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
  padding-top: 0.4rem;
}
.mrp-list h3 {
  font-family: var(--font-sans);
  font-size: 1.225rem;
  font-weight: 400;
  margin: 0 0 0.6rem;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.mrp-list p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 42ch;
}

/* ---- Spec table ---- */
.mrp-spec {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-sans);
  border-top: 1px solid var(--ink);
  max-width: 760px;
}
.mrp-spec th, .mrp-spec td {
  padding: 1.1rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.mrp-spec th {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  width: 38%;
  padding-right: 1.5rem;
}
.mrp-spec td {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---- Two column blocks (applications + grades) ---- */
.mrp-twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
}
@media (min-width: 800px) { .mrp-twocol { grid-template-columns: 1fr 1fr; } }
.mrp-tags {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: none;
}

/* ---- CTA block ---- */
.mrp-cta-section { background: var(--paper-soft); border-bottom: 0; }
.mrp-cta { max-width: 720px; }
.mrp-cta h2 { margin-bottom: 1rem; }
.mrp-cta p { margin-bottom: 2rem; }
.mrp-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.mrp-cta__actions .btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mrp-cta__actions .btn:hover { background: var(--ink); }
.mrp-cta__actions .btn.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.mrp-cta__actions .btn.btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
}
.mrp-cta__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ---- Related catalog, ultra-quiet inline list ---- */
.mrp-related h2 { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.mrp-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.mrp-related__list li { border-bottom: 1px solid var(--line); }
.mrp-related__list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  text-decoration: none;
  color: var(--ink);
  transition: padding 0.25s ease, color 0.2s ease;
}
.mrp-related__list a:hover {
  color: var(--ink);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.mrp-related__name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.mrp-related__hint {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 600px) {
  .mrp-related__list a { grid-template-columns: 1fr; gap: 0.4rem; }
  .mrp-related__hint { text-align: left; }
}

/* ============================================================
   Hero with video background, used on careers page
   ============================================================ */

.hero-video {
  position: relative;
  width: calc(100% - 3rem);
  max-width: calc(var(--max-w) - 3rem);
  margin-inline: auto;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
  min-height: clamp(360px, 60vw, 500px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  border-radius: 20px;
}
@media (min-width: 900px) {
  .hero-video {
    width: calc(100% - 4rem);
    max-width: calc(var(--max-w) - 4rem);
  }
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
  z-index: 0;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(201, 52, 124, 0.20) 0%, rgba(201, 52, 124, 0.05) 40%, rgba(31, 27, 45, 0) 70%),
    linear-gradient(to top, rgba(31, 27, 45, 0.92) 0%, rgba(31, 27, 45, 0.78) 35%, rgba(31, 27, 45, 0.55) 70%, rgba(31, 27, 45, 0.40) 100%);
}
.hero-video__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  width: 100%;
}
.hero-video .breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-video .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-video .breadcrumbs a:hover { color: #fff; }
.hero-video .breadcrumbs .sep { margin: 0 0.45rem; opacity: 0.6; }
.hero-video__eyebrow,
.careers .hero-video__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb6d4;
  font-weight: 600;
  margin: 0 0 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-video__tagline,
.careers .hero-video__tagline {
  color: rgba(255, 255, 255, 0.92);
}
.hero-video h1,
.careers .hero-video h1,
.mrp .hero-video h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 1.5rem + 4vw, 4.5rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.hero-video h1 em,
.careers .hero-video h1 em,
.mrp .hero-video h1 em {
  font-family: inherit;
  font-style: italic;
  color: #ffd9ea;
  font-weight: inherit;
}
.hero-video__tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  max-width: 60ch;
  line-height: 1.55;
  font-weight: 400;
}
.hero-video__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(201, 52, 124, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-video__cta:hover {
  background: var(--deep-ink, var(--ink));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 52, 124, 0.4);
}

/* Contact-hero video variant removed, TBD video selection */

/* ============================================================
   Careers page, same industrial precision system
   ============================================================ */

.careers { background: var(--paper); color: var(--ink); }
.careers .container.careers-container {
  max-width: 1280px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.careers h1, .careers h2, .careers h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.careers p { font-family: var(--font-sans); }

.careers-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.careers-hero .breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.careers-hero .breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.careers-hero .breadcrumbs a:hover { color: var(--ink); }
.careers-hero .breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }

.careers-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: end;
}
@media (min-width: 900px) {
  .careers-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
    gap: clamp(3rem, 5vw, 5rem);
  }
}
.careers-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.careers-eyebrow__num { color: var(--accent); font-weight: 500; }
.careers-hero__text h1 {
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5.25rem);
  line-height: 0.98;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.careers-hero__text h1 em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.careers-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  max-width: 50ch;
}
.careers-cta {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.3rem;
  display: inline-block;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.careers-cta:hover { color: var(--ink); border-bottom-color: var(--ink); }
.careers-hero__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-soft);
}
.careers-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}

/* Meta strip */
.careers-meta-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
}
.careers-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 0;
}
@media (min-width: 720px) { .careers-meta { grid-template-columns: repeat(4, 1fr); } }
.careers-meta div { display: flex; flex-direction: column; gap: 0.25rem; }
.careers-meta dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.careers-meta dd {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

/* Sections */
.careers-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.careers-section:last-of-type { border-bottom: 0; }
.careers-section h2 {
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  max-width: 22ch;
}
.careers-section p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 60ch;
}

.careers-twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) { .careers-twocol { grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 5rem); } }
.careers-prose p:last-child { margin-bottom: 0; }

/* Values section, soft surface */
.careers-values-section { background: var(--paper); }

/* Soft pastel value cards, 4 colorful tiles in a grid */
.value-cards {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px)  { .value-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .value-cards { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.85rem 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(31, 27, 45, 0.06), 0 22px 44px rgba(31, 27, 45, 0.10);
}
.value-card--blush    { background: var(--tint-blush); }
.value-card--cream    { background: var(--tint-cream); }
.value-card--mint     { background: var(--tint-mint); }
.value-card--lavender { background: var(--tint-lavender); }

.value-card__num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.2rem;
}
.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.value-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Role cards (replaces .careers-roles list) */
.role-cards__head { margin: 0 auto clamp(1.5rem, 3vw, 2.5rem); max-width: 880px; }
.role-cards__head h2 { margin-bottom: 0.85rem; }
.role-cards__head p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.role-cards__head a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  padding-bottom: 0.1rem;
  transition: color 0.2s ease;
}
.role-cards__head a:hover { color: var(--ink); }

.role-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .role-cards { grid-template-columns: 1fr 1fr; } }

.role-card {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 12px 28px rgba(31, 27, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.06), 0 24px 48px rgba(31, 27, 45, 0.10);
}
.role-card__chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.role-card__chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.role-card__chip--loc {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.role-card__chip--internship {
  background: var(--tint-mint);
  color: #2C5A3D;
}
.role-card h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.role-card h3 small {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-top: 0.15em;
}
.role-card p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.role-card__apply {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.role-card__apply:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 52, 124, 0.25);
}

/* Hide old careers-values styles by not applying when class missing */
.careers-values { display: none; }
.careers-roles { display: none; }

/* Role listing, single continuous list inside one container, hairlines between rows */
.role-listing {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  background: var(--paper-card);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 6px 18px rgba(31, 27, 45, 0.04);
  overflow: hidden;
}
.role-listing__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.role-listing__item:last-child { border-bottom: 0; }
.role-listing__item:hover {
  transform: none;
  box-shadow: none;
  background: var(--paper-soft);
}
@media (min-width: 720px) {
  .role-listing__item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}
.role-listing__info { min-width: 0; }
.role-listing__title {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 0 0 0.65rem;
  color: var(--ink);
  line-height: 1.3;
}
.role-listing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  align-items: center;
}
.role-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.role-meta__chip svg {
  color: var(--accent);
  flex-shrink: 0;
}
.role-listing__apply {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  justify-self: start;
  letter-spacing: 0.005em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(31, 27, 45, 0.15);
}
@media (min-width: 720px) { .role-listing__apply { justify-self: end; } }
.role-listing__apply:hover,
.role-listing__apply:focus-visible,
.role-listing__apply:active {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 27, 45, 0.28);
}

/* Role list, horizontal row layout (replaces .role-cards grid) */
.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.role-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.25s ease, background 0.25s ease;
}
.role-row:hover {
  background: var(--paper-soft);
  padding-inline: 1.25rem;
  border-radius: var(--radius-md);
  border-bottom-color: transparent;
}
@media (min-width: 800px) {
  .role-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}
.role-row__head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.role-row__chips { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.role-row__chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--paper-soft);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.role-row__chip--loc {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.role-row h3 {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.role-row h3 small {
  display: inline;
  font-size: 0.62em;
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
  margin-left: 0.4rem;
  letter-spacing: -0.005em;
}
.role-row__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.role-row__apply {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  justify-self: start;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 800px) { .role-row__apply { justify-self: end; } }
.role-row__apply:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 52, 124, 0.25);
}
.careers-values {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .careers-values { grid-template-columns: 1fr 1fr; } }
.careers-values li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 1.25rem;
  row-gap: 0.55rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.careers-values li > h3,
.careers-values li > p { grid-column: 2; }
.careers-values__num { grid-row: span 2; }
@media (min-width: 800px) {
  .careers-values li:nth-child(2n+1) { padding-right: clamp(1rem, 3vw, 2rem); }
  .careers-values li:nth-child(2n) { padding-left: clamp(1rem, 3vw, 2rem); border-left: 1px solid var(--line); }
}
.careers-values__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
  padding-top: 0.4rem;
}
.careers-values h3 {
  font-family: var(--font-sans);
  font-size: 1.225rem;
  font-weight: 400;
  margin: 0 0 0.6rem;
  letter-spacing: -0.018em;
}
.careers-values p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

/* Roles list */
.careers-roles__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.careers-roles__head h2 { margin-bottom: 0.85rem; }
.careers-roles__head p { font-family: var(--font-sans); margin: 0; }
.careers-roles__head a { color: var(--ink); border-bottom: 1px solid var(--line-strong); text-decoration: none; padding-bottom: 0.1rem; transition: border-color 0.2s ease, color 0.2s ease; }
.careers-roles__head a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.careers-roles {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.careers-roles li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 800px) {
  .careers-roles li {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: baseline;
  }
}
.careers-role__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.careers-role__loc { color: var(--ink); font-weight: 500; }
.careers-role__type { color: var(--muted); }
.careers-roles h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.45rem;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.careers-roles p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}
.careers-role__apply {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.2rem;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.careers-role__apply:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Apply form (Tara Minerals-style, compact) */
.apply-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 620px;
  margin: 0 auto;
}
.apply-block__head h2 { margin: 0 0 0.5rem; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.apply-block__head p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}
.apply-block__head a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease;
}
.apply-block__head a:hover { color: var(--ink); }

.apply-form {
  background: var(--paper-card);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 12px 28px rgba(31, 27, 45, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.apply-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .apply-form__row--two { grid-template-columns: 1fr 1fr; }
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.apply-field[hidden] { display: none; }
.apply-field label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.apply-field label span {
  color: var(--accent);
  margin-left: 0.15rem;
}
.apply-field input[type="text"],
.apply-field input[type="email"],
.apply-field input[type="tel"],
.apply-field select,
.apply-field textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-weight: 400;
}
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--paper-card);
  box-shadow: 0 0 0 3px rgba(201, 52, 124, 0.12);
}
.apply-field input[data-invalid="true"] {
  border-color: #C9347C;
  background: rgba(249, 232, 241, 0.4);
}
.apply-field input[data-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(201, 52, 124, 0.18);
}
.apply-field textarea { resize: vertical; min-height: 70px; }
.apply-field input[type="file"] {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 0.55rem 0.75rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.apply-field input[type="file"]:hover {
  border-color: var(--ink);
  background: rgba(31, 27, 45, 0.06);
}
.apply-field__help {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.apply-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.apply-form__submit {
  padding: 0.7rem 1.6rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 27, 45, 0.12);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.apply-form__submit:hover,
.apply-form__submit:focus-visible,
.apply-form__submit:active {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 27, 45, 0.22);
}
.apply-form .apply-form__note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  flex: 1 1 auto;
  min-width: 0;
  transition: color 200ms ease;
}
.apply-form .apply-form__note.is-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #11623F;
  font-weight: 600;
  font-size: 0.9rem;
  background: #EAF7F1;
  border: 1px solid #A9DEC8;
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
}
.apply-form .apply-form__note.is-success::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1A7B5C url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.apply-form .apply-form__note.is-error {
  color: var(--accent);
  font-weight: 500;
}
.apply-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* CTA block */
.careers-cta-section {
  background: var(--paper-soft);
  border-bottom: 0;
  padding-block: clamp(2.5rem, 4vw, 3.5rem) clamp(2.5rem, 4vw, 3.5rem);
}
.careers-cta-block { max-width: 720px; }
.careers-cta-block h2 { margin-bottom: 1rem; }
.careers-cta-block p { margin-bottom: 2rem; }
.careers-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.careers-cta__actions .btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease;
}
.careers-cta__actions .btn:hover { background: var(--ink); }

/* ============================================================
   Product page: split hero, sticky nav, grade switcher, related
   ============================================================ */

.product-hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.product-hero .breadcrumbs { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .product-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}
.product-hero__category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-hero__info h1 {
  font-size: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.product-hero__info .lead {
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.product-hero__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}
.product-hero__chips li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1.1rem;
  background: var(--paper-card);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 4px 16px rgba(20, 21, 43, 0.05);
}
.product-hero__chips .chip-key {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.product-hero__chips .chip-val {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.product-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.product-hero__media { min-width: 0; }
.product-hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--paper-soft) 0%, var(--paper-deep) 100%);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(20, 21, 43, 0.06), 0 24px 60px rgba(20, 21, 43, 0.10);
}
.product-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero__photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}
.product-hero__photo.is-fallback .product-hero__photo-fallback { display: flex; }

/* Stats band, credibility numbers below the hero */
.product-stats {
  background: var(--paper-card);
  border-block: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}
.product-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
@media (min-width: 720px) {
  .product-stats__grid { grid-template-columns: repeat(5, 1fr); }
}
.product-stats__grid li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}
@media (min-width: 720px) {
  .product-stats__grid li:not(:first-child)::before {
    content: '';
    position: absolute;
    left: clamp(-1.25rem, -1.5vw, -0.75rem);
    top: 0.35rem; bottom: 0.35rem;
    width: 1px;
    background: var(--line-strong);
    opacity: 0.5;
  }
}
.product-stats__num {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-stats__num em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--accent);
  margin-left: 0.1em;
  font-weight: 600;
}
.product-stats__lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* How-it-works, dark contrast section */
.product-how {
  background: var(--deep-ink, #0B0E1A);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.product-how__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}
.product-how__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.product-how h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
}
.product-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: how-step;
}
@media (min-width: 800px) {
  .product-how__steps { grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); }
}
.product-how__steps li {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 800px) {
  .product-how__steps li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -1px; bottom: 1.5rem;
    left: -1.5rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
}
.product-how__icon {
  width: 56px;
  height: 56px;
  color: var(--pop);
  margin-bottom: 1.1rem;
}
.product-how__icon svg { width: 100%; height: 100%; }
.product-how__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-how__steps h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.product-how__steps p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36ch;
}

/* Sticky in-page nav */
.product-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.product-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-nav ul::-webkit-scrollbar { display: none; }
.product-nav a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  font-weight: 600;
}
.product-nav a:hover { color: var(--ink); }
.product-nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

/* Body sections - scroll target offset for sticky nav */
.product-body [data-product-section] {
  scroll-margin-top: 80px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.product-body [data-product-section]:last-child { margin-bottom: 0; }

/* Plain grade names list, just the 6 names, simple chips */
.grade-names {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.grade-names li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 1rem;
  background: var(--paper-soft);
  border-radius: 999px;
}

/* Grade list, clean editorial rows, hairlines, all sans (Inter) */
.grade-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
}
.grade-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .grade-list li {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: baseline;
  }
}
.grade-list__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.grade-list__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.grade-list__use {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 719px) {
  .grade-list__use { white-space: normal; }
}

/* Grade card grid, 6 grades visible at once, no tabs */
.grade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .grade-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grade-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.grade-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.4rem 1.4rem;
  background: var(--paper-card);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 8px 24px rgba(20, 21, 43, 0.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.grade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(20, 21, 43, 0.06), 0 18px 36px rgba(20, 21, 43, 0.09);
}
.grade-card__name {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.grade-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}
.grade-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.grade-card__use {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Grade switcher: tabs + details panels */
.grade-switcher {
  margin: 1.5rem 0 0;
  background: var(--paper-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 12px 32px rgba(20, 21, 43, 0.06);
}
.grade-switcher__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  padding: 0.4rem;
}
.grade-switcher__tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 3px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  font-weight: 600;
  white-space: nowrap;
}
.grade-switcher__tab:hover { color: var(--ink); }
.grade-switcher__tab.is-active {
  background: var(--ink);
  color: #fff;
}
.grade-switcher__panels { padding: 1.75rem 1.5rem; }
.grade-switcher__panel { animation: gradeFade 0.25s ease; }
@keyframes gradeFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.grade-switcher__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.grade-switcher__panel h4 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.grade-switcher__panel p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}
.grade-switcher__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
@media (min-width: 540px) {
  .grade-switcher__meta { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.grade-switcher__meta div { display: flex; flex-direction: column; gap: 0.2rem; }
.grade-switcher__meta dt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.grade-switcher__meta dd {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}

/* Sidebar refresh */
.product-sidebar__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-sidebar__note {
  margin: 1rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

/* Inline quote panel, replaces the old sticky sidebar */
.quote-panel-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.quote-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper-card);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 20px 50px rgba(20, 21, 43, 0.07);
  align-items: center;
}
@media (min-width: 800px) {
  .quote-panel {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.quote-panel__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.quote-panel__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.15;
}
.quote-panel__head p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 50ch;
}
.quote-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
}
.quote-panel__actions .btn { justify-content: center; }
.quote-panel__note {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

/* Related products cross-sell */
.related-products__title {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  margin: 0 0 2rem;
}
.related-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .related-products { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.85rem 1.6rem;
  background: var(--paper-card);
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(20, 21, 43, 0.04), 0 8px 24px rgba(20, 21, 43, 0.06);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(20, 21, 43, 0.06), 0 20px 40px rgba(20, 21, 43, 0.10);
}
.related-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.related-card h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.related-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
  flex: 1;
}
.related-card__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* -------- CTA block -------- */
.cta-editorial {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 800px) { .cta-editorial { grid-template-columns: 1.3fr 1fr; gap: 3rem; } }
.cta-editorial h2 { font-size: clamp(2rem, 1.4rem + 2.5vw, 3.25rem); max-width: 16ch; margin: 0; }
.cta-editorial .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}
@media (min-width: 800px) { .cta-editorial .cta-actions { justify-content: flex-end; } }

/* -------- CTA: editorial pull-quote moment -------- */
.cta-conversation {
  /* Inset cream → blush rounded box (matches the applications page closing
     CTA). Background lives on the inner .container so the box has side margin. */
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.cta-conversation > .container {
  background: linear-gradient(180deg, var(--tint-cream) 0%, var(--accent-soft) 100%);
  border-radius: 18px;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
}

/* ============================================================
   Partnership variant, full-bleed two-column layout with a
   dramatic handshake image on the left and the existing CTA copy
   on the right. Inspired by JJ Plastalloy / Plastiblends pattern.
   Existing copy is preserved; only the visual treatment changes.
   ============================================================ */
.cta-partnership {
  background: var(--ink);
  border: none;
  padding-block: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cta-partnership { grid-template-columns: 1.05fr 1fr; }
}
.cta-partnership__media {
  position: relative;
  min-height: clamp(280px, 40vw, 480px);
  overflow: hidden;
}
.cta-partnership__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.92);
}
.cta-partnership__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 12, 24, 0) 0%,
    rgba(15, 12, 24, 0) 60%,
    rgba(31, 27, 45, 0.92) 100%
  );
}
@media (max-width: 899px) {
  .cta-partnership__media::after {
    background: linear-gradient(to bottom, rgba(15, 12, 24, 0) 30%, rgba(31, 27, 45, 0.92) 100%);
  }
}
.cta-partnership__copy {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-partnership .cta-conversation__inner {
  align-items: flex-start;
  text-align: left;
  margin-inline: 0;
}
.cta-partnership__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 0.4rem;
}
.cta-partnership .cta-conversation__title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.3rem + 2.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  max-width: 18ch;
}
.cta-partnership .cta-conversation__title em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.cta-partnership .cta-conversation__promises {
  justify-content: flex-start;
  margin: 0.4rem 0 0;
  gap: 0.7rem 1.4rem;
}
.cta-partnership .cta-conversation__promises li {
  color: rgba(255, 255, 255, 0.7);
}
.cta-partnership .cta-conversation__promises li::before {
  color: rgba(255, 255, 255, 0.55);
}
.cta-partnership .cta-conversation__actions { margin-top: 0.4rem; }
.cta-partnership .btn-text {
  color: rgba(255, 255, 255, 0.78);
}
.cta-partnership .btn-text:hover { color: #fff; }
.cta-conversation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 880px;
  margin-inline: auto;
}
.cta-conversation__title {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.5rem 0 0;
  max-width: 18ch;
}
.cta-conversation__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: inherit;
}
.cta-conversation__promises {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2rem;
  justify-content: center;
}
@media (max-width: 720px) {
  .cta-conversation__promises {
    flex-wrap: wrap;
  }
}
.cta-conversation__promises li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.5;
}
.cta-conversation__promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-weight: 600;
}
.cta-conversation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ISO 9001:2015 seal, fills the previously empty section-01 left column */
.iso-seal {
  position: relative;
  width: clamp(180px, 17vw, 230px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  margin-top: 1.75rem;
  isolation: isolate;
}
.iso-seal::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}
.iso-seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: isoSealSpin 42s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .iso-seal__ring { animation: none; }
}
@keyframes isoSealSpin { to { transform: rotate(360deg); } }
.iso-seal__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  fill: var(--accent);
  font-weight: 600;
}
.iso-seal__core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0 1rem;
  text-align: center;
}
.iso-seal__big {
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.iso-seal__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.iso-seal__rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--line-strong);
  margin: 0.35rem 0 0.3rem;
}
.iso-seal__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* Documents grid, datasheets/CoA/MSDS/ISO listed as requestable items */
.docs-grid {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .docs-grid { grid-template-columns: 1fr; } }

.doc-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.4rem 1.25rem;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.doc-card:hover {
  border-color: rgba(31, 27, 45, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(15, 16, 32, 0.12);
}
.doc-card__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}
.doc-card__icon svg { width: 20px; height: 20px; display: block; }

.doc-card__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.doc-card__note {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* -------- Quality page: stats strip, process timeline, spec cards, lab -- */

/* Section 01, Quality Management feature.
   Content-left, aside-right (smaller image stacked above the quote).
   Aside is vertically centred in its grid cell so it visually balances
   the taller content column on the left. */
.qm-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .qm-feature {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: 3.5rem;
    align-items: start;
  }
}
.qm-feature__content { padding-top: 0.25rem; }
.qm-feature__content > h2 { margin-top: 0.65rem; }

.qm-feature__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
}
.qm-feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-soft);
  width: 100%;
  aspect-ratio: 16 / 11;
}
.qm-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Quote sits under the image, pulls the right column together visually. */
/* Zine-style double frame with decorative corner quote marks */
.qm-feature__quote {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--pop);
}
/* Inner accent (pop colour) frame, inset slightly */
.qm-feature__quote::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--pop);
  border-radius: 3px;
  pointer-events: none;
}
.qm-feature__text {
  position: relative;
  display: block;
  z-index: 1;
}

/* Decorative quote glyphs in the corners (inside the box) */
.qm-feature__mark {
  position: absolute;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--pop);
  z-index: 2;
  pointer-events: none;
}
.qm-feature__mark--open {
  top: 0.3rem;
  left: 0.85rem;
}
.qm-feature__mark--close {
  bottom: -0.4rem;
  right: 0.85rem;
}

.qm-feature__cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}

/* Section 03 spec table, clean B2B spec sheet (Property | Specification) */
.quality-page .spec-table {
  margin-top: 1.5rem;
}
.quality-page .spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.quality-page .spec-table thead {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.quality-page .spec-table thead th {
  padding: 0.85rem 1.25rem 0.85rem 0;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.quality-page .spec-table tbody tr {
  border-bottom: 1px solid var(--line);
}
.quality-page .spec-table tbody th {
  padding: 1.1rem 1.25rem 1.1rem 0;
  text-align: left;
  vertical-align: middle;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  width: 35%;
}
.quality-page .spec-table tbody td {
  padding: 1.1rem 0;
  text-align: left;
  vertical-align: middle;
}
.quality-page .spec-table tbody td strong {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Quality page rhythm, aligned with site default for consistency.
   .section and .section-sm overrides removed so research.html uses the
   global padding (clamp(3rem, 6vw, 5.5rem)) matching every other page. */
.quality-page .section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.quality-page .qc-flow,
.quality-page .spec-grid,
.quality-page .spec-table,
.quality-page .docs-grid { margin-top: 2rem; }
.quality-page .page-hero { padding-block: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 3.5vw, 3rem); }

/* Stats strip, credibility numbers right under the hero */
.quality-stats {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.quality-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) { .quality-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.quality-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-left: 1px solid var(--line-strong);
}
.quality-stat:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 760px) {
  .quality-stat:nth-child(2n+1) { border-left: 0; padding-left: 0; }
}
.quality-stat__num {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quality-stat__num em {
  font-family: var(--font-sans);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  margin-left: 0.05em;
  font-size: 0.7em;
}
.quality-stat__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
}

/* Five-stage workflow, numbered timeline */
.qc-flow {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}
@media (max-width: 980px) {
  .qc-flow { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
}
@media (max-width: 540px)  {
  .qc-flow { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Single continuous editorial rule across all steps at top */
.qc-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
}
@media (max-width: 980px) {
  .qc-flow::before { display: none; }
}

.qc-step {
  position: relative;
  padding: 1.75rem 0 0;
  border-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (max-width: 980px) {
  .qc-step {
    padding-top: 1.25rem;
    border-top: 2px solid var(--ink);
  }
}

/* Big editorial number, display serif in brand blue */
.qc-step__num {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 0.4rem;
}

.qc-step__title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.qc-step__desc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Section 03 intro, image on one side, heading on the other.
   Side-by-side from tablet up so the image doesn't dominate the viewport. */
.spec-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .spec-intro {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
  }
}
.spec-intro__media {
  aspect-ratio: 3 / 2;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-soft);
}
@media (min-width: 720px) {
  .spec-intro__media {
    max-width: none;
    margin: 0;
  }
}
.spec-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-intro__content { padding: 0.5rem 0; }
.spec-intro__content h2 { margin-top: 0.65rem; }
/* Image on the right side from tablet up */
@media (min-width: 720px) {
  .spec-intro .spec-intro__media { order: 2; }
}

/* Spec cards, what we measure, displayed as visual cards */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .spec-grid { grid-template-columns: 1fr; } }
.spec-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.25rem 1.4rem;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.spec-card:hover {
  border-color: rgba(31, 27, 45, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(15, 16, 32, 0.12);
}
.spec-card__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.spec-card__value {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
}
.spec-card__value em {
  font-family: var(--font-sans);
  font-style: italic;
  color: var(--pop);
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 0.05em;
}
.spec-card__note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: auto;
}

/* Lab feature, photo on one side, content on the other */
.lab-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 700px) {
  .lab-feature { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 3rem; }
}
@media (min-width: 1100px) {
  .lab-feature { gap: 4rem; }
}
.lab-feature__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-soft);
}
.lab-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lab-feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1rem 0;
}
.lab-feature__content > * { margin: 0; }
.lab-feature__content h2 {
  margin-top: 0.35rem;
  /* Pull h2 a touch tighter to its eyebrow above */
  margin-bottom: 0.4rem;
}
.lab-feature__content .section-index + h2 { margin-top: 0; }
.lab-feature__content .feature-list { padding-top: 0.4rem; }

/* Shift a section-head to align with the content column of the lab-feature
   below it (image on left, heading + body together on the right). */
@media (min-width: 760px) {
  .section-head--right {
    max-width: 58%;
    margin-left: auto;
  }
}
/* Reversed variant, image on the right, content on the left */
@media (min-width: 760px) {
  .lab-feature--reverse .lab-feature__media { order: 2; }
}
/* Reversed variant, image on the right, content on the left */
/* Landscape variant, frame matches the source image so no empty bands */
.lab-feature--landscape .lab-feature__media {
  aspect-ratio: 16 / 10;
}
.lab-feature--landscape .lab-feature__media img {
  object-fit: cover;
  background: transparent;
}

/* -------- Fairs: feature blocks with hero, gallery & YouTube link -------- */
.fairs-list {
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 8vw, 7.5rem);
  margin-top: 2.5rem;
}

.fair-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .fair-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }
  /* Alternate sides: left, right, left, ... for visual rhythm */
  .fair-feature:nth-child(even) .fair-feature__media { order: 2; }
}

.fair-feature__media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

/* Gallery component, a clean uniform grid of event photos. Equal tiles,
   aligned, the same structured block on every fair (professional B2B).
   Display only, no enlarge/zoom: 2 columns on small screens, 3 from 560px. */
.fair-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 560px) {
  .fair-gallery { grid-template-columns: repeat(3, 1fr); }
}
.fair-gallery__cell {
  aspect-ratio: 4 / 3;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
  overflow: hidden;
  display: block;
}
.fair-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  font-size: 0;
  color: transparent;
}

/* Lightbox modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 22, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__stage {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 7rem);
  display: block;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 1;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}
.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
}
.lightbox__nav--prev {
  left: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 600px) {
  .lightbox__nav { width: 38px; height: 38px; }
  .lightbox__close { width: 38px; height: 38px; }
}

/* Content side */
.fair-feature__content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
}
.fair-feature__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.fair-feature__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 1.1rem + 1vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.fair-feature__desc {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
}

/* YouTube CTA pill, small red play icon + label */
.fair-feature__video {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-card);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fair-feature__video:hover {
  border-color: #FF0000;
  color: #FF0000;
  transform: translateY(-1px);
}
.fair-feature__video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  flex-shrink: 0;
}
.fair-feature__video-icon svg {
  margin-left: 1px;
}

/* -------- Contact -------- */

/* Clean editorial backdrop + side-by-side info / form layout */
/* ====================================================================
   CONTACT PAGE, editorial header, Google Maps visual anchor, compact
   list of contact details, focused form with intent chips. The "five
   competing rectangles" problem is gone.
   ==================================================================== */
.contact-page {
  position: relative;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) 0 clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 90% 70% at 90% 0%, var(--tint-cream) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 5% 100%, var(--paper-deep) 0%, transparent 60%),
    var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.contact-page > .container {
  position: relative;
  z-index: 2;
}
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(31, 27, 45, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 27, 45, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}

/* Atmospheric coloured orbs, four soft category-coloured gradient blobs
   blooming from the corners of the section. Adds life and varied colour
   without going pink-pink. */
.contact-page__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 5% 12%,  var(--cat-moisture-soft) 0%, transparent 28%),
    radial-gradient(circle at 95% 8%,  var(--cat-additive-soft) 0%, transparent 30%),
    radial-gradient(circle at 8% 92%,  var(--cat-fillers-soft)  0%, transparent 28%),
    radial-gradient(circle at 92% 88%, var(--accent-soft)        0%, transparent 30%);
  opacity: 0.55;
  filter: blur(6px);
}

/* Hero, full-bleed photo with headline + lead overlaid on top.
   No coloured washes; just a clean dark gradient for text legibility. */
/* ============================================================
   STANDARD PAGE HERO — shared across products, applications,
   careers, about, research, fairs (same treatment as contact).
   Full-width rounded banner: image + dark overlay + white H1 + lead.
   ============================================================ */
.page-hero {
  position: relative;
  width: calc(100% - 3rem);
  max-width: calc(var(--max-w) - 3rem);
  margin: clamp(1rem, 2vw, 1.5rem) auto clamp(2.25rem, 4vw, 3.25rem);
  min-height: clamp(360px, 60vw, 500px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.05), 0 32px 70px -30px rgba(31, 27, 45, 0.3);
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (min-width: 900px) {
  .page-hero { width: calc(100% - 4rem); max-width: calc(var(--max-w) - 4rem); }
}
@media (max-width: 760px) {
  .page-hero { border-radius: 16px; min-height: 340px; }
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(15, 16, 32, 0.82) 0%,
    rgba(15, 16, 32, 0.72) 22%,
    rgba(15, 16, 32, 0.50) 40%,
    rgba(15, 16, 32, 0.22) 55%,
    rgba(15, 16, 32, 0) 68%
  );
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
  color: #fff;
}
@media (min-width: 900px) { .page-hero__inner { padding-inline: 6rem; } }
.page-hero__title {
  color: #fff;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  max-width: 20ch;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35), 0 2px 16px rgba(0,0,0,0.45);
}
.page-hero__lead {
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.5);
}

.contact-page__hero {
  position: relative;
  margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
  width: 100%;
  min-height: clamp(360px, 60vw, 500px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(31, 27, 45, 0.05),
    0 32px 70px -30px rgba(31, 27, 45, 0.3);
  display: flex;
  align-items: center;
  z-index: 1;
}
.contact-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Vignette overlay, darkens only the bottom-left (where text sits),
   leaves the rest of the image bright and visible. */
.contact-page__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(15, 16, 32, 0.68) 0%,
      rgba(15, 16, 32, 0.45) 30%,
      rgba(15, 16, 32, 0.18) 55%,
      rgba(15, 16, 32, 0) 75%
    ),
    linear-gradient(180deg,
      rgba(15, 16, 32, 0) 60%,
      rgba(15, 16, 32, 0.35) 100%
    );
  pointer-events: none;
}
.contact-page__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
  color: #fff;
}
@media (min-width: 900px) { .contact-page__hero-inner { padding-inline: 6rem; } }

/* Breadcrumbs on the hero, white, smaller, sits at the top edge */
.contact-page__hero-inner .contact-page__crumbs {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 1.85rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.contact-page__hero-inner .contact-page__crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.contact-page__hero-inner .contact-page__crumbs a:hover { color: #fff; }
.contact-page__hero-inner .contact-page__crumbs .sep { color: rgba(255, 255, 255, 0.5); }

/* Title + lead inside the hero, white type with text-shadow for crisp
   legibility against the photo. */
.contact-page__hero .contact-page__head {
  margin: 0;
  max-width: 36rem;
}
.contact-page__hero .contact-page__title {
  max-width: 18ch;
}
.contact-page__hero .contact-page__title {
  color: #fff;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35),
               0 2px 16px rgba(0, 0, 0, 0.45);
}
.contact-page__hero .contact-page__title em {
  color: #fff;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35),
               0 2px 16px rgba(0, 0, 0, 0.45);
}
.contact-page__hero .contact-page__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.15rem);
  max-width: 56ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4),
               0 1px 8px rgba(0, 0, 0, 0.35);
}
.contact-page__hero .contact-page__crumbs {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@media (max-width: 760px) {
  .contact-page__hero { min-height: 400px; border-radius: 16px; }
}
@media (min-width: 900px) {
  .contact-page__hero { margin-inline: -4rem; width: calc(100% + 8rem); }
  .contact-page__hero .contact-page__head { max-width: none; }
}
.contact-page__crumbs {
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.contact-page__crumbs a { color: var(--ink-soft); text-decoration: none; }
.contact-page__crumbs a:hover { color: var(--ink); }
.contact-page__crumbs .sep { color: var(--muted); margin: 0 0.5rem; }

/* Hero header: eyebrow chip + dramatic headline + lead */
.contact-page__head {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
  max-width: 68ch;
}
.contact-page__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.1;
}
.contact-page__title em {
  font-family: inherit;
  font-style: italic;
  color: var(--accent);
  font-weight: inherit;
}
.contact-page__lead {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 62ch;
}


/* Two-column layout: aside (map + info) on the left, form on the right.
   Both columns stretch to the same height, map grows to fill the gap. */
.contact-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  align-items: stretch;
}
@media (min-width: 960px) {
  .contact-page__layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(3.5rem, 6vw, 6rem);
  }
}

/* Section title, small mono uppercase tag, sits quietly above each
   column. No dot, no underline. Pure typography. */
.contact-page__section-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.4rem;
  line-height: 1.4;
}

/* LEFT COLUMN, map then info list */
.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
/* RIGHT COLUMN, just the form, no wrapper styling needed */
.contact-page__form-wrap {
  display: flex;
  flex-direction: column;
}

/* Heading above the contact form */
.contact-form__head {
  margin: 0;
  text-align: center;
}
.contact-form__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
}
.contact-form__sub {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

/* Centered submit-row variant, no reassure text, just a button */
.form-submit-row--center {
  justify-content: center !important;
}

/* Map card, sits below the contact list and grows to fill the
   remaining vertical space so the aside matches the form's height. */
.contact-map {
  margin: 0;
  width: 100%;
  display: flex;
  flex: 1 1 auto;
  min-height: 240px;
}
.contact-map__frame {
  width: 100%;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-soft);
  border: 3px solid #ffffff;
  box-shadow:
    0 1px 2px rgba(31, 27, 45, 0.06),
    0 6px 18px rgba(31, 27, 45, 0.08),
    0 28px 60px -24px rgba(31, 27, 45, 0.30);
}
/* Below desktop: fall back to a fixed aspect ratio (stacked layout
   doesn't have a "form column" to match against). */
@media (max-width: 959px) {
  .contact-map { flex: none; min-height: 0; }
  .contact-map__frame { aspect-ratio: 16 / 9; }
}
.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.05);
}

/* Compact contact list, label/value pairs separated by hairlines.
   No card frame; the structure comes from the rhythm of label / value /
   divider and the section title above. */
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact-list__item {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(31, 27, 45, 0.12);
  display: grid;
  grid-template-columns: minmax(105px, 0.38fr) 1fr;
  gap: 1.25rem;
  align-items: baseline;
}
.contact-list__item:first-child {
  border-top: 0;
  padding-top: 0.4rem;
}
.contact-list__label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.contact-list__value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.008em;
  font-style: normal;
  margin: 0;
}
.contact-list__value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.contact-list__value a:hover { color: var(--ink); }
@media (max-width: 600px) {
  .contact-list__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* RIGHT COLUMN, form sits inside a refined frame. White surface,
   hairline border, soft rounded corners. Tightened spacing so the
   frame doesn't read as oversized. */
.contact-page__form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.2vw, 1.85rem) clamp(1.4rem, 2.2vw, 1.85rem) !important;
  background: #ffffff !important;
  border: 1px solid rgba(31, 27, 45, 0.1) !important;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.03), 0 12px 30px -20px rgba(31, 27, 45, 0.12);
}

/* Form rows, single column by default. Two-up rows only where the
   fields are similar visual weight (Name + Company). */
.contact-page__form .form-row {
  margin: 0;
  display: grid;
  gap: 1.2rem;
}
.contact-page__form .form-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}
/* Product row: category fills the full width until a category is picked and the
   specific-product field appears; then the two sit side by side. */
.contact-page__form .form-row.cols-2:has(#product-specific-field[hidden]) {
  grid-template-columns: 1fr;
}
@media (max-width: 560px) {
  .contact-page__form .form-row.cols-2 { grid-template-columns: 1fr; }
}

.contact-page__form .field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.contact-page__form .field label span[aria-hidden] {
  color: var(--accent);
  font-weight: 400;
  margin-left: 0.15em;
}

/* Inputs, large, generous padding, larger radius, soft fill */
.contact-page__form .field input,
.contact-page__form .field select,
.contact-page__form .field textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink);
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.contact-page__form .field input:hover,
.contact-page__form .field select:hover,
.contact-page__form .field textarea:hover {
  border-color: var(--ink-soft);
  background: #fff;
}
.contact-page__form .field input:focus,
.contact-page__form .field select:focus,
.contact-page__form .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 27, 45, 0.08);
}
.contact-page__form .field input::placeholder,
.contact-page__form .field textarea::placeholder {
  color: var(--muted);
  opacity: 0.75;
}
.contact-page__form .field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}
.contact-page__form .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232F2F3D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Phone field, intl-tel-input wrapping */
.contact-page__form .iti { display: block; width: 100%; }
.contact-page__form .iti__tel-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.contact-page__form .iti__tel-input:hover {
  border-color: var(--ink-soft);
  background: #fff;
}
.contact-page__form .iti__tel-input:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 27, 45, 0.08);
}
.contact-page__form .iti__country-list {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 32px -10px rgba(15, 16, 32, 0.18);
}
.contact-page__form .iti__search-input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.contact-page__form .iti--allow-dropdown .iti__selected-country:hover,
.contact-page__form .iti--allow-dropdown .iti__selected-country:focus {
  background: rgba(15, 16, 32, 0.04);
  border-radius: 12px 0 0 12px;
}

.contact-page__form .field-help {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin-top: 0.55rem;
  line-height: 1.45;
}
.contact-page__form .field-help.is-error {
  color: var(--pop);
  font-weight: 500;
}
.contact-page__form .field input:user-invalid,
.contact-page__form .field textarea:user-invalid {
  border-color: var(--pop);
  box-shadow: 0 0 0 3px rgba(201, 52, 124, 0.10);
}

/* Submit row, reassurance text on the left, button on the right */
.form-submit-row {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(31, 27, 45, 0.08);
}
.form-reassure {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}
.contact-page__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.06), 0 8px 22px -10px rgba(31, 27, 45, 0.45);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.contact-page__submit span {
  display: inline-block;
  transition: transform 250ms var(--ease);
}
.contact-page__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.06), 0 14px 28px -10px rgba(31, 27, 45, 0.5);
}
.contact-page__submit:hover span {
  transform: translateX(4px);
}
@media (max-width: 560px) {
  .form-submit-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .form-submit-row .contact-page__submit { width: 100%; justify-content: center; }
  .form-reassure { text-align: center; }
}

/* Inline form feedback, success / error message under the submit button */
.contact-form__note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  min-height: 1.5em;
  transition: color 200ms ease;
}
.contact-form__note.is-success {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  color: #11623F;
  font-weight: 600;
  font-size: 1rem;
  background: #EAF7F1;
  border: 1px solid #A9DEC8;
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  box-shadow: 0 6px 18px rgba(26, 123, 92, 0.14);
  animation: note-pop 380ms cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}
.contact-form__note.is-success::before {
  content: "";
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1A7B5C url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 15px no-repeat;
}
@keyframes note-pop {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.contact-form__note.is-error {
  color: var(--accent);
  font-weight: 500;
}

/* Strip of contact details below the hero, 4 elegant cards with icons */
.contact-strip { padding-block: clamp(2.5rem, 5vw, 4rem); }
.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .contact-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-strip__grid { grid-template-columns: 1fr; } }

.contact-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.4rem 1.4rem;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.contact-strip__item:hover {
  border-color: rgba(31, 27, 45, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(15, 16, 32, 0.12);
}

/* Icon + label sit on the same line at the top */
.contact-strip__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.contact-strip__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-strip__icon svg { width: 18px; height: 18px; display: block; }

.contact-strip__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.contact-strip__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-strip__value {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.contact-strip__value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.contact-strip__value a:hover { color: var(--ink); border-color: var(--ink); }

.contact-strip__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}
.contact-strip__cta span { display: inline-block; transition: transform var(--dur) var(--ease); margin-left: 0.25rem; }
.contact-strip__cta:hover span { transform: translateX(4px); }
.contact-strip__cta-meta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

/* Legacy two-column contact grid retained for any old pages still using it */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.contact-info .info-block {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.contact-info .info-block:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-info .info-value {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-info a:hover { color: var(--ink); border-color: var(--ink); }

.contact-form {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper-card);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }

/* -------- Footer -------- */
.site-footer {
  background: var(--paper-deep);
  color: var(--ink-soft);
  padding-block: 2rem 1rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
}
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }

/* CTA row above the columns */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line-strong);
}
@media (min-width: 760px) {
  .footer-cta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
}
.footer-cta-text { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-cta-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.footer-cta-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer-cta-link span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform var(--dur) var(--ease);
}
.footer-cta-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.footer-cta-link:hover span { transform: translateX(4px); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-strong);
}
/* Mobile stays concise: stack columns and hide the full product catalog list. */
@media (max-width: 719px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
    padding-bottom: 1.25rem;
  }
  .footer-brand        { grid-column: 1 / -1; }
  .footer-col.footer-contact { grid-column: 1 / -1; }
  .footer-catalog { display: none; }

  /* Brand block: tighter rhythm between description, cert, social.
     Prefixed with .site-footer to beat later equal-specificity base rules. */
  .site-footer .footer-brand p { margin-top: 0.55rem; }
  .site-footer .footer-cert { margin-top: 0.7rem; padding-block: 0.35rem; }
  .site-footer .footer-social { margin-top: 0.55rem; }

  /* Column heading underline tighter */
  .site-footer .footer-col h4 { padding-bottom: 0.4rem; margin-bottom: 0.7rem; }

  /* Visit / Contact block: dense single-line rows. Each row reads as
     "LABEL · value", and the two phones share one row with a dot
     separator. Dividers between groups are dropped on mobile - the
     mono uppercase labels already provide hierarchy. */
  .site-footer .footer-contact { gap: 0.55rem; }
  .site-footer .footer-address {
    padding-bottom: 0.6rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--line);
  }
  .site-footer .footer-contact-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.65rem;
    padding-bottom: 0;
    border-bottom: 0;
  }
  /* Separator between adjacent phone links (call group) */
  .site-footer .footer-contact-group a + a::before {
    content: "\00B7";
    margin-right: 0.5rem;
    color: var(--muted);
  }
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; } }

.footer-brand p {
  color: var(--ink-soft);
  max-width: 34ch;
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.55;
}

/* Social row, icon-only round buttons, in trust order:
   LinkedIn · YouTube · Facebook · Instagram. Sits below ISO cert. */
.footer-social {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    color var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.footer-social-link svg { display: block; width: 16px; height: 16px; }
.footer-social-link:hover { transform: translateY(-1px); }
/* Only the icon picks up its platform brand colour on hover -
   ring & background stay untouched. */
.footer-social-link[aria-label*="LinkedIn"]:hover  { color: #0A66C2; }
.footer-social-link[aria-label*="YouTube"]:hover   { color: #FF0000; }
.footer-social-link[aria-label*="Facebook"]:hover  { color: #1877F2; }
.footer-social-link[aria-label*="Instagram"]:hover { color: #E4405F; }

/* ISO certification, editorial hairline rule, no box */
.footer-cert {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.65rem 0;
  margin-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  min-width: 200px;
}
.footer-cert-mark {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.footer-cert-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.footer-col h4 {
  position: relative;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 0.7rem;
  margin-bottom: 1.25rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--dur) var(--ease), font-weight 0.05s linear;
}
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-col a:active {
  color: #000;
  font-weight: 700;
}
.footer-col li a strong { font-weight: 600; color: var(--ink); }

/* Visit / Write column */
.footer-contact { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact h4 { margin-bottom: 0; }
.footer-address {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-strong);
}
.footer-contact-group { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact-group:not(:last-child) {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-strong);
}
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.footer-contact-group a,
.footer-contact-group span:not(.footer-contact-label) {
  font-size: 0.95rem;
  color: var(--ink);
}
.footer-contact-group a { font-weight: 500; transition: color var(--dur) var(--ease), font-weight 0.05s linear; }
.footer-contact-group a:hover,
.footer-contact-group a:focus-visible,
.footer-contact-group a:active {
  color: #000;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* -------- Reveal & motion -------- */
html { scroll-behavior: smooth; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Variants for richer motion */
.reveal--up { transform: translateY(28px); }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(0.96); }
.reveal--fade { transform: none; }
.reveal--fade.is-visible { opacity: 1; }

/* Staggered children: each direct child animates in 80ms after the last */
.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }
.stagger.is-visible > *:nth-child(n+7) { transition-delay: 540ms; }
.stagger.is-visible > * { opacity: 1; transform: none; }

/* (Underline animation override removed so the original arrow ::after
   from line ~970 is restored. .btn-text shows: text + border-bottom + → arrow.) */

/* (Pillar entrance animation removed, they were getting stuck invisible.) */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger > *,
  .about-pillar-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }

/* Print */
@media print {
  .site-header, .site-footer, .cta-editorial { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ============================================================
   PRODUCTS HUB PAGE, products.html
   Reverting: delete this entire block + remove products.html
   ============================================================ */

/* Family index strip, sticky-ish nav under page hero */
.family-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft, #f5f0e6);
}
.family-strip-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.family-strip-list li { border-right: 1px solid var(--line); }
.family-strip-list li:last-child { border-right: 0; }
.family-strip-list a {
  display: block;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--dur) var(--ease);
  position: relative;
}
.family-strip-list a:hover { background: rgba(0,0,0,0.025); }
.fs-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.fs-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
}
.fs-count {
  position: absolute;
  top: 0.9rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  background: rgba(0,0,0,0.04);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
}
@media (max-width: 980px) {
  .family-strip-list { grid-template-columns: repeat(2, 1fr); }
  .family-strip-list li:nth-child(2n) { border-right: 0; }
  .family-strip-list li { border-bottom: 1px solid var(--line); }
}

/* Family spread, magazine-style section per family */
.family-spread {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.family-spread:nth-child(odd of .family-spread) { background: var(--paper); }
.family-spread:nth-child(even of .family-spread) { background: var(--paper-soft, #f5f0e6); }

/* Family head, big numeral + intro */
.family-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
  max-width: 1100px;
}
.family-num {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.85;
  font-weight: 300;
  color: var(--family-accent, var(--ink));
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.04em;
}
.family-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--family-accent, var(--accent));
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--family-accent, var(--accent));
}
.family-spread h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  margin: 0 0 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.family-spread h2 em {
  font-family: inherit;
  font-style: italic;
  color: var(--ink);
  font-weight: inherit;
}
.family-intro {
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 700px) {
  .family-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .family-num { font-size: 4rem; }
}

/* ============================================================
   PRODUCTS HUB, categories overview + per-category sections
   ============================================================ */
.prod-categories {
  padding-block: clamp(3rem, 5vw, 4.5rem) clamp(2.5rem, 4vw, 3.5rem);
  background: #ffffff;
}
.prod-categories__head {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  max-width: 56rem;
}
.prod-categories__head .section-index {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.prod-categories__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0;
  max-width: 28ch;
}

.prod-cat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .prod-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .prod-cat-grid { grid-template-columns: repeat(4, 1fr); } }

.prod-cat {
  position: relative;
}
.prod-cat__link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease, box-shadow 300ms ease;
  min-height: 220px;
}
.prod-cat__link:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.04), 0 24px 50px -22px rgba(31, 27, 45, 0.18);
}
.prod-cat__num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--pop);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.prod-cat__name {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0.25rem 0 0.5rem;
  color: var(--ink);
}
.prod-cat__desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.prod-cat__count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Each category section in the catalogue */
.prod-cat-section {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
/* (Cream alt-section background removed, products pages stay white.) */

/* Products pages, keep everything white, no soft tints anywhere */
body.products-page,
body.products-page .site-header,
body.products-page .prod-section,
body.products-page .prod-section--soft { background: #ffffff; }
.prod-cat-section { background: #ffffff; }

/* Scroll-reveal stagger: product cards fade up one after another */
.product-grid .product-card.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1),
              transform 600ms cubic-bezier(.2,.8,.2,1);
}
.product-grid .product-card.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Stagger up to 9 cards (largest section has 9 additive grades), gentle
   diagonal cascade across the 3-col gallery. */
.product-grid .product-card.reveal:nth-child(1) { transition-delay: 0ms;   }
.product-grid .product-card.reveal:nth-child(2) { transition-delay: 70ms;  }
.product-grid .product-card.reveal:nth-child(3) { transition-delay: 140ms; }
.product-grid .product-card.reveal:nth-child(4) { transition-delay: 180ms; }
.product-grid .product-card.reveal:nth-child(5) { transition-delay: 250ms; }
.product-grid .product-card.reveal:nth-child(6) { transition-delay: 320ms; }
.product-grid .product-card.reveal:nth-child(7) { transition-delay: 360ms; }
.product-grid .product-card.reveal:nth-child(8) { transition-delay: 430ms; }
.product-grid .product-card.reveal:nth-child(9) { transition-delay: 500ms; }

/* Category cards also fade-up in sequence */
.prod-cat-grid .prod-cat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1),
              transform 600ms cubic-bezier(.2,.8,.2,1);
}
.prod-cat-grid.is-visible .prod-cat,
.prod-categories__head.is-visible ~ .prod-cat-grid .prod-cat {
  opacity: 1;
  transform: none;
}
.prod-cat-grid .prod-cat:nth-child(1) { transition-delay: 0ms; }
.prod-cat-grid .prod-cat:nth-child(2) { transition-delay: 90ms; }
.prod-cat-grid .prod-cat:nth-child(3) { transition-delay: 180ms; }
.prod-cat-grid .prod-cat:nth-child(4) { transition-delay: 270ms; }

/* Grade cards, same staggered fade-up entrance */
.prod-grade-grid .grade-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1),
              transform 600ms cubic-bezier(.2,.8,.2,1),
              border-color 350ms ease,
              box-shadow 350ms ease;
}
.prod-grade-grid.is-visible .grade-card,
.prod-grade-grid__head.is-visible ~ .prod-grade-grid .grade-card {
  opacity: 1;
  transform: none;
}
.prod-grade-grid .grade-card:nth-child(1) { transition-delay: 0ms; }
.prod-grade-grid .grade-card:nth-child(2) { transition-delay: 70ms; }
.prod-grade-grid .grade-card:nth-child(3) { transition-delay: 140ms; }
.prod-grade-grid .grade-card:nth-child(4) { transition-delay: 210ms; }
.prod-grade-grid .grade-card:nth-child(5) { transition-delay: 280ms; }
.prod-grade-grid .grade-card:nth-child(6) { transition-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
  .product-grid .product-card.reveal,
  .prod-cat-grid .prod-cat,
  .prod-grade-grid .grade-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.prod-cat-section__head {
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 60rem;
  position: relative;
}
.prod-cat-section__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.prod-cat-section__num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: var(--pop);
  line-height: 1;
  letter-spacing: -0.02em;
}
.prod-cat-section__label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--rule);
}
.prod-cat-section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 26ch;
}
.prod-cat-section__title em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
}
.prod-cat-section__lead {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}

/* ====================================================================
   CATEGORY ACCENT SYSTEM, each of the 4 product families gets its own
   colour. Section numbers, labels, hover bars, decorative orbs all pull
   from a single CSS variable so the page is colourful but cohesive.
   ==================================================================== */

/* Each catalogue section sets its own --cat-c custom property so child
   elements can reference it without long ID-prefixed selectors. */
.prod-cat-section { position: relative; --cat-c: var(--pop); --cat-c-soft: var(--pop-soft); }
.prod-cat-section#cat-moisture { --cat-c: var(--cat-moisture); --cat-c-soft: var(--cat-moisture-soft); }
.prod-cat-section#cat-colour   { --cat-c: var(--cat-colour);   --cat-c-soft: var(--cat-colour-soft); }
.prod-cat-section#cat-additive { --cat-c: var(--cat-additive); --cat-c-soft: var(--cat-additive-soft); }
.prod-cat-section#cat-fillers  { --cat-c: var(--cat-fillers);  --cat-c-soft: var(--cat-fillers-soft); }

/* Big colourful section number (01 / 02 / 03 / 04) */
.prod-cat-section__num {
  color: var(--cat-c);
  font-size: clamp(2.4rem, 2vw + 1rem, 3rem);
}
/* Category label, uppercase mono tag, also tinted */
.prod-cat-section__label {
  color: var(--cat-c);
}
/* Italic emphasis in titles takes the category colour too */
.prod-cat-section__title em { color: var(--cat-c); }

/* Soft decorative orb behind each section header, a faint colour wash
   that adds atmosphere without competing with the product photography. */
.prod-cat-section::before {
  content: "";
  position: absolute;
  top: clamp(1rem, 3vw, 3rem);
  right: clamp(-4rem, -2vw, -1.5rem);
  width: clamp(220px, 28vw, 380px);
  height: clamp(220px, 28vw, 380px);
  background: radial-gradient(circle, var(--cat-c-soft) 0%, transparent 70%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.prod-cat-section > .container { position: relative; z-index: 1; }

/* Card hover accent bar takes the section's colour */
.prod-cat-section .product-card::before { background: var(--cat-c); }
.prod-cat-section .product-card:hover { border-color: var(--cat-c); }

/* The arrow link → also picks up the colour on hover */
.prod-cat-section .product-card:hover .pc-link { color: var(--cat-c); }

/* ====================================================================
   CATEGORY OVERVIEW CARDS (4 at top of products.html), each card
   wears its family colour on the number + count + hover state.
   ==================================================================== */
.prod-cat[data-cat="moisture"] { --cat-c: var(--cat-moisture); --cat-c-soft: var(--cat-moisture-soft); }
.prod-cat[data-cat="colour"]   { --cat-c: var(--cat-colour);   --cat-c-soft: var(--cat-colour-soft); }
.prod-cat[data-cat="additive"] { --cat-c: var(--cat-additive); --cat-c-soft: var(--cat-additive-soft); }
.prod-cat[data-cat="fillers"]  { --cat-c: var(--cat-fillers);  --cat-c-soft: var(--cat-fillers-soft); }

.prod-cat .prod-cat__num   { color: var(--cat-c); }
.prod-cat .prod-cat__count { color: var(--cat-c); }

/* Coloured top bar appears on hover, a tiny detail that animates in */
.prod-cat__link {
  position: relative;
  overflow: hidden;
}
.prod-cat__link::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cat-c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}
.prod-cat__link:hover::before,
.prod-cat__link:focus-visible::before { transform: scaleX(1); }
.prod-cat__link:hover { border-color: var(--cat-c); }

/* Soft coloured aura corner behind each overview card, subtle */
.prod-cat__link::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -25%;
  width: 75%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--cat-c-soft), transparent 65%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  transition: opacity 350ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}
.prod-cat__link:hover::after { opacity: 1; transform: scale(1.12); }
.prod-cat__num,
.prod-cat__name,
.prod-cat__desc,
.prod-cat__count { position: relative; z-index: 1; }

/* ====================================================================
   PRODUCTS CATEGORIES SECTION, gradient mesh background. A whisper of
   all four category colours blooms in the corners. Adds life without
   overwhelming the cards.
   ==================================================================== */
body.products-page .prod-categories {
  position: relative;
  overflow: hidden;
}
body.products-page .prod-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%,  var(--cat-moisture-soft) 0%, transparent 35%),
    radial-gradient(circle at 92% 18%, var(--cat-colour-soft)   0%, transparent 32%),
    radial-gradient(circle at 12% 88%, var(--cat-fillers-soft)  0%, transparent 32%),
    radial-gradient(circle at 88% 82%, var(--cat-additive-soft) 0%, transparent 32%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  filter: blur(4px);
}
body.products-page .prod-categories > .container { position: relative; z-index: 1; }

/* ====================================================================
   PRODUCT GALLERY GRID, vertical cards, photo on top, name + link below.
   Reads like a polished gallery / catalog, not a directory list.
   3 columns on desktop, 2 on tablet, 1 on mobile.
   ==================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.75rem);
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

/* Moisture Management has only 2 products (the flagship desiccant range) -
   give them a wider 2-col layout so the section feels intentional and the
   cards have more presence, not an empty slot. */
.prod-cat-section#cat-moisture .product-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}
@media (max-width: 540px) {
  .prod-cat-section#cat-moisture .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1),
              box-shadow 350ms ease,
              border-color 300ms ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(31, 27, 45, 0.04),
              0 28px 56px -24px rgba(31, 27, 45, 0.18);
  border-color: var(--cat-c, var(--accent));
}

/* Square photo plate sits at the top of every card */
.pc-image {
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--line);
}
.pc-image img {
  width: 100%;
  height: 100%;
  /* Show the full product photo, never crop. */
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 700ms var(--ease);
}
.product-card:hover .pc-image img { transform: scale(1.05); }

.pc-body {
  padding: 1.15rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.pc-name {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
}
.pc-feature .pc-name { font-size: clamp(1.3rem, 1.6vw, 1.55rem); }

/* --- Card animations ---------------------------------------------------
   A: content stagger (image → name → link) on viewport entry.
   B: top accent bar slides in across the card on hover.
   C: link letter-spacing widens, arrow translates further. */

/* A: stagger card contents on viewport entry */
.product-card.reveal .pc-image,
.product-card.reveal .pc-name,
.product-card.reveal .pc-link {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.product-card.reveal.is-visible .pc-image  { opacity: 1; transform: none; transition-delay: 80ms;  }
.product-card.reveal.is-visible .pc-name   { opacity: 1; transform: none; transition-delay: 200ms; }
.product-card.reveal.is-visible .pc-link   { opacity: 1; transform: none; transition-delay: 300ms; }

/* B: top accent bar slides in on hover (replaces the old left-side bar) */
.product-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--cat-c, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(.2,.8,.2,1);
  z-index: 2;
  pointer-events: none;
}
.product-card:hover::before { transform: scaleX(1); }

/* C: link chase on hover */
.pc-link { transition: letter-spacing 360ms var(--ease), color var(--dur) var(--ease); }
.product-card:hover .pc-link { letter-spacing: 0.18em; }
.pc-link span { display: inline-block; transition: transform 380ms var(--ease); }
.product-card:hover .pc-link span { transform: translateX(7px); }

@media (prefers-reduced-motion: reduce) {
  .product-card.reveal *,
  .product-card.reveal.is-visible * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .product-card::before { display: none; }
  .product-card:hover .pc-image img,
  .product-card:hover .pc-link span { transform: none; transition: none; }
}

/* Family accent colors, muted, industrial palette */
.fam-engineering { --family-accent: #5a6a4d; } /* moss */
.fam-colour      { --family-accent: #b8754f; } /* rust */
.fam-specialty   { --family-accent: #6b5b8a; } /* indigo */
.fam-protective  { --family-accent: #4a6f7a; } /* teal */
.fam-performance { --family-accent: #a86a52; } /* terracotta */
.fam-fillers     { --family-accent: #6e6248; } /* khaki */

/* Comparison matrix table */
.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
}
.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 720px;
}
.matrix thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.matrix tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
}
.matrix tbody tr:last-child td { border-bottom: 0; }
.matrix tbody tr:hover td { background: rgba(0,0,0,0.02); }
.matrix tbody td:first-child {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  width: 50px;
}

/* CTA card on products page */
.cta-card {
  background: var(--ink);
  color: #f5ede0;
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem);
  border-radius: 4px;
  text-align: center;
}
.cta-card h2 {
  color: #f5ede0;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.cta-card .lead { color: rgba(245, 237, 224, 0.78); margin-bottom: 1.75rem; max-width: 56ch; margin-inline: auto; }
.cta-card .actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-card .btn { background: var(--pop); color: #fff; border-color: var(--pop); }
.cta-card .btn-text { color: #f5ede0; }
.cta-card .btn-text::after { background: rgba(245, 237, 224, 0.4); }

/* Flagship strip, featured top products above family catalog */
.flagship-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft, #f5f0e6) 100%);
  border-bottom: 1px solid var(--line);
}
.flagship-head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-inline: auto;
}
.flagship-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.flagship-head h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.flagship-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 720px) { .flagship-grid { grid-template-columns: 1fr; } }
.flagship-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.flagship-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.flagship-tag {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pop);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
}
.flagship-card h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
  max-width: 80%;
}
.flagship-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}
.flagship-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0.5rem;
}
.flagship-card .btn-text { margin-top: auto; }

/* Inline badge in pc-name (e.g., "Desiccant Masterbatch [Flagship]") */
.pc-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pop);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 0.5rem;
  font-weight: 600;
  position: relative;
  top: -2px;
}
/* Product card stretched link, makes entire card clickable */
.pc-link {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--family-accent, var(--accent));
  text-decoration: none;
  align-self: flex-start;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pc-link span { margin-left: 0.35rem; }
.pc-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 4px;
}
.pc-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* =============================================================
   ABOUT PAGE, editorial redesign
   ============================================================= */

/* -------- Hero (typography + identity stamp) -------- */
.about-hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); min-height: clamp(360px, 60vw, 500px); display: flex; align-items: center; }
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 960px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
    gap: 4rem;
  }
}
.about-hero__text > .section-index { margin-top: 0.75rem; }
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.75rem;
}

/* Editorial stamp / seal */
.about-hero__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .about-hero__stamp { align-items: flex-end; text-align: right; }
}
.about-stamp {
  position: relative;
  width: clamp(220px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.about-stamp::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}
.about-stamp__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: aboutStampSpin 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .about-stamp__ring { animation: none; }
}
@keyframes aboutStampSpin { to { transform: rotate(360deg); } }
.about-stamp__text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--accent);
  font-weight: 600;
}
.about-stamp__core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.5rem;
}
.about-stamp__since {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-stamp__year {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 1.4rem + 4vw, 3.6rem);
  font-style: italic;
  color: var(--pop);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.about-stamp__rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--line-strong);
  margin: 0.25rem 0;
}
.about-stamp__line {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
/* New: brand name as the centerpiece (ring now carries the date + location) */
.about-stamp__brand {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.85rem + 0.6vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.about-hero__caption {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 32ch;
  margin: 0;
}

/* -------- Stats band -------- */
.section-band {
  padding-block: 0;
  background: var(--paper-card);
}
.about-facts { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .about-facts { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 759px) {
  .about-facts .fact:nth-child(2n) { border-right: 0; }
  .about-facts .fact:nth-child(1), .about-facts .fact:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* -------- Heritage aside note -------- */
.about-aside-note {
  font-family: var(--font-sans);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.45;
  margin-top: 1rem;
  max-width: 26ch;
}

/* -------- Timeline -------- */
.about-timeline {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  position: relative;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-strong);
}
@media (min-width: 720px) {
  .about-timeline::before { left: 110px; }
}
.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.25rem;
  padding: 0 0 1.75rem 32px;
  margin: 0;
}
@media (min-width: 720px) {
  .about-timeline__item {
    grid-template-columns: 110px 1fr;
    padding: 0 0 1.75rem 0;
    gap: 0 2rem;
    align-items: start;
  }
}
.about-timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
}
@media (min-width: 720px) {
  .about-timeline__item::before { left: 105px; }
}
.about-timeline__item.is-current::before {
  background: var(--pop);
  border-color: var(--pop);
  box-shadow: 0 0 0 4px var(--pop-soft);
}
.about-timeline__year {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.5rem, 1.15rem + 0.9vw, 1.85rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
}
.about-timeline__item.is-current .about-timeline__year { color: var(--pop); }
.about-timeline__body h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.about-timeline__body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
}

/* -------- Mission & Vision -------- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .about-mission {
    grid-template-columns: 5fr 7fr;
    gap: 4.5rem;
  }
}
.about-mission__media {
  margin: 0;
  position: relative;
}
.about-mission__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92);
  border: 1px solid var(--line-strong);
}
.about-mission__media figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.85rem;
  text-align: right;
}
.about-mission__content > h2 { margin-top: 0.6rem; max-width: 18ch; }
.about-mission__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 1.5rem;
}
@media (min-width: 640px) { .about-mission__pair { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* (Old .about-mv-card legacy rules removed, see redesigned styles below.) */
.about-mission__footnote {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin: 0;
  max-width: 60ch;
}

/* -------- Values grid -------- */
.about-values__head {
  max-width: 760px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.about-values__head h2 { margin-top: 1rem; max-width: 22ch; }
.about-values__head .lead { max-width: 60ch; margin-top: 0.5rem; }

.about-values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 640px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .about-values { grid-template-columns: repeat(3, 1fr); } }
.about-value {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background var(--dur) var(--ease);
  margin: 0;
}
.about-value:hover { background: var(--paper-card); }
.about-value__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 22px;
}
.about-value__num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.about-value h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.about-value p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.about-value--quote {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.about-value--quote:hover { background: var(--ink); }
.about-value__quote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.35;
  color: var(--paper);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.about-value__byline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.55);
}

/* -------- Credentials -------- */
.about-credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .about-credentials {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: start;
  }
}
.about-credentials__intro h2 { margin-top: 1rem; max-width: 18ch; }
.about-credentials__intro .btn-text { margin-top: 0.5rem; display: inline-flex; }
.about-credentials__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-card);
}
@media (min-width: 720px) {
  .about-credentials__panel { grid-template-columns: 1fr 1.05fr; }
}
.about-credentials__media {
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}
.about-credentials__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.about-credentials__facts {
  border: 0;
  padding: 1.75rem 1.75rem;
  background: var(--paper-card);
}
@media (min-width: 960px) { .about-credentials__facts { padding: 2rem 2rem; } }
.about-credentials__facts dd { font-size: 1.05rem; }

/* -------- Editorial banner -------- */
.about-banner {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--paper);
  overflow: hidden;
}
.about-banner__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
}
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 16, 32, 0.78) 0%, rgba(15, 16, 32, 0.6) 60%, rgba(15, 16, 32, 0.85) 100%);
  z-index: -1;
}
.about-banner__inner { max-width: 920px; }
.about-banner__index {
  color: rgba(255, 255, 255, 0.75);
}
.about-banner__index::before { background: rgba(255, 255, 255, 0.4); }
.about-banner__quote {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--paper);
  margin: 1rem 0 1rem;
  max-width: 22ch;
}
.about-banner__quote em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
}
.about-banner__caption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
/* Keep h3/other content stacked above the stretched overlay */
.product-card > *:not(.pc-link) { position: relative; z-index: 2; }
/* end products hub page styles */

/* ============================================================
   ABOUT PAGE REDESIGN (about.html)
   Cinematic video hero, manifesto, story+timeline, stats,
   visual showcase, MV, values, credentials, video banner.
   ============================================================ */

/* 01, Hero now lives in about.html page-scoped styles (.about-hero) */

/* 02, Manifesto */
.about-manifesto {
  background: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.about-manifesto__quote {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.32;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 720px) {
  .about-manifesto__quote { max-width: 36ch; }
}
.about-manifesto__quote em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
}
.about-manifesto__caption {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: left;
}

/* 03, Heritage / story + timeline */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .about-story__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(2.5rem, 4vw, 4rem);
  }
}
.about-story__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0.4rem 0 0;
  max-width: 14ch;
}
.about-story__head h2 em {
  font-family: inherit;
  font-style: italic;
  color: var(--ink);
  font-weight: inherit;
}
.about-story__body p { color: var(--ink-soft); }
.about-story__body p.lead { font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem); }

/* Timeline horizontal grid (4 milestones) */
.about-timeline--horizontal {
  list-style: none;
  margin: 0;
  padding: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px)  { .about-timeline--horizontal { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .about-timeline--horizontal { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.about-timeline--horizontal .about-timeline__item {
  position: relative;
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-timeline--horizontal .about-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--ink);
}
.about-timeline--horizontal .is-current::before {
  background: var(--pop);
}
.about-timeline--horizontal .about-timeline__year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.about-timeline--horizontal .is-current .about-timeline__year { color: var(--pop); }
.about-timeline--horizontal .about-timeline__body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--ink);
}
.about-timeline--horizontal .about-timeline__body p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* 04, Stats band */
.about-stats {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
@media (min-width: 760px)  { .about-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.25rem;
}
.about-stat__num {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.about-stat__num em {
  font-family: var(--font-sans);
  font-style: italic;
  color: #FFB6C1;
  font-weight: 400;
}
.about-stat__label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* 05, Visual showcase: full-bleed image with text overlay */
.about-showcase {
  position: relative;
  isolation: isolate;
  min-height: clamp(440px, 70vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper-soft);
}
.about-showcase__media {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 58%;
  z-index: 0;
  /* Soft fade on the LEFT edge of the image into the cream parent bg.
     Wider fade zone (0-45% of image) for very gradual blend; the
     remaining 55% of the image is at full opacity = vibrant, not washed. */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 8%,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.92) 42%,
    #000 50%,
    #000 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 8%,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.92) 42%,
    #000 50%,
    #000 100%
  );
}
.about-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.2) brightness(1.06) contrast(1.05);
}
/* Mobile/narrow: actually stack it. Text on top, image as a full-width band
   below (the top-edge mask fades the image up into the text block). The base
   rules position the image absolutely over the right 58%, which overlapped
   the copy on small screens. */
@media (max-width: 899px) {
  .about-showcase {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .about-showcase__inner { order: 1; }
  .about-showcase__media {
    position: static;
    order: 2;
    width: 100%;
    height: clamp(240px, 56vw, 360px);
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 10%,
      #000 25%,
      #000 100%
    );
            mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 10%,
      #000 25%,
      #000 100%
    );
  }
}
.about-showcase__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.about-showcase__title {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.05;
  max-width: 14ch;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.about-showcase__title em {
  font-family: inherit;
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.about-showcase__lead {
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}
.about-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0;
  position: relative;
}
.about-showcase__cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  bottom: 0.35rem;
  height: 1.5px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-showcase__cta svg { transition: transform 220ms ease; }
.about-showcase__cta:hover svg { transform: translateX(3px); }
.about-showcase__cta:hover::after { transform: scaleX(0.95); }

/* 06, Mission & Vision: white, design variety via varied card monogram colours */
.about-mv__head {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}
.about-mv__head .section-index { display: inline-block; margin-bottom: 0.6rem; }
.about-mv__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0;
  line-height: 1.1;
}
/* MISSION & VISION, strongly asymmetric editorial spread.
   Mission dominates the left with a large statement.
   Vision is smaller, offset down + right, like a footnote or echo. */
.mv-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  padding-block: clamp(1rem, 2vw, 2rem);
}
@media (min-width: 900px) {
  .mv-spread {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    row-gap: 0;
    align-items: stretch;
  }
}

/* LEAF, the page on each side */
.mv-leaf {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.75rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 18px;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--rule);
  background: var(--paper-card);
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.03), 0 16px 40px -22px rgba(31, 27, 45, 0.08);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1),
              box-shadow 600ms ease,
              border-color 400ms ease;
}

/* Coloured gradient washes layered on top of the white card */
.mv-leaf--mission {
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(58, 82, 164, 0.10) 0%, transparent 60%),
    linear-gradient(160deg, rgba(58, 82, 164, 0.04) 0%, transparent 70%),
    var(--paper-card);
}
.mv-leaf--vision {
  background:
    radial-gradient(ellipse 100% 80% at 100% 100%, rgba(201, 52, 124, 0.10) 0%, transparent 60%),
    linear-gradient(160deg, transparent 30%, rgba(201, 52, 124, 0.06) 100%),
    var(--paper-card);
}

/* Hover lift, leaf rises with a deeper shadow, accent border emerges */
.mv-leaf:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.05), 0 32px 64px -22px rgba(31, 27, 45, 0.18);
}
.mv-leaf--mission:hover { border-color: rgba(58, 82, 164, 0.25); }
.mv-leaf--vision:hover { border-color: rgba(201, 52, 124, 0.25); }
.mv-leaf:hover .mv-leaf__mark {
  transform: translate(-3px, -3px) rotate(-2deg);
  opacity: 1;
}
.mv-leaf:hover .mv-leaf__time::after { width: 64px; }

/* Head: Time + role label */
.mv-leaf__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mv-leaf__time {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  position: relative;
  display: inline-block;
  width: fit-content;
}
.mv-leaf__time::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 36px;
  height: 2px;
  background: currentColor;
  transition: width 500ms cubic-bezier(.2,.8,.2,1);
}
.mv-leaf--mission .mv-leaf__time { color: #3A52A4; }
.mv-leaf--vision .mv-leaf__time { color: #C9347C; }
.mv-leaf__role {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 1rem;
}

/* Statement, the BIG editorial pull-quote */
.mv-leaf__statement {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
  padding: 0;
  max-width: 26ch;
}
.mv-leaf__statement em {
  font-family: inherit;
  font-style: italic;
  font-weight: inherit;
  letter-spacing: -0.005em;
}
/* Both statements use the same size for parity */
.mv-leaf__statement {
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.05rem);
  line-height: 1.35;
}
.mv-leaf--mission .mv-leaf__statement em { color: #3A52A4; }
.mv-leaf--vision .mv-leaf__statement em { color: #C9347C; }

/* Decorative quote mark, fully inside the card, in the left margin */
.mv-leaf__mark {
  position: absolute;
  top: -0.2em;
  left: 0;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 4em;
  line-height: 0.85;
  color: rgba(31, 27, 45, 0.08);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), opacity 400ms ease, color 400ms ease;
}
.mv-leaf--mission .mv-leaf__mark { color: rgba(58, 82, 164, 0.22); }
.mv-leaf--vision .mv-leaf__mark { color: rgba(201, 52, 124, 0.24); }

/* Foot, signature row with big M / V monogram + signature line */
.mv-leaf__foot {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.mv-leaf__sig {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 3rem;
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.mv-leaf--mission .mv-leaf__sig { color: #C9347C; }
.mv-leaf--vision .mv-leaf__sig { color: #3A52A4; }
.mv-leaf__sig-line {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 0.4rem;
}
.about-mv__footnote {
  margin: clamp(2rem, 3.5vw, 2.75rem) auto 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  max-width: 60ch;
}

/* 09, Cinematic video banner */
.about-vbanner {
  position: relative;
  isolation: isolate;
  min-height: clamp(380px, 60vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.about-vbanner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.about-vbanner__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 17, 30, 0.7) 0%, rgba(20, 17, 30, 0.55) 50%, rgba(20, 17, 30, 0.85) 100%);
  pointer-events: none;
}
.about-vbanner__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.about-vbanner__index {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.about-vbanner__index::before {
  background: rgba(255, 255, 255, 0.5);
}
.about-vbanner__quote {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1.25rem;
  color: #fff;
}
.about-vbanner__quote em {
  font-family: inherit;
  font-style: italic;
  color: #FFB6C1;
  font-weight: inherit;
}
.about-vbanner__caption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin: 0;
}

/* 02, Origin: editorial fact-card + story + pull-quote */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (min-width: 900px) {
  .about-intro__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3rem, 5vw, 4.5rem);
  }
}

/* LEFT: editorial fact-card */
.about-intro__card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04), 0 18px 44px -22px rgba(31, 27, 45, 0.12);
}
@media (min-width: 900px) {
  .about-intro__card { position: sticky; top: 6rem; }
}
.about-intro__stamp {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.about-intro__stamp-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pop);
  font-weight: 700;
}
.about-intro__stamp-year {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.about-intro__facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.about-intro__fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--rule);
}
.about-intro__fact:last-child { border-bottom: 0; padding-bottom: 0; }
.about-intro__fact dt {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.about-intro__fact dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 500;
}

/* RIGHT: prose + pull-quote */
.about-intro__body .section-index { display: inline-block; margin-bottom: 1rem; }
.about-intro__title {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  max-width: 22ch;
}
.about-intro__title em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
}
.about-intro__body p {
  max-width: 60ch;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.about-intro__body p.lead {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
}

/* Mobile: lighten the About page. Smaller section headings, a tighter facts
   card, and a calmer (not oversized) Mission/Vision statement so the long
   stacked sections aren't a wall of huge type. Desktop sizing is unchanged. */
@media (max-width: 768px) {
  /* Intro / story */
  .about-intro__stamp-year { font-size: 3rem; }
  .about-intro__facts { gap: 0.75rem; }
  .about-intro__fact { padding-bottom: 0.7rem; }
  .about-intro__title { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.1rem); margin-bottom: 1rem; }
  .about-intro__body p { line-height: 1.6; }

  /* Mission & Vision */
  .about-mv__head { margin-bottom: 1.5rem; }
  .about-mv__head h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.1rem); }
  .mv-spread { gap: 1.5rem; padding-block: 0.5rem; }
  .mv-leaf { padding: 1.5rem 1.4rem; gap: 1.1rem; }
  .mv-leaf__statement { font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.3rem); line-height: 1.5; }
  .mv-leaf__sig { font-size: 2.1rem; }
  .mv-leaf__foot { padding-top: 1rem; }
}
.about-intro__pull {
  margin: 1.75rem 0 0;
  padding: 1.5rem 0 0 1.5rem;
  border-left: 3px solid var(--pop);
  position: relative;
}
.about-intro__pull p {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.15rem, 0.9rem + 0.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 48ch;
}

/* ====================================================================
   PRINCIPLES, LIGHT INTERACTIVE SECTION
   Same hover/glow interactions as dark version, but on white bg.
   ==================================================================== */
.principles-dark {
  position: relative;
  isolation: isolate;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

/* Atmospheric layer, only the cursor spotlight (subtle on white) */
.principles-dark__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.principles-dark__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    560px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 52, 124, 0.05) 0%,
    rgba(201, 52, 124, 0.025) 30%,
    transparent 70%
  );
  transition: background 200ms ease;
}

/* INNER container */
.principles-dark__inner {
  position: relative;
  z-index: 1;
}

/* SECTION HEADER, restored simple eyebrow + serif headline with italic em */
.principles-dark__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 56rem;
  margin-inline: auto;
}
.principles-dark__head .section-index {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.principles-dark__heading {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.principles-dark__heading em {
  font-family: inherit;
  font-style: italic;
  color: var(--pop);
  font-weight: inherit;
  letter-spacing: -0.01em;
}

/* CARD GRID, 2x2 with subtle borders */
.principles-dark__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) {
  .principles-dark__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* INDIVIDUAL CARDS, light theme with animated border + sheen + lift */
.principle-card {
  --lift: 0px;
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: 18px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(var(--lift));
  transition: transform 350ms cubic-bezier(.2,.8,.2,1),
              border-color 400ms ease,
              box-shadow 400ms ease;
  cursor: default;
  will-change: transform;
}

/* Animated gradient border, appears on hover, traces around the card */
.principle-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0%,
    var(--accent-glow, #C9347C) 8%,
    transparent 18%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  animation: borderTrace 6s linear infinite;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderTrace {
  to { --angle: 360deg; }
}
.principle-card:hover::before { opacity: 1; }

/* Sheen / shine sweep, diagonal gradient that crosses the card on hover */
.principle-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  transform: skewX(-18deg);
  transition: left 800ms cubic-bezier(.2, .8, .2, 1);
}
.principle-card:hover::after { left: 150%; }

.principle-card:hover {
  --lift: -8px;
  border-color: rgba(31, 27, 45, 0.22);
  box-shadow:
    0 10px 22px rgba(31, 27, 45, 0.10),
    0 44px 90px -20px rgba(31, 27, 45, 0.38);
}

/* Per-card accent variables (used by ::before gradient + glow) */
.principle-card:nth-child(1) { --accent-glow: #C9347C; }
.principle-card:nth-child(2) { --accent-glow: #1A7B5C; }
.principle-card:nth-child(3) { --accent-glow: #3A52A4; }
.principle-card:nth-child(4) { --accent-glow: #C77D34; }

/* Cursor-tracking glow inside each card */
.principle-card__glow {
  position: absolute;
  top: var(--cy, 50%);
  left: var(--cx, 50%);
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 52, 124, 0.10) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: 0;
}
.principle-card:hover .principle-card__glow { opacity: 1; }

/* Per-card accent on the glow */
.principle-card:nth-child(1) .principle-card__glow { background: radial-gradient(circle, rgba(201, 52, 124, 0.13) 0%, transparent 65%); }
.principle-card:nth-child(2) .principle-card__glow { background: radial-gradient(circle, rgba(26, 123, 92, 0.12) 0%, transparent 65%); }
.principle-card:nth-child(3) .principle-card__glow { background: radial-gradient(circle, rgba(58, 82, 164, 0.11) 0%, transparent 65%); }
.principle-card:nth-child(4) .principle-card__glow { background: radial-gradient(circle, rgba(199, 125, 52, 0.13) 0%, transparent 65%); }

/* Number, big italic, soft ink, scales + glows on hover */
.principle-card__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 1.5rem + 2.5vw, 3.6rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(31, 27, 45, 0.18);
  user-select: none;
  transform-origin: left center;
  transition: color 400ms ease, transform 400ms cubic-bezier(.2,.8,.2,1), text-shadow 400ms ease;
}
.principle-card:hover .principle-card__num {
  color: var(--ink);
  transform: scale(1.08);
  text-shadow: 0 8px 28px color-mix(in srgb, var(--ink) 35%, transparent);
}

/* Card body */
.principle-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.principle-card__title {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.principle-card__text {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.88rem + 0.18vw, 1rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.principle-card__chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper);
  margin-top: 0.4rem;
  transition: border-color 400ms ease, color 400ms ease;
}
.principle-card:hover .principle-card__chip {
  border-color: rgba(31, 27, 45, 0.3);
  color: var(--ink-soft);
}

/* Reduced motion, kill animation */
@media (prefers-reduced-motion: reduce) {
  .principle-card,
  .principle-card__num,
  .principle-card__chip,
  .principle-card__glow { animation: none !important; transition: none !important; }
  .principles-dark__spotlight { display: none; }
}

/* Mobile: lighten the stacked view - smaller heading, more compact cards
   (tighter padding, smaller number, tighter line-height). Copy is unchanged;
   the roomier desktop sizing returns with the 2-column layout (>=760px). */
@media (max-width: 759px) {
  .principles-dark__head { margin-bottom: 1.75rem; }
  .principles-dark__heading {
    font-size: clamp(1.75rem, 1.2rem + 2.6vw, 2.15rem);
    line-height: 1.12;
  }
  .principle-card {
    padding: 1.5rem 1.4rem;
    gap: 1rem;
    border-radius: 14px;
  }
  .principle-card__num { font-size: 2rem; }
  .principle-card__body { gap: 0.55rem; }
  .principle-card__title { font-size: 1.1rem; }
  .principle-card__text { font-size: 0.9rem; line-height: 1.55; }
}

/* SECTION HEADER, bold split typography */
.about-pillars__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  max-width: 56rem;
}
.about-pillars__overline {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(31, 27, 45, 0.55);
}
.about-pillars__heading {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 0.95;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.4em;
}
.about-pillars__heading-accent {
  font-family: var(--font-sans);
  font-style: italic;
  color: #C9347C;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.about-pillars__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: rgba(31, 27, 45, 0.7);
  margin: 0.25rem 0 0;
  max-width: 38ch;
  line-height: 1.55;
}
/* (Old poster-grid styles below kept for legacy class-name fallback only;
   new design uses .principles-dark + .principle-card defined above.) */
.about-pillars__poster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px) {
  .about-pillars__poster-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* Each poster is a compact composition with hairlines forming a grid */
.poster {
  position: relative;
  display: grid;
  align-items: start;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(31, 27, 45, 0.09);
  isolation: isolate;
  transition: background-color 400ms ease;
}
@media (min-width: 760px) {
  /* Add right hairline rules between columns to form a grid */
  .poster:nth-child(odd) { border-right: 1px solid rgba(31, 27, 45, 0.09); }
  /* Top row borders: keep top border (already present via border-top) */
  /* Bottom row: add bottom border */
  .poster:nth-child(3),
  .poster:nth-child(4) { border-bottom: 1px solid rgba(31, 27, 45, 0.09); }
}
@media (max-width: 759px) {
  .poster:last-child { border-bottom: 1px solid rgba(31, 27, 45, 0.09); }
}

/* Subtle hover atmosphere, chip lifts slightly, faint tint emerges */
.poster:hover .poster__hero { transform: translateX(-0.4rem); }
.poster:hover .poster__chip { transform: translateY(-2px); border-color: var(--ink); }

/* Mono corner tag (top-left of each poster), index + rule + label */
.poster__corner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(31, 27, 45, 0.55);
}
.poster__index { color: var(--accent-color); font-weight: 700; }
.poster__rule {
  flex: 0 0 28px;
  height: 1px;
  background: rgba(31, 27, 45, 0.25);
}
.poster__tag { letter-spacing: 0.2em; }

/* Type composition, phrase + massive italic accent word */
.poster__type {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  line-height: 0.92;
}
.poster__phrase {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.7rem);
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.05;
}
.poster__hero {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--accent-color);
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
  display: inline-block;
}

/* Body paragraph, measured, soft */
.poster__body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.08rem);
  line-height: 1.65;
  color: rgba(31, 27, 45, 0.72);
  margin: 0;
  max-width: 40ch;
}

/* Chip, small chemistry/spec tag, sits as a footnote-like element */
.poster__chip {
  align-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(31, 27, 45, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(31, 27, 45, 0.65);
  background: var(--paper);
  transition: transform 350ms ease, border-color 350ms ease;
  white-space: nowrap;
}

/* ============================================================
   PER-POSTER ACCENT COLOURS (CSS custom property cascade)
   ============================================================ */
.poster[data-poster="01"] { --accent-color: #C9347C; }   /* magenta */
.poster[data-poster="02"] { --accent-color: #1A7B5C; }   /* deep mint */
.poster[data-poster="03"] { --accent-color: #3A52A4; }   /* deep blue */
.poster[data-poster="04"] { --accent-color: #C77D34; }   /* warm amber */

/* ============================================================
   ASYMMETRIC LAYOUTS, each poster a different composition
   Mobile: stacked single-column. Desktop: distinct grid per poster.
   ============================================================ */

/* All posters share a compact vertical stack: corner → type → body → chip.
   The type composition itself varies per poster (phrase first or hero first
   creates the asymmetry, not the grid layout). */
.poster {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.poster__corner { grid-column: 1; }
.poster__type { grid-column: 1; }
.poster__body { grid-column: 1; }
.poster__chip { grid-column: 1; }

/* Pillar 03, flip the visual order: hero word first, then phrase */
.poster[data-poster="03"] .poster__type {
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 0.35em;
}
.poster[data-poster="03"] .poster__phrase {
  color: rgba(31, 27, 45, 0.5);
}

/* 06, Credentials v2: white, design variety via header accent rule */
.about-credentials-v2__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.about-credentials-v2__head .section-index { display: inline-block; margin-bottom: 0.6rem; }
.about-credentials-v2__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0;
  line-height: 1.1;
}
.about-credentials-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .about-credentials-v2__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
/* Mobile: show only the team card (ISO 9001 is already in the hero + facts
   card, so the cert card is redundant on phones), and drop the heading's
   "Audited quality." prefix so it reads "A team you can reach." */
@media (max-width: 719px) {
  .about-credentials-v2__grid .about-cred-card--desktop-only { display: none; }
  .about-cred-head__prefix { display: none; }
}
.about-cred-card {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--cred-accent, var(--pop));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.about-cred-card { --cred-accent: #C77D34; }   /* warm amber, both cards */
.about-cred-card .about-cred-card__icon {
  color: #C77D34;
  background: rgba(199, 125, 52, 0.08);
}
.about-cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.05), 0 22px 48px -20px rgba(31, 27, 45, 0.18);
}
.about-cred-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-soft);
  color: var(--ink);
  border-radius: 12px;
  margin-bottom: 0.4rem;
}
.about-cred-card__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.about-cred-card h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.about-cred-card p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.about-cred-card .btn-text { margin-top: 0.5rem; align-self: flex-start; }

/* Reduced motion: pause hero/banner videos */
@media (prefers-reduced-motion: reduce) {
  .about-cinema__video,
  .about-vbanner__video { display: none; }
  .about-cinema { background: var(--ink); }
  .about-vbanner { background: var(--ink); }
}
/* end about page redesign */

/* ============================================================
   SHARED FAQ ACCORDION (used on contact, applications, product pages)
   Native <details>/<summary>, no JS needed.
   ============================================================ */
.faq {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
/* On product pages, align FAQ container with prod-container width so FAQ doesn't stretch wider than other sections.
   The faq__head and faq__list keep their own narrower max-widths and center via margin-inline: auto,
   so the FAQ block appears horizontally centered on desktop. */
.prod .faq > .container {
  max-width: 1200px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
/* Belt-and-braces: explicitly recenter FAQ head and list on product pages so any later rule cannot widen them. */
.prod .faq .faq__head {
  max-width: 72ch;
  margin-inline: auto;
}
.prod .faq .faq__list {
  max-width: 920px;
  margin-inline: auto;
}

.faq__head,
.faq__list {
  max-width: 900px;
  margin-inline: auto;
}
.faq__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 72ch;
  text-align: center;
  margin-inline: auto;
}
.faq__head p {
  text-align: center;
}
.faq__head .section-index { display: inline-block; margin-bottom: 0.6rem; }
.faq__head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 1.3rem + 1.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.faq__head h2 em {
  font-family: inherit;
  font-style: italic;
  color: var(--ink);
  font-weight: inherit;
}
.faq__head p {
  font-family: var(--font-sans);
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 920px;
}

/* Each FAQ is its own subtle card, rounded, soft border, lifts on open */
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-card);
  padding: 0;
  overflow: hidden;
  transition: border-color 250ms ease, box-shadow 320ms ease;
}
.faq__item:hover {
  border-color: var(--line-strong);
}
.faq__item[open] {
  border-color: rgba(31, 27, 45, 0.32);
  box-shadow:
    0 1px 2px rgba(31, 27, 45, 0.04),
    0 14px 32px -18px rgba(31, 27, 45, 0.14);
}
.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(1.05rem, 1.9vw, 1.4rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--ink);
  user-select: none;
  transition: color 200ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }

/* Plus-icon disc on the right, turns into a dark minus when the item is open
   (the vertical bar collapses to zero, leaving only the horizontal bar) */
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background-color: var(--paper-soft);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 10px 1.5px, 1.5px 10px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink-soft);
  transition: background-size 280ms var(--ease),
              background-color 280ms ease,
              color 280ms ease;
}
.faq__item:hover summary::after {
  background-color: var(--paper-deep);
}
.faq__item[open] summary::after {
  /* Vertical bar collapses to 0, horizontal stays, plus becomes minus */
  background-size: 10px 1.5px, 0 0;
  background-color: var(--ink);
  color: #fff;
}

/* Answer body - white (no cream tint), separated from question by thin top rule */
.faq__item-body {
  padding: clamp(0.95rem, 1.8vw, 1.2rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.15rem, 2vw, 1.5rem);
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}
.faq__item-body > * { max-width: 72ch; }
.faq__item-body p { margin: 0 0 0.8rem; }
.faq__item-body p:last-child { margin-bottom: 0; }
.faq__item-body strong { color: var(--ink); font-weight: 600; }
.faq__item-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.05rem;
  transition: color 0.2s ease;
}
.faq__item-body a:hover { color: var(--accent); }

/* ====================================================================
   About sub-nav, segmented control linking About / Quality / Exhibitions
   Sits between the hero and the page content on each sister page.
   Sticky on scroll so the visitor can hop between the 3 pages at any time.
   ==================================================================== */
.about-subnav {
  display: flex;
  justify-content: center;
  padding: 0.85rem 0 0;
  background: transparent;
  position: sticky;
  top: 62px;
  z-index: 50;
  pointer-events: none;
  border: 0;
  box-shadow: none;
}
.about-subnav__group {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 4px 12px -6px rgba(31, 27, 45, 0.12),
              0 1px 3px rgba(31, 27, 45, 0.06);
  transition: box-shadow 220ms ease;
}
.about-subnav__group:hover,
.about-subnav__group:focus-within {
  box-shadow: 0 12px 28px -10px rgba(31, 27, 45, 0.2),
              0 2px 6px rgba(31, 27, 45, 0.08);
}
.about-subnav__group a {
  padding: 0.55rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.about-subnav__group a:hover {
  color: var(--ink);
}
.about-subnav__group a.is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.06),
              0 1px 3px rgba(31, 27, 45, 0.1);
}

/* Mobile/tablet: the About sub-nav scrolls with the page (not sticky) so its
   pill can't float over the content below, and stays on a single tidy line.
   Applies to about.html, research.html and fairs.html. Desktop (>=900px)
   keeps the original centered sticky bar. */
@media (max-width: 899px) {
  .about-subnav {
    position: static;
    top: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .about-subnav__group {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.25rem;
    gap: 0.1rem;
  }
  .about-subnav__group::-webkit-scrollbar { display: none; }
  .about-subnav__group a {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}


/* ============================================================
   PRODUCT PAGE TEMPLATE - used by all 25 product detail pages
   Sections: .prod-hero, .prod-overview-v2 (+ .prod-facts),
             .prod-grades (+ .prod-grade), .prod-specs,
             .prod-faq, .prod-related-v2, .apps-closing-cta (reused).
   ============================================================ */

/* HERO - full-bleed application banner + compact content below */
.prod-hero {
  background: var(--paper-card, #fff);
  color: var(--ink);
}
.prod-hero__banner {
  margin: 0;
  width: 100%;
  height: clamp(220px, 32vh, 360px);
  overflow: hidden;
  background: var(--paper-soft);
}
.prod-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.prod-hero__content {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
/* Variant: text-led hero without the top banner image. Needs more top
   padding because there's no image to anchor the space above. */
.prod-hero--noimg .prod-hero__content {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.prod-hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.prod-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 220ms ease;
}
.prod-hero__cta:hover { background: var(--deep-ink, #15121F); }
.prod-hero__cta--ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}
.prod-hero__cta--ghost:hover {
  background: var(--ink);
  color: #fff;
}
.prod-hero .breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.prod-hero .breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 200ms ease;
}
.prod-hero .breadcrumbs a:hover { color: var(--brand-blue); }
.prod-hero .breadcrumbs .sep { color: var(--muted); }
.prod-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.85rem;
}
.prod-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.3rem + 2.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
}
.prod-hero__lead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* OVERVIEW (plain-English + facts strip) */
.prod-overview-v2 {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: var(--paper-card, #fff);
}
.prod-overview-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 900px) {
  .prod-overview-v2__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.prod-overview-v2__copy { min-width: 0; }
.prod-overview-v2__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.85rem;
}
.prod-overview-v2__title {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.prod-overview-v2__copy p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.prod-overview-v2__copy p:last-child { margin-bottom: 0; }

/* Facts list (right column) */
.prod-facts {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper-soft);
  border-radius: 16px;
  border-top: 3px solid var(--brand-blue);
  display: grid;
  gap: 0;
}
.prod-facts__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.prod-facts__row:first-child { padding-top: 0.25rem; }
.prod-facts__row:last-child {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}
@media (min-width: 520px) {
  .prod-facts__row {
    grid-template-columns: minmax(120px, 0.85fr) 1fr;
    gap: 1.25rem;
    align-items: baseline;
  }
}
.prod-facts dt {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.prod-facts dd {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

/* GRADES - card grid showing each grade with differentiator specs */
.prod-grades {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.prod-grades__head {
  max-width: 760px;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}
.prod-grades__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.7rem;
}
.prod-grades__title {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  color: var(--ink);
}
.prod-grades__lead {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.prod-grades__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 700px)  { .prod-grades__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .prod-grades__grid { grid-template-columns: repeat(3, 1fr); } }
.prod-grade {
  display: flex;
  flex-direction: column;
  background: var(--paper-card, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease, box-shadow 350ms ease;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.04);
}
.prod-grade:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand-blue) 35%, var(--line));
  box-shadow: 0 4px 8px rgba(31, 27, 45, 0.05), 0 24px 48px -22px rgba(67, 92, 170, 0.28);
}
.prod-grade__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-soft);
}
.prod-grade__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.prod-grade:hover .prod-grade__media img { transform: scale(1.05); }
.prod-grade__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.prod-grade__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: color-mix(in srgb, var(--brand-blue) 10%, transparent);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  align-self: flex-start;
  margin: 0 0 0.2rem;
}
.prod-grade__name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.prod-grade__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.prod-grade__specs {
  margin: 0;
  padding: 0.85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.prod-grade__spec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.prod-grade__spec dt {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0;
}
.prod-grade__spec dd {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}
.prod-grade__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: gap 200ms ease;
}
.prod-grade__cta:hover { gap: 0.6rem; }

/* SPECIFICATIONS - 2-column key-value grid */
.prod-specs {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: var(--paper-card, #fff);
  border-top: 1px solid var(--line);
}
.prod-specs__head {
  max-width: 760px;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}
.prod-specs__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.7rem;
}
.prod-specs__title {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.prod-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
}
@media (min-width: 640px) {
  .prod-specs__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.prod-spec {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .prod-spec:nth-child(1),
  .prod-spec:nth-child(2) { border-top: 1px solid var(--line); }
}
@media (max-width: 639px) {
  .prod-spec:first-child { border-top: 1px solid var(--line); }
}
.prod-spec__label {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.4rem;
}
.prod-spec__value {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* FAQ - same pattern as products.html */
.prod-faq {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.prod-faq__head {
  max-width: 760px;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}
.prod-faq__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.6rem;
}
.prod-faq__title {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.prod-faq__list {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
/* Card-style FAQ items, matches the global .faq__item visual treatment.
   Each item is a subtle card that lifts with shadow when opened. */
.prod-faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-card);
  padding: 0;
  overflow: hidden;
  transition: border-color 250ms ease, box-shadow 320ms ease;
}
.prod-faq__item:hover { border-color: var(--line-strong); }
.prod-faq__item[open] {
  border-color: rgba(31, 27, 45, 0.32);
  box-shadow:
    0 1px 2px rgba(31, 27, 45, 0.04),
    0 14px 32px -18px rgba(31, 27, 45, 0.14);
}
.prod-faq__item:first-child { border-top: 1px solid var(--line); }

.prod-faq__q {
  list-style: none;
  cursor: pointer;
  padding: clamp(1.05rem, 1.9vw, 1.4rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--ink);
  user-select: none;
  transition: color 200ms ease;
}
.prod-faq__q::-webkit-details-marker { display: none; }
.prod-faq__q::marker { content: ""; }

/* Plus icon: hide the literal "+" text via font-size 0, draw plus/minus
   with CSS background gradients to match the global .faq__item icon
   (plus becomes minus on open, no awkward 45deg rotation). */
.prod-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background-color: var(--paper-soft);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 10px 1.5px, 1.5px 10px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink-soft);
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
  transition: background-size 280ms cubic-bezier(.2,.8,.2,1),
              background-color 280ms ease,
              color 280ms ease,
              transform 0ms;
}
.prod-faq__item:hover .prod-faq__icon { background-color: var(--paper-deep); }
.prod-faq__item[open] .prod-faq__icon {
  /* Vertical bar collapses to 0, horizontal stays, plus becomes minus.
     Matches homepage .faq__item[open] icon style - dark ink bg, white minus. */
  background-size: 10px 1.5px, 0 0;
  background-color: var(--ink);
  color: #fff;
  transform: none;
}

/* Answer body - white (no cream), separated by top rule. Matches homepage .faq__item-body */
.prod-faq__a {
  padding: clamp(0.95rem, 1.8vw, 1.2rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.15rem, 2vw, 1.5rem);
  max-width: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}
.prod-faq__a p {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 0.8rem;
  max-width: 72ch;
}
.prod-faq__a p:last-child { margin-bottom: 0; }

/* RELATED PRODUCTS */
.prod-related-v2 {
  padding-block: clamp(2.5rem, 4vw, 4rem);
  background: var(--paper-card, #fff);
  border-top: 1px solid var(--line);
}
.prod-related-v2__head {
  max-width: 760px;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}
.prod-related-v2__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.55rem;
}
.prod-related-v2__title {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.prod-related-v2__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 1000px) { .prod-related-v2__grid { grid-template-columns: repeat(4, 1fr); } }
.prod-related__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.85rem;
  padding: 1.25rem 1rem 1.4rem;
  background: #f3f5f9;
  border: 1px solid rgba(67, 92, 170, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease, border-color 250ms ease, color 200ms ease;
  position: relative;
  height: 100%;
}
.prod-related__link:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand-blue) 30%, var(--line));
  color: var(--brand-blue);
}
.prod-related__name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  flex: none;
}
.prod-related__arrow {
  display: none;
}
.prod-related__link:hover .prod-related__arrow {
  color: var(--brand-blue);
  transform: translateX(3px);
}

/* CLOSING CTA - gradient box (matches applications + products + research) */
.apps-closing-cta {
  padding-block: clamp(2rem, 4vw, 3rem);
}
.apps-closing-cta > .container {
  background: linear-gradient(180deg, var(--tint-cream) 0%, var(--accent-soft) 100%);
  border-radius: 18px;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
}
.apps-closing-cta .cta-editorial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none;
  padding: 0;
  border: 0;
  gap: 1.25rem 2rem;
}
.apps-closing-cta .cta-editorial h2 {
  font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.2;
  margin: 0;
  max-width: 28ch;
}
.apps-closing-cta .cta-editorial .cta-actions { gap: 1.75rem; }
@media (max-width: 799px) {
  .apps-closing-cta .cta-editorial { text-align: center; }
  .apps-closing-cta .cta-editorial .cta-actions { justify-content: center; }
}

/* ============================================================================
   WhatsApp floating CTA, persistent across all pages.
   Sits bottom-right, brand WhatsApp green, with subtle pulse animation.
   ============================================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  text-decoration: none;
}
.wa-fab:focus-visible {
  outline: 2px solid #128C7E;
  outline-offset: 3px;
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: #ffffff;
}
@keyframes wa-fab-pulse {
  0%   { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.12), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.12), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.12), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-fab--pulse {
  animation: none;
}
@media (max-width: 540px) {
  .wa-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
}



/* ============================================================================
   ANIMATION PACK - stagger reveal + industries marquee
   ============================================================================ */

/* Stagger reveal - fade-up with sequential delays applied by JS */
.reveal-stagger > .reveal-stagger__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2, .8, .2, 1),
              transform 700ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform, opacity;
}
.reveal-stagger.is-visible > .reveal-stagger__item {
  opacity: 1;
  transform: translateY(0);
}

/* Industries marquee - continuous horizontal scroll, pauses on hover */
.ind-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}
/* (Removed white side-fade gradients - they were cutting off the cards visually) */
.ind-marquee::before,
.ind-marquee::after { content: none; }
.ind-marquee__track {
  display: inline-flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  animation: indMarquee 38s linear infinite;
  white-space: nowrap;
  padding-right: clamp(2rem, 4vw, 3.5rem);
}
.ind-marquee:hover .ind-marquee__track,
.ind-marquee:focus-within .ind-marquee__track { animation-play-state: paused; }
.ind-marquee__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 240ms ease;
}
.ind-marquee__item:hover { transform: translateY(-3px); }
.ind-marquee__photo {
  width: clamp(76px, 9vw, 110px);
  height: clamp(76px, 9vw, 110px);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.05),
              0 8px 24px -10px rgba(31, 27, 45, 0.18);
  transition: box-shadow 240ms ease;
}
.ind-marquee__item:hover .ind-marquee__photo {
  box-shadow: 0 1px 2px rgba(31, 27, 45, 0.05),
              0 12px 30px -10px rgba(67, 92, 170, 0.4);
}
.ind-marquee__name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
@keyframes indMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ind-marquee__track { animation: none; }
  .reveal-stagger > .reveal-stagger__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Parallax base - element should have a wrapper with overflow:hidden so the
   translated image stays clipped, otherwise it'll bleed past. */
[data-parallax] {
  will-change: transform;
}
