/* ============================================================
   JUKE — shared stylesheet
   Palette: tailoring navy + brass, warm paper neutrals
   Type: Archivo (display) + Inter (body)
   ============================================================ */

:root {
  --ink:        #15233B;
  --ink-2:      #1E3050;
  --slate:      #46536B;
  --brass:      #BE9A3E;
  --brass-soft: #E4C877;
  --paper:      #F6F4EF;
  --paper-2:    #FBFAF7;
  --line:       #DED9CF;
  --text:       #1B1D22;
  --muted:      #5C6472;
  --white:      #FFFFFF;

  --uniforms:   #15233B;
  --apparels:   #7A4A2B;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(21,35,59,.06), 0 4px 14px rgba(21,35,59,.05);
  --shadow-md: 0 10px 40px rgba(21,35,59,.10);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 0;
  border-top: 2px dashed var(--brass);
  opacity: .8;
}

/* stitch divider */
.stitch {
  height: 0;
  border-top: 2px dashed var(--line);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brass); color: var(--ink); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--brass-soft); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .55s var(--ease);
}
.btn-primary:hover::after { left: 130%; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper); }
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,244,239,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--brass-soft);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.03em;
}
.brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-name span { color: var(--brass); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  padding: 9px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(21,35,59,.05); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  background: var(--brass); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 8px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 16px 8px 0; text-align: center; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(190,154,62,.14), transparent 60%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  overflow: hidden;
}
.hero-inner {
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 74px);
  letter-spacing: -0.03em;
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero signature illustration */
.hero-art {
  position: absolute;
  top: 50%;
  right: clamp(-40px, 2vw, 40px);
  transform: translateY(-50%);
  width: clamp(300px, 34vw, 460px);
  opacity: .92;
  pointer-events: none;
}
.hero-art .fold { animation: floaty 7s ease-in-out infinite; transform-origin: center; }
.hero-art .fold2 { animation: floaty 7s ease-in-out infinite; animation-delay: -3.2s; transform-origin: center; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 980px) { .hero-art { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-art .fold, .hero-art .fold2 { animation: none; } }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 32px;
  border-top: 2px dashed var(--line);
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stats .stat span { font-size: 14px; color: var(--muted); }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 16px 0 14px;
}
.section-head p { color: var(--slate); font-size: 18px; }
.section-dark {
  background: var(--ink);
  color: #D8DEE9;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-head p { color: #AEB8C9; }

/* ---------- Division split (signature) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-panel {
  position: relative;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
  transition: flex .4s var(--ease);
}
.split-panel::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
}
.split-panel::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  transition: background .4s var(--ease);
}
.panel-uniforms::before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 18px),
    radial-gradient(120% 90% at 100% 0%, rgba(228,200,119,.14), transparent 55%),
    linear-gradient(160deg, #1E3050, #15233B 70%);
}
.panel-apparels::before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    radial-gradient(120% 90% at 100% 0%, rgba(228,200,119,.10), transparent 55%),
    linear-gradient(160deg, #8A5433, #5E3A24 70%);
}
.split-panel { transition: transform .45s var(--ease); }
.split-panel:hover { transform: scale(1.012); }
.split-panel:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.4)); }
.split-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2em;
  opacity: .7;
}
.split-panel h3 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 10px 0 12px;
}
.split-panel p { color: rgba(255,255,255,.82); max-width: 40ch; margin-bottom: 22px; }
.split-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.split-tags span {
  font-size: 13px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
}
.split-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brass-soft);
}
.split-link .arw { transition: transform .25s var(--ease); }
.split-panel:hover .split-link .arw { transform: translateX(6px); }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* product category tiles */
.cat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.cat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 150px;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat .ic {
  width: 44px; height: 44px; color: var(--brass);
}
.cat .ic svg { width: 40px; height: 40px; }
.cat h4 { font-family: 'Archivo', sans-serif; font-size: 17px; color: var(--ink); font-weight: 700; }
.cat p { font-size: 13.5px; color: var(--muted); margin: 0; }
.cat.on-dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.cat.on-dark h4 { color: var(--white); }
.cat.on-dark p { color: #AEB8C9; }
.cat.on-dark .ic { color: var(--brass-soft); }

/* feature list */
.features { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature .fnum {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  color: var(--brass); font-size: 15px; letter-spacing: .1em;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 2px dashed var(--line);
}
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--slate); font-size: 15.5px; margin: 0; }
.section-dark .feature p { color: #AEB8C9; }
.section-dark .feature .fnum { border-color: rgba(255,255,255,.18); color: var(--brass-soft); }

/* industries strip */
.ind-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
.ind {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink);
}
.ind svg { width: 22px; height: 22px; color: var(--brass); flex: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 15% 120%, rgba(190,154,62,.22), transparent 60%),
    var(--ink);
  color: var(--white);
  border-radius: 6px;
  padding: clamp(40px, 6vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.6vw, 40px); max-width: 18ch; }
.cta-band p { color: #C6CEDC; margin-top: 10px; max-width: 46ch; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); counter-reset: s; }
.step { position: relative; padding-top: 20px; border-top: 2px dashed var(--line); }
.step .sn {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 40px;
  color: var(--brass); line-height: 1; letter-spacing: -0.02em;
}
.step h3 { font-size: 19px; margin: 12px 0 8px; }
.step p { color: var(--slate); font-size: 15px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #AEB8C9; padding: 64px 0 28px; }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-mark { background: var(--brass); color: var(--ink); }
.footer-about { max-width: 34ch; margin-top: 16px; font-size: 15px; }
.footer-col h4 {
  color: var(--white); font-size: 14px; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px; font-family: 'Archivo', sans-serif;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #AEB8C9; font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--brass-soft); }
.footer-bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #8592A6;
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(190,154,62,.12), transparent 60%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 5.5vw, 58px); margin: 16px 0 16px; }
.page-hero p { color: var(--slate); font-size: 19px; max-width: 60ch; }
.crumbs { font-size: 13px; color: var(--muted); font-family: 'Archivo', sans-serif; letter-spacing: .04em; }
.crumbs a:hover { color: var(--brass); }

/* division banner */
.division-banner {
  color: var(--white);
  padding: clamp(48px,7vw,84px) 0;
  position: relative; isolation: isolate; overflow: hidden;
}
.division-banner.uniforms {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 22px), linear-gradient(160deg,#1E3050,#15233B 70%);
}
.division-banner.apparels {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 22px), linear-gradient(160deg,#8A5433,#5E3A24 70%);
}
.division-banner h1 { color: var(--white); }
.division-banner p { color: rgba(255,255,255,.85); }
.division-banner .eyebrow { color: var(--brass-soft); }
.division-banner .eyebrow::before { border-color: var(--brass-soft); }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: 14px; color: var(--ink); margin-bottom: 7px;
}
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--paper-2); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(190,154,62,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; padding: 16px 18px; border-radius: var(--radius);
  background: rgba(190,154,62,.12); border: 1px solid var(--brass);
  color: var(--ink); font-size: 15px; margin-bottom: 20px;
}
.form-success.show { display: block; }

.contact-info .info-item { display: flex; gap: 14px; padding: 20px 0; border-bottom: 2px dashed var(--line); }
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .ic {
  width: 44px; height: 44px; flex: none; border-radius: var(--radius);
  background: var(--ink); color: var(--brass-soft); display: grid; place-items: center;
}
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info h4 { font-family:'Archivo',sans-serif; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.contact-info p { margin: 0; color: var(--slate); font-size: 15px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: var(--white); isolation: isolate;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 20px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 16px);
}
.tile::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.6)); }
.tile-corner {
  position: absolute; top: 14px; right: 14px; width: 22px; height: 22px;
  border-top: 2px dashed rgba(255,255,255,.45); border-right: 2px dashed rgba(255,255,255,.45);
  opacity: .8;
}
.tile span { font-family:'Archivo',sans-serif; font-size: 12px; letter-spacing:.14em; text-transform: uppercase; color: var(--brass-soft); }
.tile h3 { color: var(--white); font-size: 20px; margin-top: 6px; }
.tile.tall { grid-row: span 2; min-height: 400px; }
.tile.g1 { background: linear-gradient(160deg,#22364f,#15233B); }
.tile.g2 { background: linear-gradient(160deg,#8A5433,#5E3A24); }
.tile.g3 { background: linear-gradient(160deg,#2c4a63,#1b3345); }
.tile.g4 { background: linear-gradient(160deg,#3a4a63,#232f45); }
.tile.g5 { background: linear-gradient(160deg,#9a6a3f,#6b4327); }
.tile.g6 { background: linear-gradient(160deg,#1E3050,#111c30); }

/* value cols */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px){ .two-col { grid-template-columns: 1fr; } }
.stat-panel {
  background: var(--ink); border-radius: 6px; padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.stat-panel .s strong { display:block; font-family:'Archivo',sans-serif; font-weight: 800; font-size: 38px; color: var(--brass-soft); letter-spacing:-.02em; }
.stat-panel .s span { color: #AEB8C9; font-size: 14px; }

/* reveal on scroll — only hides when JS is confirmed working (.js on <html>) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.lead { font-size: 19px; color: var(--slate); }
