/* ==========================================================================
   ZERO AEROSOL — modern B2B industrial manufacturer design system
   Red #e2231a brand theme · warm dark neutrals · soft rounded cards
   Fonts: Archivo (sans, wdth axis) + IBM Plex Mono (sparingly)
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --red:        #e2231a;  /* brand primary */
  --red-dark:   #b01410;  /* hover / depth on red */
  --red-soft:   #fdeeee;  /* tinted fills, icon tiles */
  --ink:        #1d1713;  /* headings, body strong */
  --muted:      #6d655e;  /* secondary text */
  --faint:      #968d84;  /* tertiary text */
  --bg:         #ffffff;
  --bg-alt:     #f8f5f3;  /* alternating warm-gray sections */
  --line:       #e9e2de;  /* hairline borders */
  --dark:       #16100d;  /* hero + footer base */
  --dark-2:     #241a15;  /* dark card on dark */
  --radius:     16px;
  --radius-sm:  10px;
  --shadow-md:  0 6px 16px -6px rgba(29,23,19,.10), 0 2px 6px -2px rgba(29,23,19,.06);
  --shadow-lg:  0 24px 48px -16px rgba(29,23,19,.18);
  --font-sans:  "Archivo", system-ui, sans-serif;
  --font-mono:  "IBM Plex Mono", ui-monospace, monospace;
  --maxw:       1200px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, .97rem + .15vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

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

/* skip link — red pill, drops in on focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 100;
  padding: 0.65rem 1.1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.6rem; outline: 2px solid #fff; outline-offset: 2px; }

/* headings — sentence case, expanded width, tight tracking */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-stretch: 112%;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.25rem); font-weight: 800; line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); font-weight: 750; }

/* ---- Layout shell ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Topbar (thin dark strip, hidden < 640px) --------------------------- */
.topbar {
  background: var(--dark);
  color: rgba(245,240,236,.8);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 2.2rem;
}
.topbar__item { letter-spacing: 0.015em; }
.topbar__links { display: inline-flex; gap: 1.5rem; }
.topbar__links a { transition: color 0.2s var(--ease); }
.topbar__links a:hover { color: #fff; }
@media (max-width: 639px) { .topbar { display: none; } }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}
.brand__badge {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 11px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-stretch: 118%;
  font-size: 1.4rem;
  box-shadow: 0 8px 16px -8px rgba(226,35,26,.6);
  transition: transform 0.2s var(--ease);
}
.brand:hover .brand__badge { transform: rotate(-4deg); }
.brand__word {
  font-stretch: 115%;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
}
.brand__zero { color: var(--ink); }
.brand__aero { color: var(--red); font-weight: 500; margin-left: 0.25ch; }
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav > ul { display: flex; align-items: center; gap: 1.5rem; }
.main-nav ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding-block: 0.4rem;
  transition: color 0.2s var(--ease);
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--ease);
}
.main-nav ul a:hover { color: var(--red); }
.main-nav > ul > li > a:hover::after { transform: scaleX(1); }
.main-nav ul a[aria-current="page"] { color: var(--red); }
.main-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }

/* Products dropdown (desktop flyout) */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger svg {
  margin-left: 0.4em;
  transition: transform 0.2s var(--ease);
}
.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown:focus-within .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-dropdown__menu a:hover { background: var(--red-soft); color: var(--red-dark); }
.nav-dropdown__menu a[aria-current="page"] { background: var(--red-soft); color: var(--red-dark); }
.nav-dropdown:has([aria-current="page"]) > .nav-dropdown__trigger { color: var(--red); }
.nav-dropdown:has([aria-current="page"]) > .nav-dropdown__trigger::after { transform: scaleX(1); }

/* mobile nav toggle — red-outlined pill */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  padding: 0.5em 1.1em;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--red-soft); }

/* mobile: full-width dropdown panel under the header */
@media (max-width: 979px) {
  .main-nav { gap: 1rem; }
  .nav-toggle { display: inline-flex; }
  .main-nav .btn--nav { display: none; }
  ul#primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem var(--gutter) 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
    pointer-events: none;
  }
  ul#primary-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  ul#primary-nav > li + li { border-top: 1px solid var(--line); }
  ul#primary-nav a { display: block; padding: 0.9rem 0; }
  /* Products dropdown flattens into the panel */
  .nav-dropdown__trigger svg { display: none; }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0.5rem 1.1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown__menu a { padding: 0.55rem 0; font-size: 14px; color: var(--muted); }
  .nav-dropdown__menu a[aria-current="page"] { color: var(--red); background: none; }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn__arrow { transition: transform 0.22s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(0.3em); }
.btn--nav { padding: .62em 1.15em; font-size: 14px; }

/* ---- Hero (homepage) ---------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(45% 55% at 88% 8%, rgba(226,35,26,.07), transparent 65%),
    radial-gradient(30% 40% at 4% 95%, rgba(226,35,26,.045), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fdf9f7 100%);
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 959px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__content { display: grid; gap: 1.4rem; justify-items: start; }
.hero h1 { color: var(--ink); }
/* red word-accent spans inside headings anywhere */
h1 .red, h2 .red, h3 .red { color: var(--red); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.4rem; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.hero__points li { position: relative; padding-left: 1.45rem; }
.hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}
/* warm panel stages the cans so cutout edges sit on a light ground */
.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fdfaf8, var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1rem, 2vw, 2rem);
  box-shadow: var(--shadow-md), 0 0 0 8px rgba(226,35,26,.03);
}
.hero__cans {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.can-img {
  width: auto;
  filter: drop-shadow(0 18px 22px rgba(29,23,19,.16));
}
.hero__cans .can-img:nth-child(1) { height: 280px; }
.hero__cans .can-img:nth-child(2) {
  height: 380px;
  transform: translateY(-24px);
  animation: float 6s ease-in-out infinite;
}
.hero__cans .can-img:nth-child(3) { height: 330px; }
@media (max-width: 959px) {
  .hero__cans { justify-content: center; }
  .hero__cans .can-img:nth-child(1) { height: 154px; }
  .hero__cans .can-img:nth-child(2) { height: 209px; }
  .hero__cans .can-img:nth-child(3) { height: 182px; }
}

/* ---- Trust strip -------------------------------------------------------- */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  padding-block: 1.4rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; color: var(--red); flex: none; }
@media (max-width: 719px) {
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; }
  .trust-item { white-space: normal; }
}

/* ---- Sections ----------------------------------------------------------- */
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #f5f0ec; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(245,240,236,.72); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.9rem 2rem;
  margin-bottom: 3rem;
}
.section-head .kicker { width: 100%; }

.section-head__note {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 719px) {
  .section-head__note { width: 100%; margin-left: 0; }
}

/* kicker — small uppercase red section intro label */
.kicker {
  font-size: 12.5px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}
.kicker--light { color: var(--red); }

.lead {
  font-size: clamp(1.15rem, 1.1rem + .3vw, 1.25rem);
  line-height: 1.5;
  color: var(--muted);
  max-width: 60ch;
}
.lead--light { color: rgba(245,240,236,.78); }

/* ---- Product cards ------------------------------------------------------ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 719px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card__media {
  background: var(--bg-alt);
  padding: 1.75rem;
  display: grid;
  place-items: center;
}
.product-card__media img { max-height: 240px; width: auto; }
.product-card__body { padding: 1.5rem; display: grid; gap: 0.8rem; align-content: start; }
.tag {
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.product-card__body h3 { font-size: 1.35rem; }
.product-card__body p { color: var(--muted); font-size: 0.95rem; }
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 0.2rem;
}
.product-card__link .btn__arrow,
.product-card__link span:last-child { transition: transform 0.22s var(--ease); }
.product-card:hover .product-card__link .btn__arrow,
.product-card:hover .product-card__link span:last-child { transform: translateX(0.3em); }

/* chips — small pill data tags */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32em 0.85em;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* ---- Industries --------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 859px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 519px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}
.industry-tile__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  color: var(--red);
}
.industry-tile__icon svg { width: 22px; height: 22px; }
.industry-tile p { color: var(--muted); font-size: 0.95rem; }

/* ---- Features (borderless icon cells) ----------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem 2.5rem;
}
@media (max-width: 759px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { display: grid; gap: 0.8rem; align-content: start; }
.feature__icon { color: var(--red); }
.feature__icon svg { width: 40px; height: 40px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* ---- Stats band --------------------------------------------------------- */
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 719px) { .stats__inner { grid-template-columns: 1fr 1fr; } }
.stat { display: grid; gap: 0.3rem; }
.stat__num {
  font-stretch: 112%;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
}
.stat__label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,236,.6);
}

/* ---- Steps -------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 759px) { .steps { grid-template-columns: 1fr; } }
.step { display: grid; gap: 0.8rem; align-content: start; }
.step__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}
.step p { color: var(--muted); font-size: 0.98rem; }
.section--dark .step p { color: rgba(245,240,236,.72); }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { display: grid; }
details.faq__item { border-top: 1px solid var(--line); }
details.faq__item:last-child { border-bottom: 1px solid var(--line); }
details.faq__item summary {
  position: relative;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink);
  padding: 1.25rem 48px 1.25rem 0;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
details.faq__item summary::-webkit-details-marker { display: none; }
details.faq__item summary:hover { color: var(--red); }
details.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
  transition: transform 0.25s var(--ease);
}
details.faq__item[open] summary::after {
  /* + rotated 45° reads as × */
  transform: translateY(-50%) rotate(45deg);
}
.faq__answer p {
  color: var(--muted);
  padding-bottom: 1.25rem;
  max-width: 68ch;
}

/* ---- CTA split ---------------------------------------------------------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 759px) { .cta-split { grid-template-columns: 1fr; } }
.cta-panel--light,
.cta-panel--dark {
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: start;
}
.cta-panel--light { background: var(--bg-alt); border: 1px solid var(--line); }
.cta-panel--light p { color: var(--muted); }
.cta-panel--dark { background: var(--dark); color: #f5f0ec; }
.cta-panel--dark h3 { color: #fff; }
.cta-panel--dark p { color: rgba(245,240,236,.72); }

/* ---- Quick-link button row (contact page) ------------------------------- */
.quick-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---- Sub-page hero ------------------------------------------------------ */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); margin-top: 0.9rem; }
.page-hero .lead { margin-top: 1rem; }
.page-hero .kicker { display: block; margin-top: 0.9rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--faint); }

/* ---- Product detail ----------------------------------------------------- */
.pd {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 879px) { .pd { grid-template-columns: 1fr; } }
.pd__media {
  position: sticky;
  top: 6rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 3rem);
  display: grid;
  place-items: center;
}
.pd__media img { max-height: 460px; width: auto; }
@media (max-width: 879px) { .pd__media { position: static; } }
.pd__body { display: grid; gap: 2.25rem; }
.pd__section { display: grid; gap: 0.9rem; }
.pd__label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
}
.pd__section > p { color: var(--muted); }

/* properties list — red ✓ markers */
.props li {
  position: relative;
  padding: .5rem 0 .5rem 1.5rem;
  color: var(--muted);
}
.props li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .5rem;
  color: var(--red);
  font-weight: 800;
}
.section--dark .props li { color: rgba(245,240,236,.8); }

/* spec table — mono labels, hairline rows, no zebra */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  text-align: left;
  vertical-align: top;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  width: 38%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  padding-right: 1.25rem;
}
.spec-table td { color: var(--ink); }

/* WHMIS hazard pictograms */
.hazards { display: flex; flex-wrap: wrap; gap: 1.25rem 1.5rem; }
.hazard { display: grid; justify-items: center; gap: 0.5rem; }
.hazard img { width: 64px; height: 64px; object-fit: contain; }
.hazard__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--faint);
  text-align: center;
}

.pd__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 1.5rem;
}

/* ---- Forms -------------------------------------------------------------- */
.form { max-width: 640px; display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 559px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: .8rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,35,26,.15);
}
.field textarea { min-height: 7rem; resize: vertical; }
.form__note { font-size: 13.5px; color: var(--faint); }

/* dark-section form variant */
.section--dark .field label { color: rgba(245,240,236,.85); }
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.section--dark .field select option { color: #1d1713; background: #fff; }
.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder { color: rgba(245,240,236,.45); }
.section--dark .field input:focus,
.section--dark .field select:focus,
.section--dark .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,35,26,.25);
}
.section--dark .form__note { color: rgba(245,240,236,.5); }

/* ---- Contact info cards ------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 759px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: grid;
  gap: 0.35rem;
}
.info-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
}
.info-card__value { font-size: 1.1rem; font-weight: 500; }
.info-card__value a { transition: color 0.2s var(--ease); }
.info-card__value a:hover { color: var(--red); }

/* ---- Orders portal cards ------------------------------------------------ */
.portal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 559px) { .portal-cards { grid-template-columns: 1fr; } }
.portal-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  justify-items: start;
}
.portal-card p { color: var(--muted); font-size: 0.95rem; }

/* ---- Prose & misc ------------------------------------------------------- */
.prose { max-width: 68ch; display: grid; gap: 1.3rem; }
.prose h2 { font-size: 1.5rem; font-weight: 800; margin-top: 1rem; }
.prose p { color: var(--muted); }

.poster {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.text-link {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid rgba(226,35,26,.35);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.text-link:hover { color: var(--red-dark); border-bottom-color: var(--red); }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--dark); color: #f5f0ec; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
@media (max-width: 879px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 519px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__heading {
  font-size: 12.5px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer ul { display: grid; gap: 0.6rem; }
.footer a { color: rgba(245,240,236,.72); transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--red); }
.footer__brand .brand { font-size: 1.5rem; }
.footer__brand .brand__zero { color: #fff; }
.footer__brand p {
  margin-top: 0.9rem;
  max-width: 32ch;
  font-size: 0.92rem;
  color: rgba(245,240,236,.62);
}
.footer__bottom {
  border-top: 1px solid rgba(245,240,236,.12);
  padding-block: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,236,.5);
}

/* ---- WhatsApp floating button (kept as-is) ------------------------------ */
.wa-fab {
  position: fixed;
  right: clamp(0.9rem, 0.6rem + 1vw, 1.4rem);
  bottom: clamp(0.9rem, 0.6rem + 1vw, 1.4rem);
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(21,17,14,0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(21,17,14,0.34); }
.wa-fab:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.wa-fab::after {
  /* small signal-red ping dot, the brand's only red accent here */
  content: "";
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px #25d366;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.6deg); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

/* ---- Scroll reveal ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* no-JS / reduced-motion fallbacks: content must never stay hidden */
.no-js .reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: none; }
  .wa-fab:hover { transform: none; }
  .wa-fab::after { animation: none; }
  .hero__cans .can-img { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
