/* ============================================================
   JPOWER TRADE SUPPLY COUNTER
   A power tool trade counter in Lai Chi Kok.
   Palette: bench, tail white, arc yellow, cast iron, part tray,
   gunmetal. Every decoration grows from one motif: tools on a
   pegboard, cord-wrapped hooks, a charging rack and job sheets.
   ============================================================ */

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

:root {
  --bench: #1B1D1F;
  --white: #EDEDE6;
  --yellow: #E3B23C;
  --grey: #878B8D;
  --tray: #26282B;
  --band: #2C2F33;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  background: var(--bench);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons & chips ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
}
.btn-yellow { background: var(--yellow); color: #26221A; border-color: var(--yellow); }
.btn-yellow:hover { background: #17191B; color: var(--yellow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: #17191B; }
.btn-dark-yellow { background: transparent; color: #26221A; border: 2px solid #26221A; }

.chip { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   PEGBOARD NAV
   ============================================================ */
.pegboard {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bench);
  border-bottom: 2px solid var(--band);
}
.pegboard .navwrap { display: flex; align-items: stretch; }
.pegboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.brandplate { display: flex; align-items: center; gap: 12px; }
.brandcrumb { display: flex; align-items: center; gap: 8px; text-decoration: none !important; }
.brandcrumb:hover { text-decoration: none; }
.brandname {
  background: var(--yellow);
  color: #26221A;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 17px;
}
.brandsub { color: var(--white); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

/* css peel board glyph — a small board with three peg dots */
.pegboard-glyph {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pegboard-glyph .pegbk { width: 30px; height: 22px; background: var(--tray); border: 1px solid var(--grey); border-radius: 3px; position: relative; }
.pegboard-glyph .pegbk i { position: absolute; width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; }
.pegboard-glyph .pegbk i:nth-child(1) { left: 5px; top: 4px; }
.pegboard-glyph .pegbk i:nth-child(2) { left: 17px; top: 4px; }
.pegboard-glyph .pegbk i:nth-child(3) { left: 11px; top: 13px; }

.hangmenu { display: flex; align-items: center; gap: 8px; list-style: none; }
.hangmenu li { display: flex; }
.hangmenu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  text-decoration: none !important;
  position: relative;
}
.hangmenu a:hover { color: var(--yellow); }
.cordloop { display: inline-block; width: 22px; height: 10px; border-radius: 50%; border: 2px solid var(--yellow); position: relative; transform: rotate(8deg); }
.hangmenu a.live { color: var(--yellow); }
.hangmenu a.live::after { content: "•"; position: absolute; left: -6px; top: 2px; color: var(--yellow); }
.ctachip {
  background: var(--yellow);
  color: #26221A !important;
  border-radius: 30px;
  padding: 12px 22px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-decoration: none;
}
.ctachip:hover { background: #26221A; color: var(--yellow) !important; }

/* cast-iron double rule with peg dots along the base */
.doublerule { border-top: 1px solid var(--grey); border-bottom: 1px solid var(--band); height: 6px; background: var(--band); position: relative; }
.doublerule::before { content: ""; position: absolute; left: 0; right: 0; top: -3px; height: 2px; background: repeating-linear-gradient(90deg, var(--yellow) 0 3px, transparent 3px 12px); }

/* mobile drawer */
.navtoggle { display: none; background: none; border: none; cursor: pointer; }
.navtoggle span { display: block; width: 24px; height: 3px; background: var(--yellow); margin: 5px 0; border-radius: 2px; }
.hangdrawer { display: none; }

/* ============================================================
   COUNTER WALL HERO
   ============================================================ */
.counterwall { background: var(--bench); }
.counterwall .toolwall {
  background: var(--tray);
  border-bottom: 4px solid var(--band);
  position: relative;
  padding: 46px 0 30px;
}
/* pegboard dot field */
.toolwall::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grey) 1px, transparent 1.4px);
  background-size: 26px 26px;
  background-position: center;
}
.toolwall-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 20px; align-items: end; }
.toolrows { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.toolcard { position: relative; height: 200px; }
.toolrow-label { position: absolute; bottom: -26px; left: 0; right: 0; text-align: center; color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* shadow mark behind each outline — a flat mat silhouette then arc-yellow outline art above */
.tooldraw { position: absolute; left: 50%; top: 20px; transform: translateX(-50%); width: 160px; height: 150px; }
.tooldraw .shadebg { position: absolute; left: 10px; top: 18px; width: 130px; height: 100px; background: #1F2123; border-radius: 14px; }

/* Four tools are drawn ONLY as arc-yellow linework shapes, hung on a peg with a visible cord. */
.peg-hang { position: absolute; left: 50%; top: -4px; width: 26px; height: 18px; transform: translateX(-50%); }
.peg-hang::before { content: ""; position: absolute; left: 50%; top: 0; width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; transform: translateX(-50%); }
.peg-hang::after { content: ""; position: absolute; left: 50%; top: 4px; width: 2px; height: 20px; background: var(--yellow); transform: translateX(-50%); }

/* circular saw: outer blade ring, arbor, guard handle chord */
.saw-fig { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); }
.saw-fig .blade { width: 74px; height: 74px; border: 5px solid var(--yellow); border-radius: 50%; position: relative; }
.saw-fig .blade::before, .saw-fig .blade::after { content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 92px; background: repeating-linear-gradient(var(--yellow) 0 4px, transparent 4px 9px); transform: translate(-50%,-50%); }
.saw-fig .blade::after { transform: translate(-50%,-50%) rotate(90deg); }
.saw-fig .arbor { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; background: var(--bench); border: 3px solid var(--yellow); border-radius: 50%; transform: translate(-50%,-50%); }
.saw-fig .grip { position: absolute; left: 50%; top: 108px; width: 46px; height: 4px; background: var(--yellow); transform: translateX(-50%); }

/* angle grinder: disc at left, guard ring, body drum and end grip */
.grinder-fig { position: absolute; top: 44px; left: 50%; transform: translateX(-62%); width: 128px; }
.grinder-fig .disc { position: absolute; right: -12px; top: -6px; width: 30px; height: 30px; border: 4px solid var(--yellow); border-radius: 50%; }
.grinder-fig .brush { position: absolute; right: 10px; top: -2px; width: 18px; height: 34px; border-left: 3px solid var(--yellow); }
.grinder-fig .body { position: absolute; right: 24px; top: 5px; width: 60px; height: 30px; border: 3px solid var(--yellow); border-radius: 16px 6px 6px 16px; }
.grinder-fig .neck { position: absolute; right: 60px; top: 22px; width: 18px; height: 20px; border: 3px solid var(--yellow); border-radius: 6px; }
.grinder-fig .tail { position: absolute; right: 76px; top: 18px; width: 34px; height: 5px; border-bottom: 3px solid var(--yellow); border-radius: 0 0 6px 6px; }

/* impact driver: slim body with deep chuck, collar ring, hex bit and trigger palm pad */
.driver-fig { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); width: 110px; }
.driver-fig .bit { position: absolute; left: -2px; top: 18px; width: 34px; height: 6px; background: var(--yellow); transform: rotate(-18deg); transform-origin: right; }
.driver-fig .chuck { position: absolute; left: 18px; top: 12px; width: 14px; height: 32px; border: 3px solid var(--yellow); border-radius: 7px; }
.driver-fig .barrel { position: absolute; left: 44px; top: 6px; width: 14px; height: 50px; background: repeating-linear-gradient(90deg, var(--yellow) 0 3px, transparent 3px 6px); }
.driver-fig .bodycol { position: absolute; left: 66px; top: 4px; width: 74px; height: 20px; border: 3px solid var(--yellow); border-radius: 30px; }
.driver-fig .gripb { position: absolute; left: 128px; top: 4px; width: 20px; height: 40px; border: 3px solid var(--yellow); border-radius: 5px; }

/* power drill: pistol grip body, chuck, bit, side handle and cord drop */
.drill-fig { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); width: 130px; }
.drill-fig .bit { position: absolute; left: -2px; top: 18px; width: 30px; height: 6px; background: var(--yellow); transform: rotate(-18deg); transform-origin: right; }
.drill-fig .chuck { position: absolute; left: 16px; top: 10px; width: 26px; height: 22px; border: 3px solid var(--yellow); border-radius: 6px; position: relative; }
.drill-fig .chuck::after { content: ""; position: absolute; left: 4px; top: -4px; width: 3px; height: 30px; background: var(--yellow); }
.drill-fig .nose { position: absolute; left: 36px; top: 6px; width: 30px; height: 12px; border: 3px solid var(--yellow); border-top: none; }
.drill-fig .motor { position: absolute; left: 60px; top: 0; width: 50px; height: 28px; border: 3px solid var(--yellow); border-radius: 8px; }
.drill-fig .side { position: absolute; left: 76px; top: 18px; width: 42px; height: 4px; background: var(--yellow); }
.drill-fig .handle { position: absolute; left: 88px; top: 22px; width: 24px; height: 34px; border: 3px solid var(--yellow); border-left: none; border-radius: 0 8px 8px 0; }
.drill-fig .pack { position: absolute; left: 92px; top: 50px; width: 26px; height: 30px; border: 3px solid var(--yellow); border-top: none; border-radius: 0 0 4px 4px; }

.rack { border-left: 2px solid var(--grey); padding-left: 16px; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; min-height: 170px; border-top: 2px solid var(--band); }
.rack .racklabel { color: var(--white); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--band); padding-bottom: 6px; }
.battery { display: flex; align-items: center; gap: 8px; }
.battery .bin { width: 76px; height: 20px; background: var(--band); border: 1px solid var(--grey); border-radius: 3px; position: relative; }
.battery .cap { width: 12px; height: 20px; background: var(--yellow); border-radius: 2px; }
.battery i { position: absolute; width: 3px; height: 3px; background: var(--yellow); border-radius: 50%; }

/* ---- lower counter slab ---- */
.counter {
  background: var(--tray);
  position: relative;
}
.counter-inner { max-width: 1160px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 1fr 260px; gap: 56px; }
.eyebrow { display: inline-block; color: var(--yellow); font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; border-bottom: 2px solid var(--yellow); padding-bottom: 6px; }
.hero-title { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; color: var(--white); font-weight: 900; letter-spacing: -0.01em; margin: 6px 0 22px; }
.hero-stamp { display: inline-block; background: var(--yellow); color: #26221A; border-radius: 50%; width: 90px; height: 90px; line-height: 90px; text-align: center; font-weight: 900; font-size: 15px; transform: rotate(-6deg); margin-left: 14px; vertical-align: middle; letter-spacing: 0.02em; }
.hero-copy { font-size: 18px; color: #CFD0C9; max-width: 720px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.counter-art { position: relative; }
.jobplate {
  background: var(--bench);
  border: 1px solid var(--band);
  border-radius: 8px;
  padding: 22px;
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 #1F2123;
  margin-top: 6px;
}
.jobplate .jp-top { display: flex; align-items: center; gap: 10px; justify-content: space-between; border-bottom: 1px dashed var(--grey); padding-bottom: 10px; margin-bottom: 12px; }
.minimagnet { width: 46px; height: 12px; background: var(--grey); border-radius: 3px; }
.jobplate p { color: #CFD0C9; font-size: 14px; }
.jobplate p b { color: var(--white); }
.cordspool { margin-top: 22px; text-align: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); border-top: 1px dashed var(--band); padding-top: 14px; }

/* gunmetal kick strip with three inline stats */
.kickstrip { background: var(--band); border-top: 2px solid var(--bench); }
.statbar { max-width: 1160px; margin: 0 auto; padding: 22px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 14px; color: var(--white); }
.stat strong { font-size: 26px; font-weight: 900; color: var(--yellow); }
.stat span { font-size: 14px; color: #CFD0C9; max-width: 200px; }
.statsep { width: 2px; height: 44px; background: var(--yellow); }

/* ============================================================
   JOBSHEET SECTION HEADER
   ============================================================ */
.sect { position: relative; }
.sect-pad { padding: 84px 0 60px; }
.sectlabel { color: var(--yellow); font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.secttitle { font-size: clamp(26px, 3.6vw, 42px); color: var(--white); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.sectlede { color: #CFD0C9; max-width: 780px; font-size: 17px; }

/* ============================================================
   JOB SHEET ROWS
   ============================================================ */
.jobsheet { background: var(--bench); }
.jobrows { max-width: 1160px; margin: 0 auto; padding: 18px 24px 30px; display: flex; flex-direction: column; gap: 22px; }
.jobrow {
  background: var(--tray);
  border: 1px solid var(--band);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 150px 1fr 260px;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  box-shadow: 6px 6px 0 #212326;
  position: relative;
  opacity: 1;
  transform: none;
}
.jobrow.wrap-left { transform: translateX(-40px); }
.jobrow.wrap-right { transform: translateX(40px); }
.jobno { text-align: center; }
.jobstamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.specchip { display: inline-block; margin-top: 14px; border: 1px solid var(--grey); color: var(--grey); font-weight: 800; font-size: 12px; padding: 4px 10px; border-radius: 3px; letter-spacing: 0.08em; }
.jobtxt h4 { color: var(--white); font-size: 21px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.01em; }
.jobtxt p { color: #CFD0C9; font-size: 15px; }
.joblink { color: var(--yellow); font-weight: 700; font-size: 15px; }
.jobmeta { border-left: 1px solid var(--band); padding-left: 24px; }
.cordwrap { width: 30px; height: 30px; border-radius: 50%; border: 3px dashed var(--grey); border-top-color: var(--yellow); margin-bottom: 12px; opacity: .9; }

/* disclose no JS reveal safety: reveal class toggles position-offset rows */
.jobrow { transition: opacity .7s ease, transform .7s ease; }

/* ============================================================
   STATEMENT ROW — full width arc yellow
   ============================================================ */
.stamprow { background: var(--yellow); color: #26221A; }
.stamprow .stampgrid {
  max-width: 1160px; margin: 0 auto; padding: 70px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.stampcopy { max-width: 560px; }
.stampbtn-chip { font-size: 13px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; display: inline-block; background: #26221A; color: var(--yellow); padding: 6px 16px; border-radius: 30px; }
.stamprow .secttitle { color: #26221A; font-size: clamp(26px, 3.4vw, 40px); }
.stamprow .sectlede { color: #4A3E16; font-size: 17px; max-width: 560px; }
.stampfigure { text-align: right; }
.stampfigure .fig { font-size: clamp(70px, 12vw, 150px); font-weight: 900; line-height: 0.9; pointer-events: none; }
.stampfigure .figsub { font-size: 17px; font-weight: 700; color: #4A3E16; margin-top: 14px; }
.stamprow .btn-dark-yellow { background: #26221A; color: var(--yellow); border: 2px solid #26221A; margin-top: 18px; }
.stamprow .btn-dark-yellow:hover { background: transparent; color: #26221A; }

/* ============================================================
   SUPPLY RUN — the dealer journey band
   ============================================================ */
.supplyrun { background: var(--grey); }
.supplyrun .sect-titleband { max-width: 1160px; margin: 0 auto; padding: 0 24px; text-align: center; }
.supplyrun .sectlabel { color: #26221A; }
.supplyrun .secttitle { color: #17191B; }
.supplyrun .sectlede { color: #3E4246; margin: 0 auto; }
.runbar { max-width: 1160px; margin: 0 auto; padding: 40px 24px 74px; }
.routechip { display: flex; align-items: flex-start; position: relative; }
.runline { position: relative; }
.runsteps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; list-style: none; position: relative; z-index: 1; }
.runstep { background: var(--band); border-radius: 8px; padding: 20px 16px; text-align: center; }
.runstep .stepno { color: var(--yellow); font-weight: 900; font-size: 14px; letter-spacing: 0.1em; margin-bottom: 8px; }
.runstep h5 { color: var(--white); font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.runstep p { color: #CFD0C9; font-size: 13px; line-height: 1.5; }
.runstep.tail { background: var(--yellow); }
.runstep.tail h5 { color: #26221A; }
.runstep.tail p { color: #4A3E16; }

/* ============================================================
   ACCENT STRIP — booking band / trade week
   ============================================================ */
.accentstrip { background: var(--yellow); }
.accentgrid {
  max-width: 1160px; margin: 0 auto; padding: 50px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.accentmark { background: #26221A; color: var(--yellow); font-weight: 900; font-size: 14px; letter-spacing: .18em; padding: 12px 18px; text-transform: uppercase; border-radius: 4px; white-space: nowrap; }
.accentmsg h3 { color: #26221A; font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; }
.accentmsg p { color: #4A3E16; font-size: 16px; margin-top: 8px; }
.accentgrid .btn-dark-yellow { white-space: nowrap; }

/* ============================================================
   DEALER PERKS mini board
   ============================================================ */
.perks { background: var(--bench); }
.perkgrid { max-width: 1160px; margin: 0 auto; padding: 0 24px 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk { background: var(--tray); border: 1px solid var(--band); border-radius: 8px; padding: 26px; }
.perk .perkdot { width: 22px; height: 22px; border: 3px solid var(--yellow); border-radius: 50%; margin-bottom: 14px; position: relative; }
.perk .perkdot::after { content: ""; position: absolute; inset: 0; }
.perk h4 { color: var(--white); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.perk p { color: #CFD0C9; font-size: 14px; }

/* ============================================================
   CROSSPAGE inner-led strip (services/contact reuse)
   ============================================================ */
.pagehead { background: var(--tray); border-bottom: 4px solid var(--band); }
.pagehead .in { max-width: 1160px; margin: 0 auto; padding: 60px 24px 46px; }
.pagehead h1 { font-size: clamp(30px, 4.5vw, 50px); color: var(--white); font-weight: 900; }
.pagehead .crumbline { color: var(--grey); font-size: 14px; }
.section-band { background: var(--bench); }

/* ============================================================
   FOOTER — battery rack
   ============================================================ */
.batteryrack { background: var(--band); }
.racktop { background: var(--band); position: relative; }
.rackcells { max-width: 1160px; margin: 0 auto; padding: 26px 24px 0; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.motto { color: var(--white); font-weight: 800; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.dockpack { width: 86px; height: 30px; background: var(--tray); border: 1px solid var(--grey); border-radius: 4px; position: relative; }
.dockpack::before { content: ""; position: absolute; right: -8px; top: -8px; width: 14px; height: 14px; border-radius: 3px; background: var(--yellow); }
.dockpack i { position: absolute; left: 14px; bottom: 4px; width: 3px; height: 3px; background: var(--yellow); border-radius: 50%; box-shadow: 9px 0 0 var(--yellow), 18px 0 0 var(--yellow); }
.dockpacks { display: flex; gap: 22px; }
.footcols { max-width: 1160px; margin: 0 auto; padding: 44px 24px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 34px; }
.footbrand .brandcrumb { margin-bottom: 14px; }
.footcol h4 { color: var(--yellow); font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; border-bottom: 1px solid var(--band); padding-bottom: 8px; }
.footcol ul { list-style: none; }
.footcol li { margin-bottom: 8px; }
.footcol a { color: #CFD0C9; font-size: 15px; text-decoration: none !important; }
.footcol a:hover { color: var(--yellow); }
.footplate { background: var(--tray); border-top: 2px solid var(--band); }
.platedata { max-width: 1160px; margin: 0 auto; padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.platedata .firm { color: var(--white); font-weight: 800; }
.platedata .addr { color: #CFD0C9; font-size: 14px; max-width: 520px; line-height: 1.5; }
.platedata .fbtns a { color: var(--yellow); font-weight: 700; margin-left: 14px; }
.copyrule { background: var(--tray); }
.copyline { max-width: 1160px; margin: 0 auto; padding: 14px 24px 22px; color: var(--yellow); font-size: 13px; letter-spacing: 0.05em; text-align: center; }

footer * { position: relative; z-index: 1; }

/* ============================================================
   NO-JS / REVEAL SAFETY
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal:hover { opacity: 1; transform: none; }

/* ============================================================
   FORMS (contact)
   ============================================================ */
.formpanel { background: var(--tray); border: 1px solid var(--band); border-radius: 8px; padding: 30px; box-shadow: 8px 8px 0 #1F2123; }
.field { margin-bottom: 18px; }
.field label { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bench);
  border: 1px solid var(--grey);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 5px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--yellow); border-color: var(--yellow); }
.field textarea { min-height: 150px; resize: vertical; }
.formnote { color: var(--grey); font-size: 13px; margin-top: 10px; }
.mailto-note { display: inline-block; margin-top: 12px; color: var(--yellow); font-size: 14px; }

/* contact layout */
.splitgrid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.info-panel { background: var(--band); border-radius: 8px; padding: 26px; }
.info-panel h3 { color: var(--white); font-size: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--tray); padding-bottom: 10px; }
.info-panel dl { display: grid; gap: 14px; }
.info-panel dt { color: var(--yellow); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.info-panel dd { color: #CFD0C9; font-size: 15px; }
.info-panel dd a { color: var(--white); }
.faq { list-style: none; margin-top: 28px; }
.faq li { border-top: 1px solid var(--band); }
.faq button { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 16px 0; color: var(--white); font-weight: 800; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.faq button::after { content: "+"; color: var(--yellow); font-size: 22px; font-weight: 400; }
.faq li.open button::after { content: "–"; }
.faq-ans { display: none; color: #CFD0C9; font-size: 15px; padding: 0 0 18px; }
.faq li.open .faq-ans { display: block; }

/* ============================================================
   SERVICE SHEET bullets + accordions
   ============================================================ */
.svcline { background: var(--tray); border-left: 6px solid var(--yellow); border-radius: 6px; padding: 28px; margin: 0 0 18px; }
.svcline header { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; }
.svcline h3 { color: var(--white); font-size: 22px; font-weight: 900; }
.svcline .svcdescr { color: #CFD0C9; font-size: 15px; margin-top: 14px; }
.stepslist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stepslist .st { background: var(--band); border-radius: 6px; padding: 18px; }
.stepslist .st span { color: var(--yellow); font-weight: 900; font-size: 20px; display: block; margin-bottom: 6px; }
.stepflow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; }
.stepflow .sf { background: var(--band); padding: 18px; border-radius: 6px; }
.stepflow .sf b { color: var(--yellow); }
.stepflow .sf p { color: #CFD0C9; font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .toolwall-inner { grid-template-columns: 1fr; }
  .toolrows { grid-template-columns: repeat(2, 1fr); }
  .toolcard:nth-child(3), .toolcard:nth-child(4) { display: none; }
  .counter-inner { grid-template-columns: 1fr; gap: 28px; }
  .counter-art { max-width: 360px; }
  .jobrow { grid-template-columns: 120px 1fr; }
  .jobmeta { border-left: none; border-top: 1px solid var(--band); padding-left: 0; padding-top: 14px; grid-column: 1 / -1; }
  .runsteps { grid-template-columns: repeat(2, 1fr); }
  .perkgrid { grid-template-columns: 1fr; }
  .footcols { grid-template-columns: 1fr 1fr; }
  .splitgrid { grid-template-columns: 1fr; }
  .jobrow.wrap-left { transform: translateX(-16px); }
  .jobrow.wrap-right { transform: translateX(16px); }
  .rack { border-left: none; border-top: 2px solid var(--band); flex-direction: row; justify-content: flex-start; align-items: flex-end; min-height: 0; padding: 16px 6px 4px; }
  .battery .bin { width: 120px; }
}
@media (max-width: 640px) {
  .hangmenu { display: none; }
  .pegboard .ctachip { display: none; }
  .navtoggle { display: inline-block; }
  .hangdrawer { display: none; width: 100%; background: var(--bench); }
  .hangdrawer.open { display: block; }
  .hangdrawer a { display: block; padding: 14px 24px; color: var(--white); font-weight: 600; border-top: 1px solid var(--band); text-decoration: none !important; }
  .hangdrawer a.live { color: var(--yellow); }
  .jobrow, .jobrow.wrap-left, .jobrow.wrap-right { grid-template-columns: 1fr; transform: none; }
  .statbar { flex-direction: column; align-items: flex-start; }
  .statsep { display: none; }
  .footcols { grid-template-columns: 1fr; }
  .stepflow { grid-template-columns: 1fr; }
  .stampgrid, .accentgrid, .platedata { flex-direction: column; align-items: flex-start; }
  .stampfigure { text-align: left; }
  .runsteps { grid-template-columns: 1fr; }
}
