/* juans.tools. Concept: the truck tailgate and the toolbelt loadout.
   Truck-bed black, hi-vis orange, galvanized steel. Saira Stencil One is display only
   (crate labels, headings); Barlow carries everything people read.
   Hi-vis orange is text only on black. On light grounds it is a fill under black text, or a mark. */

:root {
  --bed: #121314;
  --bed-2: #1a1c1e;
  --bed-3: #25282b;
  --rule: #3a3f43;
  --chalk: #f1efe8;
  --dim: #b7bcc0;
  --galv: #aab0b4;
  --galv-hi: #cdd2d5;
  --galv-lo: #6f777c;
  --hivis: #ff6b1a;
  --seam: #c94f0c;
  --paper: #f4f2ec;
  --paper-line: #d6d2c6;
  --ink: #121314;
  --ink-2: #464b4f;
  --focus: var(--hivis);
  --stencil: 'Saira Stencil One', 'Arial Black', Impact, sans-serif;
  --sans: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1180px;
  --spangle:
    conic-gradient(from 20deg at 30% 40%, rgba(255,255,255,.07), rgba(0,0,0,.03), rgba(255,255,255,.04), rgba(0,0,0,.035), rgba(255,255,255,.07)) 0 0 / 46px 38px,
    conic-gradient(from 115deg at 62% 55%, rgba(0,0,0,.035), rgba(255,255,255,.05), rgba(0,0,0,.025), rgba(255,255,255,.045), rgba(0,0,0,.035)) 0 0 / 71px 59px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bed);
  color: var(--chalk);
  font: 400 1.0625rem/1.6 var(--sans);
  overflow-x: hidden;
}
body > main { flex: 1 0 auto; }
img, svg { max-width: 100%; }
a { color: inherit; text-underline-offset: 3px; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 .5em; }
h1, h2 { font-family: var(--stencil); font-weight: 400; line-height: 1.04; letter-spacing: -.005em; }
h1 { font-size: clamp(2.25rem, 5.4vw, 4.5rem); text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); text-wrap: balance; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.fine { font-size: .95rem; color: var(--dim); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; padding: .8rem 1.1rem; background: var(--hivis); color: var(--ink); font-weight: 700; text-decoration: none; }
.skip-link:focus { left: 0; }

/* Masthead: the crate-end mark, then the nav */
.mast { background: var(--bed); border-bottom: 3px solid var(--hivis); position: sticky; top: 0; z-index: 30; }
.mast-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 26px; min-height: 70px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--chalk); text-decoration: none; }
.crate-mark { display: block; width: 112px; height: 38px; flex: none; }
.c-panel { fill: var(--hivis); }
.c-seam { stroke: var(--seam); stroke-width: 1; }
.c-guard { fill: var(--galv); stroke: var(--galv-lo); stroke-width: .6; }
.c-rivet { fill: var(--galv-lo); }
.c-ink { fill: var(--ink); }
.brand-tools { font: 700 1rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--galv); }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0 24px; margin-left: auto; font-weight: 600; }
.nav a { color: var(--chalk); text-decoration: none; padding: 12px 0; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--hivis); }
.mast-cta { order: 3; background: var(--hivis); color: var(--ink); font-weight: 700; text-decoration: none; padding: 11px 16px; }
.mast-cta:hover { background: var(--chalk); }
@media (max-width: 760px) {
  .mast { position: static; }
  .crate-mark { width: 100px; height: 34px; }
  .brand-tools { font-size: .9rem; }
  .mast-cta { order: 0; padding: 10px 14px; }
  .nav { order: 4; width: 100%; margin: 0; justify-content: space-between; gap: 0 14px; border-top: 1px solid var(--rule); }
}

/* Hero: the open tailgate, one crate per trade */
.hero { background: var(--bed); position: relative; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1.6px) 0 0 / 7px 7px; }
.hero-copy { display: grid; gap: 18px 56px; padding-top: 52px; padding-bottom: 34px; }
@media (min-width: 960px) { .hero-copy { grid-template-columns: 1.5fr 1fr; align-items: end; padding-top: 64px; } }
.hero h1 { margin: 0; }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--dim); margin: 0 0 22px; }
.hero-act p { margin: 12px 0 0; color: var(--dim); }
.crate-call { font: 600 .9rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--galv); margin: 0 0 12px; }
.crates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 560px) { .crates { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .crates { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; } }
.crate {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 124px; padding: 40px 12px 12px;
  background: var(--galv); color: var(--ink); text-decoration: none;
  border: 2px solid var(--galv-lo); border-bottom-width: 6px;
}
.crate::before {
  content: ""; position: absolute; top: 12px; left: 50%; width: 42%; height: 14px;
  transform: translateX(-50%); background: var(--bed); border-radius: 7px;
  box-shadow: inset 0 3px 0 rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.35);
}
.crate::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(transparent calc(55% - 1px), rgba(0,0,0,.2) calc(55% - 1px) 55%, transparent 55%),
    linear-gradient(var(--galv-lo), var(--galv-lo)) 0 0 / 14px 4px no-repeat,
    linear-gradient(var(--galv-lo), var(--galv-lo)) 0 0 / 4px 14px no-repeat,
    linear-gradient(var(--galv-lo), var(--galv-lo)) 100% 0 / 14px 4px no-repeat,
    linear-gradient(var(--galv-lo), var(--galv-lo)) 100% 0 / 4px 14px no-repeat,
    var(--spangle);
}
.crate-word { font: 400 clamp(1.05rem, 1.75vw, 1.3rem)/1 var(--stencil); text-transform: uppercase; letter-spacing: .02em; }
.crate-sub { font: 500 .9rem/1.25 var(--sans); margin-top: 6px; }
.crate:hover { background: var(--galv-hi); }
.crate[aria-current="true"] { background: var(--hivis); border-color: var(--seam); }
.crate:focus-visible { outline-color: var(--chalk); }
.gate { margin-top: -2px; background: var(--bed-3); }
.gate::before {
  content: ""; display: block; height: 12px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255,255,255,.55) 42% 50%, rgba(0,0,0,.28) 50% 58%, transparent 58%) 0 0 / 16px 12px,
    linear-gradient(45deg, transparent 0 42%, rgba(255,255,255,.4) 42% 50%, rgba(0,0,0,.28) 50% 58%, transparent 58%) 8px 6px / 16px 12px,
    var(--galv);
  border-bottom: 2px solid var(--galv-lo);
}
.gate-face { height: 62px; display: flex; align-items: center; justify-content: center; }
.gate-stamp { font: 400 2.1rem/1 var(--stencil); letter-spacing: .14em; color: #30353a; text-shadow: 0 1px 0 #40464b, 0 -1px 0 #141618; }
.bumper { position: relative; height: 30px; background: linear-gradient(#cfd4d7, #9aa1a5 50%, #6f777c); border-top: 2px solid #0b0c0d; }
.hitch { position: absolute; left: 50%; top: 5px; width: 38px; height: 22px; transform: translateX(-50%); background: var(--bed); border: 3px solid #50575c; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; font: 700 1.05rem/1.15 var(--sans); text-decoration: none; text-align: center; border: 2px solid transparent; cursor: pointer; }
.btn-hivis { background: var(--hivis); color: var(--ink); border-color: var(--hivis); }
.btn-hivis:hover { background: var(--chalk); border-color: var(--chalk); }
.btn-line { background: transparent; color: var(--chalk); border-color: var(--galv); }
.btn-line:hover { color: var(--hivis); border-color: var(--hivis); }
.btn-ink { background: var(--ink); color: var(--hivis); border-color: var(--ink); }
.btn-ink:hover { color: var(--chalk); }
.btn:disabled { opacity: .65; cursor: wait; }

/* The kit list: a checklist sheet clipped to the tailgate, with the tally beside it */
.kits { background: var(--bed-2); padding: 64px 0 56px; scroll-margin-top: 70px; }
.kits-intro { max-width: 48em; margin-bottom: 40px; }
.kits-intro p { color: var(--dim); font-size: 1.1rem; }
.kits-intro .fine { font-size: .98rem; }
.kit-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 1000px) { .kit-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; } }
.sheet { --focus: var(--ink); position: relative; background: var(--paper); color: var(--ink); padding: 34px 22px 26px; border-top: 8px solid var(--galv-lo); }
.sheet::before {
  content: ""; position: absolute; top: -24px; left: 50%; width: 132px; height: 30px; transform: translateX(-50%);
  background: linear-gradient(var(--galv-hi), var(--galv) 45%, var(--galv-lo)); border: 2px solid #50575c; border-radius: 8px 8px 3px 3px;
}
@media (min-width: 700px) { .sheet { padding: 38px 32px 30px; } }
.kit { scroll-margin-top: 90px; }
.kit-head { display: grid; gap: 6px 22px; padding-bottom: 14px; border-bottom: 3px solid var(--ink); }
@media (min-width: 700px) { .kit-head { grid-template-columns: auto minmax(0, 1fr); align-items: end; } }
.kit-word { font: 400 clamp(2rem, 4.4vw, 3.1rem)/1 var(--stencil); text-transform: uppercase; margin: 0; }
.kit-head p { margin: 0; color: var(--ink-2); max-width: 36em; }
.zone { margin-top: 26px; }
.zone-h { margin: 0; line-height: 1; }
.zone-h span {
  display: inline-block; background: var(--hivis); color: var(--ink);
  font: 400 1.3rem/1 var(--stencil); text-transform: uppercase; letter-spacing: .04em; padding: 8px 18px 7px;
  clip-path: polygon(0 6%, 4% 0, 96% 5%, 100% 0, 98.5% 50%, 100% 94%, 95% 100%, 5% 95%, 0 100%, 1.5% 50%);
}
.zone-sub { margin: 8px 0 4px; font-weight: 500; color: var(--ink-2); }
.items { list-style: none; margin: 0; padding: 0; display: grid; column-gap: 30px; }
@media (min-width: 760px) { .items { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.item label { display: grid; grid-template-columns: 26px minmax(0, 1fr) auto; gap: 3px 12px; align-items: start; min-height: 44px; padding: 12px 2px; border-bottom: 1px solid var(--paper-line); cursor: pointer; }
.item input {
  -webkit-appearance: none; appearance: none; margin: 0; padding: 0; width: 24px; height: 24px; min-height: 0; grid-row: span 2;
  border: 2px solid var(--ink); border-radius: 2px; background: #fff; cursor: pointer;
}
.item input:checked { background: var(--hivis) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23121314' stroke-width='3'/%3E%3C/svg%3E") center / 16px no-repeat; }
.i-name { font-weight: 600; line-height: 1.3; }
.i-lb { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; line-height: 1.3; }
.i-note { grid-column: 2 / 4; font-size: .94rem; line-height: 1.45; color: var(--ink-2); }
.i-side, .i-add { display: inline-block; margin-right: 7px; padding: 0 5px; font: 700 .72rem/1.55 var(--sans); letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--ink-2); vertical-align: 1px; }
.i-add { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.item:has(input:not(:checked)) .i-name { font-weight: 500; color: var(--ink-2); }

.tally { position: relative; background: var(--bed); border: 2px solid var(--rule); padding: 22px 22px 20px; scroll-margin-top: 90px; }
@media (min-width: 1000px) { .tally { position: sticky; top: 92px; } }
.tally-h { font: 400 1.45rem/1.1 var(--stencil); text-transform: uppercase; margin: 0 0 16px; }
.t-label { font: 700 .85rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--galv); margin: 0; }
.t-big { font: 700 3.3rem/1 var(--sans); font-variant-numeric: tabular-nums; margin: 6px 0 14px; }
.t-big span { font-size: 1.2rem; color: var(--dim); }
.rig { margin: 0 0 8px; }
.strap { position: relative; height: 16px; background: #2f3337; border-top: 1px solid #50575c; border-bottom: 1px solid #0b0c0d; }
.buckle { position: absolute; left: 50%; top: -5px; width: 36px; height: 24px; transform: translateX(-50%); border: 3px solid var(--galv); background: var(--bed); }
.bags { display: flex; justify-content: space-between; padding: 0 5%; }
.bag { position: relative; width: 40%; height: 92px; overflow: hidden; background: var(--bed-2); border: 2px solid var(--galv); border-top: 0; border-radius: 0 0 16px 16px; }
.bag::before { content: ""; position: absolute; z-index: 1; left: 6px; right: 6px; top: 16px; border-top: 2px dashed var(--galv-lo); }
.fill { position: absolute; left: 0; right: 0; bottom: 0; height: 0; background: var(--hivis); transition: height .25s ease; }
.bag-read { display: flex; justify-content: space-between; margin: 8px 0 18px; }
.bag-read p { width: 48%; margin: 0; text-align: center; font-weight: 600; line-height: 1.3; }
.bag-read span { display: block; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--galv); }
.t-field { display: block; font-weight: 600; margin: 0 0 6px; }
.t-hint { font-size: .92rem; color: var(--dim); margin: 6px 0 18px; }
.t-rows { margin: 0 0 18px; border-top: 1px solid var(--rule); }
.t-rows div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.t-rows dt { color: var(--dim); }
.t-rows dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
.t-actions { display: grid; gap: 10px; }
.t-status { min-height: 1.5em; margin: 12px 0 0; font-size: .95rem; color: var(--dim); }
/* Phone only: a running total while the checklist is on screen and the full tally is not */
.tally-mini {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  display: flex; justify-content: center; gap: 26px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--bed); border-top: 3px solid var(--hivis);
  font-weight: 600; font-variant-numeric: tabular-nums;
  transform: translateY(110%); visibility: hidden; transition: transform .2s ease, visibility .2s;
}
.tally-mini.is-on { transform: none; visibility: visible; }
.tally-mini b { font-size: 1.15rem; }
@media (min-width: 1000px) { .tally-mini { display: none; } }

/* Form fields */
input, select, textarea {
  width: 100%; min-height: 48px; padding: 10px 12px;
  font: 400 1.05rem/1.4 var(--sans); color: var(--ink);
  background: #fff; border: 2px solid var(--ink); border-radius: 0;
}
textarea { min-height: 96px; resize: vertical; }
.unit-field { display: flex; }
.unit-field input { flex: 1; min-width: 0; border-color: var(--galv); }
.unit-field span { display: flex; align-items: center; padding: 0 14px; background: var(--galv); color: var(--ink); font-weight: 700; }

/* The belt, drawn from behind */
.belt { --focus: var(--ink); position: relative; isolation: isolate; background: var(--galv); color: var(--ink); padding: 72px 0; scroll-margin-top: 70px; }
.belt::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--spangle); }
.belt-grid { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .belt-grid { grid-template-columns: 1.15fr 1fr; grid-template-areas: "head fig" "list fig"; gap: 0 60px; align-items: start; }
  .belt-head { grid-area: head; }
  .belt-fig { grid-area: fig; align-self: center; }
  .belt-list { grid-area: list; }
}
.belt-head p { font-size: 1.1rem; margin: 0; }
.rules { list-style: none; counter-reset: rule; margin: 0; padding: 0; border-top: 3px solid var(--ink); }
@media (min-width: 900px) { .belt-list { margin-top: 22px; } }
.rules li { counter-increment: rule; position: relative; padding: 14px 0 14px 52px; border-bottom: 1px solid rgba(18,19,20,.4); }
.rules li::before {
  content: counter(rule); position: absolute; left: 0; top: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--hivis); border: 2px solid var(--ink); color: var(--ink); font: 700 1rem/30px var(--sans); text-align: center;
}
.climb { margin: 18px 0 0; font-weight: 600; }
.belt-fig { margin: 0; }
.belt-fig svg { display: block; width: 100%; max-width: 400px; height: auto; margin: 0 auto; }
.belt-fig figcaption { margin-top: 10px; text-align: center; font-weight: 600; }
.bf-body { fill: var(--galv-hi); stroke: var(--ink); stroke-width: 2; }
.bf-spine { fill: none; stroke: var(--galv-lo); stroke-width: 1.6; stroke-dasharray: 4 5; }
.bf-strap-edge { fill: none; stroke: var(--ink); stroke-width: 13; stroke-linecap: square; }
.bf-strap { fill: none; stroke: var(--hivis); stroke-width: 9; stroke-linecap: square; }
.bf-belt { fill: var(--ink); }
.bf-stitch { fill: none; stroke: var(--galv-lo); stroke-width: 1.2; stroke-dasharray: 3 3; }
.bf-bag { fill: var(--bed-3); stroke: var(--ink); stroke-width: 2; }
.bf-pocket { fill: #33373b; stroke: var(--galv-lo); stroke-width: 1.2; stroke-dasharray: 3 2; }
.bf-steel { fill: var(--galv-lo); stroke: var(--ink); stroke-width: 1.5; }
.bf-handle { fill: var(--ink); }
.bf-grip { fill: var(--hivis); stroke: var(--ink); stroke-width: 1.5; }
.bf-pin { fill: var(--hivis); stroke: var(--ink); stroke-width: 2; }
.bf-num { font: 700 15px var(--sans); fill: var(--ink); text-anchor: middle; }
.bf-label { font: 700 12px var(--sans); letter-spacing: .1em; fill: var(--ink); text-anchor: middle; }

/* Crew kit request */
.request { background: var(--bed); padding: 72px 0; scroll-margin-top: 70px; }
.request-grid { display: grid; gap: 32px; }
@media (min-width: 960px) { .request-grid { grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; } }
.request-copy p { color: var(--dim); font-size: 1.08rem; }
.request-copy .fine { font-size: .95rem; border-left: 3px solid var(--hivis); padding-left: 12px; }
.slip { --focus: var(--ink); position: relative; isolation: isolate; background: var(--galv); color: var(--ink); padding: 26px 22px 26px; border-top: 6px solid var(--hivis); }
.slip::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--spangle); }
.slip-label { display: inline-block; margin: 0 0 6px; padding: 8px 12px 7px; background: var(--ink); color: var(--hivis); font: 400 1.15rem/1 var(--stencil); text-transform: uppercase; letter-spacing: .03em; }
.slip label { display: block; margin: 14px 0 5px; font-weight: 600; }
.slip .row { display: grid; gap: 0 16px; }
@media (min-width: 640px) { .slip .row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.slip .check { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; padding: 8px 0; font-weight: 500; cursor: pointer; }
.slip .check input { flex: none; width: 22px; height: 22px; min-height: 0; margin: 2px 0 0; accent-color: var(--ink); }
.slip .btn { margin-top: 20px; }
.feedback { margin: 16px 0 0; padding: 12px 14px; background: var(--paper); color: var(--ink); border-left: 6px solid var(--hivis); }
.feedback:empty { display: none; }
.feedback.is-error { border-left-color: var(--ink); font-weight: 600; }
[data-intake-status] { margin: 16px 0 0; padding: 12px 14px; background: var(--paper); color: var(--ink); border-left: 6px solid var(--ink); font-weight: 600; }

/* Brands band */
.brands-band { --focus: var(--ink); background: var(--hivis); color: var(--ink); padding: 34px 0; }
.bb-row { display: grid; gap: 12px 36px; align-items: center; }
@media (min-width: 900px) { .bb-row { grid-template-columns: 1.1fr 1.4fr auto; } }
.brands-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0; }
.brands-band p { margin: 0; font-size: 1.05rem; }
.brands-band .btn-ink:focus-visible { outline-color: var(--ink); }

/* Words on the list */
.words { background: var(--bed-2); padding: 72px 0; scroll-margin-top: 70px; }
.terms { display: grid; gap: 0 44px; margin: 10px 0 0; }
@media (min-width: 800px) { .terms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.terms div { padding: 14px 0; border-top: 1px solid var(--rule); }
.terms dt { font-weight: 700; font-size: 1.08rem; margin-bottom: 3px; }
.terms dd { margin: 0; color: var(--dim); }

/* Questions */
.faq { background: var(--bed); padding: 72px 0 80px; scroll-margin-top: 70px; }
.faq-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 1fr 2fr; gap: 60px; } }
.qa details { border-top: 1px solid var(--rule); }
.qa details:last-child { border-bottom: 1px solid var(--rule); }
.qa summary { position: relative; list-style: none; cursor: pointer; padding: 17px 44px 17px 0; font-weight: 600; font-size: 1.12rem; line-height: 1.35; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: 6px; top: 13px; font: 400 1.7rem/1 var(--stencil); color: var(--hivis); }
.qa details[open] summary::after { content: "-"; }
.qa details p { margin: 0 0 18px; max-width: 44em; color: var(--dim); }
.qa a, .legal a { color: var(--hivis); }

/* Footer */
.footer { background: #0b0c0d; color: var(--dim); padding: 50px 0 30px; border-top: 4px solid var(--hivis); }
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1.3fr 1.1fr; } }
.footer a { color: var(--chalk); }
.footer a:hover { color: var(--hivis); }
.footer .brand { margin-bottom: 12px; }
.foot-h { font: 700 .85rem/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--galv); margin: 4px 0 10px; }
.foot-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 16px; }
.footer address { font-style: normal; margin-top: 10px; }
.foot-sis p { margin: 0 0 10px; }
.foot-grid a:not(.brand) { display: inline-block; padding: 8px 0; }
.foot-base { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--rule); font-size: .95rem; }
.foot-base p { margin: 0; }

/* For brands page */
.b-hero { padding: 56px 0 48px; border-bottom: 1px solid var(--rule); }
.b-hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .b-hero-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; } }
.b-hero .lead { margin-top: 18px; }
.unit-tag {
  --focus: var(--ink); position: relative; isolation: isolate; margin: 0; padding: 30px 26px 24px 26px;
  background: var(--galv); color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}
.unit-tag::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--spangle); }
.unit-tag::after { content: ""; position: absolute; top: 18px; right: 46px; width: 18px; height: 18px; border-radius: 50%; background: var(--bed); box-shadow: 0 0 0 4px var(--galv-lo); }
.unit-tag .tag-word { display: inline-block; margin: 0 0 14px; padding: 7px 12px 6px; background: var(--hivis); font: 400 1.25rem/1 var(--stencil); text-transform: uppercase; }
.unit-tag blockquote { margin: 0; font-size: 1.12rem; line-height: 1.5; font-weight: 500; }
.unit-tag figcaption { margin-top: 14px; font-size: .95rem; }
.b-section { padding: 64px 0; border-bottom: 1px solid var(--rule); }
.b-section.alt { background: var(--bed-2); }
.b-head { max-width: 44em; margin-bottom: 26px; }
.b-head p { color: var(--dim); font-size: 1.08rem; }
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; border-top: 3px solid var(--galv); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.steps li { counter-increment: step; position: relative; padding: 20px 0 22px 66px; border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 20px; width: 48px; height: 48px;
  background: var(--hivis); color: var(--ink); font: 400 1.7rem/48px var(--stencil); text-align: center;
}
@media (min-width: 900px) {
  .steps li { padding: 22px 26px 10px 0; border-bottom: 0; }
  .steps li + li { padding-left: 26px; border-left: 1px solid var(--rule); }
  .steps li::before { position: static; display: block; margin-bottom: 14px; }
}
.steps h3 { font: 700 1.2rem/1.25 var(--sans); margin: 0 0 6px; }
.steps p { margin: 0; color: var(--dim); }
.method { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--galv); max-width: 52em; }
.method li { padding: 14px 0 14px 34px; border-bottom: 1px solid var(--rule); position: relative; }
.method li::before { content: ""; position: absolute; left: 0; top: 20px; width: 16px; height: 16px; border: 2px solid var(--hivis); }
.method b { color: var(--chalk); }
.method li { color: var(--dim); }

/* Legal pages and 404 */
.legal { max-width: 820px; padding-top: 52px; padding-bottom: 76px; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
.legal h2 { font: 700 1.35rem/1.25 var(--sans); margin: 2.1rem 0 .6rem; padding-top: 1.1rem; border-top: 1px solid var(--rule); }
.legal p, .legal li { color: var(--dim); }
.legal strong { color: var(--chalk); }
.legal ul { padding-left: 1.2rem; }
.legal-meta { color: var(--galv); font-weight: 600; padding-bottom: 14px; border-bottom: 3px solid var(--hivis); }
.callout { margin: 22px 0; padding: 14px 18px; background: var(--bed-2); border-left: 5px solid var(--hivis); }
.callout p { margin: 0; color: var(--chalk); }
.legal address { font-style: normal; color: var(--dim); }
.nf { display: grid; gap: 34px; align-items: center; padding-top: 64px; padding-bottom: 84px; }
@media (min-width: 800px) { .nf { grid-template-columns: 300px minmax(0, 1fr); gap: 56px; } }
.nf .crate { min-height: 190px; max-width: 300px; padding-bottom: 20px; }
.nf .crate-word { font-size: 2rem; }
.nf h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.nf p { color: var(--dim); font-size: 1.12rem; }
.nf-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

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

/* Print: one kit, checked tools only, empty boxes to tick at the truck */
@media print {
  @page { margin: 14mm; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .mast, .hero, .belt, .request, .brands-band, .words, .faq, .footer, .skip-link,
  .kits-intro, .tally-mini, .t-actions, .t-status, .rig, .bag-read, .t-hint, .t-field, .unit-field,
  .zone-sub, .i-note, .kit[hidden] { display: none !important; }
  .kits { background: #fff; padding: 0; }
  .kit-grid { display: block; }
  .sheet { border: 0; padding: 0; background: #fff; }
  .sheet::before { display: none; }
  .kit-head p { color: #000; }
  .item:not(:has(input:checked)) { display: none; }
  .item label { padding: 6px 0; min-height: 0; break-inside: avoid; }
  .item input, .item input:checked { background: #fff; border: 1.5px solid #000; width: 16px; height: 16px; }
  .zone-h span { background: #fff; color: #000; border: 2px solid #000; clip-path: none; }
  .tally { position: static; margin-top: 18px; background: #fff; color: #000; border: 2px solid #000; }
  .t-label, .t-rows dt, .t-big span { color: #000; }
  .t-rows div { border-color: #000; }
}
