/* =========================================================================
   PPE AND SAFETY WEAR — DESIGN SYSTEM
   Palette grounded in real hazard signage: ink + earned safety yellow,
   steel blue-grey, signal orange. Diagonal hazard stripe is the signature
   motif, borrowed from real caution-tape/boundary marking, used sparingly.
   ========================================================================= */

:root {
  /* ---- Color tokens ---- */
  --ink: #15181B;
  --ink-soft: #20252B;
  --ink-softer: #2B323A;
  --steel: #3C4A54;
  --steel-light: #5C6E79;
  --safety-yellow: #F5A300;
  --safety-yellow-dim: #C98600;
  --safety-yellow-pale: #FCE8C2;
  --signal-orange: #D8481A;
  --signal-orange-dim: #B23A13;
  --paper: #EFF1ED;
  --paper-white: #FAFAF9;
  --concrete: #C7CCC5;
  --concrete-dark: #8D948B;
  --text-body: #23272B;
  --text-muted: #5B655F;
  --text-on-dark: #F4F5F1;
  --text-muted-dark: #ADB6AF;
  --line: #DADFD8;
  --line-dark: #3A4148;
  --success: #2E7D4F;

  /* ---- Type ---- */
  --font-display: "Archivo Black", "Archivo", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* ---- Layout ---- */
  --container: 1220px;
  --container-narrow: 820px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow-card: 0 1px 2px rgba(21,24,27,0.06), 0 8px 24px -12px rgba(21,24,27,0.18);
  --shadow-pop: 0 12px 32px -8px rgba(21,24,27,0.28);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--paper-white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
svg { display: block; }

@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;
    scroll-behavior: auto !important;
  }
}

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

/* ---- Typography scale ---- */
.h1, h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  text-transform: uppercase;
}
.h2, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
}
.h3, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  text-transform: uppercase;
}
.h4, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}
p { color: var(--text-body); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 62ch;
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--signal-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--signal-orange);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--safety-yellow); }
.eyebrow.on-dark::before { background: var(--safety-yellow); }
.mono { font-family: var(--font-mono); }

/* ---- Containers / sections ---- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
}
.section-light { background: var(--paper-white); }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-dark p { color: var(--text-muted-dark); }
.section-dark .h2, .section-dark h2 { color: var(--text-on-dark); }
.section-steel { background: var(--steel); color: var(--text-on-dark); }
.section-steel p { color: #C9D2D6; }

.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .h2 { margin-top: 10px; }
.section-head .lede { margin-top: 16px; }

/* ---- Signature element: diagonal hazard stripe ---- */
.stripe-rule {
  height: 10px;
  width: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--safety-yellow) 0 18px,
    var(--ink) 18px 36px
  );
}
.stripe-rule.thin { height: 6px; }
.stripe-corner {
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--safety-yellow) 0 14px,
    transparent 14px 28px
  );
  opacity: 0.9;
  pointer-events: none;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.stripe-flag {
  position: absolute;
  top: 14px; left: -6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--safety-yellow);
  padding: 4px 10px 4px 12px;
  box-shadow: var(--shadow-card);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--safety-yellow); color: var(--ink); }
.btn-primary:hover { background: #FFB61C; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--text-on-dark); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline.on-dark { color: var(--text-on-dark); }
.btn-outline.on-dark:hover { background: rgba(244,245,241,0.08); }
.btn-outline.on-light { color: var(--ink); border-color: var(--ink); }
.btn-outline.on-light:hover { background: var(--ink); color: var(--text-on-dark); }
.btn-whatsapp { background: #25D366; color: #06210F; }
.btn-whatsapp:hover { background: #2FEB77; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--text-on-dark); }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  background: var(--safety-yellow);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: grid; place-items: center;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-word { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.05; letter-spacing: -0.01em; text-transform: uppercase; }
.brand-word span { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--safety-yellow); font-weight: 600; margin-top: 3px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--text-muted-dark);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-on-dark); border-color: var(--safety-yellow); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--text-on-dark); font-family: var(--font-mono); font-size: 0.85rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--safety-yellow); }
.nav-toggle {
  display: none; background: none; border: none; color: var(--text-on-dark);
  width: 42px; height: 42px; place-items: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--ink);
  padding: 28px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-size: 1.1rem; font-weight: 600; color: var(--text-on-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.005em;
}
.mobile-nav .mobile-contact { margin-top: 24px; display: grid; gap: 12px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: grid; }
}

/* ---- Trust bar ---- */
.trust-bar { background: var(--steel); border-top: 1px solid rgba(255,255,255,0.08); }
.trust-bar .wrap {
  display: flex; flex-wrap: wrap; gap: 10px 34px;
  padding: 16px 24px; justify-content: space-between;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-on-dark); font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.trust-item svg { width: 17px; height: 17px; color: var(--safety-yellow); flex: none; }

/* ---- Hero ---- */
.hero { position: relative; background: var(--ink); color: var(--text-on-dark); overflow: hidden; padding: 84px 0 76px; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--text-on-dark); margin-top: 16px; }
.hero h1 mark { background: none; color: var(--safety-yellow); }
.hero .lede { color: var(--text-muted-dark); margin-top: 20px; }
.hero .btn-row { margin-top: 32px; }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-pop); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/10; order: -1; }
}

/* Simpler page hero for interior pages */
.page-hero { position: relative; background: var(--ink); color: var(--text-on-dark); padding: 56px 0 44px; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .h1 { margin-top: 12px; }
.page-hero .lede { margin-top: 14px; color: var(--text-muted-dark); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-muted-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--safety-yellow); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--safety-yellow); }

/* ---- Category / product cards ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.cat-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--concrete); }
.cat-cap { height: 6px; background: var(--safety-yellow); }
.cat-card.tone-steel .cat-cap { background: var(--steel); }
.cat-card.tone-orange .cat-cap { background: var(--signal-orange); }
.cat-card.tone-ink .cat-cap { background: var(--ink); }
.cat-body { padding: 28px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.cat-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--paper); display: grid; place-items: center; margin-bottom: 18px;
}
.cat-icon svg { width: 28px; height: 28px; color: var(--ink); }
.cat-card h3 { margin-bottom: 10px; }
.cat-body p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.cat-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); }
.cat-link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.cat-card:hover .cat-link svg { transform: translateX(3px); }

.product-tile {
  background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; position: relative;
}
.product-tile .cat-icon { background: var(--paper); }
.product-tile h4 { margin-bottom: 8px; }
.product-tile p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--paper); border: 1px solid var(--line); color: var(--steel);
  padding: 5px 9px; border-radius: 100px; font-weight: 600;
}
.product-tile.featured { border-color: var(--safety-yellow); }
.featured-flag {
  position: absolute; top: -1px; left: 20px;
  background: var(--safety-yellow); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

/* ---- Image banner with photo ---- */
.photo-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.photo-banner img { width: 100%; object-fit: cover; }
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(21,24,27,0.86), transparent);
  color: var(--text-on-dark); padding: 22px 24px 16px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em;
}

/* ---- Feature list ---- */
.feature-list { display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; }
.feature-list svg { width: 20px; height: 20px; color: var(--safety-yellow); flex: none; margin-top: 2px; }
.feature-list.on-light svg { color: var(--signal-orange); }

/* ---- Stat strip ---- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 780px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { border-left: 3px solid var(--safety-yellow); padding-left: 16px; }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; text-transform: none; }
.stat .label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted-dark); margin-top: 8px; display: block; }
.section-light .stat .label, .section-paper .stat .label { color: var(--text-muted); }

/* ---- Industries / locations ---- */
.industry-card {
  background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .15s ease, transform .15s ease;
}
.industry-card:hover { border-color: var(--steel); transform: translateY(-2px); }
.industry-card .cat-icon { margin-bottom: 0; flex: none; width: 46px; height: 46px; }
.industry-card .cat-icon svg { width: 24px; height: 24px; }
.industry-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 6px; }

.province-card {
  background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 24px;
}
.province-card h3 { display: flex; align-items: center; gap: 10px; }
.province-card h3 svg { width: 20px; height: 20px; color: var(--signal-orange); }
.province-card ul { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.province-card li {
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--steel);
  background: var(--paper); border: 1px solid var(--line); padding: 5px 10px; border-radius: 4px;
}

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.section-dark .faq-item { border-color: var(--line-dark); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 2px; font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: inherit;
}
.faq-q svg { width: 20px; height: 20px; flex: none; transition: transform .2s ease; color: var(--signal-orange); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 2px 22px; color: var(--text-muted); max-width: 68ch; }
.section-dark .faq-a p { color: var(--text-muted-dark); }

/* ---- CTA band ---- */
.cta-band { background: var(--safety-yellow); color: var(--ink); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 52px 0; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--ink); opacity: 0.78; margin-top: 8px; max-width: 50ch; }

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel); font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px;
  background: var(--paper-white); color: var(--text-body);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--signal-orange); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: var(--text-muted-dark); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 44px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--text-on-dark); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer a { font-size: 0.89rem; transition: color .15s ease; }
.footer a:hover { color: var(--safety-yellow); }
.footer .brand { margin-bottom: 16px; }
.footer-about p { font-size: 0.89rem; max-width: 32ch; }
.footer-contact { display: grid; gap: 10px; margin-top: 16px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--safety-yellow); flex: none; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding: 22px 0 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
}
.group-strip { border-top: 1px solid var(--line-dark); padding: 26px 0; }
.group-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.group-strip .label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted-dark); }
.group-strip a { font-family: var(--font-mono); font-size: 0.76rem; color: var(--concrete); border: 1px solid var(--line-dark); padding: 6px 12px; border-radius: 100px; transition: border-color .15s ease, color .15s ease; }
.group-strip a:hover { border-color: var(--safety-yellow); color: var(--safety-yellow); }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: var(--shadow-pop);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---- Misc ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.divider-space { height: 1px; background: var(--line); }
.section-dark .divider-space { background: var(--line-dark); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { font-family: var(--font-mono); font-size: 0.78rem; background: var(--paper); border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px; color: var(--steel); font-weight: 600; }
.center-text { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--safety-yellow); color: var(--ink);
  padding: 12px 18px; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- Scroll reveal (progressive enhancement — safe no-op without JS) ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
