/* ============================================================
   Purple Packaging LLC — Marketing Site
   Full DTC white ecommerce aesthetic (Fusenpack-style)
   Inter-only typography, purple accent used sparingly.
   ============================================================ */

:root {
  /* Surfaces */
  --white:       #FFFFFF;
  --gray-bg:     #F7F7F5;
  --border:      #EAEAE5;
  --border-soft: #EFEFEA;

  /* Ink */
  --ink:         #1A1A1A;
  --ink-soft:    #555555;
  --muted:       #888888;
  --faint:       #B5B5B0;

  /* Brand (used sparingly) */
  --purple:      #4A1A6E;
  --purple-deep: #371252;
  --purple-tint: #F3EEF7;

  /* Utility accent colors used only for tag pills, status */
  --tag-hot:     #4A1A6E;
  --tag-econ:    #3A3A3A;
  --tag-new:     #1E7A54;

  /* Soft tints for mosaic / category tiles */
  --tint-peach:  #FBEADB;
  --tint-green:  #EEF4EC;
  --tint-gray:   #F0EFEC;
  --tint-cream:  #F7F2E7;
  --tint-blue:   #E8EDF3;
  --tint-pink:   #F5E9E9;

  /* Operator tile colors */
  --op-red:      #8B2E2E;
  --op-gold:     #C9A24C;
  --op-green:    #2F5D4E;
  --op-brown:    #6B3F2B;
  --op-charcoal: #2A2A2A;
  --op-peach:    #E8B88F;

  /* Geometry */
  --r-sm:        8px;
  --r:           12px;
  --r-lg:        16px;
  --r-pill:      999px;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.04);
  --shadow-lift: 0 12px 32px rgba(0,0,0,0.08);

  /* Layout */
  --maxw:        1280px;
  --gutter:      24px;
  --section-y:   112px;   /* desktop — 8px grid */
  --section-y-sm: 72px;   /* mobile */
  --hero-y:      48px;    /* shared hero vertical padding (top of subpage heroes) */
  --nav-h:       72px;

  /* Motion — shared by CSS hovers and scripted reveals */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:      180ms;
  --dur-mid:       260ms;
  --dur-slow:      800ms;
  --lift-y:        -4px;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur-fast: 0ms; --dur-mid: 0ms; --dur-slow: 0ms; --lift-y: 0px; }
}

/* ---------- Motion primitives ----------
   Scroll-reveal pattern: add [data-reveal] to any element and JS toggles
   .is-in when it enters the viewport. [data-stagger] applies the same
   reveal to direct children with a cascading transition-delay.

   All rules are gated on the .js class, which partials.js sets on <html>
   immediately. Without JS, targets stay visible. */

.js [data-reveal],
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out-soft),
              transform var(--dur-slow) var(--ease-out-soft);
  will-change: opacity, transform;
}
.js [data-stagger] > * {
  transform: translateY(24px);
}
.js [data-reveal].is-in,
.js [data-stagger].is-in > * {
  opacity: 1;
  transform: none;
}
.js [data-stagger].is-in > *:nth-child(1)  { transition-delay: 0ms; }
.js [data-stagger].is-in > *:nth-child(2)  { transition-delay: 100ms; }
.js [data-stagger].is-in > *:nth-child(3)  { transition-delay: 200ms; }
.js [data-stagger].is-in > *:nth-child(4)  { transition-delay: 300ms; }
.js [data-stagger].is-in > *:nth-child(5)  { transition-delay: 400ms; }
.js [data-stagger].is-in > *:nth-child(6)  { transition-delay: 500ms; }
.js [data-stagger].is-in > *:nth-child(7)  { transition-delay: 600ms; }
.js [data-stagger].is-in > *:nth-child(n+8){ transition-delay: 700ms; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}
p { margin: 0; text-wrap: pretty; }

.h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.03em; }
.h2 { font-size: clamp(32px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; }
.h3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; }
.h4 { font-size: 18px; line-height: 1.25; font-weight: 600; }

/* Drop serif/italic treatments — map legacy italic classes to a quiet purple accent */
.serif, .italic { font-family: 'Inter', sans-serif; font-style: normal; color: var(--purple); font-weight: 600; }
.accent      { color: var(--purple); font-weight: 700; }
.gold-accent { color: var(--purple); font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--ink { color: var(--ink-soft); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--narrow { max-width: 760px; }
.section { padding: var(--section-y) 0; background: var(--white); }
.section--gray,
.section--cream,
.section--ivory { background: var(--gray-bg); }
.section--dark  { background: var(--ink); color: var(--white); }

/* ---------- Buttons ----------
   One system: primary, outline, on-dark, on-dark-outline, ghost, sm.
   .btn--gold is a legacy alias of --primary, kept only to avoid HTML churn. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out-soft),
              color var(--dur-fast) var(--ease-out-soft),
              border-color var(--dur-fast) var(--ease-out-soft);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn svg, .btn .arrow { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-out-soft); flex: 0 0 auto; }
.btn:hover svg, .btn:hover .arrow { transform: translateX(3px); }
.btn--xl { padding: 18px 34px; font-size: 16px; font-weight: 700; }
.btn--xl .arrow { width: 16px; height: 16px; }

.btn--primary,
.btn--gold      { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn--primary:hover,
.btn--gold:hover { background: var(--purple-deep); border-color: var(--purple-deep); }
.btn--outline   { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--on-dark        { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn--on-dark:hover  { background: var(--purple-tint); color: var(--purple); border-color: var(--purple-tint); }
.btn--on-dark-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--on-dark-outline:hover { background: var(--white); color: var(--purple); }
.btn--ghost {
  padding: 10px 0;
  color: var(--purple);
  border: 0;
  border-bottom: 1.5px solid var(--purple);
  border-radius: 0;
  gap: 6px;
}
.btn--ghost:hover { color: var(--purple-deep); border-bottom-color: var(--purple-deep); }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.nav__logo:hover { color: var(--purple); }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color .15s ease;
}
.nav__link:hover,
.nav__link.is-current { color: var(--purple); }

.nav__actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.nav__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  border: 0;
  background: transparent;
  transition: background-color .15s ease, color .15s ease;
}
.nav__icon:hover { color: var(--purple); background: var(--gray-bg); }
.nav__icon svg { width: 18px; height: 18px; }
.nav__cta {
  background: var(--purple);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color .18s ease;
  white-space: nowrap;
  border: 0;
}
.nav__cta:hover { background: var(--purple-deep); }
.nav__cta svg { width: 12px; height: 12px; }

/* Hide the hamburger/mobile overlay — mobile pass deferred per spec */
.nav__toggle, .mobile-menu { display: none; }

/* ---------- HOMEPAGE ---------- */

/* Hero base — shared by .hero, .page-hero, .products-hero.
   Each variant overrides alignment/inner layout; base owns rhythm. */
.hero,
.page-hero,
.products-hero {
  padding: var(--hero-y) 0 80px;
  background: var(--white);
}

/* Hero (Section 1, homepage 2-col variant) */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
.hero__title .accent { color: var(--purple); font-weight: 700; }
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 24px 0 0;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Top announcement bar — sits above nav, global on all pages.
   Compact procurement-trust message + CTA arrow. */
.announce-bar {
  background: var(--tint-peach);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.announce-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce-bar__text,
.announce-bar__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.announce-bar__text { color: var(--ink); }
.announce-bar__cta {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.announce-bar__cta:hover { color: var(--purple-deep); }

/* Hero — colored panel with diagonal clip + full-bleed showcase carousel.
   The panel is a tinted block that the hero head sits inside; the
   showcase carousel lives outside on white below. */
.hero--showcase {
  padding: 0;
  overflow: hidden;
}
.hero__panel {
  position: relative;
  padding: 16px 0 8px;
  margin-bottom: 56px;
}
/* Tan polygon backdrop — sits BEHIND the hero text/buttons rather than
   clipping them. Fixed height controls the slope baseline; the actual
   content (.wrap) is allowed to extend beyond it. */
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 500px;
  background: var(--tint-cream);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 168px), 0 100%);
  z-index: 0;
  pointer-events: none;
}
.hero__panel > .wrap {
  position: relative;
  z-index: 1;
}
/* Two-column hero: text on the left, reserved visual area on the right
   for product imagery. Mobile collapses to a single column. */
.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 480px;
}
.hero__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual img {
  width: 100%;
  max-width: 620px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  /* Subtle floor shadow under the cluster so it sits on the cream surface
     rather than floating; still feels light. */
  filter: drop-shadow(0 28px 36px rgba(0,0,0,0.08));
}

.hero--showcase .hero__head {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 0;
}
/* Eyebrow — slim dark trust pill with a star prefix, Broya-style. */
.hero--showcase .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 0;
}
/* Eyebrow gets a Broya-style star prefix — small social-proof signal. */
.hero--showcase .hero__eyebrow::before {
  content: "★";
  color: #F4C544;
  font-size: 13px;
  line-height: 1;
}
/* Title — uppercase, bold, sized for the left column (not the full row).
   Two lines, balanced. The accent on line 2 ("repeat orders") carries
   the substantive claim. */
.hero--showcase .hero__title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}
.hero--showcase .hero__title .accent {
  color: var(--purple);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero--showcase .hero__sub {
  margin: 0;
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero--showcase .hero__sub strong { letter-spacing: -0.005em; }
.hero__sub strong {
  color: var(--ink);
  font-weight: 700;
}
.hero--showcase .hero__ctas {
  justify-content: flex-start;
  margin-top: 4px;
  align-items: center;
}
.hero--showcase .btn--outline {
  background: transparent;
  border-color: rgba(26,26,26,0.2);
}
.hero--showcase .btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hero--showcase .hero__proof {
  background: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.9);
}

/* Full-bleed showcase strip */
.hero__showcase {
  position: relative;
  width: 100%;
  padding: 0 48px;
}
.showcase-track {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 10px;
  align-items: stretch;
  /* Fixed row height keeps all three tiles the same vertical size;
     only the center column is wider. Scales with viewport. */
  height: clamp(360px, 42vw, 560px);
}
/* Desktop: only tiles flagged .is-active are rendered in the 3-up grid;
   JS rotates which three carry the class on prev/next click. */
@media (min-width: 769px) {
  .showcase-track > .showcase-tile:not(.is-active) { display: none; }
}

.showcase-tile {
  position: relative;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.showcase-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
/* Images fill the tile edge-to-edge (Fusenpack-style lifestyle photos).
   The color gradient on .showcase-tile--blue/peach/etc. now acts only as a
   fallback if an image fails to load. */
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.showcase-tile--feature img {
  width: 100%;
  height: 100%;
}
.showcase-tile:hover img {
  transform: scale(1.04);
}
/* Bottom-to-top scrim so the label stays legible over lifestyle photography. */
.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 40%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.showcase-tile__label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.showcase-tile__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.showcase-tile__sub {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.005em;
}

.showcase-tile--peach { background: linear-gradient(135deg, #E8B88F 0%, #C78B5A 100%); }
.showcase-tile--cream { background: linear-gradient(135deg, #D9C7A0 0%, #A88B57 100%); }
.showcase-tile--gray  { background: linear-gradient(135deg, #7B8A7E 0%, #4F5E52 100%); }
.showcase-tile--green { background: linear-gradient(135deg, #5A8B6F 0%, #2F5D4E 100%); }
.showcase-tile--blue  { background: linear-gradient(135deg, #6E8AAE 0%, #3E5B82 100%); }
.showcase-tile--pink  { background: linear-gradient(135deg, #C9867E 0%, #8B4D4A 100%); }

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background-color .15s, color .15s, transform .15s, box-shadow .15s;
  z-index: 3;
  cursor: pointer;
}
.showcase-nav svg { width: 18px; height: 18px; }
.showcase-nav:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: var(--shadow-lift);
}
.showcase-nav:active { transform: translateY(-50%) scale(0.96); }
.showcase-nav--prev { left: 6px; }
.showcase-nav--next { right: 6px; }

/* Hero mosaic (3×2 colored tiles, right side) */
.hero__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
}
.mosaic-tile {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--ink);
}
.mosaic-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.mosaic-tile img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}
.mosaic-tile__label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.mosaic-tile--peach { background: var(--tint-peach); }
.mosaic-tile--green { background: var(--tint-green); }
.mosaic-tile--gray  { background: var(--tint-gray); }
.mosaic-tile--cream { background: var(--tint-cream); }
.mosaic-tile--blue  { background: var(--tint-blue); }
.mosaic-tile--pink  { background: var(--tint-pink); }

/* Section 2: Shop by Category (6 circles) */
.cats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
}
.cat__circle {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.cat:hover .cat__circle {
  transform: scale(1.05);
  box-shadow: var(--shadow-lift);
}
/* Photos fill the circle edge-to-edge. The circular border-radius +
   overflow:hidden clips the photo to a perfect circle. */
.cat__circle img { width: 100%; height: 100%; object-fit: cover; }
/* Icon variant (e.g. cutlery tile) keeps its inset look on the tint. */
.cat__circle svg { width: 42%; height: 42%; color: var(--ink-soft); }
.cat__label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cat__count { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Section 3: Customer Favorites (4 cards on gray) */
.favs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
/* Unified card system — one hover distance, one timing, one shadow.
   Shared base on .fav, .product, .pillar, .channel (non-static),
   .faq__item. Each component keeps its own layout/typography. */
.fav,
.product,
.pillar,
.channel:not(.channel--static),
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform var(--dur-mid) var(--ease-out-soft),
              box-shadow var(--dur-mid) var(--ease-out-soft),
              border-color var(--dur-mid) var(--ease-out-soft);
  color: inherit;
}
.fav:hover,
.product:hover,
.pillar:hover,
.channel:not(.channel--static):hover {
  transform: translateY(var(--lift-y));
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.fav {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.fav__thumb {
  position: relative;
  background: var(--gray-bg);
  border-radius: var(--r-sm);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.fav__thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }
.fav__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fav__tag--hot { background: var(--tag-hot); }
.fav__tag--new { background: var(--tag-new); }
.fav__tag--econ { background: var(--tag-econ); }
.fav__dim {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.fav__body {
  padding: 18px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fav__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.fav__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 6px 0 0;
}
.fav__price .from { color: var(--muted); font-size: 13px; font-weight: 500; }
.fav__price .ship { color: var(--muted); font-size: 13px; }
.fav__moq { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Section 4: Built for operators like you (7 colored tiles, 3 per row) */
.ops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.op-tile {
  /* Match the 4:3 aspect of the source photos so `cover` barely has
     to crop and the subject reads at a natural zoom level. */
  aspect-ratio: 4 / 3;
  min-height: 240px;
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
  /* Background image (set inline per-tile) fills the tile; tile color
     remains as a fallback if the image fails to load. */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.op-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
/* Bottom-to-top scrim keeps the title legible over any photo. */
.op-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 38%, transparent 62%);
  pointer-events: none;
  z-index: 1;
}
.op-tile--peach::after {
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 38%, transparent 62%);
}
.op-tile__cap { position: relative; z-index: 2; }
.op-tile__name { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.op-tile--peach .op-tile__name { text-shadow: none; }
.op-tile__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  opacity: 0.9;
  transition: opacity .15s, transform .25s var(--ease-out-soft);
}
.op-tile:hover .op-tile__link { opacity: 1; transform: translateX(3px); }
/* Use `background-color` (not the `background` shorthand) so these
   color fallbacks don't reset `.op-tile`'s `background-size: cover`,
   `background-position: center`, and `background-repeat: no-repeat`. */
.op-tile--red      { background-color: var(--op-red); }
.op-tile--gold     { background-color: var(--op-gold); }
.op-tile--green    { background-color: var(--op-green); }
.op-tile--brown    { background-color: var(--op-brown); }
.op-tile--charcoal { background-color: var(--op-charcoal); }
.op-tile--peach    { background-color: var(--op-peach); color: var(--ink); }
.op-tile--purple   { background-color: var(--purple); }

/* Section 5: How It Works (4-column typography) */
.how-head {
  text-align: center;
  margin-bottom: 64px;
}
.how-head .h2 { margin: 0; }
.how-head p { font-size: 18px; color: var(--ink-soft); margin: 16px auto 0; max-width: 52ch; }

.how-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-col { display: flex; flex-direction: column; gap: 10px; }
.how-col__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--dur-mid) var(--ease-out-soft), background-color var(--dur-mid);
}
.how-col__icon svg { width: 26px; height: 26px; }
.how-col:hover .how-col__icon { transform: translateY(-2px) scale(1.05); background: var(--purple); color: var(--white); }
.how-col__step {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--ink);
  padding: 3px 7px;
  border-radius: var(--r-pill);
  line-height: 1;
}
.how-col__q {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}
.how-col__a {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.how-col__body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.how-col__link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  align-self: flex-start;
}
.how-col__link:hover { color: var(--purple-deep); }

/* Section 6: Trusted by Operators (marquee) */
.trusted {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.trusted .eyebrow { display: inline-flex; margin-bottom: 32px; }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-size: 28px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  position: relative;
  flex: 0 0 auto;
}
.marquee__item::after {
  content: "·";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  font-weight: 400;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Hero eyebrow — small positioning line above title */
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: -4px;
}

/* Hero proof strip — distributor-framed trust line under CTAs */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 12px 22px;
  background: var(--gray-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
}
.hero__proof-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}
.hero__proof-line {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.hero__proof-line strong { color: var(--purple); font-weight: 700; }
.hero__proof-sub {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* Section lead — intro paragraph directly under an h2 */
.section__lead {
  max-width: 60ch;
  margin: 14px 0 48px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Trust Snapshot — 4-card grid of why-distributors tiles */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur-mid) var(--ease-out-soft), box-shadow var(--dur-mid);
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-card__icon svg { width: 22px; height: 22px; }
.trust-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}
.trust-card__body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Product category programs — 3-up rich tiles (Aluminum/Plastics/Corrugated) */
.cat-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.cat-program {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-mid) var(--ease-out-soft), box-shadow var(--dur-mid);
}
.cat-program:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.cat-program__img {
  aspect-ratio: 16 / 10;
  background: var(--tint-cream);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cat-program:nth-child(2) .cat-program__img { background-color: var(--tint-gray); }
.cat-program:nth-child(3) .cat-program__img { background-color: var(--tint-peach); }
.cat-program__body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cat-program__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cat-program__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.cat-program__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.cat-program__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-program__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cat-program__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}
.cat-program__link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: transform var(--dur-mid) var(--ease-out-soft);
  align-self: flex-start;
}
.cat-program:hover .cat-program__link { transform: translateX(3px); }

/* Compliance & Quality — 3-card grid + vendor-packet CTA block */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.compliance-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-mid) var(--ease-out-soft), box-shadow var(--dur-mid);
}
.compliance-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.compliance-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.compliance-card__icon svg { width: 26px; height: 26px; }
.compliance-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}
.compliance-card__body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.compliance-cta {
  margin-top: 48px;
  background: var(--purple-tint);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.compliance-cta__copy h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.compliance-cta__copy p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 62ch;
}
.compliance-cta .btn { flex-shrink: 0; }

/* Stats-bar header — used when stats-bar section carries its own h2/eyebrow */
.stats-head {
  text-align: center;
  margin-bottom: 40px;
}
.stats-head .h2 { margin: 14px 0 12px; }
.stats-head__sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 56ch;
}
.stats-bar#us-inventory {
  padding: 80px 0;
}

/* Testimonials — placeholder content; structured so copy can be swapped. */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  margin: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--dur-mid) var(--ease-out-soft), box-shadow var(--dur-mid);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.testimonial__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--purple);
}
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial__quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial__role {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Stats bar — 4 proof points between operator tiles and How It Works */
.stats-bar {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 12px;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border-soft);
}
.stat-cell__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stat-cell__icon svg { width: 22px; height: 22px; }
.stat-cell__num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat-cell__num span {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.stat-cell__label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 22ch;
}

/* Final CTA — purple background, centered everywhere. The stack owns
   its vertical rhythm so HTML stays inline-style-free. */
.final-cta {
  padding: 96px 0;
  background: var(--purple);
  color: var(--white);
  text-align: center;
}
.final-cta > .wrap > * + * { margin-top: 16px; }
.final-cta .final-cta__ctas { margin-top: 32px; }
.final-cta .eyebrow { color: rgba(255,255,255,0.7); }
.final-cta h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}
.final-cta h2 .italic { color: rgba(255,255,255,0.9); }
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  margin: 0 auto;
  max-width: 54ch;
  line-height: 1.5;
}
.final-cta__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer (dark charcoal) ---------- */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer__tag {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
  line-height: 1.55;
  margin: 0 0 24px;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color .15s, color .15s;
}
.footer__social a:hover { background: var(--purple); color: var(--white); }
.footer__social svg { width: 14px; height: 14px; }

.footer__col h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color .15s; }
.footer__col a:hover { color: var(--purple); }

.footer__bar {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bar-right { display: flex; gap: 14px; align-items: center; }

/* ---------- LEGACY PAGES (reskinned) ---------- */

/* Shared page-hero used by about/advantage/distributor/contact/quote.
   The stack (eyebrow → title → lead) owns its own vertical rhythm so
   HTML doesn't need inline margin overrides. */
.page-hero {
  padding: var(--hero-y) 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero > .wrap > * + * { margin-top: 20px; }
.page-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  max-width: 22ch;
}
.page-hero__title .italic { color: var(--purple); font-weight: 700; }
.page-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}

/* Products page hero */
.products-hero { padding: var(--hero-y) 0 64px; border-bottom: 1px solid var(--border); }
/* Centered hero variant — used when there's no right-side cluster image
   and the next section (cat-row) carries the visual weight. */
.products-hero--centered { padding: 32px 0 32px; border-bottom: 0; }
.products-hero--centered .products-hero__copy > * + * { margin-top: 12px; }
.products-hero--centered .products-hero__ctas { margin-top: 20px; }
.products-hero__copy--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.products-hero__copy--centered .breadcrumb { justify-content: center; }
.products-hero__copy--centered .eyebrow { justify-content: center; }
.products-hero__copy--centered .products-hero__lead { margin-left: auto; margin-right: auto; }
.products-hero__copy--centered .products-hero__ctas { justify-content: center; }

/* Browse-by-product-family feature row — full-bleed lifestyle tiles
   that deep-link to filtered catalog views. Reuses the .op-tile photo
   + scrim treatment from the homepage so the visual language is
   consistent. */
.cat-row {
  padding: 0 0 48px;
  background: var(--white);
}
.cat-row__head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cat-row__head .eyebrow { justify-content: center; }
.cat-row__head .h2 { margin: 0; max-width: 22ch; }
/* Slim variant — single eyebrow line, used when tile labels carry the
   structural narrative on their own. */
.cat-row__head--slim { margin-bottom: 20px; gap: 0; }
.cat-row__lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 60ch;
}
.cat-row__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-row__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: clamp(280px, 22vw, 320px);
  padding: 20px;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background-color: var(--gray-bg);
  isolation: isolate;
  transition: transform var(--dur-mid) var(--ease-out-soft), box-shadow var(--dur-mid);
}
/* The image lives on ::before so we can scale just the photo on hover
   without scaling the text overlay. The image URL is passed in via the
   --cat-bg custom property set inline on each tile. */
.cat-row__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform var(--dur-slow) var(--ease-out-soft);
}
.cat-row__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.32) 38%, rgba(0,0,0,0.05) 65%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.cat-row__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.cat-row__tile:hover::before { transform: scale(1.04); }
.cat-row__cap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-row__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.cat-row__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.cat-row__link {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity .15s, transform var(--dur-mid) var(--ease-out-soft);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.cat-row__tile:hover .cat-row__link { opacity: 1; transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .cat-row__tile,
  .cat-row__tile::before,
  .cat-row__link { transition: none; }
  .cat-row__tile:hover { transform: none; }
  .cat-row__tile:hover::before { transform: none; }
  .cat-row__tile:hover .cat-row__link { transform: none; }
}
.products-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.products-hero__copy > * + * { margin-top: 16px; }
.products-hero__copy .eyebrow { margin-top: 8px; }
.products-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  max-width: 20ch;
}
.products-hero__title .italic { color: var(--purple); font-weight: 700; }
.products-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0;
}
.products-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.products-hero__cluster { display: flex; align-items: center; justify-content: center; }
.products-hero__cluster svg,
.products-hero__cluster img { width: 100%; max-width: 440px; height: auto; }
.products-hero__cluster__frame {
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  border-radius: var(--r-lg);
  background: var(--tint-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.products-hero__cluster__frame img { width: 76%; height: 76%; object-fit: contain; }

.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 500; }

/* Catalog sidebar + grid */
.catalog-section { padding: 64px 0 96px; background: var(--white); border-top: 1px solid var(--border-soft); }
.catalog-shell { display: grid; grid-template-columns: 240px 1fr; gap: 56px; }
.catalog-main { min-width: 0; }
.filters { padding-top: 8px; }
.filters h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.filters__group { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border-soft); }
.filters__group:last-child { border-bottom: 0; }
.filter-chip {
  display: block;
  width: 100%;
  text-align: left;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  background: transparent;
  border: 0;
  margin-bottom: 1px;
  transition: background-color .15s, color .15s;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
}
.filter-chip:hover { background: var(--gray-bg); color: var(--ink); }
.filter-chip.is-active { background: var(--purple); color: var(--white); }
.filter-chip .count { float: right; font-size: 11px; color: var(--muted); font-weight: 400; }
.filter-chip.is-active .count { color: rgba(255,255,255,0.75); }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.catalog-toolbar__count { font-size: 13px; color: var(--muted); }
.catalog-toolbar__sort { display: inline-flex; align-items: center; gap: 10px; }
.catalog-toolbar__sort label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.catalog-toolbar__sort select {
  padding: 8px 32px 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A1A6E' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-content: start; }
.product {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product__thumb {
  background: var(--gray-bg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: background-color var(--dur-mid) var(--ease-out-soft);
}
.product:hover .product__thumb { background: #F1F1ED; }
.product__thumb svg { width: 50%; height: 50%; color: var(--ink-soft); }
.product__thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform var(--dur-mid) var(--ease-out-soft);
}
.product:hover .product__thumb img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .product__thumb img { transition: none; }
  .product:hover .product__thumb img { transform: none; }
}
.product__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product__tag--hot { background: var(--tag-hot); }
.product__tag--new { background: var(--tag-new); }
.product__dim {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
}
.product__body { padding: 24px 4px 4px; display: flex; flex-direction: column; gap: 8px; border-top: 0; }
.product__cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.product__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.005em;
}
.product__desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 2px 0 10px; }
.product__meta { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.product__price {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product__price .from { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.product__price .ship { font-size: 12px; color: var(--muted); font-weight: 500; }
.product__moq { font-size: 12px; color: var(--muted); }
.product__spec { font-size: 13px; color: var(--ink); font-weight: 500; }
.product__spec strong { font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.product__foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.product__quote {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product__quote:hover { color: var(--purple-deep); }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-image {
  aspect-ratio: 4 / 5;
  background: var(--gray-bg);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image .chip {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}
.about-image .chip strong { display: block; color: var(--ink); font-weight: 700; }
.about-copy h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 16px 0 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value h4 { font-size: 18px; color: var(--ink); margin: 0 0 8px; font-weight: 600; }
.value p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.value .num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Advantage page */
.stat-feature {
  background: var(--gray-bg);
  border-radius: var(--r-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.stat-feature__num {
  font-size: clamp(60px, 6vw, 88px);
  line-height: 1;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.stat-feature__body p { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 42ch; }
.stat-feature__body .eyebrow { margin-bottom: 12px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.compare__col { padding: 40px 36px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--white); }
.compare__col h3 { margin: 20px 0 0; font-weight: 700; font-size: 28px; letter-spacing: -0.015em; }
.compare__col--them h3 { color: var(--muted); }
.compare__col--us { background: var(--ink); color: var(--white); border-color: transparent; }
.compare__col--us h3 { color: var(--white); }
.compare__col--us .eyebrow { color: var(--faint); }
.compare__col ul { margin: 24px 0 0; }
.compare__col li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.compare__col--us li { border-color: rgba(255,255,255,0.1); }
.compare__col li:last-child { border-bottom: 0; }
.compare__col .mark { flex: 0 0 auto; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.compare__col--them .mark { color: var(--muted); }
.compare__col--us .mark { color: var(--purple); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pillar__icon {
  width: 44px; height: 44px;
  background: var(--gray-bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar.is-lead .pillar__icon { background: var(--purple); color: var(--white); }
.pillar__title { font-size: 20px; font-weight: 600; color: var(--ink); margin: 0 0 10px; letter-spacing: -0.01em; }
.pillar__body { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* Distributor page */
.dist-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: start; }
.dist-benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.dist-benefit__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.dist-benefit__icon svg { width: 22px; height: 22px; }
.dist-benefit h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.dist-benefit p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.channel {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
}
.channel--static { cursor: default; }
.channel__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--gray-bg);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel__icon svg { width: 20px; height: 20px; }
.channel h3 {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  margin: 0 0 6px;
}
.channel .big { font-size: 18px; color: var(--ink); font-weight: 600; margin: 0 0 4px; }
.channel .mini { font-size: 12px; color: var(--muted); }
.contact-form .eyebrow { margin-bottom: 8px; }
.contact-form__title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 10px 0 22px;
}

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 8px; }
.faq__item { padding: 20px 24px; }
.faq__item[open] { border-color: var(--purple); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 32px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.faq__item p a { color: var(--purple); font-weight: 500; }

/* Quote page */
.quote-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.quote-form { padding: 36px 40px; }
.quote-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.quote-step:first-child { border-top: 0; padding-top: 4px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title { font-size: 20px; font-weight: 600; color: var(--ink); margin: 6px 0 6px; letter-spacing: -0.01em; }
.step-sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.55; }

.line-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.line-row {
  display: grid;
  grid-template-columns: 1fr 140px 32px;
  gap: 12px;
  align-items: end;
  background: var(--gray-bg);
  padding: 12px 14px;
  border-radius: var(--r-sm);
}
.line-row .field label { font-size: 10px; letter-spacing: 0.1em; margin-bottom: 4px; }
.line-row input {
  padding: 10px 12px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.line-row__remove {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: end;
}
.line-row__remove:hover { background: #F8E5E5; color: #B03030; border-color: #E8B5B5; }

.divider-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.quote-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 20px); }
.side-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.side-card--dark { background: var(--ink); color: var(--white); border-color: transparent; }
.side-card--dark .eyebrow { color: var(--faint); }
.side-card .mini { font-size: 12px; color: var(--muted); }
.side-card--dark .mini { color: rgba(255,255,255,0.6); }
.side-card__quote {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
}

.timeline { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.timeline li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: flex-start; }
.timeline .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.timeline h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 2px 0 4px; letter-spacing: -0.005em; }
.timeline p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.phone-big { display: inline-block; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; margin-bottom: 4px; }

/* Shared forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 40px;
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--purple);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.form-foot .note { font-size: 12px; color: var(--muted); max-width: 40ch; }

/* Section head — owns its own stack rhythm.
   eyebrow (16) → h2 (14) → lead (20). HTML stays style-free. */
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head > * + * { margin-top: 16px; }
.section-head > .lead,
.section-head > p { margin-top: 20px; }
.section-head h2, .section-head .h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.section-head h2 .accent, .section-head .h2 .accent,
.section-head .gold-accent { color: var(--purple); font-weight: 700; }
.section-head p, .section-head .lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: auto;
  max-width: 58ch;
  line-height: 1.55;
}
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  max-width: none;
  text-align: left;
  margin: 0 0 40px;
}
.section-head--split > * + * { margin-top: 0; }
.section-head__left { max-width: 56ch; }
.section-head__left > * + * { margin-top: 16px; }
.section-head__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.section-head--split h2 { font-size: clamp(28px, 3vw, 40px); margin: 0; text-align: left; }
.section-head--split h2 .accent { color: var(--purple); }
.section-head__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-head__link:hover { color: var(--purple-deep); }
.section-head__link svg { width: 12px; height: 12px; transition: transform var(--dur-mid) var(--ease-out-soft); }
.section-head__link:hover svg { transform: translateX(3px); }
.section-head--left { text-align: left; max-width: 760px; margin: 0 0 40px; }
.section-head--left > * + * { margin-top: 16px; }
.section-head--left > p, .section-head--left > .lead { margin-left: 0; margin-right: 0; max-width: 56ch; }
.section-head--left h2, .section-head--left .h2 { max-width: 22ch; text-align: left; }

/* ---------- Component-level motion ---------- */

/* Nav — subtle fade-in on load + backdrop-blur state after 40px of scroll */
.nav {
  animation: navIn 600ms var(--ease-out-soft) both;
  transition: background-color var(--dur-mid) var(--ease-out-soft),
              box-shadow var(--dur-mid) var(--ease-out-soft),
              border-color var(--dur-mid) var(--ease-out-soft);
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
@media (prefers-reduced-motion: reduce) {
  .nav { animation: none; opacity: 1; }
}

/* Hero showcase — Ken Burns on the feature tile, gentle float on side tiles.
   Both are paused on hover so the existing hover transform/scale owns the
   interaction. JS swaps .showcase-tile--feature between tiles; the animation
   follows the class. */
@media (prefers-reduced-motion: no-preference) {
  .showcase-tile--feature img {
    animation: kenBurns 14s ease-in-out infinite alternate;
  }
  .showcase-tile--feature:hover img { animation: none; }

  .showcase-tile:not(.showcase-tile--feature) {
    animation: float 7s ease-in-out infinite;
  }
  .showcase-tile:not(.showcase-tile--feature):nth-of-type(odd) {
    animation-delay: -3.5s;
  }
  .showcase-tile:not(.showcase-tile--feature):hover { animation: none; }
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1.5%, 1%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Category circles — lift tile + rotate image on hover */
.cat__circle img { transition: transform var(--dur-mid) var(--ease-out-soft); }
.cat:hover .cat__circle img { transform: rotate(-6deg) scale(1.05); }

/* Favorite cards — 3D tilt on hover (static fallback when JS hasn't
   populated the custom props, e.g. touch devices). */
.favs-row { perspective: 1000px; }
.fav { transform-style: preserve-3d; }
.fav:hover {
  transform: translateY(var(--lift-y))
             rotateX(var(--tilt-x, 0deg))
             rotateY(var(--tilt-y, 0deg));
}

/* Operator tiles — color wash sweeps in on hover, arrow slides 4px right.
   The arrow is rendered via ::after so HTML can drop the plain "→" char. */
.op-tile { isolation: isolate; }
.op-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out-soft);
  pointer-events: none;
  z-index: 0;
}
.op-tile--peach::before {
  background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(0,0,0,0) 60%);
}
.op-tile:hover::before { opacity: 1; }
/* Permanent dark scrim — strongest in the lower-left behind the label,
   fading to transparent toward the top-right so the photo breathes. */
.op-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.50) 35%,
    rgba(0,0,0,0.18) 70%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Peach tile uses dark text — invert the scrim so dark ink reads on a
   light haze in the lower-left instead of a dark one. */
.op-tile--peach::after {
  background: linear-gradient(to top right,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.40) 35%,
    rgba(255,255,255,0.10) 70%,
    transparent 100%);
}
.op-tile__name, .op-tile__link { position: relative; z-index: 2; }
.op-tile__link::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--dur-mid) var(--ease-out-soft);
}
.op-tile:hover .op-tile__link::after { transform: translateX(4px); }

/* Final CTA — slow gradient mesh behind the copy. */
.final-cta { position: relative; overflow: hidden; isolation: isolate; }
.final-cta::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 60% at 18% 28%, rgba(255,255,255,0.10) 0%, transparent 60%),
    radial-gradient(45% 60% at 82% 74%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(30% 45% at 62% 22%, rgba(255,255,255,0.06) 0%, transparent 60%);
  animation: mesh 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.final-cta > .wrap { position: relative; z-index: 1; }
@keyframes mesh {
  from { transform: translate3d(-2%, -1%, 0) rotate(-0.5deg); }
  to   { transform: translate3d(2%, 1%, 0) rotate(0.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta::before { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__actions { justify-self: end; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__mosaic { max-width: 600px; }
  .hero--showcase { padding: 0; }
  .hero__panel { padding: 48px 0 80px; margin-bottom: 40px; }
  .hero__panel::before { height: 100%; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%); }
  /* Mobile: collapse two-column hero to single column, hide reserved visual area. */
  .hero__layout { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero__visual { display: none; }
  .hero--showcase .hero__head { padding-bottom: 0; gap: 18px; }
  .hero--showcase .hero__title { font-size: clamp(36px, 8.4vw, 56px); max-width: 16ch; }
  .announce-bar .wrap { gap: 8px; padding: 0 16px; }
  .announce-bar__text { font-size: 10px; }
  .announce-bar__cta { font-size: 10px; }
  .hero__showcase { padding: 0 40px; }
  .showcase-track { grid-template-columns: 1fr 1.4fr 1fr; gap: 10px; }
  .showcase-tile__name { font-size: 22px; }
  .cats-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .favs-row { grid-template-columns: repeat(2, 1fr); }
  .ops { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat-cell:nth-child(3)::before { display: none; }
  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-programs { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .how-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .catalog-shell { grid-template-columns: 1fr; gap: 32px; }
  .filters { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 0; }
  .filters__group { border-bottom: 0; padding-bottom: 0; margin-bottom: 12px; width: 100%; }
  .cat-row__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cat-row__name { font-size: 20px; }
  .cat-row__tile { height: clamp(240px, 30vw, 280px); }
  .cat-row { padding-bottom: 72px; }
  .products-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .products-hero__cluster__frame { margin: 0 auto; }
  .stat-feature { grid-template-columns: 1fr; gap: 28px; padding: 40px; text-align: left; }
  .compare { grid-template-columns: 1fr; }
  .dist-benefits { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .values { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; gap: 32px; }
  .quote-side { position: static; }
  .faq { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-y: 80px; }
  .section { padding: 80px 0; }
  .hero { padding: 64px 0 48px; }
  .hero__title { font-size: clamp(36px, 8vw, 48px); }
  .cats-row { grid-template-columns: repeat(2, 1fr); }
  .favs-row { grid-template-columns: 1fr; }
  .ops { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 32px; }
  .stat-cell + .stat-cell::before { display: none; }
  .stat-cell { padding: 16px 0; border-top: 1px solid var(--border-soft); }
  .stat-cell:first-child { border-top: 0; padding-top: 0; }
  .hero__proof { flex-direction: column; gap: 12px; padding: 14px 18px; border-radius: var(--r-lg); }
  .hero__proof-text { align-items: center; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-bar#us-inventory { padding: 56px 0; }
  .compliance-cta { padding: 26px 22px; }
  .how-row { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bar { flex-direction: column; gap: 10px; align-items: flex-start; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .line-row { grid-template-columns: 1fr 100px 32px; gap: 8px; }
  .values { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: flex-start; }
  .marquee__item { font-size: 20px; padding: 0 18px; }
  .final-cta__ctas { flex-direction: column; align-items: stretch; }
  .final-cta__ctas .btn { justify-content: center; }
  .nav__actions .nav__icon { display: none; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .cat-row__grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-row__tile { height: clamp(220px, 60vw, 280px); padding: 22px; }
  .cat-row__name { font-size: 22px; }
  .product__thumb { padding: 24px; }
  .catalog-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero--showcase { padding: 0; }
  .hero__panel { padding: 48px 0 72px; margin-bottom: 32px; }
  .hero__panel::before { height: 100%; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%); }
  .hero__showcase { padding: 0 12px; }
  .showcase-track {
    display: flex;
    grid-template-columns: none;
    height: auto;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .showcase-track::-webkit-scrollbar { display: none; }
  .showcase-track > .showcase-tile:nth-child(n+4) { display: flex; }
  .showcase-tile {
    flex: 0 0 78%;
    height: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
  .showcase-tile--feature { flex: 0 0 92%; aspect-ratio: 4 / 5; }
  .showcase-tile--feature img { width: 100%; height: 100%; }
  .showcase-nav { display: none; }
  .showcase-tile__name { font-size: 20px; }
}

/* ==========================================================
   Splash hover effect — pan base + airborne-contents overlay.
   Applied to any showcase-tile marked .has-splash. The base
   image (pan + food) is always visible; the splash overlay
   sits invisible at rest, erupts upward on hover, and settles
   back into the pan on unhover via reversed CSS transitions.
   ========================================================== */

.splash-wrap {
  position: relative;
  width: 82%;
  height: 82%;
  display: block;
}
.showcase-tile--feature .splash-wrap { width: 70%; height: 88%; }

.splash-wrap__base,
.splash-wrap__splash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.splash-wrap__base {
  filter: drop-shadow(0 22px 44px rgba(0,0,0,0.22));
  /* On unhover, return with a heavier "gravity" easing. */
  transition: transform 300ms cubic-bezier(0.7, 0, 0.84, 0);
}

.splash-wrap__splash {
  opacity: 0;
  transform: translateY(18px) scale(0.9);
  transform-origin: 50% 90%;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.22));
  /* Unhover: falls back down, ease-in (gravity). */
  transition:
    opacity 420ms cubic-bezier(0.7, 0, 0.84, 0),
    transform 420ms cubic-bezier(0.7, 0, 0.84, 0);
}

/* Hover: splash leaps out and up, base lifts a touch.
   Uses the Apple-ish ease-out curve for a confident pop. */
.showcase-tile.has-splash:hover .splash-wrap__splash {
  opacity: 1;
  transform: translateY(-28px) scale(1);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase-tile.has-splash:hover .splash-wrap__base {
  transform: translateY(-4px) scale(1.02);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .splash-wrap__base,
  .splash-wrap__splash {
    transition: none !important;
    transform: none !important;
  }
  .showcase-tile.has-splash:hover .splash-wrap__splash {
    opacity: 1;
  }
}

/* ==========================================================
   Product card spec list (categories.html catalog grid)
   Replaces the older single-line .product__meta layout.
   ========================================================== */
.product__specs {
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.45;
}
.product__spec-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}
.product__spec-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.product__spec-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.product__compliance {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
/* Button reset for the datasheet trigger (was an <a>, now a <button>). */
button.product__quote {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

/* ==========================================================
   Datasheet modal — opens on "Datasheet & Specs" click and
   loads /datasheets/{SKU}.pdf in an iframe. Falls back to a
   "coming soon" panel if the PDF is missing.
   ========================================================== */
.datasheet-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.datasheet-modal[hidden] { display: none; }

.datasheet-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 30, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  animation: datasheetFade 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.datasheet-modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: datasheetSlide 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes datasheetFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes datasheetSlide {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.datasheet-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border-soft);
}
.datasheet-modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.datasheet-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}
.datasheet-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.datasheet-modal__close:hover { background: var(--border); }

.datasheet-modal__body {
  flex: 1;
  min-height: 360px;
  display: flex;
  background: var(--gray-bg);
  position: relative;
}
.datasheet-modal__frame {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  background: var(--white);
}
.datasheet-modal__fallback {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  gap: 12px;
}
.datasheet-modal__fallback p { margin: 0; max-width: 44ch; line-height: 1.55; }
.datasheet-modal__fallback p:first-child { font-size: 18px; font-weight: 600; color: var(--ink); }
.datasheet-modal__fallback .muted { color: var(--ink-soft); font-size: 14px; }
.datasheet-modal__fallback a { color: var(--purple); text-decoration: underline; }
.datasheet-modal__fallback .btn { margin-top: 8px; }

.datasheet-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-top: 1px solid var(--border-soft);
  background: var(--white);
}
.datasheet-modal__sku {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.datasheet-modal__download {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
}
.datasheet-modal__download:hover { color: var(--purple-deep); }

@media (max-width: 768px) {
  .datasheet-modal__panel { width: calc(100vw - 16px); max-height: calc(100vh - 32px); }
  .datasheet-modal__header { padding: 16px 18px 12px; }
  .datasheet-modal__title { font-size: 17px; }
  .datasheet-modal__body { min-height: 300px; }
  .datasheet-modal__frame { min-height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .datasheet-modal__backdrop,
  .datasheet-modal__panel { animation: none; }
}

/* ==========================================================
   Reliability band (homepage section 2 — operating record)
   White section that sits between the hero (cream) and the
   trust snapshot (gray). Centered intro on top, four-column
   stats grid below. Stats use big purple numerals with two
   lines of supporting text underneath.
   ========================================================== */
.reliability-band {
  background: var(--white);
  padding: 96px 0;
}
.reliability-band__intro {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.reliability-band__intro .eyebrow { justify-content: center; }
.reliability-band__intro .h2 {
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.reliability-band__intro .section__lead {
  margin: 20px auto 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.reliability-band__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border-soft);
  padding-top: 56px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat__num {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.stat__sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .reliability-band { padding: 72px 0; }
  .reliability-band__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    padding-top: 40px;
  }
  .reliability-band__intro { margin-bottom: 40px; }
}
@media (max-width: 560px) {
  .reliability-band__stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stat__num { font-size: 44px; }
}
