/* ==========================================================================
   THE TOOL STORE — Kirrawee
   Industrial Workshop design system
   Oswald (display) + Barlow (body) · steel-blue / hi-vis gold / concrete
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --navy:       #0d213a;
  --navy-2:     #122c4d;
  --navy-3:     #1b3a63;
  --blue:       #1f5fa8;   /* toolbox blue / links */
  --gold:       #fdb913;   /* hi-vis CTA */
  --gold-dark:  #e0a200;
  --ink:        #15181d;   /* near-black text */
  --steel:      #56616f;   /* muted text */
  --concrete:   #eef1f5;   /* light band */
  --concrete-2: #e1e7ee;
  --line:       #d3dae2;
  --green:      #1f9d52;   /* trust ticks */
  --white:      #ffffff;

  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 3px;
  --shadow-hard: 6px 6px 0 var(--navy);
  --shadow-soft: 0 10px 30px -12px rgba(13, 33, 58, .35);
  --hazard: repeating-linear-gradient(-45deg, var(--gold) 0 14px, var(--ink) 14px 28px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 1.6rem + 4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); }
p { color: var(--steel); }
strong { color: var(--ink); font-weight: 600; }
.lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--ink); font-weight: 400; }

/* Section kicker: gold label with rule */
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  color: #806300; /* AA-accessible gold on light backgrounds (>=4.5:1); bright gold kept on dark via .on-dark */
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--gold);
}
.on-dark .kicker { color: var(--gold); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p { color: #b8c6da; }

/* ---------- Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.2rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.4rem, 1.6rem + 3vw, 4rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 3vw, 3rem); }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: .9rem; }
.center { text-align: center; }
.center .kicker { justify-content: center; }
.center .section-head { margin-inline: auto; }

.bg-navy { background: var(--navy); position: relative; }
.bg-concrete { background: var(--concrete); }
.bg-steel-tex {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(31,95,168,.35), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hazard stripe motif ----------------------------------------- */
.hazard { height: 10px; background: var(--hazard); background-size: 39.6px 39.6px; }
.hazard--thin { height: 6px; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.02rem; line-height: 1;
  padding: .95rem 1.6rem; border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink); cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s;
  text-decoration: none;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn .ico { width: 1.1em; height: 1.1em; }
.btn--lg { font-size: 1.15rem; padding: 1.1rem 2rem; }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: #fff; box-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--blue { --bg: var(--blue); --fg: #fff; border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Utility (top) bar ------------------------------------------- */
.util-bar {
  background: var(--navy); color: #cdd9ea;
  font-size: .85rem; letter-spacing: .01em;
}
.util-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .5rem; }
.util-bar a { color: #cdd9ea; }
.util-bar strong { color: var(--gold); font-weight: 600; }
.util-bar .util-right { display: inline-flex; align-items: center; gap: .45rem; }
@media (max-width: 800px) { .util-bar .util-hours { display: none; } }
@media (max-width: 520px) { .util-bar { display: none; } }

/* ---------- Header / nav ------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.site-header .bar { display: flex; align-items: center; gap: 1.2rem; padding-block: .7rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(132px, 12vw, 168px); height: auto; }
.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: clamp(.4rem, 1.4vw, 1.6rem); }
.nav a {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  letter-spacing: .04em; color: var(--navy); font-size: 1rem; padding: .5rem .25rem;
  position: relative;
}
.nav a:hover { color: var(--blue); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--blue); }
.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--gold);
}
.header-cta { flex: 0 0 auto; }
.header-cta .btn { padding: .7rem 1.1rem; font-size: .98rem; box-shadow: 3px 3px 0 var(--ink); }
.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 960px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--navy); padding: 5rem 1.6rem 2rem; transform: translateX(100%);
    transition: transform .3s var(--ease); box-shadow: -20px 0 40px rgba(0,0,0,.3); z-index: 120;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav a { color: #fff; font-size: 1.3rem; padding: .85rem .4rem; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav a[aria-current="page"] { color: var(--gold); }
  .nav a::after { display: none !important; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 48px; height: 44px; background: var(--navy); border: 2px solid var(--navy);
    border-radius: var(--radius); padding: 0 11px; z-index: 130;
  }
  .nav-toggle span { height: 3px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header-cta .label-long { display: none; }
  .header-cta { margin-left: auto; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(13,33,58,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 110; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}
@media (max-width: 420px) {
  .header-cta .btn .ico { margin: 0; }
  .header-cta .btn span { display: none; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero::after { /* hazard strip at very bottom */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: var(--hazard); background-size: 39.6px 39.6px; z-index: 3;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(2.6rem, 2rem + 5vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--gold); display: block; }
.hero .lead { color: #c8d6e8; margin-top: 1.1rem; max-width: 42ch; }
.hero .btn-row { margin-top: 1.8rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.8rem; }
.hero-points li { display: inline-flex; align-items: center; gap: .5rem; color: #d7e2f0; font-weight: 500; }
.hero-points .tick { color: var(--gold); flex: 0 0 auto; }

.hero-figure { position: relative; }
.hero-figure img { width: 100%; border: 4px solid #fff; border-radius: var(--radius); box-shadow: 14px 14px 0 rgba(0,0,0,.35); }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; text-align: center;
  width: 116px; height: 116px; border-radius: 50%; display: grid; place-content: center; line-height: .95;
  border: 4px solid var(--ink); box-shadow: var(--shadow-soft); transform: rotate(-8deg);
}
.hero-badge b { font-size: 2.1rem; display: block; }
.hero-badge small { font-size: .68rem; letter-spacing: .08em; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; margin-top: 1rem; }
}

/* ---------- Trust bar ---------------------------------------------------- */
.trust-bar { background: var(--ink); color: #fff; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem clamp(1rem, 4vw, 3rem); padding-block: 1rem; text-align: center; }
.trust-bar .item { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 500; font-size: clamp(.85rem, .7rem + .5vw, 1.05rem); }
.trust-bar .item svg { color: var(--gold); flex: 0 0 auto; }

/* ---------- Cards: services --------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--gold); }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(13,33,58,.5); }
.card .card-body { padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.card .ico-badge {
  width: 60px; height: 60px; display: grid; place-content: center; border-radius: var(--radius);
  background: var(--navy); color: var(--gold); margin-bottom: 1.1rem;
}
.card .ico-badge svg { width: 32px; height: 32px; }
.card h3 { color: var(--navy); margin-bottom: .5rem; }
.card p { margin-bottom: 1.1rem; }
.card .card-link {
  margin-top: auto; font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  letter-spacing: .05em; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem;
}
.card .card-link svg { transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* feature list with ticks */
.ticklist li { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; color: var(--ink); }
.ticklist svg { color: var(--green); flex: 0 0 auto; margin-top: .25rem; }

/* ---------- Split feature (image + text) -------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); border: 3px solid #fff; box-shadow: var(--shadow-soft); }
.split-media { position: relative; }
.split-media::before {
  content: ""; position: absolute; inset: auto auto -14px -14px; width: 60%; height: 70%;
  background: var(--hazard); background-size: 39.6px 39.6px; z-index: -1; border-radius: var(--radius);
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .split-media { max-width: 520px; }
}

/* ---------- Steps -------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.4rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.2rem; font-family: var(--font-display); font-weight: 700;
  font-size: 2.6rem; color: var(--gold); line-height: 1;
  -webkit-text-stroke: 1px var(--gold-dark);
}
.step h3 { color: var(--navy); margin-bottom: .3rem; }

/* ---------- Brand grid --------------------------------------------------- */
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; background: var(--line); border: 5px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.brand-grid .brand-cell {
  background: #fff; aspect-ratio: 1 / 1; overflow: hidden; position: relative;
}
.brand-grid .brand-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s var(--ease); }
.brand-grid .brand-cell::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--gold); transition: box-shadow .2s var(--ease); pointer-events: none; }
.brand-grid .brand-cell:hover img { transform: scale(1.06); }
.brand-grid .brand-cell:hover::after { box-shadow: inset 0 0 0 4px var(--gold); }
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
/* Featured 10-brand grid (Home + Repairs): 5 across, then 2 — both divide 10 cleanly. */
.brand-grid.brand-grid--home { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) { .brand-grid.brand-grid--home { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Hours + map -------------------------------------------------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .7rem .2rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-family: var(--font-body); font-weight: 600; color: var(--ink); text-transform: none; }
.hours-table td { color: var(--steel); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--blue); font-weight: 700; }
.hours-table .closed { color: #b23b3b; }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 340px; border-radius: var(--radius); filter: grayscale(.15); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: clamp(1.4rem, 3vw, 2rem); }
.info-row { display: flex; gap: .9rem; padding: .65rem 0; align-items: flex-start; }
.info-row svg { color: var(--blue); flex: 0 0 auto; margin-top: .2rem; }
.info-row a { color: var(--ink); font-weight: 500; }
.info-row .lbl { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--steel); }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2.5rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8d6e8; margin-top: .5rem; max-width: 50ch; }
@media (max-width: 760px) { .cta-band .container { grid-template-columns: 1fr; } }

/* ---------- Forms -------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: clamp(1.5rem, 4vw, 2.6rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 500; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; color: var(--ink);
  background: var(--concrete); border: 2px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(31,95,168,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--steel); margin-top: .4rem; }
.cf-turnstile { margin: .2rem 0 1.1rem; min-height: 65px; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius); font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e6f6ec; color: #1c6b39; border: 1px solid #b6e3c6; }
.form-status.err { background: #fdeaea; color: #a32424; border: 1px solid #f3c2c2; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--navy); color: #b8c6da; }
.site-footer p { color: #b8c6da; }
.site-footer .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: clamp(1.6rem, 4vw, 3rem); padding-block: clamp(2.6rem, 4vw, 3.6rem); }
.site-footer h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; letter-spacing: .06em; }
.site-footer a { color: #b8c6da; }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.site-footer .foot-brand img { width: 170px; background: #fff; padding: .6rem .8rem; border-radius: var(--radius); margin-bottom: 1rem; }
.site-footer .foot-links li, .site-footer .foot-contact li { padding: .32rem 0; }
.site-footer .foot-contact svg { color: var(--gold); margin-right: .5rem; vertical-align: -3px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.2rem; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
.foot-bottom .sec-note { color: var(--gold); }
@media (max-width: 760px) { .site-footer .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile call bar --------------------------------------------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 0; box-shadow: 0 -8px 24px rgba(0,0,0,.18); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--font-display); text-transform: uppercase; font-weight: 600; letter-spacing: .04em; font-size: 1.05rem; }
.callbar .call { background: var(--gold); color: var(--ink); }
.callbar .dir { background: var(--navy); color: #fff; }
.callbar a:hover { text-decoration: none; }
@media (max-width: 700px) {
  .callbar { display: grid; }
  body { padding-bottom: 56px; }
}

/* ---------- Breadcrumb / page hero -------------------------------------- */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--hazard); background-size: 39.6px 39.6px; }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(2.4rem, 2rem + 4vw, 4.5rem); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lead { color: #c8d6e8; margin-top: 1rem; max-width: 56ch; }
.crumbs { font-size: .85rem; color: #9fb3cc; margin-bottom: 1rem; letter-spacing: .03em; }
.crumbs a { color: #9fb3cc; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Reveal animations (progressive enhancement) ------------------ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }

/* ---------- A11y helpers ------------------------------------------------- */
.skip-link { position: absolute; left: .5rem; top: -3rem; background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 200; transition: top .2s; }
.skip-link:focus { top: .5rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Misc helpers ------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.tac { text-align: center; }
.maxw-prose { max-width: 65ch; }
.divider-haz { height: 8px; background: var(--hazard); background-size: 39.6px 39.6px; }
